summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-09-22 16:53:57 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-09-22 16:53:57 +0000
commit8cf510753057485dcf07a5ad4587ffe8c7f7eaa2 (patch)
tree26df259064bee700c6a44df885a990ada2a15612 /share
parentUpdate to trunk (diff)
parentFix CMake build (follow-up to r12567) (diff)
downloadinkscape-8cf510753057485dcf07a5ad4587ffe8c7f7eaa2.tar.gz
inkscape-8cf510753057485dcf07a5ad4587ffe8c7f7eaa2.zip
update to trunk
(bzr r11950.1.147)
Diffstat (limited to 'share')
-rw-r--r--share/extensions/Makefile.am2
-rw-r--r--share/extensions/empty_page.inx34
-rw-r--r--share/extensions/empty_page.py44
-rw-r--r--share/templates/A4.svg2
-rw-r--r--share/templates/A4_landscape.svg2
-rw-r--r--share/templates/CD_cover_300dpi.svg2
-rw-r--r--share/templates/CD_label_120x120.svg2
-rw-r--r--share/templates/DVD_cover_regular_300dpi.svg2
-rw-r--r--share/templates/DVD_cover_slim_300dpi.svg2
-rw-r--r--share/templates/DVD_cover_superslim_300dpi.svg2
-rw-r--r--share/templates/DVD_cover_ultraslim_300dpi.svg2
-rw-r--r--share/templates/LaTeX_Beamer.svg2
-rw-r--r--share/templates/Letter.svg2
-rw-r--r--share/templates/Letter_landscape.svg2
-rw-r--r--share/templates/Typography_Canvas.svg2
-rw-r--r--share/templates/black_opaque.svg2
-rw-r--r--share/templates/business_card_85x54mm.svg2
-rw-r--r--share/templates/business_card_90x50mm.svg2
-rw-r--r--share/templates/desktop_1024x768.svg2
-rw-r--r--share/templates/desktop_1600x1200.svg2
-rw-r--r--share/templates/desktop_640x480.svg2
-rw-r--r--share/templates/desktop_800x600.svg2
-rw-r--r--share/templates/icon_16x16.svg2
-rw-r--r--share/templates/icon_32x32.svg2
-rw-r--r--share/templates/icon_48x48.svg2
-rw-r--r--share/templates/icon_64x64.svg2
-rw-r--r--share/templates/no_borders.svg2
-rw-r--r--share/templates/no_layers.svg2
-rw-r--r--share/templates/video_HDTV_1920x1080.svg2
-rw-r--r--share/templates/video_NTSC_720x486.svg2
-rw-r--r--share/templates/video_PAL_720x576.svg2
-rw-r--r--share/templates/web_banner_468x60.svg2
-rw-r--r--share/templates/web_banner_728x90.svg2
-rw-r--r--share/templates/web_banners.svg2
-rw-r--r--share/templates/white_opaque.svg2
35 files changed, 112 insertions, 32 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am
index cc9b6b517..ffbe1ec77 100644
--- a/share/extensions/Makefile.am
+++ b/share/extensions/Makefile.am
@@ -54,6 +54,7 @@ extensions = \
edge3d.py \
embedimage.py \
embed_raster_in_svg.pl \
+ empty_page.py \
eqtexsvg.py \
export_gimp_palette.py \
extractimage.py \
@@ -238,6 +239,7 @@ modules = \
edge3d.inx \
embedimage.inx \
embedselectedimages.inx \
+ empty_page.inx \
eps_input.inx \
eqtexsvg.inx \
export_gimp_palette.inx \
diff --git a/share/extensions/empty_page.inx b/share/extensions/empty_page.inx
new file mode 100644
index 000000000..f3f60f796
--- /dev/null
+++ b/share/extensions/empty_page.inx
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
+ <_name>Empty Page</_name>
+ <id>org.inkscape.render.empty_page</id>
+ <dependency type="executable" location="extensions">empty_page.py</dependency>
+ <dependency type="executable" location="extensions">inkex.py</dependency>
+
+ <param name="size" _gui-text="Page size:" type="enum">
+ <item value="a3">A3</item>
+ <item value="a4">A4</item>
+ <item value="a5">A5</item>
+ <item value="letter">letter</item>
+ </param>
+
+ <param name="orientation" _gui-text="Page orientation:" type="enum">
+ <item value="horizontal">Horizontal</item>
+ <item value="vertical">Vertical</item>
+ </param>
+
+ <effect needs-live-preview="false">
+ <object-type>all</object-type>
+ <effects-menu hidden="true" />
+ </effect>
+ <inkscape:_templateinfo>
+ <inkscape:_name>Empty page</inkscape:_name>
+ <inkscape:author>Jan Darowski</inkscape:author>
+ <inkscape:_shortdesc>Empty page of chosen size.</inkscape:_shortdesc>
+ <inkscape:date>2013-09-10</inkscape:date>
+ <inkscape:_keywords>empty sheet a4 a3 a5 letter</inkscape:_keywords>
+ </inkscape:_templateinfo>
+ <script>
+ <command reldir="extensions" interpreter="python">empty_page.py</command>
+ </script>
+</inkscape-extension>
diff --git a/share/extensions/empty_page.py b/share/extensions/empty_page.py
new file mode 100644
index 000000000..dc16bab97
--- /dev/null
+++ b/share/extensions/empty_page.py
@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+
+import inkex
+
+class C(inkex.Effect):
+ def __init__(self):
+ inkex.Effect.__init__(self)
+ self.OptionParser.add_option("-s", "--size", action="store", type="string", dest="page_size", default="a4", help="Page size")
+ self.OptionParser.add_option("-o", "--orientation", action="store", type="string", dest="page_orientation", default="vertical", help="Page orientation")
+
+ def effect(self):
+ root = self.document.getroot()
+ root.set("width", "12in")
+ root.set("height", "12in")
+ if self.options.page_size == "a4" and self.options.page_orientation == "vertical":
+ root.set("width", "210mm")
+ root.set("height", "297mm")
+ if self.options.page_size == "a4" and self.options.page_orientation == "horizontal":
+ root.set("height", "210mm")
+ root.set("width", "297mm")
+
+ if self.options.page_size == "a5" and self.options.page_orientation == "vertical":
+ root.set("width", "148mm")
+ root.set("height", "210mm")
+ if self.options.page_size == "a5" and self.options.page_orientation == "horizontal":
+ root.set("width", "210mm")
+ root.set("height", "148mm")
+
+ if self.options.page_size == "a3" and self.options.page_orientation == "vertical":
+ root.set("width", "297mm")
+ root.set("height", "420mm")
+ if self.options.page_size == "a3" and self.options.page_orientation == "horizontal":
+ root.set("width", "420mm")
+ root.set("height", "297mm")
+
+ if self.options.page_size == "letter" and self.options.page_orientation == "vertical":
+ root.set("width", "8.5in")
+ root.set("height", "11in")
+ if self.options.page_size == "letter" and self.options.page_orientation == "horizontal":
+ root.set("width", "11in")
+ root.set("height", "8.5in")
+
+c = C()
+c.affect()
diff --git a/share/templates/A4.svg b/share/templates/A4.svg
index d7351690e..b7d7968d6 100644
--- a/share/templates/A4.svg
+++ b/share/templates/A4.svg
@@ -38,7 +38,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>A4 Page</inkscape:_name>
- <inkscape:_short>Empty A4 sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty A4 sheet</inkscape:_shortdesc>
<inkscape:_keywords>A4 paper sheet empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/A4_landscape.svg b/share/templates/A4_landscape.svg
index 7b167019f..7d550b3ff 100644
--- a/share/templates/A4_landscape.svg
+++ b/share/templates/A4_landscape.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>A4 Landscape Page</inkscape:_name>
- <inkscape:_short>Empty A4 landscape sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty A4 landscape sheet</inkscape:_shortdesc>
<inkscape:_keywords>A4 paper sheet empty landscape</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/CD_cover_300dpi.svg b/share/templates/CD_cover_300dpi.svg
index 632bacd10..fc23cd48e 100644
--- a/share/templates/CD_cover_300dpi.svg
+++ b/share/templates/CD_cover_300dpi.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>CD Cover 300dpi</inkscape:_name>
- <inkscape:_short>Empty CD box cover.</inkscape:_short>
+ <inkscape:_shortdesc>Empty CD box cover.</inkscape:_shortdesc>
<inkscape:_keywords>CD cover disc disk 300dpi box</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/CD_label_120x120.svg b/share/templates/CD_label_120x120.svg
index cc0029e15..979c0d91a 100644
--- a/share/templates/CD_label_120x120.svg
+++ b/share/templates/CD_label_120x120.svg
@@ -81,7 +81,7 @@
<inkscape:_templateinfo>
<inkscape:_name>CD Label 120x120 </inkscape:_name>
<inkscape:author>JazzyNico</inkscape:author>
- <inkscape:_short>Simple CD Label template with disc's pattern.</inkscape:_short>
+ <inkscape:_shortdesc>Simple CD Label template with disc's pattern.</inkscape:_shortdesc>
<inkscape:date>2010-11-15</inkscape:date>
<inkscape:_keywords>CD label 120x120 disc disk</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/DVD_cover_regular_300dpi.svg b/share/templates/DVD_cover_regular_300dpi.svg
index 66465b8ae..b9f471afd 100644
--- a/share/templates/DVD_cover_regular_300dpi.svg
+++ b/share/templates/DVD_cover_regular_300dpi.svg
@@ -78,7 +78,7 @@
<inkscape:_templateinfo>
<inkscape:_name>DVD Cover Regular 300dpi </inkscape:_name>
<inkscape:author>cmarqu</inkscape:author>
- <inkscape:_short>Template for both-sides DVD covers.</inkscape:_short>
+ <inkscape:_shortdesc>Template for both-sides DVD covers.</inkscape:_shortdesc>
<inkscape:date>2006-06-21</inkscape:date>
<inkscape:_keywords>DVD cover regular 300dpi</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/DVD_cover_slim_300dpi.svg b/share/templates/DVD_cover_slim_300dpi.svg
index e9402b39a..ee7e1584c 100644
--- a/share/templates/DVD_cover_slim_300dpi.svg
+++ b/share/templates/DVD_cover_slim_300dpi.svg
@@ -78,7 +78,7 @@
<inkscape:_templateinfo>
<inkscape:_name>DVD Cover Slim 300dpi </inkscape:_name>
<inkscape:author>cmarqu</inkscape:author>
- <inkscape:_short>Template for both-sides DVD slim covers.</inkscape:_short>
+ <inkscape:_shortdesc>Template for both-sides DVD slim covers.</inkscape:_shortdesc>
<inkscape:date>2006-06-21</inkscape:date>
<inkscape:_keywords>DVD cover slim 300dpi</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/DVD_cover_superslim_300dpi.svg b/share/templates/DVD_cover_superslim_300dpi.svg
index 842b951c1..fecff3979 100644
--- a/share/templates/DVD_cover_superslim_300dpi.svg
+++ b/share/templates/DVD_cover_superslim_300dpi.svg
@@ -78,7 +78,7 @@
<inkscape:_templateinfo>
<inkscape:_name>DVD Cover Superslim 300dpi </inkscape:_name>
<inkscape:author>cmarqu</inkscape:author>
- <inkscape:_short>Template for both-sides DVD superslim covers.</inkscape:_short>
+ <inkscape:_shortdesc>Template for both-sides DVD superslim covers.</inkscape:_shortdesc>
<inkscape:date>2006-06-21</inkscape:date>
<inkscape:_keywords>DVD cover superslim 300dpi</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/DVD_cover_ultraslim_300dpi.svg b/share/templates/DVD_cover_ultraslim_300dpi.svg
index 0f0ead540..79288832e 100644
--- a/share/templates/DVD_cover_ultraslim_300dpi.svg
+++ b/share/templates/DVD_cover_ultraslim_300dpi.svg
@@ -78,7 +78,7 @@
<inkscape:_templateinfo>
<inkscape:_name>DVD Cover Ultraslim 300dpi </inkscape:_name>
<inkscape:author>cmarqu</inkscape:author>
- <inkscape:_short>Template for both-sides DVD ultraslim covers.</inkscape:_short>
+ <inkscape:_shortdesc>Template for both-sides DVD ultraslim covers.</inkscape:_shortdesc>
<inkscape:date>2006-06-21</inkscape:date>
<inkscape:_keywords>DVD cover ultraslim 300dpi</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/LaTeX_Beamer.svg b/share/templates/LaTeX_Beamer.svg
index 50e50143f..9815a2290 100644
--- a/share/templates/LaTeX_Beamer.svg
+++ b/share/templates/LaTeX_Beamer.svg
@@ -82,7 +82,7 @@
<inkscape:_templateinfo>
<inkscape:_name>LaTeX Beamer</inkscape:_name>
<inkscape:author>jiho-sf</inkscape:author>
- <inkscape:_short>LaTeX beamer template with helping grid.</inkscape:_short>
+ <inkscape:_shortdesc>LaTeX beamer template with helping grid.</inkscape:_shortdesc>
<inkscape:date>2007-05-20</inkscape:date>
<inkscape:_keywords>LaTex LaTeX latex grid beamer</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/Letter.svg b/share/templates/Letter.svg
index 111952610..8942d2e2f 100644
--- a/share/templates/Letter.svg
+++ b/share/templates/Letter.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Letter</inkscape:_name>
- <inkscape:_short>Standard letter sheet - 612x792</inkscape:_short>
+ <inkscape:_shortdesc>Standard letter sheet - 612x792</inkscape:_shortdesc>
<inkscape:_keywords>letter 612x792 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/Letter_landscape.svg b/share/templates/Letter_landscape.svg
index 262729ec8..531bb9d3e 100644
--- a/share/templates/Letter_landscape.svg
+++ b/share/templates/Letter_landscape.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Letter Landscape</inkscape:_name>
- <inkscape:_short>Standard letter landscape sheet - 792x612</inkscape:_short>
+ <inkscape:_shortdesc>Standard letter landscape sheet - 792x612</inkscape:_shortdesc>
<inkscape:_keywords>letter landscape 792x612 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/Typography_Canvas.svg b/share/templates/Typography_Canvas.svg
index 2b9773807..f142da13f 100644
--- a/share/templates/Typography_Canvas.svg
+++ b/share/templates/Typography_Canvas.svg
@@ -78,7 +78,7 @@
<inkscape:_templateinfo>
<inkscape:_name>Typography Canvas</inkscape:_name>
<inkscape:author>Felipe C. da S. Sanc...</inkscape:author>
- <inkscape:_short>Empty typography canvas with helping guidelines.</inkscape:_short>
+ <inkscape:_shortdesc>Empty typography canvas with helping guidelines.</inkscape:_shortdesc>
<inkscape:date>2011-05-26</inkscape:date>
<inkscape:_keywords>guidelines typography canvas</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/black_opaque.svg b/share/templates/black_opaque.svg
index 1b6cbbc69..584abe7c0 100644
--- a/share/templates/black_opaque.svg
+++ b/share/templates/black_opaque.svg
@@ -34,7 +34,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Black Opaque</inkscape:_name>
- <inkscape:_short>Empty black page</inkscape:_short>
+ <inkscape:_shortdesc>Empty black page</inkscape:_shortdesc>
<inkscape:_keywords>black opaque empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/business_card_85x54mm.svg b/share/templates/business_card_85x54mm.svg
index d8e28e29a..227ed6a12 100644
--- a/share/templates/business_card_85x54mm.svg
+++ b/share/templates/business_card_85x54mm.svg
@@ -37,7 +37,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Business Card 85x54mm</inkscape:_name>
- <inkscape:_short>Empty business card template.</inkscape:_short>
+ <inkscape:_shortdesc>Empty business card template.</inkscape:_shortdesc>
<inkscape:_keywords>business card empty 85x54</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/business_card_90x50mm.svg b/share/templates/business_card_90x50mm.svg
index 2888d9a17..a2e40fe9e 100644
--- a/share/templates/business_card_90x50mm.svg
+++ b/share/templates/business_card_90x50mm.svg
@@ -37,7 +37,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Business Card 90x50mm</inkscape:_name>
- <inkscape:_short>Empty business card template.</inkscape:_short>
+ <inkscape:_shortdesc>Empty business card template.</inkscape:_shortdesc>
<inkscape:_keywords>business card empty 90x50</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/desktop_1024x768.svg b/share/templates/desktop_1024x768.svg
index 84d0bd097..b64a1bc79 100644
--- a/share/templates/desktop_1024x768.svg
+++ b/share/templates/desktop_1024x768.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Desktop 1024x768</inkscape:_name>
- <inkscape:_short>Empty desktop size sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty desktop size sheet</inkscape:_shortdesc>
<inkscape:_keywords>desktop 1024x768 wallpaper</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/desktop_1600x1200.svg b/share/templates/desktop_1600x1200.svg
index 77fa49379..bb8ca4bd5 100644
--- a/share/templates/desktop_1600x1200.svg
+++ b/share/templates/desktop_1600x1200.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Desktop 1600x1200</inkscape:_name>
- <inkscape:_short>Empty desktop size sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty desktop size sheet</inkscape:_shortdesc>
<inkscape:_keywords>desktop 1600x1200 wallpaper</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/desktop_640x480.svg b/share/templates/desktop_640x480.svg
index 9fee0812c..28f3de41e 100644
--- a/share/templates/desktop_640x480.svg
+++ b/share/templates/desktop_640x480.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Desktop 640x480</inkscape:_name>
- <inkscape:_short>Empty desktop size sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty desktop size sheet</inkscape:_shortdesc>
<inkscape:_keywords>desktop 640x480 wallpaper</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/desktop_800x600.svg b/share/templates/desktop_800x600.svg
index 61b250b4b..2f58e3b9d 100644
--- a/share/templates/desktop_800x600.svg
+++ b/share/templates/desktop_800x600.svg
@@ -36,7 +36,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Desktop 800x600</inkscape:_name>
- <inkscape:_short>Empty desktop size sheet</inkscape:_short>
+ <inkscape:_shortdesc>Empty desktop size sheet</inkscape:_shortdesc>
<inkscape:_keywords>desktop 800x600 wallpaper</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/icon_16x16.svg b/share/templates/icon_16x16.svg
index c21c5c1a1..bb4f5e7a0 100644
--- a/share/templates/icon_16x16.svg
+++ b/share/templates/icon_16x16.svg
@@ -37,7 +37,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Icon 16x16</inkscape:_name>
- <inkscape:_short>Small 16x16 icon template.</inkscape:_short>
+ <inkscape:_shortdesc>Small 16x16 icon template.</inkscape:_shortdesc>
<inkscape:_keywords>icon 16x16 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g
diff --git a/share/templates/icon_32x32.svg b/share/templates/icon_32x32.svg
index 1ad51df05..72d56ee7d 100644
--- a/share/templates/icon_32x32.svg
+++ b/share/templates/icon_32x32.svg
@@ -37,7 +37,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Icon 32x32</inkscape:_name>
- <inkscape:_short>32x32 icon template.</inkscape:_short>
+ <inkscape:_shortdesc>32x32 icon template.</inkscape:_shortdesc>
<inkscape:_keywords>icon 32x32 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g
diff --git a/share/templates/icon_48x48.svg b/share/templates/icon_48x48.svg
index ff4c0fb76..9c2ba463b 100644
--- a/share/templates/icon_48x48.svg
+++ b/share/templates/icon_48x48.svg
@@ -37,7 +37,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Icon 48x48</inkscape:_name>
- <inkscape:_short>48x48 icon template.</inkscape:_short>
+ <inkscape:_shortdesc>48x48 icon template.</inkscape:_shortdesc>
<inkscape:_keywords>icon 48x48 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g
diff --git a/share/templates/icon_64x64.svg b/share/templates/icon_64x64.svg
index aac328323..ce317acc4 100644
--- a/share/templates/icon_64x64.svg
+++ b/share/templates/icon_64x64.svg
@@ -38,7 +38,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Icon 64x64</inkscape:_name>
- <inkscape:_short>64x64 icon template.</inkscape:_short>
+ <inkscape:_shortdesc>64x64 icon template.</inkscape:_shortdesc>
<inkscape:_keywords>icon 64x64 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g
diff --git a/share/templates/no_borders.svg b/share/templates/no_borders.svg
index 70b5e4b32..8c30476cf 100644
--- a/share/templates/no_borders.svg
+++ b/share/templates/no_borders.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>No Borders</inkscape:_name>
- <inkscape:_short>Empty sheet with no borders</inkscape:_short>
+ <inkscape:_shortdesc>Empty sheet with no borders</inkscape:_shortdesc>
<inkscape:_keywords>no borders empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
diff --git a/share/templates/no_layers.svg b/share/templates/no_layers.svg
index e887ad508..0af38fbbe 100644
--- a/share/templates/no_layers.svg
+++ b/share/templates/no_layers.svg
@@ -34,7 +34,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>No Layers</inkscape:_name>
- <inkscape:_short>Empty sheet with no layers</inkscape:_short>
+ <inkscape:_shortdesc>Empty sheet with no layers</inkscape:_shortdesc>
<inkscape:_keywords>no layers empty</inkscape:_keywords>
</inkscape:_templateinfo>
</svg>
diff --git a/share/templates/video_HDTV_1920x1080.svg b/share/templates/video_HDTV_1920x1080.svg
index c28082139..b2c8da68f 100644
--- a/share/templates/video_HDTV_1920x1080.svg
+++ b/share/templates/video_HDTV_1920x1080.svg
@@ -36,7 +36,7 @@
<inkscape:_templateinfo>
<inkscape:_name>Video HDTV 1920x1080</inkscape:_name>
<inkscape:author>popolon2</inkscape:author>
- <inkscape:_short>HDTV video template for 1920x1080 resolution.</inkscape:_short>
+ <inkscape:_shortdesc>HDTV video template for 1920x1080 resolution.</inkscape:_shortdesc>
<inkscape:date>2006-10-14</inkscape:date>
<inkscape:_keywords>HDTV video empty 1920x1080</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/video_NTSC_720x486.svg b/share/templates/video_NTSC_720x486.svg
index 22ee28205..8609c5ca8 100644
--- a/share/templates/video_NTSC_720x486.svg
+++ b/share/templates/video_NTSC_720x486.svg
@@ -36,7 +36,7 @@
<inkscape:_templateinfo>
<inkscape:_name>Video NTSC 720x486</inkscape:_name>
<inkscape:author>popolon2</inkscape:author>
- <inkscape:_short>NTSC video template for 720x486 resolution.</inkscape:_short>
+ <inkscape:_shortdesc>NTSC video template for 720x486 resolution.</inkscape:_shortdesc>
<inkscape:date>2006-10-14</inkscape:date>
<inkscape:_keywords>NTSC video empty 720x486</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/video_PAL_720x576.svg b/share/templates/video_PAL_720x576.svg
index 548176adf..84eeb5547 100644
--- a/share/templates/video_PAL_720x576.svg
+++ b/share/templates/video_PAL_720x576.svg
@@ -36,7 +36,7 @@
<inkscape:_templateinfo>
<inkscape:_name>Video PAL 728x576</inkscape:_name>
<inkscape:author>popolon2</inkscape:author>
- <inkscape:_short>PAL video template for 728x576 resolution.</inkscape:_short>
+ <inkscape:_shortdesc>PAL video template for 728x576 resolution.</inkscape:_shortdesc>
<inkscape:date>2006-10-14</inkscape:date>
<inkscape:_keywords>PAL video empty 728x576</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/web_banner_468x60.svg b/share/templates/web_banner_468x60.svg
index 9ca37f075..14237b101 100644
--- a/share/templates/web_banner_468x60.svg
+++ b/share/templates/web_banner_468x60.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Web Banner 468x60</inkscape:_name>
- <inkscape:_short>Empty 468x60 web banner template.</inkscape:_short>
+ <inkscape:_shortdesc>Empty 468x60 web banner template.</inkscape:_shortdesc>
<inkscape:_keywords>web banner 468x60 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/web_banner_728x90.svg b/share/templates/web_banner_728x90.svg
index 48f7237a4..1133fa98f 100644
--- a/share/templates/web_banner_728x90.svg
+++ b/share/templates/web_banner_728x90.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>Web Banner 728x90</inkscape:_name>
- <inkscape:_short>Empty 728x90 web banner template.</inkscape:_short>
+ <inkscape:_shortdesc>Empty 728x90 web banner template.</inkscape:_shortdesc>
<inkscape:_keywords>web banner 728x90 empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" />
diff --git a/share/templates/web_banners.svg b/share/templates/web_banners.svg
index b074ac597..b94d538e8 100644
--- a/share/templates/web_banners.svg
+++ b/share/templates/web_banners.svg
@@ -60,7 +60,7 @@
<inkscape:_templateinfo>
<inkscape:_name>Web Banners Collection</inkscape:_name>
<inkscape:author>Aurélio A. Heckert</inkscape:author>
- <inkscape:_short>A collection of standard web banners</inkscape:_short>
+ <inkscape:_shortdesc>A collection of standard web banners</inkscape:_shortdesc>
<inkscape:date>2010-05-27</inkscape:date>
<inkscape:_keywords>web banners collection</inkscape:_keywords>
</inkscape:_templateinfo>
diff --git a/share/templates/white_opaque.svg b/share/templates/white_opaque.svg
index d9f99d1ab..0fb83ceab 100644
--- a/share/templates/white_opaque.svg
+++ b/share/templates/white_opaque.svg
@@ -35,7 +35,7 @@
</metadata>
<inkscape:_templateinfo>
<inkscape:_name>White Opaque</inkscape:_name>
- <inkscape:_short>Empty white page</inkscape:_short>
+ <inkscape:_shortdesc>Empty white page</inkscape:_shortdesc>
<inkscape:_keywords>white opaque empty</inkscape:_keywords>
</inkscape:_templateinfo>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />