summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorMarina Latini (CIB) <Marina.Latini@cib.de>2019-05-09 22:07:10 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2019-06-17 13:14:23 +0200
commitc3c9324ceae2d4840f039dcf426df4a45d237424 (patch)
treef37477c6fc833b4c176613397315007c47f60302 /svtools
parente0fc56927af351570f0042107a07637a0cc8a4fd (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 75ce24b589a3..c48fa7c6b87a 100644
--- a/svtools/source/misc/langhelp.cxx
+++ b/svtools/source/misc/langhelp.cxx
@@ -25,6 +25,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") )
@@ -39,6 +40,7 @@ void localizeWebserviceURI( OUString& rURI )
aLang = "zh-tw";
}
+ rURI += aPrefix;
rURI += aLang;
}