diff options
author | Nils Fuhrmann <nf@openoffice.org> | 2002-04-04 12:42:04 +0000 |
---|---|---|
committer | Nils Fuhrmann <nf@openoffice.org> | 2002-04-04 12:42:04 +0000 |
commit | e7f728862428d63a9e5e438db419cd95f37aa5da (patch) | |
tree | 9852e0ca28c06c9e637b397dd38c12cf71725957 /svtools/source/config | |
parent | e36180cd0dffe4aa9a203eeb84337140ed9eb877 (diff) |
#98499# Added thai support for path replacement, mandatory for template and example handling
Diffstat (limited to 'svtools/source/config')
-rw-r--r-- | svtools/source/config/pathoptions.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/svtools/source/config/pathoptions.cxx b/svtools/source/config/pathoptions.cxx index e93f90b9383e..65eaefcb0dff 100644 --- a/svtools/source/config/pathoptions.cxx +++ b/svtools/source/config/pathoptions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pathoptions.cxx,v $ * - * $Revision: 1.53 $ + * $Revision: 1.54 $ * - * last change: $Author: mba $ $Date: 2002-03-28 15:59:47 $ + * last change: $Author: nf $ $Date: 2002-04-04 13:42:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -171,6 +171,7 @@ using namespace com::sun::star::uno; #define REPLACEMENT_CHINESE_TRADITIONAL ASCII_STR("chinese_traditional") #define REPLACEMENT_CHINESE_SIMPLIFIED ASCII_STR("chinese_simplified") //#define REPLACEMENT_PORTUGUESE ASCII_STR("portuguese") +#define REPLACEMENT_THAI ASCII_STR("thai"); #define STRPOS_NOTFOUND -1 @@ -715,7 +716,10 @@ OUString SvtPathOptions_Impl::SubstVar( const OUString& rVar ) case LANGUAGE_PORTUGUESE_BRAZILIAN : aReplacement = REPLACEMENT_PORTUGUESE; break ; */ - default : // no fallback any longer + case LANGUAGE_THAI : aReplacement = REPLACEMENT_THAI; + break; + + default : // fallback for L10N-framework => ISO-Code { String rLangStr; String rCountry; |