diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-28 23:56:05 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-28 23:56:05 +0000 |
commit | 666989abf69d6928f1be23669ab151dc95024bb1 (patch) | |
tree | a20ac2ca8e368fed4a1b030f03ff551d50a8e091 /chrome | |
parent | f7772088ff4e4579837bc30d862b9290529eea98 (diff) | |
download | chromium_src-666989abf69d6928f1be23669ab151dc95024bb1.zip chromium_src-666989abf69d6928f1be23669ab151dc95024bb1.tar.gz chromium_src-666989abf69d6928f1be23669ab151dc95024bb1.tar.bz2 |
linux: remove the word "Alpha" from all UI.
It mostly confuses the press.
Review URL: http://codereview.chromium.org/113978
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/first_run.cc | 4 | ||||
-rw-r--r-- | chrome/browser/first_run_gtk.cc | 2 | ||||
-rw-r--r-- | chrome/browser/resources/linux-splash-chrome.html | 11 | ||||
-rw-r--r-- | chrome/browser/resources/linux-splash.html | 11 |
4 files changed, 15 insertions, 13 deletions
diff --git a/chrome/browser/first_run.cc b/chrome/browser/first_run.cc index 540aa61..f0b0f74 100644 --- a/chrome/browser/first_run.cc +++ b/chrome/browser/first_run.cc @@ -25,7 +25,7 @@ const char kSentinelFile[] = "First Run"; // On other platforms de intentionally use a different file name, so // when the remainder of this file is implemented, we can switch to // the proper file name and users will get the first run interface again. -const char kSentinelFile[] = "First Run Alpha"; +const char kSentinelFile[] = "First Run Dev"; #endif // Gives the full path to the sentinel file. The file might not exist. @@ -43,7 +43,7 @@ bool GetFirstRunSentinelFilePath(FilePath* path) { return false; } #else - // TODO(port): logic as above. Not important for our "First Run Alpha" file. + // TODO(port): logic as above. Not important for our "First Run Dev" file. if (!PathService::Get(chrome::DIR_USER_DATA, &first_run_sentinel)) return false; #endif diff --git a/chrome/browser/first_run_gtk.cc b/chrome/browser/first_run_gtk.cc index 5447a3f..9525d91a 100644 --- a/chrome/browser/first_run_gtk.cc +++ b/chrome/browser/first_run_gtk.cc @@ -30,7 +30,7 @@ void DialogResponseCallback(GtkDialog* dialog, gint response, void OpenFirstRunDialog(Profile* profile, ProcessSingleton* process_singleton) { #if defined(GOOGLE_CHROME_BUILD) GtkWidget* dialog = gtk_dialog_new_with_buttons( - "Google Chrome Alpha", + "Google Chrome Dev Build", NULL, // No parent (GtkDialogFlags) (GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR), GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, diff --git a/chrome/browser/resources/linux-splash-chrome.html b/chrome/browser/resources/linux-splash-chrome.html index 9f12858..ee8b551 100644 --- a/chrome/browser/resources/linux-splash-chrome.html +++ b/chrome/browser/resources/linux-splash-chrome.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html lang="en-US"> <head> - <title>Google Chrome Alpha Warning</title> + <title>Google Chrome Dev Build Warning</title> <style> body { font-family: sans-serif; @@ -22,15 +22,16 @@ </head> <body> <center> - <h1>Google Chrome Alpha</h1> + <h1>Google Chrome Dev Build</h1> </center> <div class="text"> - <p>This is an <i>alpha</i> build of Google Chrome on Linux. The following, - significant chunks of functionality are known to be missing:</p> + <p>This is an <i>in-progress</i> build of Google Chrome on + Linux. The following significant chunks of functionality are + known to be missing:</p> <ul> - <li>Plugins, inc Flash (so no YouTube, Hulu etc)</li> + <li>Plugins, including Flash (so no YouTube, Hulu, etc.)</li> <li>Printing</li> <li>Complex text</li> <li>Complex tab dragging</li> diff --git a/chrome/browser/resources/linux-splash.html b/chrome/browser/resources/linux-splash.html index 0a2c893..e24fc9d 100644 --- a/chrome/browser/resources/linux-splash.html +++ b/chrome/browser/resources/linux-splash.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html lang="en-US"> <head> - <title>Chromium Alpha Warning</title> + <title>Chromium Dev Build Warning</title> <style> body { font-family: sans-serif; @@ -22,15 +22,16 @@ </head> <body> <center> - <h1>Chromium Alpha</h1> + <h1>Chromium Dev Build</h1> </center> <div class="text"> - <p>This is an <i>alpha</i> build of Chromium on Linux. The following, - significant chunks of functionality are known to be missing:</p> + <p>This is an <i>in-progress</i> build of Chromium on Linux. The + following significant chunks of functionality are known to be + missing:</p> <ul> - <li>Plugins, inc Flash (so no YouTube, Hulu etc)</li> + <li>Plugins, including Flash (so no YouTube, Hulu, etc.)</li> <li>Printing</li> <li>Complex text</li> <li>Complex tab dragging</li> |