Changeset 1234


Ignore:
Timestamp:
2000-06-23T15:48:09+12:00 (24 years ago)
Author:
sjboddie
Message:

Added Arabic language and encoding options to the preferences page. This
is a much more complex task than it should be (you even have to recompile!)
but it's not really worth fixing until the new config file format is
finalised.

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/macros/english.dm

    r1212 r1234  
    583583_textlangmaori_ {M_amn_ori}
    584584_textlangchinese_ {Chinese}
     585_textlangarabic_ {Arabic}
    585586_textgraphical_ {Graphical}
    586587_texttextual_ {Textual}
  • trunk/gsdl/macros/pref.dm

    r1212 r1234  
    333333_milanguageoption_ {<option value="mi"_If_("_cgiargl_" eq "mi", selected)>_textlangmaori_}
    334334_zhlanguageoption_ {<option value="zh"_If_("_cgiargl_" eq "zh", selected)>_textlangchinese_}
     335_arlanguageoption_ {<option value="ar"_If_("_cgiargl_" eq "ar", selected)>_textlangarabic_}
    335336
    336337_encodingoption_ {
     
    340341  <option value="u" _If_("_cgiargw_" eq "u",selected)>UTF-8
    341342  <option value="g" _If_("_cgiargw_" eq "g",selected)>GBK
     343  <option value="a" _If_("_cgiargw_" eq "a",selected)>Arabic (windows 1256)
    342344</select>
    343345}
  • trunk/gsdl/src/recpt/pageaction.cpp

    r1212 r1234  
    2828/*
    2929   $Log$
     30   Revision 1.31  2000/06/23 03:48:08  sjboddie
     31   Added Arabic language and encoding options to the preferences page. This
     32   is a much more complex task than it should be (you even have to recompile!)
     33   but it's not really worth fixing until the new config file format is
     34   finalised.
     35
    3036   Revision 1.30  2000/06/14 22:33:42  sjboddie
    3137   Added French and Spanish language selection options to the preferences
     
    404410    languages.push_back ("mi");
    405411    languages.push_back ("zh");
     412    languages.push_back ("ar");
    406413    text_tarray::const_iterator this_lang = languages.begin();
    407414    text_tarray::const_iterator end_lang = languages.end();
Note: See TracChangeset for help on using the changeset viewer.