summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorMarina Latini (CIB) <Marina.Latini@cib.de>2019-05-09 22:07:10 +0200
committerVasily Melenchuk <vasily.melenchuk@cib.de>2020-12-08 12:38:57 +0300
commite1efc87bb37ce46ce6d67920dc24e7be3df8f7da (patch)
tree2570664b6c3c99a5786ce70655f63d8aca73dbda /svtools
parente9e61aa30af25df0e10f726e57fee6d2ba74d2b3 (diff)
Add final CIB branding and product name update
- new brand folder and icon set - new icon set available in configure.ac and new CIB color for the startcenter - new LibreOffice powered by CIB product with SDK - new flat logo and main svg app - new Banner.bmp and Image.bmp for windows installer - new branding for MSI and splash screen - new branded locolor and hicolor icons Change-Id: Id583453910f50839dbe1f114afc5c6a4aa6c2e07
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/langhelp.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/misc/langhelp.cxx b/svtools/source/misc/langhelp.cxx
index bedd8d1205c5..afc826da7af9 100644
--- a/svtools/source/misc/langhelp.cxx
+++ b/svtools/source/misc/langhelp.cxx
@@ -29,6 +29,7 @@
void localizeWebserviceURI( OUString& rURI )
{
+ const OUString aPrefix = "?lang=";
OUString aLang = Application::GetSettings().GetUILanguageTag().getLanguage();
if ( aLang.equalsIgnoreAsciiCase("pt")
&& Application::GetSettings().GetUILanguageTag().getCountry().equalsIgnoreAsciiCase("br") )
@@ -43,6 +44,7 @@ void localizeWebserviceURI( OUString& rURI )
aLang = "zh-tw";
}
+ rURI += aPrefix;
rURI += aLang;
}