[Libreoffice-commits] core.git: onlineupdate/source
Adolfo Jayme Barrientos
fitojb at ubuntu.com
Tue Mar 20 11:36:58 UTC 2018
onlineupdate/source/update/updater/progressui_gtk.cxx | 4 ++--
onlineupdate/source/update/updater/progressui_win.cxx | 12 ++++++------
2 files changed, 8 insertions(+), 8 deletions(-)
New commits:
commit 6e5a95c34c7d6817389c6d9aeb5206d821963f05
Author: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
Date: Tue Mar 20 05:35:42 2018 -0600
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
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;
More information about the Libreoffice-commits
mailing list