arrays.xml revision 4bc220acc9d5582f9c4a979ce4f3c210abe295c3
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 dialog box entries -->
20    <string-array name="pref_camera_videoquality_entries" translatable="false">
21        <item>@string/pref_camera_videoquality_entry_0</item>
22        <item>@string/pref_camera_videoquality_entry_1</item>
23    </string-array>
24
25    <!-- Do not localize entryvalues -->
26    <string-array name="pref_camera_videoquality_entryvalues" translatable="false">
27        <item>0</item>
28        <item>1</item>
29    </string-array>
30
31    <!-- Camera Preferences Video Duration dialog box entries -->
32    <string-array name="pref_camera_video_duration_entries" translatable="false">
33        <item>@string/pref_camera_video_duration_entry_1</item>
34        <item>@string/pref_camera_video_duration_entry_10</item>
35        <item>@string/pref_camera_video_duration_entry_30</item>
36    </string-array>
37
38    <!-- Do not localize entryvalues -->
39    <string-array name="pref_camera_video_duration_entryvalues" translatable="false">
40        <item>1</item>
41        <item>10</item>
42        <item>30</item>
43    </string-array>
44
45    <!-- Camera Preferences Picture size dialog box entries -->
46    <string-array name="pref_camera_picturesize_entries" translatable="false">
47        <item>@string/pref_camera_picturesize_entry_2048x1536</item>
48        <item>@string/pref_camera_picturesize_entry_1600x1200</item>
49        <item>@string/pref_camera_picturesize_entry_1024x768</item>
50    </string-array>
51
52    <!-- Do not localize entryvalues -->
53    <string-array name="pref_camera_picturesize_entryvalues" translatable="false">
54        <item>2048x1536</item>
55        <item>1600x1200</item>
56        <item>1024x768</item>
57    </string-array>
58
59    <!-- Camera Preferences JPEG quality dialog box entries -->
60    <string-array name="pref_camera_jpegquality_entries" translatable="false">
61        <item>@string/pref_camera_jpegquality_entry_superfine</item>
62        <item>@string/pref_camera_jpegquality_entry_fine</item>
63        <item>@string/pref_camera_jpegquality_entry_normal</item>
64    </string-array>
65
66    <!-- Do not localize entryvalues -->
67    <string-array name="pref_camera_jpegquality_entryvalues" translatable="false">
68        <item>85</item>
69        <item>75</item>
70        <item>65</item>
71    </string-array>
72
73    <!-- Camera Preferences focus mode dialog box entries -->
74    <string-array name="pref_camera_focusmode_entries" translatable="false">
75        <item>@string/pref_camera_focusmode_entry_auto</item>
76        <item>@string/pref_camera_focusmode_entry_infinity</item>
77    </string-array>
78
79    <!-- Do not localize entryvalues -->
80    <string-array name="pref_camera_focusmode_entryvalues" translatable="false">
81        <item>@string/pref_camera_focusmode_value_auto</item>
82        <item>@string/pref_camera_focusmode_value_infinity</item>
83    </string-array>
84
85</resources>
86