arrays.xml revision 717ddf373190a7a0b85d57d2ffa4f4ed26abb5b1
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_high</item>
22        <item>@string/pref_video_quality_entry_low</item>
23        <item>@string/pref_video_quality_entry_youtube</item>
24    </string-array>
25
26    <string-array name="pref_video_quality_entryvalues" translatable="false">
27        <item>@string/pref_video_quality_high</item>
28        <item>@string/pref_video_quality_low</item>
29        <item>@string/pref_video_quality_youtube</item>
30    </string-array>
31
32    <array name="video_quality_largeicons" translatable="false">
33        <item>@drawable/ic_viewfinder_video_quality_high</item>
34        <item>@drawable/ic_viewfinder_video_quality_low</item>
35        <item>@drawable/ic_viewfinder_video_quality_youtube</item>
36    </array>
37
38    <!-- Camera Preferences Time Lapse Frame Interval entries -->
39    <string-array name="pref_video_time_lapse_frame_interval_entries" translatable="false">
40        <item>@string/pref_camera_recordlocation_entry_off</item>
41        <item>@string/pref_video_time_lapse_frame_interval_entry_1000</item>
42        <item>@string/pref_video_time_lapse_frame_interval_entry_1500</item>
43        <item>@string/pref_video_time_lapse_frame_interval_entry_2000</item>
44        <item>@string/pref_video_time_lapse_frame_interval_entry_2500</item>
45        <item>@string/pref_video_time_lapse_frame_interval_entry_3000</item>
46        <item>@string/pref_video_time_lapse_frame_interval_entry_5000</item>
47        <item>@string/pref_video_time_lapse_frame_interval_entry_10000</item>
48    </string-array>
49
50    <!-- These values correspond to the time interval between frame capture in millseconds
51    for time lapse recording -->
52    <string-array name="pref_video_time_lapse_frame_interval_entryvalues" translatable="false">
53        <item>0</item>
54        <item>1000</item>
55        <item>1500</item>
56        <item>2000</item>
57        <item>2500</item>
58        <item>3000</item>
59        <item>5000</item>
60        <item>10000</item>
61    </string-array>
62
63    <!-- Camera Preferences Picture size dialog box entries -->
64    <string-array name="pref_camera_picturesize_entries" translatable="false">
65        <!-- TODO: Change to a better name of the preference.
66                The first element of the array sould be
67                "pref_camera_picturesize_entry_2592x1944". However, we are too
68                late for the translation. Since we show the same label as the
69                second item, we just use the second one instead.
70        -->
71        <item>@string/pref_camera_picturesize_entry_2592x1936</item>
72        <item>@string/pref_camera_picturesize_entry_2592x1936</item>
73        <item>@string/pref_camera_picturesize_entry_2592x1936</item>
74        <item>@string/pref_camera_picturesize_entry_2048x1536</item>
75        <item>@string/pref_camera_picturesize_entry_1600x1200</item>
76        <item>@string/pref_camera_picturesize_entry_1280x960</item>
77        <item>@string/pref_camera_picturesize_entry_1024x768</item>
78        <item>@string/pref_camera_picturesize_entry_640x480</item>
79        <item>@string/pref_camera_picturesize_entry_320x240</item>
80    </string-array>
81
82    <!-- When launching the camera app first time, we will set the picture
83         size to the first one in the list that is also supported by the
84         driver -->
85    <string-array name="pref_camera_picturesize_entryvalues" translatable="false">
86        <item>2592x1944</item>
87        <item>2592x1936</item>
88        <item>2560x1920</item>
89        <item>2048x1536</item>
90        <item>1600x1200</item>
91        <item>1280x960</item>
92        <item>1024x768</item>
93        <item>640x480</item>
94        <item>320x240</item>
95    </string-array>
96
97    <!-- Camera Preferences focus mode dialog box entries -->
98    <string-array name="pref_camera_focusmode_entries" translatable="false">
99        <item>@string/pref_camera_focusmode_entry_auto</item>
100        <item>@string/pref_camera_focusmode_entry_infinity</item>
101        <item>@string/pref_camera_focusmode_entry_macro</item>
102    </string-array>
103
104    <string-array name="pref_camera_focusmode_entryvalues" translatable="false">
105        <item>auto</item>
106        <item>infinity</item>
107        <item>macro</item>
108    </string-array>
109
110    <!-- Camera Preferences flash mode dialog box entries -->
111    <string-array name="pref_camera_flashmode_entries" translatable="false">
112        <item>@string/pref_camera_flashmode_entry_auto</item>
113        <item>@string/pref_camera_flashmode_entry_on</item>
114        <item>@string/pref_camera_flashmode_entry_off</item>
115    </string-array>
116
117    <string-array name="pref_camera_flashmode_entryvalues" translatable="false">
118        <item>auto</item>
119        <item>on</item>
120        <item>off</item>
121    </string-array>
122
123    <array name="camera_flashmode_icons" translatable="false">
124        <item>@drawable/ic_flash_auto_holo_light</item>
125        <item>@drawable/ic_flash_on_holo_light</item>
126        <item>@drawable/ic_flash_off_holo_light</item>
127    </array>
128
129    <array name="camera_flashmode_largeicons" translatable="false">
130        <item>@drawable/ic_flash_auto_holo_light</item>
131        <item>@drawable/ic_flash_on_holo_light</item>
132        <item>@drawable/ic_flash_off_holo_light</item>
133    </array>
134
135    <!-- Videocamera Preferences flash mode dialog box entries -->
136    <string-array name="pref_camera_video_flashmode_entries" translatable="false">
137        <item>@string/pref_camera_flashmode_entry_on</item>
138        <item>@string/pref_camera_flashmode_entry_off</item>
139    </string-array>
140
141    <string-array name="pref_camera_video_flashmode_entryvalues" translatable="false">
142        <item>torch</item>
143        <item>off</item>
144    </string-array>
145
146    <array name="video_flashmode_icons" translatable="false">
147        <item>@drawable/ic_flash_on_holo_light</item>
148        <item>@drawable/ic_flash_off_holo_light</item>
149    </array>
150
151    <array name="video_flashmode_largeicons" translatable="false">
152        <item>@drawable/ic_flash_on_holo_light</item>
153        <item>@drawable/ic_flash_off_holo_light</item>
154    </array>
155
156    <string-array name="pref_camera_recordlocation_entryvalues" translatable="false">
157        <item>off</item>
158        <item>on</item>
159    </string-array>
160
161    <array name="pref_camera_recordlocation_entries" translatable="false">
162        <item>@string/pref_camera_recordlocation_entry_off</item>
163        <item>@string/pref_camera_recordlocation_entry_on</item>
164    </array>
165
166    <array name="camera_recordlocation_icons" translatable="false">
167        <item>@drawable/ic_menuselect_gps_off</item>
168        <item>@drawable/ic_menuselect_gps_on</item>
169    </array>
170
171    <array name="camera_recordlocation_largeicons" translatable="false">
172        <item>@drawable/ic_viewfinder_gps_off</item>
173        <item>@drawable/ic_viewfinder_gps_on</item>
174    </array>
175
176    <!-- Camera Preferences White Balance dialog box entries -->
177    <string-array name="pref_camera_whitebalance_entries" translatable="false">
178        <item>@string/pref_camera_whitebalance_entry_auto</item>
179        <item>@string/pref_camera_whitebalance_entry_incandescent</item>
180        <item>@string/pref_camera_whitebalance_entry_daylight</item>
181        <item>@string/pref_camera_whitebalance_entry_fluorescent</item>
182        <item>@string/pref_camera_whitebalance_entry_cloudy</item>
183    </string-array>
184
185    <string-array name="pref_camera_whitebalance_entryvalues" translatable="false">
186        <item>auto</item>
187        <item>incandescent</item>
188        <item>daylight</item>
189        <item>fluorescent</item>
190        <item>cloudy-daylight</item>
191    </string-array>
192
193    <array name="whitebalance_icons" translatable="false">
194        <item>@drawable/ic_white_balance_auto_holo_light</item>
195        <item>@drawable/ic_white_balance_incandescent_holo_light</item>
196        <item>@drawable/ic_white_balance_sunlight_holo_light</item>
197        <item>@drawable/ic_white_balance_fluorescent_holo_light</item>
198        <item>@drawable/ic_white_balance_cloudy_holo_light</item>
199    </array>
200
201    <array name="whitebalance_largeicons" translatable="false">
202        <item>@drawable/ic_white_balance_auto_holo_light</item>
203        <item>@drawable/ic_white_balance_incandescent_holo_light</item>
204        <item>@drawable/ic_white_balance_sunlight_holo_light</item>
205        <item>@drawable/ic_white_balance_fluorescent_holo_light</item>
206        <item>@drawable/ic_white_balance_cloudy_holo_light</item>
207    </array>
208
209    <!-- Camera Preferences Scene Mode dialog box entries -->
210    <string-array name="pref_camera_scenemode_entries" translatable="false">
211        <item>@string/pref_camera_scenemode_entry_auto</item>
212        <item>@string/pref_camera_scenemode_entry_action</item>
213        <item>@string/pref_camera_scenemode_entry_night</item>
214        <item>@string/pref_camera_scenemode_entry_sunset</item>
215        <item>@string/pref_camera_scenemode_entry_party</item>
216    </string-array>
217
218    <string-array name="pref_camera_scenemode_entryvalues" translatable="false">
219        <item>auto</item>
220        <item>action</item>
221        <item>night</item>
222        <item>sunset</item>
223        <item>party</item>
224    </string-array>
225
226    <array name="camera_id_entries" translatable="false">
227        <item>@string/pref_camera_id_entry_back</item>
228        <item>@string/pref_camera_id_entry_front</item>
229    </array>
230
231    <array name="camera_id_icons" translatable="false">
232        <item>@drawable/ic_menuselect_camera_facing_back</item>
233        <item>@drawable/ic_menuselect_camera_facing_front</item>
234    </array>
235
236    <array name="camera_id_largeicons" translatable="false">
237        <item>@drawable/ic_viewfinder_camera_facing_back</item>
238        <item>@drawable/ic_viewfinder_camera_facing_front</item>
239    </array>
240
241    <string-array name="pref_video_effect_entries" translatable="false">
242        <item>@string/effect_none</item>
243        <item>@string/effect_goofy_face_squeeze</item>
244        <item>@string/effect_goofy_face_big_eyes</item>
245        <item>@string/effect_goofy_face_big_mouth</item>
246        <item>@string/effect_goofy_face_small_mouth</item>
247        <item>@string/effect_goofy_face_big_nose</item>
248        <item>@string/effect_goofy_face_small_eyes</item>
249        <item>@string/effect_backdropper_space</item>
250        <item>@string/effect_backdropper_sunset</item>
251        <item>@string/effect_backdropper_disco</item>
252        <item>@string/effect_backdropper_gallery</item>
253    </string-array>
254
255    <string-array name="pref_video_effect_entryvalues" translatable="false">
256        <item>@string/pref_video_effect_default</item>
257        <item>goofy_face/squeeze</item>
258        <item>goofy_face/big_eyes</item>
259        <item>goofy_face/big_mouth</item>
260        <item>goofy_face/small_mouth</item>
261        <item>goofy_face/big_nose</item>
262        <item>goofy_face/small_eyes</item>
263        <item>backdropper/file:///system/media/video/AndroidInSpace.480p.mp4</item>
264        <item>backdropper/file:///system/media/video/Sunset.480p.mp4</item>
265        <item>backdropper/file:///system/media/video/Disco.480p.mp4</item>
266        <item>backdropper/gallery</item>
267    </string-array>
268
269    <array name="video_effect_icons" translatable="false">
270        <item>@drawable/ic_effects_holo_light</item>
271        <item>@drawable/ic_video_effects_faces_squeeze_holo_dark</item>
272        <item>@drawable/ic_video_effects_faces_big_eyes_holo_dark</item>
273        <item>@drawable/ic_video_effects_faces_big_mouth_holo_dark</item>
274        <item>@drawable/ic_video_effects_faces_small_mouth_holo_dark</item>
275        <item>@drawable/ic_video_effects_faces_big_nose_holo_dark</item>
276        <item>@drawable/ic_video_effects_faces_small_eyes_holo_dark</item>
277        <item>@drawable/ic_video_effects_background_intergalactic_holo</item>
278        <item>@drawable/ic_video_effects_background_fields_of_wheat_holo</item>
279        <item>@drawable/ic_video_effects_background_disco_holo</item>
280        <item>@drawable/ic_video_effects_background_normal_holo_dark</item>
281    </array>
282</resources>
283