~ubuntu-branches/ubuntu/vivid/alarm-clock-applet/vivid

« back to all changes in this revision

Viewing changes to src/alarm-clock.schemas

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-05-30 23:24:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090530232427-88on1j2ily4ajxdz
Tags: upstream-0.2.6
ImportĀ upstreamĀ versionĀ 0.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<gconfschemafile>
 
3
        <schemalist>
 
4
        
 
5
        <!--
 
6
        Applet specific:
 
7
        -->
 
8
        
 
9
                <schema>
 
10
                <key>/schemas/apps/alarm_clock/prefs/show_label</key>
 
11
                <owner>alarm-clock</owner>
 
12
                        <type>bool</type>
 
13
                        <locale name="C">
 
14
                                <default>true</default>
 
15
                                <short>Show a label on the applet or not.</short>
 
16
                                <long>Whether the applet should have a label on the right side
 
17
                                          of the icon, indicating its state.</long>
 
18
                        </locale>
 
19
                </schema>
 
20
                
 
21
                <schema>
 
22
                <key>/schemas/apps/alarm_clock/prefs/label_type</key>
 
23
                <owner>alarm-clock</owner>
 
24
                        <type>string</type>
 
25
                        <locale name="C">
 
26
                                <default>alarm-time</default>
 
27
                                <short>Type of label to display.</short>
 
28
                                <long>The type of label to display if show_label is true.
 
29
                                          Can be either "alarm-time" for showing the current alarm time of the
 
30
                                          closest alarm (read: first one to trigger) or "remaining-time" for showing 
 
31
                                          the time remaining until the closest alarm goes off.
 
32
                                </long>
 
33
                        </locale>
 
34
                </schema>
 
35
        
 
36
        
 
37
        
 
38
        <!--
 
39
        Alarm specific:
 
40
        -->
 
41
        
 
42
        <schema>
 
43
                <key>/schemas/apps/alarm_clock/alarm/type</key>
 
44
                <owner>alarm-clock</owner>
 
45
                        <type>string</type>
 
46
                        <locale name="C">
 
47
                                <default>clock</default>
 
48
                                <short>Alarm type</short>
 
49
                                <long>The type of the alarm. Either "clock" for an alarm which triggers
 
50
                                          at a specific time of day or "timer" for an alarm which triggers
 
51
                                          after a specified period of time.</long>
 
52
                        </locale>
 
53
                </schema>
 
54
                
 
55
                
 
56
                
 
57
                <schema>
 
58
                <key>/schemas/apps/alarm_clock/alarm/timestamp</key>
 
59
                <owner>alarm-clock</owner>
 
60
                        <type>int</type>
 
61
                        <locale name="C">
 
62
                                <default>0</default>
 
63
                                <short>Alarm timestamp</short>
 
64
                                <long>The UNIX timestamp for the alarm.</long>
 
65
                        </locale>
 
66
                </schema>
 
67
                
 
68
        
 
69
                <schema>
 
70
                <key>/schemas/apps/alarm_clock/alarm/time</key>
 
71
                <owner>alarm-clock</owner>
 
72
                        <type>int</type>
 
73
                        <locale name="C">
 
74
                                <default>0</default>
 
75
                                <short>Alarm time</short>
 
76
                                <long>The time (GMT) for the alarm.</long>
 
77
                        </locale>
 
78
                </schema>
 
79
                
 
80
                
 
81
                <schema>
 
82
                <key>/schemas/apps/alarm_clock/alarm/message</key>
 
83
                <owner>alarm-clock</owner>
 
84
                        <type>string</type>
 
85
                        <locale name="C">
 
86
                                <default>Alarm!</default>
 
87
                                <short>Message describing this alarm.</short>
 
88
                                <long>A short message which will be displayed when the alarm goes off.</long>
 
89
                        </locale>
 
90
                </schema>
 
91
                
 
92
                <schema>
 
93
                <key>/schemas/apps/alarm_clock/alarm/active</key>
 
94
                <owner>alarm-clock</owner>
 
95
                        <type>bool</type>
 
96
                        <locale name="C">
 
97
                                <default>false</default>
 
98
                                <short>The running state of the alarm.</short>
 
99
                                <long>If true, indicates that the alarm is started.</long>
 
100
                        </locale>
 
101
                </schema>
 
102
                
 
103
                
 
104
                <schema>
 
105
                <key>/schemas/apps/alarm_clock/alarm/repeat</key>
 
106
                <owner>alarm-clock</owner>
 
107
                        <type>list</type>
 
108
                        <list_type>string</list_type>
 
109
                        <locale name="C">
 
110
                                <default>[]</default>
 
111
                                <short>When to repeat the alarm.</short>
 
112
                                <long>Indicates which days to repeat the alarm. Only applicable for "clock" alarms.</long>
 
113
                        </locale>
 
114
                </schema>
 
115
                
 
116
                
 
117
                <schema>
 
118
                <key>/schemas/apps/alarm_clock/alarm/snooze</key>
 
119
                <owner>alarm-clock</owner>
 
120
                        <type>int</type>
 
121
                        <locale name="C">
 
122
                                <default>0</default>
 
123
                                <short>Enable snoozing of alarm.</short>
 
124
                                <long>If non-zero, indicates that the alarm can be snoozed for the selected minutes.</long>
 
125
                        </locale>
 
126
                </schema>
 
127
                
 
128
                
 
129
                <schema>
 
130
                <key>/schemas/apps/alarm_clock/alarm/notify_type</key>
 
131
                <owner>alarm-clock</owner>
 
132
                        <type>string</type>
 
133
                        <locale name="C">
 
134
                                <default>sound</default>
 
135
                                <short>Type of notification to use.</short>
 
136
                                <long>The type of notification to use when the alarm is triggered.
 
137
                                          Can be one of the following:
 
138
                                          "sound" to play a sound. The sound must be set in the "sound_file" property.
 
139
                                          "command" to run a command.
 
140
                                </long>
 
141
                        </locale>
 
142
                </schema>
 
143
                
 
144
                <schema>
 
145
                <key>/schemas/apps/alarm_clock/alarm/sound_file</key>
 
146
                <owner>alarm-clock</owner>
 
147
                        <type>string</type>
 
148
                        <locale name="C">
 
149
                                <default></default>
 
150
                                <short>Sound file to play on alarm.</short>
 
151
                                <long>The sound file to play for the "sound" notification type.</long>
 
152
                        </locale>
 
153
                </schema>
 
154
                
 
155
                <schema>
 
156
                <key>/schemas/apps/alarm_clock/alarm/sound_repeat</key>
 
157
                <owner>alarm-clock</owner>
 
158
                        <type>bool</type>
 
159
                        <locale name="C">
 
160
                                <default>TRUE</default>
 
161
                                <short>Repeat sound.</short>
 
162
                                <long>Whether we should repeat the alarm sound or not.</long>
 
163
                        </locale>
 
164
                </schema>
 
165
                
 
166
                <schema>
 
167
                <key>/schemas/apps/alarm_clock/alarm/command</key>
 
168
                <owner>alarm-clock</owner>
 
169
                        <type>string</type>
 
170
                        <locale name="C">
 
171
                                <default>rhythmbox-client --play</default>
 
172
                                <short>Command to run on alarm.</short>
 
173
                                <long>The command to run for the "command" notification type.</long>
 
174
                        </locale>
 
175
                </schema>
 
176
                
 
177
                <schema>
 
178
                <key>/schemas/apps/alarm_clock/alarm/notify_bubble</key>
 
179
                <owner>alarm-clock</owner>
 
180
                        <type>bool</type>
 
181
                        <locale name="C">
 
182
                                <default>true</default>
 
183
                                <short>Show notification bubble on alarm.</short>
 
184
                                <long>Check to show a notification bubble on alarm (with libnotify).</long>
 
185
                        </locale>
 
186
                </schema>
 
187
                
 
188
                <!--
 
189
                <schema>
 
190
                <key>/schemas/apps/alarm_clock/prefs/</key>
 
191
                <owner>alarm-clock</owner>
 
192
                        <type></type>
 
193
                        <locale name="C">
 
194
                                <default></default>
 
195
                                <short></short>
 
196
                                <long></long>
 
197
                        </locale>
 
198
                </schema>
 
199
                -->
 
200
        </schemalist>
 
201
</gconfschemafile>
 
202
                
 
203
                
 
 
b'\\ No newline at end of file'