include/svx/strings.hrc              |    1 +
 svx/source/dialog/SafeModeDialog.cxx |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a16c64ad808c3ef79fb9b8954c4f33e9e0ff855a
Author:     Julien Nabet <serval2...@yahoo.fr>
AuthorDate: Sun Feb 12 09:28:47 2023 +0100
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Wed Feb 15 10:28:01 2023 +0000

    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 <serval2...@yahoo.fr>

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();
 }
 

Reply via email to