Changeset 327580
- Timestamp:
- 12/31/2010 04:22:11 PM (15 years ago)
- File:
-
- 1 edited
-
hyphenator/trunk/options.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hyphenator/trunk/options.php
r135395 r327580 2 2 // list of available languages 3 3 $hyphenator_langindex = array( 4 "en" => "English", 4 "en" => "English (en)", 5 "en-us" => "English (en-us)", 6 "en-gb" => "English (en-gb)", 5 7 "de" => "Deutsch", 6 8 "fr" => "Français", … … 12 14 "da" => "dansk", 13 15 "fi" => "suomi", 16 "no-nb" => "norsk/bokmål", 14 17 "sv" => "svenska", 15 18 "pl" => "polski", 16 19 "cs" => "česky", 20 "tr" => "Türkçe", 21 "sl" => "slovenščina", 22 "lt" => "lietuvių kalba", 23 "lv" => "latviešu valoda", 24 "la" => "latine", 17 25 "uk" => "Українська", 18 26 "ru" => "русский язык", 27 "el-polyton" => "Ελληνικά (polyton)", 28 "el-monoton" => "Ελληνικά (monoton)", 29 "grc" => "Ἑλληνικά (historic)", 30 "be" => "Беларуская мова", 19 31 "bn" => "বাংলা", 20 32 "kn" => "ქართული", … … 25 37 "pa" => "ਪੰਜਾਬੀ", 26 38 "ta" => "தமிழ்", 27 "te" => "తెలుగు" 39 "te" => "తెలుగు", 40 "hy" => "Հայերեն լեզու" 28 41 ); 29 42 … … 124 137 <ul id="hyplang"> 125 138 <li><input id="lang1" type="radio" name="hyphenator_lang" value="auto" <?php if ($hyphenator_['languages'] == 'auto') echo "checked=\"checked\"" ?> /> <label for="lang1"><?php _e('automatic', 'hyphenator') ?></label> <small>(<?php _e('default', 'hyphenator') ?>)</small></li> 126 <li>< input id="lang2" type="radio" name="hyphenator_lang" value="manual" <?php if ($hyphenator_['languages'] != 'auto') echo "checked=\"checked\"" ?> /> <label for="lang2"><?php _e('manual', 'hyphenator') ?></label> <small>(<?php _e('faster', 'hyphenator') ?>)</small>139 <li><div><input id="lang2" type="radio" name="hyphenator_lang" value="manual" <?php if ($hyphenator_['languages'] != 'auto') echo "checked=\"checked\"" ?> /> <label for="lang2"><?php _e('manual', 'hyphenator') ?></label> <small>(<?php _e('faster', 'hyphenator') ?>)</small></div> 127 140 <ul> 128 141 <?php
Note: See TracChangeset
for help on using the changeset viewer.