OLD | NEW |
(Empty) | |
| 1 function _(text){ |
| 2 return $.i18n._(text); |
| 3 } |
| 4 |
| 5 $(document).ready(function(){ |
| 6 i18n_dict = {· |
| 7 "Hide comments" : "{{ _("Hide comments") }}", |
| 8 "Show comments" : "{{ _("Show comments") }}", |
| 9 "Hide transclusions" : "{{ _("Hide transclusions") }}", |
| 10 "Show transclusions" : "{{ _("Show transclusions") }}", |
| 11 "Your changes will be discarded if you leave this page without saving."
: "{{ _("Your changes will be discarded if you leave this page without saving.")
}}",· |
| 12 "You missed! Double-click on text or to the right of text to auto-scroll
text editor." : "{{ _("You missed! Double-click on text or to the right of tex
t to auto-scroll text editor.") }}", |
| 13 "Your browser is obsolete. Upgrade to gain auto-scroll text editor featu
re." : "{{ _("Your browser is obsolete. Upgrade to gain auto-scroll text editor
feature.") }}", |
| 14 "Your browser is old. Upgrade to gain auto-scroll page after edit featur
e." : "{{ _("Your browser is old. Upgrade to gain auto-scroll page after edit f
eature.") }}", |
| 15 "Deleting" : "{{ _("Deleting") }}", |
| 16 "Destroying" : "{{ _("Destroying") }}", |
| 17 "Items deleted: " : "{{ _("Items deleted: ") }}", |
| 18 "Items destroyed: " : "{{ _("Items destroyed: ") }}", |
| 19 ", Items not deleted: " : "{{ _(", Items not deleted: ") }}", |
| 20 ", Items not destroyed: " : "{{ _(", Items not destroyed: ") }}" |
| 21 }; |
| 22 |
| 23 $.i18n.setDictionary(i18n_dict); |
| 24 }); |
OLD | NEW |