diff options
Diffstat (limited to 'applets/fish')
-rw-r--r-- | applets/fish/Makefile.am | 3 | ||||
-rw-r--r-- | applets/fish/org.mate.panel.applet.fish.gschema.xml.in | 34 | ||||
-rw-r--r-- | applets/fish/org.mate.panel.applet.fish.gschema.xml.in.in | 34 |
3 files changed, 37 insertions, 34 deletions
diff --git a/applets/fish/Makefile.am b/applets/fish/Makefile.am index d25c5eb0..5ba408ee 100644 --- a/applets/fish/Makefile.am +++ b/applets/fish/Makefile.am @@ -81,6 +81,9 @@ gsettings_SCHEMAS = org.mate.panel.applet.fish.gschema.xml @INTLTOOL_XML_NOMERGE_RULE@ @GSETTINGS_RULES@ +%.gschema.xml.in: %.gschema.xml.in.in Makefile + $(AM_V_GEN) $(SED) -e 's^\@GETTEXT_PACKAGE\@^$(GETTEXT_PACKAGE)^g' < $< > $@ + EXTRA_DIST = \ wanda.svg \ $(fishbitmaps_DATA) \ diff --git a/applets/fish/org.mate.panel.applet.fish.gschema.xml.in b/applets/fish/org.mate.panel.applet.fish.gschema.xml.in deleted file mode 100644 index a3c3fe77..00000000 --- a/applets/fish/org.mate.panel.applet.fish.gschema.xml.in +++ /dev/null @@ -1,34 +0,0 @@ -<schemalist gettext-domain="@GETTEXT_PACKAGE@"> - <schema id="org.mate.panel.applet.fish"> - <key name="name" type="s"> - <default>'Wanda'</default> - <summary>The fish's name</summary> - <description>A fish without a name is a pretty dull fish. Bring your fish to life by naming him.</description> - </key> - <key name="image" type="s"> - <default>'wanda.png'</default> - <summary>The fish's animation pixmap</summary> - <description>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.</description> - </key> - <key name="command" type="s"> - <default>'fortune'</default> - <summary>Command to execute on click</summary> - <description>This key specifies the command that will be tried to execute when the fish is clicked.</description> - </key> - <key name="frames" type="i"> - <default>8</default> - <summary>Frames in fish's animation</summary> - <description>This key specifies the number of frames that will be displayed in the fish's animation.</description> - </key> - <key name="speed" type="d"> - <default>0.3</default> - <summary>Pause per frame</summary> - <description>This key specifies the number of seconds each frame will be displayed.</description> - </key> - <key name="rotate" type="b"> - <default>false</default> - <summary>Rotate on vertical panels</summary> - <description>If true, the fish's animation will be displayed rotated on vertical panels.</description> - </key> - </schema> -</schemalist> diff --git a/applets/fish/org.mate.panel.applet.fish.gschema.xml.in.in b/applets/fish/org.mate.panel.applet.fish.gschema.xml.in.in new file mode 100644 index 00000000..6ab7bd07 --- /dev/null +++ b/applets/fish/org.mate.panel.applet.fish.gschema.xml.in.in @@ -0,0 +1,34 @@ +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <schema id="org.mate.panel.applet.fish"> + <key name="name" type="s"> + <default>'Wanda'</default> + <_summary>The fish's name</_summary> + <_description>A fish without a name is a pretty dull fish. Bring your fish to life by naming him.</_description> + </key> + <key name="image" type="s"> + <default>'wanda.png'</default> + <_summary>The fish's animation pixmap</_summary> + <_description>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.</_description> + </key> + <key name="command" type="s"> + <default>'fortune'</default> + <_summary>Command to execute on click</_summary> + <_description>This key specifies the command that will be tried to execute when the fish is clicked.</_description> + </key> + <key name="frames" type="i"> + <default>8</default> + <_summary>Frames in fish's animation</_summary> + <_description>This key specifies the number of frames that will be displayed in the fish's animation.</_description> + </key> + <key name="speed" type="d"> + <default>0.3</default> + <_summary>Pause per frame</_summary> + <_description>This key specifies the number of seconds each frame will be displayed.</_description> + </key> + <key name="rotate" type="b"> + <default>false</default> + <_summary>Rotate on vertical panels</_summary> + <_description>If true, the fish's animation will be displayed rotated on vertical panels.</_description> + </key> + </schema> +</schemalist> |