Changeset 2137 for plugins/footnotesToolbar
- Timestamp:
- 03/27/10 07:51:29 (14 years ago)
- Location:
- plugins/footnotesToolbar
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/footnotesToolbar/_define.php
r2125 r2137 17 17 /* Description*/ "Adds a toolbar button to create footnotes", 18 18 /* Author */ "Aurélien Bompard", 19 /* Version */ '1. 2',19 /* Version */ '1.3', 20 20 /* Permissions */ 'usage,contentadmin' 21 21 ); -
plugins/footnotesToolbar/betterfootnotes.js
r2125 r2137 6 6 return; // no footnotes, bail out 7 7 } 8 if (betterfootnotes_mode == "under") { 8 if (betterfootnotes_mode == "none") { 9 return; 10 } else if (betterfootnotes_mode == "under") { 9 11 betterfootnotes_under(); 10 12 } else { -
plugins/footnotesToolbar/index.php
r2125 r2137 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 12 13 $footnotes_supported_modes = array(" float", "under");13 $footnotes_supported_modes = array("none", "float", "under"); 14 14 15 15 # Get settings -
plugins/footnotesToolbar/locales/en/main.po
r2125 r2137 30 30 31 31 #: index.php:81 32 msgid "Footnotes_mode_none" 33 msgstr "Standard mode" 34 35 #: index.php:81 32 36 msgid "Footnotes_mode_float" 33 37 msgstr "Float mode" -
plugins/footnotesToolbar/locales/fr/main.po
r2125 r2137 30 30 31 31 #: index.php:81 32 msgid "Footnotes_mode_none" 33 msgstr "Mode classique" 34 35 #: index.php:81 32 36 msgid "Footnotes_mode_float" 33 37 msgstr "Mode \"flottant\""
Note: See TracChangeset
for help on using the changeset viewer.