Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 :
11 : #include <svtools/langhelp.hxx>
12 :
13 : #include <vcl/svapp.hxx>
14 : #include <vcl/settings.hxx>
15 : #include <rtl/ustring.hxx>
16 :
17 0 : void localizeWebserviceURI( OUString& rURI )
18 : {
19 0 : OUString aLang = Application::GetSettings().GetUILanguageTag().getLanguage();
20 0 : if ( aLang.equalsIgnoreAsciiCase("pt")
21 0 : && Application::GetSettings().GetUILanguageTag().getCountry().equalsIgnoreAsciiCase("br") )
22 : {
23 0 : aLang = "pt-br";
24 : }
25 0 : if ( aLang.equalsIgnoreAsciiCase("zh") )
26 : {
27 0 : if ( Application::GetSettings().GetUILanguageTag().getCountry().equalsIgnoreAsciiCase("cn") )
28 0 : aLang = "zh-cn";
29 0 : if ( Application::GetSettings().GetUILanguageTag().getCountry().equalsIgnoreAsciiCase("tw") )
30 0 : aLang = "zh-tw";
31 : }
32 :
33 0 : rURI += aLang;
34 0 : }
35 :
36 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|