summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlikaid <likaid@codeaurora.org>2015-09-06 10:11:20 +0800
committerlikaid <likaid@codeaurora.org>2015-09-06 10:11:20 +0800
commitdbdcb430566877bd5cf54530f2750c805f2eaa1d (patch)
tree3124ef666b59709890795310c905d3214e623559
parent007b0d24e854630caa4fdf07899e3aa5f4ad301b (diff)
downloadandroid_packages_apps_Snap-dbdcb430566877bd5cf54530f2750c805f2eaa1d.tar.gz
android_packages_apps_Snap-dbdcb430566877bd5cf54530f2750c805f2eaa1d.tar.bz2
android_packages_apps_Snap-dbdcb430566877bd5cf54530f2750c805f2eaa1d.zip
SnapdragonCamera: Add Chinese string for makeup level
The makeup level was defined as "Low" "Mid" and "High" with hard code English strings, which could not be changed after system language changed. Add Chinese strings for them in string.xml file. Change-Id: Icb5b570791dfa19494bde9d321188620ca675a35 CRs-Fixed: 892963
-rw-r--r--res/values-zh-rCN/strings.xml3
-rw-r--r--res/values/qcomarrays.xml6
-rw-r--r--res/values/qcomstrings.xml3
3 files changed, 9 insertions, 3 deletions
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
index 4ea9734b5..044cb6db7 100644
--- a/res/values-zh-rCN/strings.xml
+++ b/res/values-zh-rCN/strings.xml
@@ -534,6 +534,9 @@
<string name="pref_camera_tsmakeup_title">美颜</string>
<string name="pref_camera_tsmakeup_entry_on">开</string>
<string name="pref_camera_tsmakeup_entry_off">关</string>
+ <string name="pref_camera_tsmakeup_entry_low">低</string>
+ <string name="pref_camera_tsmakeup_entry_mid">中</string>
+ <string name="pref_camera_tsmakeup_entry_high">高</string>
<string name="pref_camera_tsmakeup_custom">自定义</string>
<string name="pref_camera_tsmakeup_level_whiten">美白</string>
<string name="pref_camera_tsmakeup_level_clean">磨皮</string>
diff --git a/res/values/qcomarrays.xml b/res/values/qcomarrays.xml
index a197a1958..78d796dd3 100644
--- a/res/values/qcomarrays.xml
+++ b/res/values/qcomarrays.xml
@@ -785,9 +785,9 @@
<!-- Camera Preferences Color effect dialog box entries -->
<string-array name="pref_camera_tsmakeup_level_entries" translatable="false">
<item>@string/pref_camera_tsmakeup_entry_off</item>
- <item>Low</item>
- <item>Mid</item>
- <item>High</item>
+ <item>@string/pref_camera_tsmakeup_entry_low</item>
+ <item>@string/pref_camera_tsmakeup_entry_mid</item>
+ <item>@string/pref_camera_tsmakeup_entry_high</item>
<item>@string/pref_camera_tsmakeup_custom</item>
</string-array>
diff --git a/res/values/qcomstrings.xml b/res/values/qcomstrings.xml
index deb578dfb..9e5e152d0 100644
--- a/res/values/qcomstrings.xml
+++ b/res/values/qcomstrings.xml
@@ -877,6 +877,9 @@
<string name="pref_camera_tsmakeup_title">Beautification</string>
<string name="pref_camera_tsmakeup_entry_on">On</string>
<string name="pref_camera_tsmakeup_entry_off">Off</string>
+ <string name="pref_camera_tsmakeup_entry_low">Low</string>
+ <string name="pref_camera_tsmakeup_entry_mid">Mid</string>
+ <string name="pref_camera_tsmakeup_entry_high">High</string>
<string name="pref_camera_tsmakeup_default" translatable="false">Off</string>
<string name="pref_camera_tsmakeup_level_default" translatable="false">60</string>
<string name="pref_camera_tsmakeup_custom">Custom</string>