summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2023-02-12 09:28:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-02-15 10:28:01 +0000
commita16c64ad808c3ef79fb9b8954c4f33e9e0ff855a (patch)
tree6484e9dbffd906030898e18010ef38995b2576de
parentf6704cb9145e69c4216d6ddf097f35183bbc4005 (diff)
tdf#153559: Untranslatable string in safemodedialog.cxx
Change-Id: I35bccb70bef74b6438c2744f693aff6d1842e894 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146830 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/svx/strings.hrc1
-rw-r--r--svx/source/dialog/SafeModeDialog.cxx2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/svx/strings.hrc b/include/svx/strings.hrc
index 76153cc0722d..c54d99529ee3 100644
--- a/include/svx/strings.hrc
+++ b/include/svx/strings.hrc
@@ -1395,6 +1395,7 @@
#define RID_SVXSTR_OUTLINENUM_DESCRIPTION_7 NC_("RID_SVXSTR_OUTLINENUM_DESCRIPTION_7", "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet")
#define RID_SVXSTR_SAFEMODE_ZIP_FAILURE NC_("RID_SVXSTR_SAFEMODE_ZIP_FAILURE", "The zip file could not be created.")
+#define RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED NC_("RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED", "Your user profile has been exported as 'libreoffice-profile.zip'.")
#define RID_SVXSTR_STYLEFAMILY_TABLEDESIGN NC_("RID_SVXSTR_STYLEFAMILY_TABLEDESIGN", "Table Design Styles")
diff --git a/svx/source/dialog/SafeModeDialog.cxx b/svx/source/dialog/SafeModeDialog.cxx
index 9da7fddfd25b..b499ae3d5911 100644
--- a/svx/source/dialog/SafeModeDialog.cxx
+++ b/svx/source/dialog/SafeModeDialog.cxx
@@ -283,7 +283,7 @@ IMPL_LINK(SafeModeDialog, CreateZipBtnHdl, weld::Button&, /*rBtn*/, void)
return;
}
- FileExportedDialog aDialog(m_xDialog.get(),"Your user profile has been exported as 'libreoffice-profile.zip'.");
+ FileExportedDialog aDialog(m_xDialog.get(), SvxResId(RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED));
aDialog.run();
}