diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-06 17:03:03 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-06 17:03:03 -0700 |
commit | 879f7bcf41782940fff3ffcb3586d606361360c6 (patch) | |
tree | bb85d41d95397f75f494da572e84bb57d4312ab9 /res | |
parent | 0a59b500147cc038541f6f2897de7e28c15a12c1 (diff) | |
parent | 44fbbea071611f33fb8004b5684f5e342763d278 (diff) | |
download | packages_apps_Settings-879f7bcf41782940fff3ffcb3586d606361360c6.zip packages_apps_Settings-879f7bcf41782940fff3ffcb3586d606361360c6.tar.gz packages_apps_Settings-879f7bcf41782940fff3ffcb3586d606361360c6.tar.bz2 |
Merge change 6272 into donut
* changes:
Fix bug 1946195 by making use of the current Locale to set a default value in the language pref list (bug was no selection in the default language list). Fix half of bug 1956707 where speech rate value as read from the settings was translated to a ratio, which applied an improper speech rate on the TTS engine (bug was setting a default rate makes the TTS demo unintelligible). Moved logic to set the default value in the language pref list in a separate private method to improve readability. Changed default rate values so that normal is 1x and the fastest is 2x.
Diffstat (limited to 'res')
-rw-r--r-- | res/values/arrays.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 750b083..a470acc 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -88,10 +88,10 @@ <!-- Do not translate. --> <string-array name="tts_rate_values"> <item>60</item> + <item>80</item> <item>100</item> - <item>140</item> - <item>180</item> - <item>220</item> + <item>150</item> + <item>200</item> </string-array> <!-- Default pitch choices --> |