1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 * Copyright (C) 2008 The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 --> 17 18<resources> 19 <!-- Camera Preferences Video Quality entries --> 20 <string-array name="pref_video_quality_entries" translatable="false"> 21 <item>@string/pref_video_quality_entry_1080p</item> 22 <item>@string/pref_video_quality_entry_720p</item> 23 <item>@string/pref_video_quality_entry_480p</item> 24 </string-array> 25 26 <string-array name="pref_video_quality_entryvalues" translatable="false"> 27 <!-- The integer value of CamcorderProfile.QUALITY_1080P --> 28 <item>6</item> 29 <!-- The integer value of CamcorderProfile.QUALITY_720P --> 30 <item>@string/pref_video_quality_default</item> 31 <!-- The integer value of CamcorderProfile.QUALITY_480P --> 32 <item>4</item> 33 </string-array> 34 35 <array name="video_quality_largeicons" translatable="false"> 36 <item>@drawable/ic_quality_1080p</item> 37 <item>@drawable/ic_quality_720p</item> 38 <item>@drawable/ic_quality_480p</item> 39 </array> 40 41 <!-- Video Preferences Time Lapse Frame Interval icons --> 42 <array name="video_timelapse_largeicons" translatable="false"> 43 <item>@drawable/ic_timelapse_none</item> 44 <item>@drawable/ic_timelapse_1</item> 45 <item>@drawable/ic_timelapse_1_5</item> 46 <item>@drawable/ic_timelapse_2</item> 47 <item>@drawable/ic_timelapse_2_5</item> 48 <item>@drawable/ic_timelapse_3</item> 49 <item>@drawable/ic_timelapse_5</item> 50 <item>@drawable/ic_timelapse_10</item> 51 </array> 52 53 <!-- Camera Preferences Time Lapse Frame Interval entries --> 54 <string-array name="pref_video_time_lapse_frame_interval_entries" translatable="false"> 55 <item>@string/pref_camera_recordlocation_entry_off</item> 56 <item>@string/pref_video_time_lapse_frame_interval_entry_1000</item> 57 <item>@string/pref_video_time_lapse_frame_interval_entry_1500</item> 58 <item>@string/pref_video_time_lapse_frame_interval_entry_2000</item> 59 <item>@string/pref_video_time_lapse_frame_interval_entry_2500</item> 60 <item>@string/pref_video_time_lapse_frame_interval_entry_3000</item> 61 <item>@string/pref_video_time_lapse_frame_interval_entry_5000</item> 62 <item>@string/pref_video_time_lapse_frame_interval_entry_10000</item> 63 </string-array> 64 65 <!-- These values correspond to the time interval between frame capture in millseconds 66 for time lapse recording --> 67 <string-array name="pref_video_time_lapse_frame_interval_entryvalues" translatable="false"> 68 <item>0</item> 69 <item>1000</item> 70 <item>1500</item> 71 <item>2000</item> 72 <item>2500</item> 73 <item>3000</item> 74 <item>5000</item> 75 <item>10000</item> 76 </string-array> 77 78 <!-- Camera Preferences Picture size dialog box entries --> 79 <string-array name="pref_camera_picturesize_entries" translatable="false"> 80 <!-- TODO: Change to a better name of the preference. 81 The first element of the array sould be 82 "pref_camera_picturesize_entry_2592x1944". However, we are too 83 late for the translation. Since we show the same label as the 84 second item, we just use the second one instead. 85 --> 86 <item>@string/pref_camera_picturesize_entry_2592x1936</item> 87 <item>@string/pref_camera_picturesize_entry_2592x1936</item> 88 <item>@string/pref_camera_picturesize_entry_2592x1936</item> 89 <item>@string/pref_camera_picturesize_entry_2048x1536</item> 90 <item>@string/pref_camera_picturesize_entry_1600x1200</item> 91 <item>@string/pref_camera_picturesize_entry_1280x960</item> 92 <item>@string/pref_camera_picturesize_entry_1024x768</item> 93 <item>@string/pref_camera_picturesize_entry_640x480</item> 94 <item>@string/pref_camera_picturesize_entry_320x240</item> 95 </string-array> 96 97 <!-- When launching the camera app first time, we will set the picture 98 size to the first one in the list that is also supported by the 99 driver --> 100 <string-array name="pref_camera_picturesize_entryvalues" translatable="false"> 101 <item>2592x1944</item> 102 <item>2592x1936</item> 103 <item>2560x1920</item> 104 <item>2048x1536</item> 105 <item>1600x1200</item> 106 <item>1280x960</item> 107 <item>1024x768</item> 108 <item>640x480</item> 109 <item>320x240</item> 110 </string-array> 111 112 <!-- Camera Preferences focus mode dialog box entries --> 113 <string-array name="pref_camera_focusmode_entries" translatable="false"> 114 <item>@string/pref_camera_focusmode_entry_auto</item> 115 <item>@string/pref_camera_focusmode_entry_infinity</item> 116 <item>@string/pref_camera_focusmode_entry_macro</item> 117 </string-array> 118 119 <string-array name="pref_camera_focusmode_entryvalues" translatable="false"> 120 <item>auto</item> 121 <item>infinity</item> 122 <item>macro</item> 123 </string-array> 124 125 <!-- Camera Preferences flash mode dialog box entries --> 126 <string-array name="pref_camera_flashmode_entries" translatable="false"> 127 <item>@string/pref_camera_flashmode_entry_auto</item> 128 <item>@string/pref_camera_flashmode_entry_on</item> 129 <item>@string/pref_camera_flashmode_entry_off</item> 130 </string-array> 131 132 <string-array name="pref_camera_flashmode_entryvalues" translatable="false"> 133 <item>auto</item> 134 <item>on</item> 135 <item>off</item> 136 </string-array> 137 138 <array name="camera_flashmode_icons" translatable="false"> 139 <item>@drawable/ic_flash_auto_holo_light</item> 140 <item>@drawable/ic_flash_on_holo_light</item> 141 <item>@drawable/ic_flash_off_holo_light</item> 142 </array> 143 144 <array name="camera_flashmode_largeicons" translatable="false"> 145 <item>@drawable/ic_flash_auto_holo_light</item> 146 <item>@drawable/ic_flash_on_holo_light</item> 147 <item>@drawable/ic_flash_off_holo_light</item> 148 </array> 149 150 <!-- Videocamera Preferences flash mode dialog box entries --> 151 <string-array name="pref_camera_video_flashmode_entries" translatable="false"> 152 <item>@string/pref_camera_flashmode_entry_on</item> 153 <item>@string/pref_camera_flashmode_entry_off</item> 154 </string-array> 155 156 <string-array name="pref_camera_video_flashmode_entryvalues" translatable="false"> 157 <item>torch</item> 158 <item>off</item> 159 </string-array> 160 161 <array name="video_flashmode_icons" translatable="false"> 162 <item>@drawable/ic_flash_on_holo_light</item> 163 <item>@drawable/ic_flash_off_holo_light</item> 164 </array> 165 166 <array name="video_flashmode_largeicons" translatable="false"> 167 <item>@drawable/ic_flash_on_holo_light</item> 168 <item>@drawable/ic_flash_off_holo_light</item> 169 </array> 170 171 <string-array name="pref_camera_recordlocation_entryvalues" translatable="false"> 172 <item>off</item> 173 <item>on</item> 174 </string-array> 175 176 <array name="pref_camera_recordlocation_entries" translatable="false"> 177 <item>@string/pref_camera_recordlocation_entry_off</item> 178 <item>@string/pref_camera_recordlocation_entry_on</item> 179 </array> 180 181 <array name="camera_recordlocation_icons" translatable="false"> 182 <item>@drawable/ic_menuselect_gps_off</item> 183 <item>@drawable/ic_menuselect_gps_on</item> 184 </array> 185 186 <array name="camera_recordlocation_largeicons" translatable="false"> 187 <item>@drawable/ic_viewfinder_gps_off</item> 188 <item>@drawable/ic_viewfinder_gps_on</item> 189 </array> 190 191 <!-- Camera Preferences White Balance dialog box entries --> 192 <string-array name="pref_camera_whitebalance_entries" translatable="false"> 193 <item>@string/pref_camera_whitebalance_entry_auto</item> 194 <item>@string/pref_camera_whitebalance_entry_incandescent</item> 195 <item>@string/pref_camera_whitebalance_entry_daylight</item> 196 <item>@string/pref_camera_whitebalance_entry_fluorescent</item> 197 <item>@string/pref_camera_whitebalance_entry_cloudy</item> 198 </string-array> 199 200 <string-array name="pref_camera_whitebalance_entryvalues" translatable="false"> 201 <item>auto</item> 202 <item>incandescent</item> 203 <item>daylight</item> 204 <item>fluorescent</item> 205 <item>cloudy-daylight</item> 206 </string-array> 207 208 <array name="whitebalance_icons" translatable="false"> 209 <item>@drawable/ic_white_balance_auto_holo_light</item> 210 <item>@drawable/ic_white_balance_incandescent_holo_light</item> 211 <item>@drawable/ic_white_balance_sunlight_holo_light</item> 212 <item>@drawable/ic_white_balance_fluorescent_holo_light</item> 213 <item>@drawable/ic_white_balance_cloudy_holo_light</item> 214 </array> 215 216 <array name="whitebalance_largeicons" translatable="false"> 217 <item>@drawable/ic_white_balance_auto_holo_light</item> 218 <item>@drawable/ic_white_balance_incandescent_holo_light</item> 219 <item>@drawable/ic_white_balance_sunlight_holo_light</item> 220 <item>@drawable/ic_white_balance_fluorescent_holo_light</item> 221 <item>@drawable/ic_white_balance_cloudy_holo_light</item> 222 </array> 223 224 <!-- Camera Preferences Scene Mode dialog box entries --> 225 <string-array name="pref_camera_scenemode_entries" translatable="false"> 226 <item>@string/pref_camera_scenemode_entry_auto</item> 227 <item>@string/pref_camera_scenemode_entry_action</item> 228 <item>@string/pref_camera_scenemode_entry_night</item> 229 <item>@string/pref_camera_scenemode_entry_sunset</item> 230 <item>@string/pref_camera_scenemode_entry_party</item> 231 </string-array> 232 233 <string-array name="pref_camera_scenemode_entryvalues" translatable="false"> 234 <item>auto</item> 235 <item>action</item> 236 <item>night</item> 237 <item>sunset</item> 238 <item>party</item> 239 </string-array> 240 241 <array name="camera_id_entries" translatable="false"> 242 <item>@string/pref_camera_id_entry_back</item> 243 <item>@string/pref_camera_id_entry_front</item> 244 </array> 245 246 <array name="camera_id_icons" translatable="false"> 247 <item>@drawable/ic_menuselect_camera_facing_back</item> 248 <item>@drawable/ic_menuselect_camera_facing_front</item> 249 </array> 250 251 <array name="camera_id_largeicons" translatable="false"> 252 <item>@drawable/ic_viewfinder_camera_facing_back</item> 253 <item>@drawable/ic_viewfinder_camera_facing_front</item> 254 </array> 255 256 <string-array name="pref_video_effect_entries" translatable="false"> 257 <item>@string/effect_none</item> 258 <item>@string/effect_goofy_face_squeeze</item> 259 <item>@string/effect_goofy_face_big_eyes</item> 260 <item>@string/effect_goofy_face_big_mouth</item> 261 <item>@string/effect_goofy_face_small_mouth</item> 262 <item>@string/effect_goofy_face_big_nose</item> 263 <item>@string/effect_goofy_face_small_eyes</item> 264 <item>@string/effect_backdropper_space</item> 265 <item>@string/effect_backdropper_sunset</item> 266 <item>@string/effect_backdropper_gallery</item> 267 </string-array> 268 269 <string-array name="pref_video_effect_entryvalues" translatable="false"> 270 <item>@string/pref_video_effect_default</item> 271 <item>goofy_face/squeeze</item> 272 <item>goofy_face/big_eyes</item> 273 <item>goofy_face/big_mouth</item> 274 <item>goofy_face/small_mouth</item> 275 <item>goofy_face/big_nose</item> 276 <item>goofy_face/small_eyes</item> 277 <item>backdropper/file:///system/media/video/AndroidInSpace.480p.mp4</item> 278 <item>backdropper/file:///system/media/video/Sunset.480p.mp4</item> 279 <item>backdropper/gallery</item> 280 </string-array> 281 282 <array name="video_effect_icons" translatable="false"> 283 <item>@drawable/ic_effects_holo_light</item> 284 <item>@drawable/ic_video_effects_faces_squeeze_holo_dark</item> 285 <item>@drawable/ic_video_effects_faces_big_eyes_holo_dark</item> 286 <item>@drawable/ic_video_effects_faces_big_mouth_holo_dark</item> 287 <item>@drawable/ic_video_effects_faces_small_mouth_holo_dark</item> 288 <item>@drawable/ic_video_effects_faces_big_nose_holo_dark</item> 289 <item>@drawable/ic_video_effects_faces_small_eyes_holo_dark</item> 290 <item>@drawable/ic_video_effects_background_intergalactic_holo</item> 291 <item>@drawable/ic_video_effects_background_fields_of_wheat_holo</item> 292 <item>@drawable/ic_video_effects_background_normal_holo_dark</item> 293 </array> 294 295 <!-- Default focus mode setting.--> 296 <string-array name="pref_camera_focusmode_default_array" translatable="false"> 297 <item>continuous-picture</item> 298 <item>auto</item> 299 </string-array> 300</resources> 301