diff options
author | Cheng-Ru Lin <owenlin@google.com> | 2009-09-26 04:46:06 +0800 |
---|---|---|
committer | Cheng-Ru Lin <owenlin@google.com> | 2009-09-26 09:50:02 +0800 |
commit | a8bbcd7ce25aada705561852ea9f356dc38c0f43 (patch) | |
tree | 77e5030b3f1b167ecac9515f3c0612e70b481fdb /res/values | |
parent | c801d7371323d59f584d8dddaae104d8775f48cd (diff) | |
download | LegacyCamera-a8bbcd7ce25aada705561852ea9f356dc38c0f43.zip LegacyCamera-a8bbcd7ce25aada705561852ea9f356dc38c0f43.tar.gz LegacyCamera-a8bbcd7ce25aada705561852ea9f356dc38c0f43.tar.bz2 |
Change the checkbox style to list style for record location preference.
Change-Id: Ie209887169623f090df0ee7a85f2709b4a54e202
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/arrays.xml | 10 | ||||
-rw-r--r-- | res/values/strings.xml | 7 |
2 files changed, 15 insertions, 2 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 1aecca5..2b035bb 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -103,6 +103,16 @@ <item>@drawable/ic_dialog_flash_on</item> </array> + <string-array name="pref_camera_recordlocation_entryvalues" translatable="false"> + <item>false</item> + <item>true</item> + </string-array> + + <array name="pref_camera_recordlocation_entries" translatable="false"> + <item>@string/pref_camera_recordlocation_entry_off</item> + <item>@string/pref_camera_recordlocation_entry_on</item> + </array> + <array name="flash_icons"> <item>@drawable/ic_viewfinder_flash_auto</item> <item>@drawable/ic_viewfinder_flash_on</item> diff --git a/res/values/strings.xml b/res/values/strings.xml index 16c3682..e19fcfc 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -318,8 +318,11 @@ <!-- Settings screen, setting title text --> <string name="pref_camera_recordlocation_title">Store location</string> - <!-- Settings screen, setting summary text --> - <string name="pref_camera_recordlocation_summary">Record location in picture data</string> + <string name="pref_camera_recordlocation_default" translatable="false">false</string> + + <!-- Settings screen, Record location dialog choices --> + <string name="pref_camera_recordlocation_entry_off">Off</string> + <string name="pref_camera_recordlocation_entry_on">On</string> <!-- Default video quality setting. A numerical value. --> <string name="pref_camera_videoquality_default" translatable="false">1</string> |