summaryrefslogtreecommitdiffstats
path: root/share/templates
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-02-16 18:09:11 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-02-16 18:09:11 +0000
commitddeb8b51fff33b9503eca3c13e8fd113324fa91c (patch)
treea92feda05bb46e183ff061846c43070a9fc0ea0e /share/templates
parentOptimize creation of localized default templates (diff)
downloadinkscape-ddeb8b51fff33b9503eca3c13e8fd113324fa91c.tar.gz
inkscape-ddeb8b51fff33b9503eca3c13e8fd113324fa91c.zip
Revert to "default.$lang.svg" as name for default templates
It was changed in 19316e382c0a2ae5105c746191c3fba90f54995b to avoid some CMake trouble but breaks the established naming scheme and is not necessary after the previous commit.
Diffstat (limited to 'share/templates')
-rwxr-xr-xshare/templates/create_default_templates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/templates/create_default_templates.py b/share/templates/create_default_templates.py
index eb8de35ed..bec6c514e 100755
--- a/share/templates/create_default_templates.py
+++ b/share/templates/create_default_templates.py
@@ -53,7 +53,7 @@ for language in languages:
# now create localized version of English template file (if we have a translation)
template_file = source_dir + '/share/templates/default.svg'
- output_file = binary_dir + '/share/templates/default-' + language + '.svg'
+ output_file = binary_dir + '/share/templates/default.' + language + '.svg'
if os.path.isfile(output_file):
os.remove(output_file)