Fix typo in code

Change-Id: I78900dfd2314fc9b716ef40397229f24e962865f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160780
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini 2023-12-14 16:48:56 +01:00 committed by Julien Nabet
parent 437062f293
commit f8a288fdeb
2 changed files with 2 additions and 2 deletions

View file

@ -79,6 +79,6 @@
#define STR_RELOADEDITABLE_MSG NC_("STR_RELOADEDITABLE_MSG", "Document file '$(ARG1)' is now editable \n\nReload this document for editing?")
#define STR_RELOADEDITABLE_BTN NC_("STR_RELOADEDITABLE_BTN", "~Reload")
#define STR_LOADREADONLY_MSG NC_("STR_LOADREADONLY_MSG", "The author would like you to open '$(ARG1)' as read-only unless you need to make changes. Open as read-only?")
#define STR_VERIFIY_CERT NC_("STR_VERIFIY_CERT", "You need to view the certificate first.")
#define STR_VERIFY_CERT NC_("STR_VERIFY_CERT", "You need to view the certificate first.")
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View file

@ -156,7 +156,7 @@ void MacroWarning::EnableOkBtn(bool bEnable)
{
mxEnableBtn->set_sensitive(bEnable);
std::locale aResLocale(Translate::Create("uui"));
mxEnableBtn->set_tooltip_text(bEnable ? "" : Translate::get(STR_VERIFIY_CERT, aResLocale));
mxEnableBtn->set_tooltip_text(bEnable ? "" : Translate::get(STR_VERIFY_CERT, aResLocale));
}
void MacroWarning::SetStorage( const css::uno::Reference < css::embed::XStorage >& rxStore,