Kaydet (Commit) 7c1f1198 authored tarafından Franklin Weng's avatar Franklin Weng Kaydeden (comit) Samuel Mehrbrodt

tdf#115795 Solve wrong redirect behavior of "Get Online Help"

When under locale zh-TW, Help > Get Online Help would use only "zh"
as the parameter of LOLang and sent it to hub.libreoffice.org, which
would redirect to Simplified Chinese forum instead of zh_TW
ask.libreoffice.org forum.  After discussing with Guilhem he
refactored the behavior of the Hub, use LOlocale instead of LOLang,
and keep LOLang for backward compatibility.  The LibreOffice sent
LOlocale instead to avoid this problem happening again.

Change-Id: Ia9348cff88723210f693e65260bb987826a3f3ea
Reviewed-on: https://gerrit.libreoffice.org/50503Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
üst e061f90a
...@@ -501,8 +501,8 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) ...@@ -501,8 +501,8 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
{ {
// Askbot has URL's normalized to languages, not locales // Askbot has URL's normalized to languages, not locales
// Get language from locale: ll or lll or ll-CC or lll-CC // Get language from locale: ll or lll or ll-CC or lll-CC
OUString aLang = LanguageTag(utl::ConfigManager::getLocale()).getLanguage();
OUString sURL("https://hub.libreoffice.org/forum/?LOlang=" + aLang); OUString sURL("https://hub.libreoffice.org/forum/?LOlocale=" + utl::ConfigManager::getLocale());
sfx2::openUriExternally(sURL, false); sfx2::openUriExternally(sURL, false);
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment