OSDN Git Service

Code drop from //branches/cupcake/...@124589
[android-x86/packages-apps-Calendar.git] / res / values / arrays.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2007 The Android Open Source Project
3
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
7   
8           http://www.apache.org/licenses/LICENSE-2.0
9   
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
16
17 <resources>
18     <!-- Choices for the "Reminder minutes" spinner.
19          These must be kept in sync with the reminder_minutes_values array.
20     -->
21     <string-array name="reminder_minutes_labels">
22         <item>5 minutes</item>
23         <item>10 minutes</item>
24         <item>15 minutes</item>
25         <item>20 minutes</item>
26         <item>25 minutes</item>
27         <item>30 minutes</item>
28         <item>45 minutes</item>
29         <item>1 hour</item>
30         <item>2 hours</item>
31         <item>3 hours</item>
32         <item>12 hours</item>
33         <item>24 hours</item>
34         <item>2 days</item>
35         <item>1 week</item>
36     </string-array>
37     
38     <string-array name="reminder_minutes_values">
39         <item>"5"</item>
40         <item>"10"</item>
41         <item>"15"</item>
42         <item>"20"</item>
43         <item>"25"</item>
44         <item>"30"</item>
45         <item>"45"</item>
46         <item>"60"</item>
47         <item>"120"</item>
48         <item>"180"</item>
49         <item>"720"</item>
50         <item>"1440"</item>
51         <item>"2880"</item>
52         <item>"10080"</item>
53     </string-array>
54     
55     <string-array name="preferences_default_reminder_labels">
56         <item>None</item>
57         <item>5 minutes</item>
58         <item>10 minutes</item>
59         <item>15 minutes</item>
60         <item>20 minutes</item>
61         <item>25 minutes</item>
62         <item>30 minutes</item>
63         <item>45 minutes</item>
64         <item>1 hour</item>
65         <item>2 hours</item>
66         <item>3 hours</item>
67         <item>12 hours</item>
68         <item>24 hours</item>
69         <item>2 days</item>
70         <item>1 week</item>
71     </string-array>
72     
73     <string-array name="preferences_default_reminder_values">
74         <item>"0"</item>
75         <item>"5"</item>
76         <item>"10"</item>
77         <item>"15"</item>
78         <item>"20"</item>
79         <item>"25"</item>
80         <item>"30"</item>
81         <item>"45"</item>
82         <item>"60"</item>
83         <item>"120"</item>
84         <item>"180"</item>
85         <item>"720"</item>
86         <item>"1440"</item>
87         <item>"2880"</item>
88         <item>"10080"</item>
89     </string-array>
90     
91     <string-array name="preferences_alert_type_labels">
92         <item>Alert</item>
93         <item>Status bar notification</item>
94         <item>Off</item>
95     </string-array>
96     
97     <string-array name="preferences_alert_type_values">
98         <item>"0"</item>
99         <item>"1"</item>
100         <item>"2"</item>
101     </string-array>
102     
103     <string-array name="availability">
104         <item>Busy</item>
105         <item>Available</item>
106     </string-array>
107     
108     <string-array name="visibility">
109         <item>Default</item>
110         <item>Private</item>
111         <item>Public</item>
112     </string-array>
113     
114     <!-- Order matters, and note that the preference for which day the week starts on is handled
115          elsewhere (and needn't be addressed here). -->
116     <string-array name="day_labels">
117         <item>Sunday</item>
118         <item>Monday</item>
119         <item>Tuesday</item>
120         <item>Wednesday</item>
121         <item>Thursday</item>
122         <item>Friday</item>
123         <item>Saturday</item>
124     </string-array>
125     
126     <string-array name="ordinal_labels">
127         <item>first</item>
128         <item>second</item>
129         <item>third</item>
130         <item>fourth</item>
131         <item>last</item>
132     </string-array>
133
134     <!-- Invitation responses -->    
135     <string-array name="response_labels1">
136         <item>(No response)</item>
137         <item>Yes</item>
138         <item>Maybe</item>
139         <item>No</item>
140     </string-array>
141     <string-array name="response_labels2">
142         <item>Yes</item>
143         <item>Maybe</item>
144         <item>No</item>
145     </string-array>
146
147     <!-- The corresponding indices are defined in DeleteEventHelper.java -->
148     <string-array name="delete_repeating_labels">
149         <item>Only this event</item>
150         <item>This &amp; future events</item>
151         <item>All events</item>
152     </string-array>
153
154     <!-- The corresponding indices are defined in DeleteEventHelper.java -->
155     <!-- This is the same array as above (the "delete_repeating_labels" array,
156          except that the first element "Only this event" is removed.  This
157          array exists to work-around a bug in the CalendarProvider and sync
158          code where you can't delete one instance of a repeating event that
159          was created on the phone until that event has been synced to the server.
160      -->
161     <string-array name="delete_repeating_labels_no_selected">
162         <item>This &amp; future events</item>
163         <item>All events</item>
164     </string-array>
165 </resources>