Changeset 3955:dcbe188a9646 for plugins
- Timestamp:
- 01/20/19 10:26:55 (7 years ago)
- Branch:
- default
- Location:
- plugins/dcCKEditor
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCKEditor/_install.php
r3731 r3955 30 30 $settings->dcckeditor->put('table_button', false, 'boolean', 'Add table button?', false, true); 31 31 $settings->dcckeditor->put('clipboard_buttons', false, 'boolean', 'Add clipboard buttons?', false, true); 32 $settings->dcckeditor->put('action_buttons', true, 'boolean', 'Add undo/redo buttons?', false, true); 32 33 $settings->dcckeditor->put('disable_native_spellchecker', true, 'boolean', 'Disables the built-in spell checker if the browser provides one?', false, true); 33 34 -
plugins/dcCKEditor/_post_config.php
r3917 r3955 191 191 <?php endif;?> 192 192 193 <?php if (!empty($dcckeditor_action_buttons)): ?> 194 { 195 name: 'action', 196 items: ['Undo','Redo'] 197 }, 198 <?php endif;?> 199 193 200 <?php if (!empty($dcckeditor_alignment_buttons)): ?> 194 201 { -
plugins/dcCKEditor/inc/_config.php
r3875 r3955 64 64 $core->blog->settings->dcckeditor->put('clipboard_buttons', $dcckeditor_clipboard_buttons, 'boolean'); 65 65 66 $dcckeditor_action_buttons = (empty($_POST['dcckeditor_action_buttons'])) ? false : true; 67 $core->blog->settings->dcckeditor->put('action_buttons', $dcckeditor_action_buttons, 'boolean'); 68 66 69 $dcckeditor_disable_native_spellchecker = (empty($_POST['dcckeditor_disable_native_spellchecker'])) ? false : true; 67 70 $core->blog->settings->dcckeditor->put('disable_native_spellchecker', $dcckeditor_disable_native_spellchecker, 'boolean'); -
plugins/dcCKEditor/index.php
r3731 r3955 25 25 $dcckeditor_table_button = $core->blog->settings->dcckeditor->table_button; 26 26 $dcckeditor_clipboard_buttons = $core->blog->settings->dcckeditor->clipboard_buttons; 27 $dcckeditor_action_buttons = $core->blog->settings->dcckeditor->action_buttons; 27 28 $dcckeditor_disable_native_spellchecker = $core->blog->settings->dcckeditor->disable_native_spellchecker; 28 29 -
plugins/dcCKEditor/locales/fr/main.po
r3090 r3955 60 60 #: tpl/index.tpl:45 61 61 msgid "Add format selection" 62 msgstr "Ajouter le bouton pour ajouter les formats ."62 msgstr "Ajouter le bouton pour ajouter les formats" 63 63 64 64 msgid "Add table button" 65 msgstr "Ajouter le bouton pour ajouter des tableaux ."65 msgstr "Ajouter le bouton pour ajouter des tableaux" 66 66 67 67 msgid "Add clipboard buttons" 68 msgstr "Ajouter les boutons de copier/coller ..."68 msgstr "Ajouter les boutons de copier/coller" 69 69 70 70 msgid "Copy, Paste, Paste Text, Paste from Word" … … 88 88 msgid "Disables the built-in spell checker if the browser provides one" 89 89 msgstr "Désactiver la correction orthographique fournie par le navigateur" 90 91 msgid "Add undo/redo buttons" 92 msgstr "Ajouter les boutons défaire/refaire" -
plugins/dcCKEditor/tpl/index.php
r3875 r3955 90 90 </p> 91 91 <p> 92 <?php echo form::checkbox('dcckeditor_action_buttons', 1, $dcckeditor_action_buttons); ?> 93 <label class="classic" for="dcckeditor_action_buttons"> 94 <?php echo __('Add undo/redo buttons'); ?> 95 </label> 96 </p> 97 <p> 92 98 <?php echo form::checkbox('dcckeditor_disable_native_spellchecker', 1, $dcckeditor_disable_native_spellchecker); ?> 93 99 <label class="classic" for="dcckeditor_disable_native_spellchecker">
Note: See TracChangeset
for help on using the changeset viewer.