mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 664774 - Loading and Install text has mixed capitalization. r=mfinkle
This commit is contained in:
parent
cadd29da57
commit
ef7a9d534c
@ -139,7 +139,7 @@ abstract public class GeckoApp
|
||||
mLibLoadThread.join();
|
||||
} catch (InterruptedException ie) {}
|
||||
surfaceView.mSplashStatusMsg =
|
||||
getResources().getString(R.string.splash_screen_label);
|
||||
getResources().getString(R.string.splash_screen_loading);
|
||||
surfaceView.drawSplashScreen();
|
||||
// unpack files in the components directory
|
||||
try {
|
||||
@ -260,10 +260,10 @@ abstract public class GeckoApp
|
||||
new File(getApplication().getPackageResourcePath()).lastModified()
|
||||
>= libxulFile.lastModified()))
|
||||
surfaceView.mSplashStatusMsg =
|
||||
getResources().getString(R.string.splash_screen_installing);
|
||||
getResources().getString(R.string.splash_screen_installing_libs);
|
||||
else
|
||||
surfaceView.mSplashStatusMsg =
|
||||
getResources().getString(R.string.splash_screen_label);
|
||||
getResources().getString(R.string.splash_screen_loading);
|
||||
mLibLoadThread.start();
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
<!ENTITY splash_screen_label "loading">
|
||||
<!ENTITY splash_screen_installing "installing libraries\u2026">
|
||||
|
||||
<!ENTITY splash_screen_loading "Loading">
|
||||
<!ENTITY splash_screen_installing_libs "Installing libraries\u2026">
|
||||
<!ENTITY splash_firstrun "Setting up &brandShortName;\u2026">
|
||||
|
||||
<!ENTITY no_space_to_start_error "There is not enough space available for &brandShortName; to start.">
|
||||
<!ENTITY error_loading_file "An error occurred when trying to load files required to run &brandShortName;">
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
#includesubst @STRINGSPATH@
|
||||
]>
|
||||
<resources>
|
||||
<string name="splash_screen_label">&splash_screen_label;</string>
|
||||
<string name="splash_screen_installing">&splash_screen_installing;</string>
|
||||
<string name="splash_screen_loading">&splash_screen_loading;</string>
|
||||
<string name="splash_screen_installing_libs">&splash_screen_installing_libs;</string>
|
||||
<string name="splash_firstrun">&splash_firstrun;</string>
|
||||
<string name="no_space_to_start_error">&no_space_to_start_error;</string>
|
||||
<string name="error_loading_file">&error_loading_file;</string>
|
||||
|
Loading…
Reference in New Issue
Block a user