Plugin Directory

Changeset 327580


Ignore:
Timestamp:
12/31/2010 04:22:11 PM (15 years ago)
Author:
e2b
Message:

added new languages to options.php

File:
1 edited

Legend:

Unmodified
Added
Removed
  • hyphenator/trunk/options.php

    r135395 r327580  
    22// list of available languages
    33$hyphenator_langindex = array(
    4     "en" => "English",
     4    "en" => "English (en)",
     5    "en-us" => "English (en-us)",
     6    "en-gb" => "English (en-gb)",
    57    "de" => "Deutsch",
    68    "fr" => "Français",
     
    1214    "da" => "dansk",
    1315    "fi" => "suomi",
     16    "no-nb" => "norsk/bokmål",
    1417    "sv" => "svenska",
    1518    "pl" => "polski",
    1619    "cs" => "česky",
     20    "tr" => "Türkçe",
     21    "sl" => "slovenščina",
     22    "lt" => "lietuvių kalba",
     23    "lv" => "latviešu valoda",
     24    "la" => "latine",
    1725    "uk" => "Українська",
    1826    "ru" => "русский язык",
     27    "el-polyton" => "Ελληνικά (polyton)",
     28    "el-monoton" => "Ελληνικά (monoton)",
     29    "grc" => "Ἑλληνικά (historic)",
     30    "be" => "Беларуская мова",
    1931    "bn" => "বাংলা",
    2032    "kn" => "ქართული",
     
    2537    "pa" => "ਪੰਜਾਬੀ",
    2638    "ta" => "தமிழ்",
    27     "te" => "తెలుగు"
     39    "te" => "తెలుగు",
     40    "hy" => "Հայերեն լեզու"
    2841);
    2942
     
    124137     <ul id="hyplang">
    125138      <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>
    127140       <ul>
    128141<?php
Note: See TracChangeset for help on using the changeset viewer.