diff options
author | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-03-20 05:35:42 -0600 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-03-20 05:35:42 -0600 |
commit | 6e5a95c34c7d6817389c6d9aeb5206d821963f05 (patch) | |
tree | 6725428f6d59acae80adbd5258becc3df9e1e29c /onlineupdate/source | |
parent | 4523a21c6bcf8d57ce90cf074e5b088b6e829e68 (diff) |
updater: Tone down the geekiness in user-facing strings
Pro tip: The user doesn’t have to know that the updater is a separate program.
Change-Id: I04c447a16a322b7f4139e69f6cababc797148bb1
Diffstat (limited to 'onlineupdate/source')
-rw-r--r-- | onlineupdate/source/update/updater/progressui_gtk.cxx | 4 | ||||
-rw-r--r-- | onlineupdate/source/update/updater/progressui_win.cxx | 12 |
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; |