summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2017-10-20 21:24:35 +0200
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2017-10-21 19:10:32 +0200
commite198087f32e98fdf569920a6f5fb51558919e2cb (patch)
tree289fa2515d672e32b4b2f6e0a4fb7cfd70502da7 /framework
parent96976553c41e8e7af47ad3d25927f5018279f6c7 (diff)
tdf#113295 Fix typo in translation domain name
The translations for the framework module go to fwk.mo files. This change will make LO look for them in the correct file name. Change-Id: Icca662bbdd6693a31f1acce59fbac77bdd36ae5f Reviewed-on: https://gerrit.libreoffice.org/43624 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/source/fwe/classes/fwkresid.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/fwe/classes/fwkresid.cxx b/framework/source/fwe/classes/fwkresid.cxx
index 4d421df5c4bd..203e8020edee 100644
--- a/framework/source/fwe/classes/fwkresid.cxx
+++ b/framework/source/fwe/classes/fwkresid.cxx
@@ -22,7 +22,7 @@
OUString FwkResId(const char* pId)
{
- static std::locale loc(Translate::Create("fwe"));
+ static std::locale loc(Translate::Create("fwk"));
return Translate::get(pId, loc);
}