Инструменты пользователя

Инструменты сайта


software:development:web:docs:web:wysiwyg:nicedit

Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Предыдущая версия справа и слеваПредыдущая версия
Следующая версия
Предыдущая версия
software:development:web:docs:web:wysiwyg:nicedit [2026/01/07 15:25] – [Integration with NicEdit events] VladPolskiysoftware:development:web:docs:web:wysiwyg:nicedit [2026/01/07 16:02] (текущий) – [Дополнения и Файлы] VladPolskiy
Строка 237: Строка 237:
 </code> </code>
   * Скопируйте и вставьте код в свой JS-файл.   * Скопируйте и вставьте код в свой JS-файл.
-  * Создайте папку icons в папке вашего плагина (например, src/nicExample/icons) и поместите туда свои иконки (в данном случае save.gif).+  * Создайте папку icons в папке вашего плагина (например, src/nicExample/icons) и поместите туда свои иконки (в данном случае  {{:software:development:web:docs:web:wysiwyg:save_buttom_nicedit.gif?|save.gif}}).
  
 == Чтобы объяснить различные части примера: == == Чтобы объяснить различные части примера: ==
Строка 322: Строка 322:
 </code> </code>
 ==== How to translate nicEdit (with Spanish example) ==== ==== How to translate nicEdit (with Spanish example) ====
 +  * Скачать версию для разработчиков
 +  * Откройте файл nicEdit.js
 +  * Перейдите к этим нескольким строкам и отредактируйте текст справки, например, перевод на испанский будет выглядеть так:
 +== Примерно строка 252: ==
 +<code js script.js>
 +var nicEditorConfig = bkClass.extend({
 +    buttons : {
 +        'bold' : {name : __('Negrita'), command : 'Bold', tags : ['B','STRONG'], css : {'font-weight' : 'bold'}, key : 'b'},
 +        'italic' : {name : __('Cursiva'), command : 'Italic', tags : ['EM','I'], css : {'font-style' : 'italic'}, key : 'i'},
 +        'underline' : {name : __('Subrayado'), command : 'Underline', tags : ['U'], css : {'text-decoration' : 'underline'}, key : 'u'},
 +        'left' : {name : __('Alinear texto a la izquierda'), command : 'justifyleft', noActive : true},
 +        'center' : {name : __('Centrar texto'), command : 'justifycenter', noActive : true},
 +        'right' : {name : __('Alinear texto a la derecha'), command : 'justifyright', noActive : true},
 +        'justify' : {name : __('Justificar texto'), command : 'justifyfull', noActive : true},
 +        'ol' : {name : __('Insertar lista ordenada'), command : 'insertorderedlist', tags : ['OL']},
 +        'ul' :     {name : __('Insertar lista desordenada'), command : 'insertunorderedlist', tags : ['UL']},
 +        'subscript' : {name : __('SubIndice'), command : 'subscript', tags : ['SUB']},
 +        'superscript' : {name : __('SuperIndice'), command : 'superscript', tags : ['SUP']},
 +        'strikethrough' : {name : __('Tachar'), command : 'strikeThrough', css : {'text-decoration' : 'line-through'}},
 +        'removeformat' : {name : __('Borrar formato'), command : 'removeformat', noActive : true},
 +        'indent' : {name : __('Identar'), command : 'indent', noActive : true},
 +        'outdent' : {name : __('Eliminar identado'), command : 'outdent', noActive : true},
 +        'hr' : {name : __('Barra separadora'), command : 'insertHorizontalRule', noActive : true}
 +</code>
 +== Примерно строка 1046: ==
 +<code js script.js>
 +var nicLinkOptions = {
 +    buttons : {
 +        'link' : {name : 'Enlazar', type : 'nicLinkButton', tags : ['A']},
 +        'unlink' : {name : 'Eliminar enlace',  command : 'unlink', noActive : true}
 +    }
 +</code>
 +== Примерно строка 1120: ==
 +<code js script.js>
 +var nicCodeOptions = {
 +    buttons : {
 +        'xhtml' : {name : 'Visualizar HTML', type : 'nicCodeButton'}
 +    }
 +};
 +</code>
 +== Примерно строка 1131: ==
 +<code js script.js>
 +    addPane : function() {
 +        this.addForm({
 +            '' : {type : 'title', txt : 'Editar HTML'},
 +            'code' : {type : 'content', 'value' : this.ne.selectedInstance.getContent(), style : {width: '340px', height : '200px'}}
 +        });
 +    },
 +</code>
 ===== Дополнения и Файлы ===== ===== Дополнения и Файлы =====
   * {{ :software:development:web:docs:web:wysiwyg:nicedit-5861cebf02e167b2cc8ca4672c3a478d.zip |Сжатый NicEdit (без пробелов и комментариев). Рекомендуется для развертывания NicEdit.}}   * {{ :software:development:web:docs:web:wysiwyg:nicedit-5861cebf02e167b2cc8ca4672c3a478d.zip |Сжатый NicEdit (без пробелов и комментариев). Рекомендуется для развертывания NicEdit.}}
   * {{ :software:development:web:docs:web:wysiwyg:nicedit-4ad98f51fafd99ef01e4eff35af7c570.zip |Несжатая версия NicEdit для разработки. Используйте её только для отладки или разработки NicEdit.}}   * {{ :software:development:web:docs:web:wysiwyg:nicedit-4ad98f51fafd99ef01e4eff35af7c570.zip |Несжатая версия NicEdit для разработки. Используйте её только для отладки или разработки NicEdit.}}
 +  * {{:software:development:web:docs:web:wysiwyg:ajax-loader.gif?|}}
 +  * [[nicedit_nicedit_latest_js|nicEdit-latest.js]]
 +  * [[nicedit_nicedit_js_n|nicEdit.js]]
 +  * {{:software:development:web:docs:web:wysiwyg:nicediticons-latest.gif?|nicEditIcons-latest.gif}}
 +  * {{:software:development:web:docs:web:wysiwyg:niceditoricons_1_.gif?|nicEditorIcons.gif}}
  
  
software/development/web/docs/web/wysiwyg/nicedit.1767788757.txt.gz · Последнее изменение: VladPolskiy

Если не указано иное, содержимое этой вики предоставляется на условиях следующей лицензии: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki