diff options
Diffstat (limited to 'applets/fish/fish.schemas.in')
-rw-r--r-- | applets/fish/fish.schemas.in | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/applets/fish/fish.schemas.in b/applets/fish/fish.schemas.in new file mode 100644 index 00000000..3431ac33 --- /dev/null +++ b/applets/fish/fish.schemas.in @@ -0,0 +1,91 @@ +<mateconfschemafile> + <schemalist> + + <schema> + <key>/schemas/apps/fish_applet/prefs/name</key> + <owner>fish-applet</owner> + <type>string</type> + <default>Wanda</default> + <locale name="C"> + <short>The fish's name</short> + <long> + A fish without a name is a pretty dull fish. Bring your fish to + life by naming him. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/fish_applet/prefs/image</key> + <owner>fish-applet</owner> + <type>string</type> + <default>wanda.png</default> + <locale name="C"> + <short>The fish's animation pixmap</short> + <long> + This key specifies the filename of the pixmap which will be used + for the animation displayed in the fish applet relative to the + pixmap directory. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/fish_applet/prefs/command</key> + <owner>fish-applet</owner> + <type>string</type> + <default>fortune</default> + <locale name="C"> + <short>Command to execute on click</short> + <long> + This key specifies the command that will be tried to execute when + the fish is clicked. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/fish_applet/prefs/frames</key> + <owner>fish-applet</owner> + <type>int</type> + <default>8</default> + <locale name="C"> + <short>Frames in fish's animation</short> + <long> + This key specifies the number of frames that will be displayed in + the fish's animation. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/fish_applet/prefs/speed</key> + <owner>fish-applet</owner> + <type>float</type> + <default>0.3</default> + <locale name="C"> + <short>Pause per frame</short> + <long> + This key specifies the number of seconds each frame will be + displayed. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/fish_applet/prefs/rotate</key> + <owner>fish-applet</owner> + <type>bool</type> + <default>false</default> + <locale name="C"> + <short>Rotate on vertical panels</short> + <long> + If true, the fish's animation will be displayed rotated on vertical + panels. + </long> + </locale> + </schema> + + </schemalist> + +</mateconfschemafile> |