diff options
author | Martin Wimpress <[email protected]> | 2015-06-17 17:54:28 +0100 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2015-06-17 17:54:28 +0100 |
commit | 87b2d863d413d89fa6fc6d4990b309fdf7403625 (patch) | |
tree | 3fd0d8e272580cdb97de5dcbf56f64c7bb9369df /mate-screenshot | |
parent | 519aa6b184aa07a2afd09e76d1f36aaa5032b3fa (diff) | |
parent | c4df12f12d21ea7d4bc0d656bd5f93539c078d93 (diff) | |
download | mate-utils-87b2d863d413d89fa6fc6d4990b309fdf7403625.tar.bz2 mate-utils-87b2d863d413d89fa6fc6d4990b309fdf7403625.tar.xz |
Merge pull request #100 from NiceandGently/master
fixes for gschema translation
Diffstat (limited to 'mate-screenshot')
-rw-r--r-- | mate-screenshot/Makefile.am | 18 | ||||
-rw-r--r-- | mate-screenshot/org.mate.screenshot.gschema.xml.in | 20 |
2 files changed, 17 insertions, 21 deletions
diff --git a/mate-screenshot/Makefile.am b/mate-screenshot/Makefile.am index 1fa3cdc7..7cce5d0c 100644 --- a/mate-screenshot/Makefile.am +++ b/mate-screenshot/Makefile.am @@ -63,30 +63,26 @@ appdatadir = $(datadir)/appdata appdata_in_files = mate-screenshot.appdata.xml.in appdata_DATA = $(appdata_in_files:.xml.in=.xml) -gsettingsschema_in_files = org.mate.screenshot.gschema.xml.in -gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml) -.PRECIOUS: $(gsettings_SCHEMAS) - +gsettings_SCHEMAS = org.mate.screenshot.gschema.xml @GSETTINGS_RULES@ convertdir = $(datadir)/MateConf/gsettings convert_DATA = mate-screenshot.convert EXTRA_DIST = \ - $(gsettingsschema_in_files) \ $(appdata_in_files) \ - $(mate_screenshot_in_files) \ + $(mate_screenshot_in_files) \ $(man_MANS) \ $(ui_DATA) \ - $(convert_DATA) \ + $(convert_DATA) \ $(NULL) CLEANFILES = \ - $(BUILT_SOURCES) \ - $(gsettings_SCHEMAS) \ - $(mate_screenshot_DATA) \ + $(BUILT_SOURCES) \ + $(gsettings_SCHEMAS) \ + $(mate_screenshot_DATA) \ $(sys_DATA) \ - mate-screenshot.appdata.xml + $(appdata_DATA) dist-hook: cd $(distdir) ; rm -f $(CLEANFILES) diff --git a/mate-screenshot/org.mate.screenshot.gschema.xml.in b/mate-screenshot/org.mate.screenshot.gschema.xml.in index fddddbb3..c926d737 100644 --- a/mate-screenshot/org.mate.screenshot.gschema.xml.in +++ b/mate-screenshot/org.mate.screenshot.gschema.xml.in @@ -2,28 +2,28 @@ <schema id="org.mate.screenshot" path="/org/mate/screenshot/"> <key name="delay" type="i"> <default>0</default> - <_summary>Screenshot delay</_summary> - <_description>The number of seconds to wait before taking the screenshot.</_description> + <summary>Screenshot delay</summary> + <description>The number of seconds to wait before taking the screenshot.</description> </key> <key name="last-save-directory" type="s"> <default>''</default> - <_summary>Screenshot directory</_summary> - <_description>The directory the last screenshot was saved in.</_description> + <summary>Screenshot directory</summary> + <description>The directory the last screenshot was saved in.</description> </key> <key name="include-border" type="b"> <default>true</default> - <_summary>Include Border</_summary> - <_description>Include the window manager border along with the screenshot</_description> + <summary>Include Border</summary> + <description>Include the window manager border along with the screenshot</description> </key> <key name="include-pointer" type="b"> <default>true</default> - <_summary>Include Pointer</_summary> - <_description>Include the pointer in the screenshot</_description> + <summary>Include Pointer</summary> + <description>Include the pointer in the screenshot</description> </key> <key name="border-effect" type="s"> <default>'none'</default> - <_summary>Border Effect</_summary> - <_description>Effect to add to the outside of a border. Possible values are "shadow", "none", and "border".</_description> + <summary>Border Effect</summary> + <description>Effect to add to the outside of a border. Possible values are "shadow", "none", and "border".</description> </key> </schema> </schemalist> |