Kaydet (Commit) 6e5a95c3 authored tarafından Adolfo Jayme Barrientos's avatar Adolfo Jayme Barrientos

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
üst 4523a21c
...@@ -79,8 +79,8 @@ ShowProgressUI() ...@@ -79,8 +79,8 @@ ShowProgressUI()
StringTable strings; StringTable strings;
if (ReadStrings(ini_path, &strings) != OK) if (ReadStrings(ini_path, &strings) != OK)
{ {
strcpy(strings.title, "LibreOffice Updater"); strcpy(strings.title, "LibreOffice Update");
strcpy(strings.info, "This program is updating your LibreOffice installation."); strcpy(strings.info, "Please wait while we update your installation.");
} }
sWin = gtk_window_new(GTK_WINDOW_TOPLEVEL); sWin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
......
...@@ -228,15 +228,15 @@ InitProgressUIStrings() ...@@ -228,15 +228,15 @@ InitProgressUIStrings()
WCHAR filename[MAX_PATH]; WCHAR filename[MAX_PATH];
if (!GetStringsFile(filename)) if (!GetStringsFile(filename))
{ {
strcpy(sUIStrings.title, "LibreOffice Updater"); strcpy(sUIStrings.title, "LibreOffice Update");
strcpy(sUIStrings.info, "This program is updating your LibreOffice installation."); strcpy(sUIStrings.info, "Please wait while we update your installation.");
return 0; return 0;
} }
if (_waccess(filename, 04)) if (_waccess(filename, 04))
{ {
strcpy(sUIStrings.title, "LibreOffice Updater"); strcpy(sUIStrings.title, "LibreOffice Update");
strcpy(sUIStrings.info, "This program is updating your LibreOffice installation."); strcpy(sUIStrings.info, "Please wait while we update your installation.");
return 0; return 0;
} }
...@@ -244,8 +244,8 @@ InitProgressUIStrings() ...@@ -244,8 +244,8 @@ InitProgressUIStrings()
// bother showing UI. // bother showing UI.
if (ReadStrings(filename, &sUIStrings) != OK) if (ReadStrings(filename, &sUIStrings) != OK)
{ {
strcpy(sUIStrings.title, "LibreOffice Updater"); strcpy(sUIStrings.title, "LibreOffice Update");
strcpy(sUIStrings.info, "This program is updating your LibreOffice installation."); strcpy(sUIStrings.info, "Please wait while we update your installation.");
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment