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

« back to all changes in this revision

Viewing changes to data/alarm-clock.schemas.in

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-03-17 09:02:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100317090244-ni0ye04mva2hxe10
Tags: 0.3.0-1
* New upstream release
* debian/control:
  + No change bump of Standards-Version to 3.8.4
  + Update build-deps:
    - Drop libglade, libpanel-applet, libgnomevfs2, libgnome{2,ui}
    - Add libxml2-dev and libunique-dev, intltool
* debian/patches/01_update-alarms-eta,patch:
  + Dropped, applied upstream
* debian/(alarm-clock-applet.1, alarm-clock-applet.manpages):
  + Add manpage for alarm-clock-applet, now that the binary is moved to
    /usr/bin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<gconfschemafile>
 
3
        <schemalist>
 
4
        
 
5
        <!--
 
6
        Global preferences:
 
7
        -->
 
8
        
 
9
        
 
10
        <!--
 
11
        Alarm specific:
 
12
        -->
 
13
        
 
14
        <schema>
 
15
                <key>/schemas/apps/alarm-clock/alarm/type</key>
 
16
                <owner>alarm-clock</owner>
 
17
                        <type>string</type>
 
18
                        <default>clock</default>
 
19
                        <locale name="C">
 
20
                                <short>Alarm Type</short>
 
21
                                <long>The type of the alarm. Either "clock" for an alarm at a 
 
22
                                      specific time of day, or "timer" for an alarm after a 
 
23
                                      specified period of time.</long>
 
24
                        </locale>
 
25
                </schema>
 
26
                
 
27
                
 
28
                
 
29
                <schema>
 
30
                <key>/schemas/apps/alarm-clock/alarm/timestamp</key>
 
31
                <owner>alarm-clock</owner>
 
32
                        <type>int</type>
 
33
                        <default>0</default>
 
34
                        <locale name="C">
 
35
                                <short>Alarm Timestamp</short>
 
36
                                <long>The UNIX timestamp for the alarm. Must be set before the
 
37
                                      alarm is activated.</long>
 
38
                        </locale>
 
39
                </schema>
 
40
                
 
41
        
 
42
                <schema>
 
43
                <key>/schemas/apps/alarm-clock/alarm/time</key>
 
44
                <owner>alarm-clock</owner>
 
45
                        <type>int</type>
 
46
                        <default>0</default>
 
47
                        <locale name="C">
 
48
                                <short>Alarm Time</short>
 
49
                                <long>The time for the alarm. Should be in GMT for "clock"
 
50
                                      alarms or length in seconds for "timer" alarms.</long>
 
51
                        </locale>
 
52
                </schema>
 
53
                
 
54
                
 
55
                <schema>
 
56
                <key>/schemas/apps/alarm-clock/alarm/message</key>
 
57
                <owner>alarm-clock</owner>
 
58
                        <type>string</type>
 
59
                        <locale name="C">
 
60
                                <default>Alarm!</default>
 
61
                                <short>Alarm Message</short>
 
62
                                <long>A short message which describes the alarm.</long>
 
63
                        </locale>
 
64
                </schema>
 
65
                
 
66
                <schema>
 
67
                <key>/schemas/apps/alarm-clock/alarm/active</key>
 
68
                <owner>alarm-clock</owner>
 
69
                        <type>bool</type>
 
70
                        <default>false</default>
 
71
                        <locale name="C">
 
72
                                <short>Alarm Running State</short>
 
73
                                <long>Indicates whether the alarm has started.</long>
 
74
                        </locale>
 
75
                </schema>
 
76
                
 
77
                
 
78
                <schema>
 
79
                <key>/schemas/apps/alarm-clock/alarm/repeat</key>
 
80
                <owner>alarm-clock</owner>
 
81
                        <type>list</type>
 
82
                        <list_type>string</list_type>
 
83
                        <default>[]</default>
 
84
                        <locale name="C">
 
85
                                <short>Alarm Repeat</short>
 
86
                                <long>A list of days when the alarm should be repeated.
 
87
                                      This settings is only applicable for "clock" alarms.</long>
 
88
                        </locale>
 
89
                </schema>
 
90
                
 
91
                <schema>
 
92
                <key>/schemas/apps/alarm-clock/alarm/notify_type</key>
 
93
                <owner>alarm-clock</owner>
 
94
                        <type>string</type>
 
95
                        <default>sound</default>
 
96
                        <locale name="C">
 
97
                                <short>Notification Type</short>
 
98
                                <long>The type of notification to use when the alarm goes off.
 
99
                                          This can be one of the following:
 
100
                                          "sound" to play a sound (specified in the "sound_file" property.)
 
101
                                          "command" to run a command (specified in the "command" property.)
 
102
                                </long>
 
103
                        </locale>
 
104
                </schema>
 
105
                
 
106
                <schema>
 
107
                <key>/schemas/apps/alarm-clock/alarm/sound_file</key>
 
108
                <owner>alarm-clock</owner>
 
109
                        <type>string</type>
 
110
                        <default></default>
 
111
                        <locale name="C">
 
112
                                <short>Sound File</short>
 
113
                                <long>The sound file to play for the "sound" notification type.</long>
 
114
                        </locale>
 
115
                </schema>
 
116
                
 
117
                <schema>
 
118
                <key>/schemas/apps/alarm-clock/alarm/sound_repeat</key>
 
119
                <owner>alarm-clock</owner>
 
120
                        <type>bool</type>
 
121
                        <default>true</default>
 
122
                        <locale name="C">
 
123
                                <short>Repeat Sound</short>
 
124
                                <long>Whether to repeat the alarm sound.</long>
 
125
                        </locale>
 
126
                </schema>
 
127
                
 
128
                <schema>
 
129
                <key>/schemas/apps/alarm-clock/alarm/command</key>
 
130
                <owner>alarm-clock</owner>
 
131
                        <type>string</type>
 
132
                        <default>rhythmbox-client --play</default>
 
133
                        <locale name="C">
 
134
                                <short>Command</short>
 
135
                                <long>The command to run for the "command" notification type.</long>
 
136
                        </locale>
 
137
                </schema>
 
138
                
 
139
                <!--
 
140
                <schema>
 
141
                <key>/schemas/apps/alarm-clock/prefs/</key>
 
142
                <owner>alarm-clock</owner>
 
143
                        <type></type>
 
144
                        <default></default>
 
145
                        <locale name="C">
 
146
                                <short></short>
 
147
                                <long></long>
 
148
                        </locale>
 
149
                </schema>
 
150
                -->
 
151
        </schemalist>
 
152
</gconfschemafile>
 
153
                
 
154
                
 
 
b'\\ No newline at end of file'