From 101a79cc4d13a1f566c1b97c1329813eb7c61bcf Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Wed, 13 Dec 2017 19:17:48 +0100 Subject: lokdialog: Allow switching language of some of the ResMgr's. This way, it is possible to have all the strings translated in dialogs even when different users use different languages. [It was already possible to have different languages previously, but not everything in the dialog has switched - like the buttons at the bottom of the dialogs etc.] Change-Id: I29a5ae6d31a370eec60397884200b684ec1bf5b9 Reviewed-on: https://gerrit.libreoffice.org/46417 Reviewed-by: Michael Meeks Tested-by: Michael Meeks Reviewed-on: https://gerrit.libreoffice.org/46979 Tested-by: Jenkins --- accessibility/source/helper/accresmgr.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'accessibility') diff --git a/accessibility/source/helper/accresmgr.cxx b/accessibility/source/helper/accresmgr.cxx index 7bf55e120737..37b8b9f56b33 100644 --- a/accessibility/source/helper/accresmgr.cxx +++ b/accessibility/source/helper/accresmgr.cxx @@ -22,8 +22,7 @@ OUString AccResId(const char* pId) { - static std::locale loc = Translate::Create("acc"); - return Translate::get(pId, loc); + return Translate::get(pId, Translate::Create("acc")); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit