summaryrefslogtreecommitdiffstats
path: root/share/templates
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2014-09-18 19:49:44 +0000
committertavmjong-free <tavmjong@free.fr>2014-09-18 19:49:44 +0000
commit249b5d20c63a15f91476e8aaede1be5e26e04710 (patch)
treea32b7768768d5a1500f3251f5b0fd0a4ba080650 /share/templates
parentRemove MapSymbols.svg which contains messy and incorrect SVG (<symbols> cannot (diff)
downloadinkscape-249b5d20c63a15f91476e8aaede1be5e26e04710.tar.gz
inkscape-249b5d20c63a15f91476e8aaede1be5e26e04710.zip
Convert 'default.svg' to use 'mm'. Update all 'default.xx.svg' files
to match 'default.svg' (using new PERL script 'create_defaults.pl'). Remove 'default_mm.svg' (duplicates 'default.svg'). Add 'default_px.svg' (equivalent to old 'default.svg). Add letter size, inch-based 'default.en_US.svg'. Update README. (bzr r13341.1.213)
Diffstat (limited to 'share/templates')
-rw-r--r--share/templates/Makefile.am6
-rw-r--r--share/templates/README6
-rwxr-xr-xshare/templates/create_defaults.pl64
-rw-r--r--share/templates/default.be.svg3
-rw-r--r--share/templates/default.ca.svg9
-rw-r--r--share/templates/default.cs.svg26
-rw-r--r--share/templates/default.de.svg7
-rw-r--r--share/templates/default.en_US.svg37
-rw-r--r--share/templates/default.eo.svg7
-rw-r--r--share/templates/default.es.svg7
-rw-r--r--share/templates/default.eu.svg38
-rw-r--r--share/templates/default.fi.svg38
-rw-r--r--share/templates/default.fr.svg5
-rw-r--r--share/templates/default.hu.svg5
-rw-r--r--share/templates/default.it.svg7
-rw-r--r--share/templates/default.ja.svg7
-rw-r--r--share/templates/default.lt.svg39
-rw-r--r--share/templates/default.nl.svg5
-rw-r--r--share/templates/default.pl.svg19
-rw-r--r--share/templates/default.pt_BR.svg7
-rw-r--r--share/templates/default.ro.svg5
-rw-r--r--share/templates/default.sk.svg7
-rw-r--r--share/templates/default.svg7
-rw-r--r--share/templates/default.zh_TW.svg7
-rw-r--r--share/templates/default_px.svg (renamed from share/templates/default_mm.svg)7
25 files changed, 225 insertions, 150 deletions
diff --git a/share/templates/Makefile.am b/share/templates/Makefile.am
index 41c6a3f84..452c6aa91 100644
--- a/share/templates/Makefile.am
+++ b/share/templates/Makefile.am
@@ -20,6 +20,7 @@ templates_DATA = \
default.ca.svg \
default.cs.svg \
default.de.svg \
+ default.en_US.svg \
default.eo.svg \
default.eu.svg \
default.es.svg \
@@ -33,8 +34,8 @@ templates_DATA = \
default.pl.svg \
default.pt_BR.svg \
default.sk.svg \
- default_mm.svg \
default_pt.svg \
+ default_px.svg \
desktop_1024x768.svg \
desktop_1600x1200.svg \
desktop_640x480.svg \
@@ -75,6 +76,7 @@ templates_i18n = \
default.ca.svg \
default.cs.svg \
default.de.svg \
+ default.en_US.svg \
default.eo.svg \
default.eu.svg \
default.es.svg \
@@ -88,8 +90,8 @@ templates_i18n = \
default.pl.svg \
default.pt_BR.svg \
default.sk.svg \
- default_mm.svg \
default_pt.svg \
+ default_px.svg \
desktop_1024x768.svg \
desktop_1600x1200.svg \
desktop_640x480.svg \
diff --git a/share/templates/README b/share/templates/README
index 2959dd6a6..38a0be05c 100644
--- a/share/templates/README
+++ b/share/templates/README
@@ -16,3 +16,9 @@ This file is internationalized the same way as share/filters/filters/svg
The i18n.py script called from the makefile will extract strings from the *.svg
into a *.svg.h file. Intltool is then able to extracts these strings just like
from normal .h files.
+
+The internationalized default files (A4 only) are created using the
+PERL script "create_defaults.pl" and are based on default.svg. To add
+a new language, add it to the database at the beginning of the PERL
+script. (You'll also need to edit Makefile.am and the appropriate 'po'
+file).
diff --git a/share/templates/create_defaults.pl b/share/templates/create_defaults.pl
new file mode 100755
index 000000000..451877296
--- /dev/null
+++ b/share/templates/create_defaults.pl
@@ -0,0 +1,64 @@
+#!/usr/bin/perl
+
+# Purpose: To create internationalized versions of default.svg.
+
+# Usage: create_defaults.pl
+
+use strict;
+use warnings;
+use utf8;
+
+my $count = 0;
+
+# Data base
+
+my @data = (
+ ["be", "Пласт 1", "layer1"],
+ ["ca", "Capa 1", "capa1"],
+ ["cs", "Vrstva 1", "layer1"],
+ ["de", "Ebene 1", "layer1"],
+ ["eo", "Tavolo 1", "layer1"],
+ ["es", "Capa 1", "layer1"],
+ ["eu", "Capa 1", "layer1"],
+ ["fi", "Taso 1", "layer1"],
+ ["fr", "Calque 1", "layer1"],
+ ["hu", "1. réteg", "layer1"],
+ ["it", "Livello 1", "layer1"],
+ ["ja", "レイヤー 1", "layer1"],
+ ["lt", "Sluoksnis 1", "layer1"],
+ ["nl", "Laag 1", "layer1"],
+ ["pl", "Warstwa 1", "layer1"],
+ ["pt_BR", "Camada 1", "layer1"],
+ ["ro", "Strat 1", "layer1"],
+ ["sk", "Vrstva 1", "layer1"],
+ ["zh_TW", "圖層 1", "layer1"]
+ );
+
+foreach my $lang (@data ) {
+
+ ++$count;
+
+ my @values = @{$lang};
+ print "$values[0]\n";
+
+ my $filename = "default." . $values[0] . ".svg";
+ open( OUTPUT, '>:encoding(UTF-8)', $filename ) or die "Cannot open $filename.\n";
+
+ # Open input again to return to top...
+ open (INPUT, '<:encoding(UTF-8)', "default.svg") or die 'Cannot open input\n';
+
+ while( my $line = <INPUT> ) {
+
+ if( $line =~ /inkscape:label=/ ) {
+ $line =~ s/Layer 1/$values[1]/;
+ }
+ print OUTPUT $line;
+
+ }
+
+ close( INPUT );
+ close( OUTPUT );
+}
+
+
+print "Created $count files.\n";
diff --git a/share/templates/default.be.svg b/share/templates/default.be.svg
index 8759775cb..ef272db54 100644
--- a/share/templates/default.be.svg
+++ b/share/templates/default.be.svg
@@ -17,9 +17,6 @@
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
diff --git a/share/templates/default.ca.svg b/share/templates/default.ca.svg
index f8fb8c4cf..fc9f74d41 100644
--- a/share/templates/default.ca.svg
+++ b/share/templates/default.ca.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
@@ -33,5 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="capa1" />
+ <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.cs.svg b/share/templates/default.cs.svg
index 1f3f80b0e..583d27bb7 100644
--- a/share/templates/default.cs.svg
+++ b/share/templates/default.cs.svg
@@ -1,17 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448819"
- height="1052.3622047"
- id="svg2"
- inkscape:label="Pozadí">
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -22,9 +21,9 @@
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="375"
- inkscape:cy="520"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"/>
+ inkscape:cy="520"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
<cc:Work
@@ -35,8 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g
- inkscape:label="Vrstva 1"
- inkscape:groupmode="layer"
- id="layer1" />
+ <g inkscape:label="Vrstva 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.de.svg b/share/templates/default.de.svg
index 6f0c400a2..c18e303b7 100644
--- a/share/templates/default.de.svg
+++ b/share/templates/default.de.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -19,9 +20,9 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
- inkscape:cx="350"
+ inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.en_US.svg b/share/templates/default.en_US.svg
new file mode 100644
index 000000000..9ebba869d
--- /dev/null
+++ b/share/templates/default.en_US.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ width="8.5in"
+ height="11in"
+ viewBox="0 0 8.5 11">
+ <defs />
+ <sodipodi:namedview
+ inkscape:document-units="in"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.36"
+ inkscape:cx="340"
+ inkscape:cy="500"
+ inkscape:current-layer="layer1" />
+ <metadata>
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" />
+</svg>
diff --git a/share/templates/default.eo.svg b/share/templates/default.eo.svg
index 1b2008d53..3614b4a73 100644
--- a/share/templates/default.eo.svg
+++ b/share/templates/default.eo.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.es.svg b/share/templates/default.es.svg
index 5b2741a9d..fc9f74d41 100644
--- a/share/templates/default.es.svg
+++ b/share/templates/default.es.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -19,9 +20,9 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
- inkscape:cx="350"
+ inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.eu.svg b/share/templates/default.eu.svg
index 5531c802f..fc9f74d41 100644
--- a/share/templates/default.eu.svg
+++ b/share/templates/default.eu.svg
@@ -1,23 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
height="297mm"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.45.1"
- sodipodi:docname="default.eu.svg"
- sodipodi:docbase="/home/dooteo/src/inkscape/share/templates"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs4" />
+ viewBox="0 0 210 297">
+ <defs />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
@@ -26,16 +20,11 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
- inkscape:cx="350"
- inkscape:cy="520"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- inkscape:window-width="872"
- inkscape:window-height="635"
- inkscape:window-x="0"
- inkscape:window-y="27" />
- <metadata
- id="metadata7">
+ inkscape:cx="375"
+ inkscape:cy="520"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1" />
+ <metadata>
<rdf:RDF>
<cc:Work
rdf:about="">
@@ -45,8 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g
- inkscape:label="Capa 1"
- inkscape:groupmode="layer"
- id="layer1" />
+ <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.fi.svg b/share/templates/default.fi.svg
index 0a7b41c2b..8b8e71330 100644
--- a/share/templates/default.fi.svg
+++ b/share/templates/default.fi.svg
@@ -1,22 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.44"
- sodipodi:docname="default.fi.svg"
- sodipodi:docbase="/home/tsoots/ohj/translations/po">
- <defs
- id="defs1903" />
+ viewBox="0 0 210 297">
+ <defs />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
@@ -25,16 +20,11 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
- inkscape:cx="350"
- inkscape:cy="520"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- inkscape:window-width="877"
- inkscape:window-height="739"
- inkscape:window-x="177"
- inkscape:window-y="0" />
- <metadata
- id="metadata1906">
+ inkscape:cx="375"
+ inkscape:cy="520"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1" />
+ <metadata>
<rdf:RDF>
<cc:Work
rdf:about="">
@@ -44,9 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1" />
+ <g inkscape:label="Taso 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.fr.svg b/share/templates/default.fr.svg
index 2f211f9f7..2622b1d33 100644
--- a/share/templates/default.fr.svg
+++ b/share/templates/default.fr.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.hu.svg b/share/templates/default.hu.svg
index 41e4cb73c..f091ddee4 100644
--- a/share/templates/default.hu.svg
+++ b/share/templates/default.hu.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.it.svg b/share/templates/default.it.svg
index df4f3ed95..422e95e1d 100644
--- a/share/templates/default.it.svg
+++ b/share/templates/default.it.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.ja.svg b/share/templates/default.ja.svg
index bbec862b6..db943edf6 100644
--- a/share/templates/default.ja.svg
+++ b/share/templates/default.ja.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -20,8 +21,8 @@
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="375"
- inkscape:cy="540"
- inkscape:document-units="px"
+ inkscape:cy="520"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.lt.svg b/share/templates/default.lt.svg
index 58d9042f5..9f6666eda 100644
--- a/share/templates/default.lt.svg
+++ b/share/templates/default.lt.svg
@@ -1,22 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448819"
- height="1052.3622047"
- id="svg2023"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docname="default.lt.svg"
- sodipodi:docbase="D:\leisure\ink\share\templates">
- <defs
- id="defs2025" />
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
+ <defs />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
@@ -26,15 +21,10 @@
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="375"
- inkscape:cy="520"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- inkscape:window-width="747"
- inkscape:window-height="546"
- inkscape:window-x="132"
- inkscape:window-y="132" />
- <metadata
- id="metadata2028">
+ inkscape:cy="520"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1" />
+ <metadata>
<rdf:RDF>
<cc:Work
rdf:about="">
@@ -44,8 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g
- inkscape:label="Sluoksnis 1"
- inkscape:groupmode="layer"
- id="layer1" />
+ <g inkscape:label="Sluoksnis 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.nl.svg b/share/templates/default.nl.svg
index 448a2a152..da08cc5a8 100644
--- a/share/templates/default.nl.svg
+++ b/share/templates/default.nl.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.pl.svg b/share/templates/default.pl.svg
index a368bef1b..6a1161799 100644
--- a/share/templates/default.pl.svg
+++ b/share/templates/default.pl.svg
@@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ width="210mm"
height="297mm"
- width="210mm">
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -18,10 +19,10 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:cx="375"
- inkscape:cy="520"
inkscape:zoom="0.35"
- inkscape:document-units="px"
+ inkscape:cx="375"
+ inkscape:cy="520"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
@@ -33,5 +34,5 @@
</cc:Work>
</rdf:RDF>
</metadata>
- <g inkscape:groupmode="layer" inkscape:label="Warstwa 1" id="layer1" />
+ <g inkscape:label="Warstwa 1" inkscape:groupmode="layer" id="layer1" />
</svg>
diff --git a/share/templates/default.pt_BR.svg b/share/templates/default.pt_BR.svg
index 771f8be22..e1c26c7fb 100644
--- a/share/templates/default.pt_BR.svg
+++ b/share/templates/default.pt_BR.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -19,9 +20,9 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
- inkscape:cx="350"
+ inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.ro.svg b/share/templates/default.ro.svg
index 8c985e2a7..906db67b4 100644
--- a/share/templates/default.ro.svg
+++ b/share/templates/default.ro.svg
@@ -9,7 +9,8 @@
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
width="210mm"
- height="297mm">
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.sk.svg b/share/templates/default.sk.svg
index 2f2fac9c8..583d27bb7 100644
--- a/share/templates/default.sk.svg
+++ b/share/templates/default.sk.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.svg b/share/templates/default.svg
index a6a610fdb..f5da5fdfd 100644
--- a/share/templates/default.svg
+++ b/share/templates/default.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default.zh_TW.svg b/share/templates/default.zh_TW.svg
index ca203048c..6dcee2ef9 100644
--- a/share/templates/default.zh_TW.svg
+++ b/share/templates/default.zh_TW.svg
@@ -8,8 +8,9 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="744.09448819"
- height="1052.3622047">
+ width="210mm"
+ height="297mm"
+ viewBox="0 0 210 297">
<defs />
<sodipodi:namedview
id="base"
@@ -21,7 +22,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="px"
+ inkscape:document-units="mm"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>
diff --git a/share/templates/default_mm.svg b/share/templates/default_px.svg
index f5da5fdfd..eb1cad0ca 100644
--- a/share/templates/default_mm.svg
+++ b/share/templates/default_px.svg
@@ -8,9 +8,8 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
- width="210mm"
- height="297mm"
- viewBox="0 0 210 297">
+ width="793.7007874"
+ height="1122.519688">
<defs />
<sodipodi:namedview
id="base"
@@ -22,7 +21,7 @@
inkscape:zoom="0.35"
inkscape:cx="375"
inkscape:cy="520"
- inkscape:document-units="mm"
+ inkscape:document-units="px"
inkscape:current-layer="layer1" />
<metadata>
<rdf:RDF>