LCOV - code coverage report
Current view: top level - svtools/source/misc - langhelp.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 12 8.3 %
Date: 2014-11-03 Functions: 2 3 66.7 %
Legend: Lines: hit not hit

          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        1227 : }
      35             : 
      36             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10