summaryrefslogtreecommitdiff
path: root/onlineupdate
diff options
context:
space:
mode:
Diffstat (limited to 'onlineupdate')
-rw-r--r--onlineupdate/source/update/updater/progressui_gtk.cxx4
-rw-r--r--onlineupdate/source/update/updater/progressui_win.cxx12
2 files changed, 8 insertions, 8 deletions
diff --git a/onlineupdate/source/update/updater/progressui_gtk.cxx b/onlineupdate/source/update/updater/progressui_gtk.cxx
index 64d8b18d70ba..47d27ea02c17 100644
--- a/onlineupdate/source/update/updater/progressui_gtk.cxx
+++ b/onlineupdate/source/update/updater/progressui_gtk.cxx
@@ -79,8 +79,8 @@ ShowProgressUI()
StringTable strings;
if (ReadStrings(ini_path, &strings) != OK)
{
- strcpy(strings.title, "LibreOffice Updater");
- strcpy(strings.info, "This program is updating your LibreOffice installation.");
+ strcpy(strings.title, "LibreOffice Update");
+ strcpy(strings.info, "Please wait while we update your installation.");
}
sWin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
diff --git a/onlineupdate/source/update/updater/progressui_win.cxx b/onlineupdate/source/update/updater/progressui_win.cxx
index 24aed2c94247..12a80f3f7c91 100644
--- a/onlineupdate/source/update/updater/progressui_win.cxx
+++ b/onlineupdate/source/update/updater/progressui_win.cxx
@@ -228,15 +228,15 @@ InitProgressUIStrings()
WCHAR filename[MAX_PATH];
if (!GetStringsFile(filename))
{
- strcpy(sUIStrings.title, "LibreOffice Updater");
- strcpy(sUIStrings.info, "This program is updating your LibreOffice installation.");
+ strcpy(sUIStrings.title, "LibreOffice Update");
+ strcpy(sUIStrings.info, "Please wait while we update your installation.");
return 0;
}
if (_waccess(filename, 04))
{
- strcpy(sUIStrings.title, "LibreOffice Updater");
- strcpy(sUIStrings.info, "This program is updating your LibreOffice installation.");
+ strcpy(sUIStrings.title, "LibreOffice Update");
+ strcpy(sUIStrings.info, "Please wait while we update your installation.");
return 0;
}
@@ -244,8 +244,8 @@ InitProgressUIStrings()
// bother showing UI.
if (ReadStrings(filename, &sUIStrings) != OK)
{
- strcpy(sUIStrings.title, "LibreOffice Updater");
- strcpy(sUIStrings.info, "This program is updating your LibreOffice installation.");
+ strcpy(sUIStrings.title, "LibreOffice Update");
+ strcpy(sUIStrings.info, "Please wait while we update your installation.");
}
return 0;