summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/elements/__init__.py1
-rw-r--r--lib/elements/empty_d_object.py20
-rw-r--r--lib/elements/utils.py8
-rw-r--r--lib/extensions/base.py7
-rw-r--r--lib/extensions/cleanup.py14
-rw-r--r--translations/messages_af_ZA.po62
-rw-r--r--translations/messages_ar_SA.po62
-rw-r--r--translations/messages_ca_ES.po62
-rw-r--r--translations/messages_cs_CZ.po62
-rw-r--r--translations/messages_da_DK.po62
-rw-r--r--translations/messages_de_DE.po86
-rw-r--r--translations/messages_el_GR.po62
-rw-r--r--translations/messages_en_US.po62
-rw-r--r--translations/messages_es_ES.po82
-rw-r--r--translations/messages_fi_FI.po84
-rw-r--r--translations/messages_fr_FR.po90
-rw-r--r--translations/messages_he_IL.po62
-rw-r--r--translations/messages_hu_HU.po62
-rw-r--r--translations/messages_it_IT.po86
-rw-r--r--translations/messages_ja_JP.po62
-rw-r--r--translations/messages_ko_KR.po62
-rw-r--r--translations/messages_nl_NL.po62
-rw-r--r--translations/messages_no_NO.po62
-rw-r--r--translations/messages_pl_PL.po86
-rw-r--r--translations/messages_pt_BR.po62
-rw-r--r--translations/messages_pt_PT.po62
-rw-r--r--translations/messages_ro_RO.po62
-rw-r--r--translations/messages_ru_RU.po62
-rw-r--r--translations/messages_sr_SP.po62
-rw-r--r--translations/messages_sv_SE.po62
-rw-r--r--translations/messages_tr_TR.po62
-rw-r--r--translations/messages_uk_UA.po82
-rw-r--r--translations/messages_vi_VN.po62
-rw-r--r--translations/messages_zh_CN.po62
-rw-r--r--translations/messages_zh_TW.po62
35 files changed, 1053 insertions, 1019 deletions
diff --git a/lib/elements/__init__.py b/lib/elements/__init__.py
index 75509e29..92ef94a3 100644
--- a/lib/elements/__init__.py
+++ b/lib/elements/__init__.py
@@ -1,6 +1,7 @@
from auto_fill import AutoFill
from clone import Clone
from element import EmbroideryElement
+from empty_d_object import EmptyDObject
from fill import Fill
from image import ImageObject
from polyline import Polyline
diff --git a/lib/elements/empty_d_object.py b/lib/elements/empty_d_object.py
new file mode 100644
index 00000000..69a128ad
--- /dev/null
+++ b/lib/elements/empty_d_object.py
@@ -0,0 +1,20 @@
+from ..i18n import _
+from .element import EmbroideryElement
+from .validation import ObjectTypeWarning
+
+
+class EmptyD(ObjectTypeWarning):
+ name = _("Empty D-Attribute")
+ description = _("There is an invalid path object in the document, the d-attribute is missing.")
+ steps_to_solve = [
+ _('* Run Extensions > Ink/Stitch > Troubleshoot > Cleanup Document...')
+ ]
+
+
+class EmptyDObject(EmbroideryElement):
+
+ def validation_warnings(self):
+ yield EmptyD((0, 0))
+
+ def to_patches(self, last_patch):
+ return []
diff --git a/lib/elements/utils.py b/lib/elements/utils.py
index c34c4b25..378cec0c 100644
--- a/lib/elements/utils.py
+++ b/lib/elements/utils.py
@@ -1,9 +1,10 @@
from ..commands import is_command
-from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_POLYLINE_TAG,
- SVG_TEXT_TAG)
+from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_PATH_TAG,
+ SVG_POLYLINE_TAG, SVG_TEXT_TAG)
from .auto_fill import AutoFill
from .clone import Clone, is_clone
from .element import EmbroideryElement
+from .empty_d_object import EmptyDObject
from .fill import Fill
from .image import ImageObject
from .polyline import Polyline
@@ -19,6 +20,9 @@ def node_to_elements(node): # noqa: C901
elif is_clone(node):
return [Clone(node)]
+ elif node.tag == SVG_PATH_TAG and not node.get('d', ''):
+ return [EmptyDObject(node)]
+
elif node.tag in EMBROIDERABLE_TAGS:
element = EmbroideryElement(node)
diff --git a/lib/extensions/base.py b/lib/extensions/base.py
index 310dd873..9f6dc5f6 100644
--- a/lib/extensions/base.py
+++ b/lib/extensions/base.py
@@ -14,7 +14,8 @@ from ..elements.clone import is_clone, is_embroiderable_clone
from ..i18n import _
from ..svg import generate_unique_id
from ..svg.tags import (CONNECTOR_TYPE, EMBROIDERABLE_TAGS, INKSCAPE_GROUPMODE,
- NOT_EMBROIDERABLE_TAGS, SVG_DEFS_TAG, SVG_GROUP_TAG)
+ NOT_EMBROIDERABLE_TAGS, SVG_DEFS_TAG, SVG_GROUP_TAG,
+ SVG_PATH_TAG)
SVG_METADATA_TAG = inkex.addNS("metadata", "svg")
@@ -164,9 +165,9 @@ class InkstitchExtension(inkex.Effect):
nodes.extend(self.descendants(child, selected, troubleshoot))
if selected:
- if node.tag in EMBROIDERABLE_TAGS or is_embroiderable_clone(node):
+ if (node.tag in EMBROIDERABLE_TAGS or is_embroiderable_clone(node)) and not (node.tag == SVG_PATH_TAG and not node.get('d', '')):
nodes.append(node)
- elif troubleshoot and (node.tag in NOT_EMBROIDERABLE_TAGS or is_clone(node)):
+ elif troubleshoot and (node.tag in NOT_EMBROIDERABLE_TAGS or node.tag in EMBROIDERABLE_TAGS or is_clone(node)):
nodes.append(node)
return nodes
diff --git a/lib/extensions/cleanup.py b/lib/extensions/cleanup.py
index f8cb7d9a..e06b4bea 100644
--- a/lib/extensions/cleanup.py
+++ b/lib/extensions/cleanup.py
@@ -1,5 +1,7 @@
import sys
+from inkex import NSS
+
from ..elements import Fill, Stroke
from ..i18n import _
from .base import InkstitchExtension
@@ -22,13 +24,19 @@ class Cleanup(InkstitchExtension):
# Remove selection, we want every element in the document
self.selected = {}
+ count = 0
+ svg = self.document.getroot()
+ empty_d_objects = svg.xpath(".//svg:path[@d='' or not(@d)]", namespaces=NSS)
+ for empty in empty_d_objects:
+ empty.getparent().remove(empty)
+ count += 1
+
if not self.get_elements():
+ print >> sys.stderr, _("%s elements removed" % count)
return
- count = 0
for element in self.elements:
- if (isinstance(element, Fill) and self.rm_fill and
- element.shape.area < self.fill_threshold):
+ if (isinstance(element, Fill) and self.rm_fill and element.shape.area < self.fill_threshold):
element.node.getparent().remove(element.node)
count += 1
if (isinstance(element, Stroke) and self.rm_stroke and
diff --git a/translations/messages_af_ZA.po b/translations/messages_af_ZA.po
index 24f5f01d..ebc991eb 100644
--- a/translations/messages_af_ZA.po
+++ b/translations/messages_af_ZA.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: af_ZA\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_ar_SA.po b/translations/messages_ar_SA.po
index 84745fea..1ff3be7a 100644
--- a/translations/messages_ar_SA.po
+++ b/translations/messages_ar_SA.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ar_SA\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_ca_ES.po b/translations/messages_ca_ES.po
index 0e7c8972..c2bee8f2 100644
--- a/translations/messages_ca_ES.po
+++ b/translations/messages_ca_ES.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ca_ES\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_cs_CZ.po b/translations/messages_cs_CZ.po
index 78198ed8..a5c1b8f3 100644
--- a/translations/messages_cs_CZ.po
+++ b/translations/messages_cs_CZ.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: cs_CZ\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_da_DK.po b/translations/messages_da_DK.po
index c681f4bf..f3b354ee 100644
--- a/translations/messages_da_DK.po
+++ b/translations/messages_da_DK.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: da_DK\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_de_DE.po b/translations/messages_de_DE.po
index f3def740..dca77ca7 100644
--- a/translations/messages_de_DE.po
+++ b/translations/messages_de_DE.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: de_DE\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch Mittelgroße Schrift"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Für mittelgroße Schriftgrößen geeignet. Der Großbuchstabe \"M\" ist bei 100% Skalierung 15,24 mm breit. Die Schrift kann von 75% bis auf 150% skaliert werden. Alle Satinkolumnen haben eine Konturunterlage."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr "TT Directors"
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr "Eine Schrift geeignete für wichtiges"
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch Kleine Schrift"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Für kleine Schriftgrößen geeignet. Der Großbuchstabe \"M\" ist bei 100% Skalierung 5,08 mm breit. Die Schrift kann bis auf 300% skaliert werden."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr ""
+msgid "TT Masters"
+msgstr "TT Meister"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr ""
+msgid "A font suited for heavy typing :)"
+msgstr "Eine Schrift geeignete für fett geschriebenes :)"
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch Mittelgroße Schrift"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr ""
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Für mittelgroße Schriftgrößen geeignet. Der Großbuchstabe \"M\" ist bei 100% Skalierung 15,24 mm breit. Die Schrift kann von 75% bis auf 150% skaliert werden. Alle Satinkolumnen haben eine Konturunterlage."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT Meister"
+msgid "Geneva Simple Sans Rounded"
+msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Eine Schrift geeignete für fett geschriebenes :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch Kleine Schrift"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Für kleine Schriftgrößen geeignet. Der Großbuchstabe \"M\" ist bei 100% Skalierung 5,08 mm breit. Die Schrift kann bis auf 300% skaliert werden."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_el_GR.po b/translations/messages_el_GR.po
index abb20679..508d8b2e 100644
--- a/translations/messages_el_GR.po
+++ b/translations/messages_el_GR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: el_GR\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_en_US.po b/translations/messages_en_US.po
index 4e037f3a..22cd8f85 100644
--- a/translations/messages_en_US.po
+++ b/translations/messages_en_US.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: English\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: en_US\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_es_ES.po b/translations/messages_es_ES.po
index ecda381e..5547a130 100644
--- a/translations/messages_es_ES.po
+++ b/translations/messages_es_ES.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: es_ES\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch Fuente Tamaño Medio"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Una fuente básica adecuada para caracteres de tamaño medio. La \"M\", eme mayúscula, tiene un ancho de 15,24mm en una ecala de 100%. Puede escalarse entre 75% y 150%. Los puntos de satín tienen un contorno base."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr "TT Directors"
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch Fuente Pequeña"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Fuente adecuada para caracteres pequeños. La \"M\", eme mayúscula, tiene 5,08mm de ancho en la escala 100%. Se puede escalar hasta 300%."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr ""
+msgid "TT Masters"
+msgstr "TT Masters"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch Fuente Tamaño Medio"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr ""
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Una fuente básica adecuada para caracteres de tamaño medio. La \"M\", eme mayúscula, tiene un ancho de 15,24mm en una ecala de 100%. Puede escalarse entre 75% y 150%. Los puntos de satín tienen un contorno base."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT Masters"
+msgid "Geneva Simple Sans Rounded"
+msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch Fuente Pequeña"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Fuente adecuada para caracteres pequeños. La \"M\", eme mayúscula, tiene 5,08mm de ancho en la escala 100%. Se puede escalar hasta 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_fi_FI.po b/translations/messages_fi_FI.po
index 0076035d..15f528b7 100644
--- a/translations/messages_fi_FI.po
+++ b/translations/messages_fi_FI.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: fi_FI\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch Keskikokoinen kirjasin"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr ""
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr "TT Directors"
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr "Ohjaus kirjasin tyyppi"
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch Small Font"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Pienikirjasin tyyppi."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr ""
+msgid "TT Masters"
+msgstr "TT Masters"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr ""
+msgid "A font suited for heavy typing :)"
+msgstr "Raskaampaan käyttöön"
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch Keskikokoinen kirjasin"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT Masters"
+msgid "Geneva Simple Sans Rounded"
+msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Raskaampaan käyttöön"
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Pienikirjasin tyyppi."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_fr_FR.po b/translations/messages_fr_FR.po
index d5e434cd..6a6f0e50 100644
--- a/translations/messages_fr_FR.po
+++ b/translations/messages_fr_FR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: fr_FR\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Fonte médium pour Ink/Stitch"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Une fonte idéale pour des caractères de taille moyenne. La lettre \"M\" (majuscule) a une largeur de 15,24 mm à une échelle de 100%. On peut transformer la taille entre 75% et 150%. Les points satin utilisent une sous-couches avec des lignes de contour."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr "TT directors"
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr "Une fonte faite pour des metteurs en scène"
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Petite fonte Ink/Stitch"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Une fonte adaptée pour les petits caractères. Le \"M\" a une largeur de 5,08mm à une échelle de 100%. Il est possible de l’agrandir de 300%."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr "Geneva Simple Sans"
+msgid "TT Masters"
+msgstr "TT masters"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr "Convient aux petites polices (6 à 15 mm)"
+msgid "A font suited for heavy typing :)"
+msgstr "Une fonte \"lourde\""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr "Dejavu pour Inkstitch semi-condensé"
+msgid "Ink/Stitch Medium Font"
+msgstr "Fonte médium pour Ink/Stitch"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr "Une lettre majuscule (em) a une largeur de 19,8 millimètres à l'échelle 100 %. Peut être réduit à 80 % ou augmenté à 150 %. Chaque satin a une sous-couche centrale."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Une fonte idéale pour des caractères de taille moyenne. La lettre \"M\" (majuscule) a une largeur de 15,24 mm à une échelle de 100%. On peut transformer la taille entre 75% et 150%. Les points satin utilisent une sous-couches avec des lignes de contour."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
-msgstr "Geneva Simple Sans Arrondi"
+msgid "Geneva Simple Sans"
+msgstr "Geneva Simple Sans"
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
-msgstr "Convient aux petites polices de caractères (8 à 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
+msgstr "Convient aux petites polices (6 à 15 mm)"
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT masters"
+msgid "Geneva Simple Sans Rounded"
+msgstr "Geneva Simple Sans Arrondi"
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Une fonte \"lourde\""
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr "Convient aux petites polices de caractères (8 à 20 mm)"
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Petite fonte Ink/Stitch"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr "Dejavu pour Inkstitch semi-condensé"
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Une fonte adaptée pour les petits caractères. Le \"M\" a une largeur de 5,08mm à une échelle de 100%. Il est possible de l’agrandir de 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr "Une lettre majuscule (em) a une largeur de 19,8 millimètres à l'échelle 100 %. Peut être réduit à 80 % ou augmenté à 150 %. Chaque satin a une sous-couche centrale."
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_he_IL.po b/translations/messages_he_IL.po
index 5b34ebd5..ff11bfde 100644
--- a/translations/messages_he_IL.po
+++ b/translations/messages_he_IL.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: he_IL\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_hu_HU.po b/translations/messages_hu_HU.po
index 740b47db..98742996 100644
--- a/translations/messages_hu_HU.po
+++ b/translations/messages_hu_HU.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: hu_HU\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_it_IT.po b/translations/messages_it_IT.po
index df5bdcf7..9f30184b 100644
--- a/translations/messages_it_IT.po
+++ b/translations/messages_it_IT.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: it_IT\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch Font Medio"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Font di base adatto per caratteri di medie dimensioni. L'em maiuscolo è largo 1,5 cm a scala 100%. Può essere ridotto al 75% o ampliato al 150%. Ogni satinato ha un contorno sul livello inferiore."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr "TT Direttori"
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr "Un font adatto a dare direzione"
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch Font Piccolo"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Un font adatto per caratteri piccoli. L'em maiuscolo è largo 0.5 cm al 100%. Può essere ampliato fino a 300%."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr ""
+msgid "TT Masters"
+msgstr "TT Masters"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr ""
+msgid "A font suited for heavy typing :)"
+msgstr "Un font adatto a chi batte forte sui tasti :)"
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch Font Medio"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr ""
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Font di base adatto per caratteri di medie dimensioni. L'em maiuscolo è largo 1,5 cm a scala 100%. Può essere ridotto al 75% o ampliato al 150%. Ogni satinato ha un contorno sul livello inferiore."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT Masters"
+msgid "Geneva Simple Sans Rounded"
+msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Un font adatto a chi batte forte sui tasti :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch Font Piccolo"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Un font adatto per caratteri piccoli. L'em maiuscolo è largo 0.5 cm al 100%. Può essere ampliato fino a 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_ja_JP.po b/translations/messages_ja_JP.po
index 9f670da1..1dfe95c3 100644
--- a/translations/messages_ja_JP.po
+++ b/translations/messages_ja_JP.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ja_JP\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_ko_KR.po b/translations/messages_ko_KR.po
index d1d9e92a..e71a62bb 100644
--- a/translations/messages_ko_KR.po
+++ b/translations/messages_ko_KR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ko_KR\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_nl_NL.po b/translations/messages_nl_NL.po
index c4cba887..dd271cd0 100644
--- a/translations/messages_nl_NL.po
+++ b/translations/messages_nl_NL.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: nl_NL\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_no_NO.po b/translations/messages_no_NO.po
index 93fbfa1e..94d50e0f 100644
--- a/translations/messages_no_NO.po
+++ b/translations/messages_no_NO.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: no_NO\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_pl_PL.po b/translations/messages_pl_PL.po
index 5d8554f4..80985a47 100644
--- a/translations/messages_pl_PL.po
+++ b/translations/messages_pl_PL.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: pl_PL\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch średnia czcionka"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Podstawowa czcionka do średniej wielkości znaków. Wielkość w skali 100% wynosi 15,24 mm. Można skalować od 75% do 150%. Każda satyna ma podkład konturowy."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr ""
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch mała czcionka"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Czcionka dostosowana do małych znaków. Przy skali 100% wysokość wynosi 5,08 mm. Można skalować do 300%."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
-msgstr ""
+msgid "TT Masters"
+msgstr "TT Metry"
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr ""
+msgid "A font suited for heavy typing :)"
+msgstr "Czcionka dostosowana do ciężkiego pisania :)"
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch średnia czcionka"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr ""
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Podstawowa czcionka do średniej wielkości znaków. Wielkość w skali 100% wynosi 15,24 mm. Można skalować od 75% do 150%. Każda satyna ma podkład konturowy."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
-msgstr "TT Metry"
+msgid "Geneva Simple Sans Rounded"
+msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Czcionka dostosowana do ciężkiego pisania :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch mała czcionka"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Czcionka dostosowana do małych znaków. Przy skali 100% wysokość wynosi 5,08 mm. Można skalować do 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_pt_BR.po b/translations/messages_pt_BR.po
index 48a690e5..1e50b8d2 100644
--- a/translations/messages_pt_BR.po
+++ b/translations/messages_pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: pt_BR\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_pt_PT.po b/translations/messages_pt_PT.po
index 9d7e0156..f0e4187c 100644
--- a/translations/messages_pt_PT.po
+++ b/translations/messages_pt_PT.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: pt_PT\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_ro_RO.po b/translations/messages_ro_RO.po
index 865587fd..d7b3910c 100644
--- a/translations/messages_ro_RO.po
+++ b/translations/messages_ro_RO.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ro_RO\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_ru_RU.po b/translations/messages_ru_RU.po
index 8bf69878..ea256b36 100644
--- a/translations/messages_ru_RU.po
+++ b/translations/messages_ru_RU.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: ru_RU\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_sr_SP.po b/translations/messages_sr_SP.po
index 6236c5d8..335cffd5 100644
--- a/translations/messages_sr_SP.po
+++ b/translations/messages_sr_SP.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: sr_SP\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_sv_SE.po b/translations/messages_sv_SE.po
index 938ab763..1c6a0a31 100644
--- a/translations/messages_sv_SE.po
+++ b/translations/messages_sv_SE.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: sv_SE\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_tr_TR.po b/translations/messages_tr_TR.po
index 19cb77cf..a374ce51 100644
--- a/translations/messages_tr_TR.po
+++ b/translations/messages_tr_TR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: tr_TR\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_uk_UA.po b/translations/messages_uk_UA.po
index f702f01a..1516160d 100644
--- a/translations/messages_uk_UA.po
+++ b/translations/messages_uk_UA.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n"
@@ -22,78 +22,78 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: uk_UA\n"
-#. name of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
-msgstr "Ink/Stitch середній шрифт"
-
-#. description of font in fonts/medium_font
-#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
-msgstr "Основний шрифт підходить для символів середнього розміру. Столиця є шириною 0,6 дюйма в масштабі 100%. Можна зменшити до 75% або до 150%. Кожен атлас має контурну підкладку."
-
#. name of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:6
+#: inkstitch-fonts-metadata.py:2
msgid "TT Directors"
msgstr ""
#. description of font in fonts/tt_directors
-#: inkstitch-fonts-metadata.py:8
+#: inkstitch-fonts-metadata.py:4
msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:6
+msgid "Ink/Stitch Small Font"
+msgstr "Ink/Stitch дрібний шрифт"
+
+#. description of font in fonts/small_font
+#: inkstitch-fonts-metadata.py:8
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgstr "Шрифт пасує до маленьких написів. Великі літери мають ширину 0,2 дюйма при 100% масштабі. Можна масштабувати до 300%."
+
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
-msgstr ""
+msgid "A font suited for heavy typing :)"
+msgstr "Шрифт пасує до важкого тексту :)"
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
-msgstr ""
+msgid "Ink/Stitch Medium Font"
+msgstr "Ink/Stitch середній шрифт"
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
-msgstr ""
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgstr "Основний шрифт підходить для символів середнього розміру. Столиця є шириною 0,6 дюйма в масштабі 100%. Можна зменшити до 75% або до 150%. Кожен атлас має контурну підкладку."
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
-msgstr "Шрифт пасує до важкого тексту :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
+msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
-msgstr "Ink/Stitch дрібний шрифт"
+msgid "Dejavu for Inkstitch semicondensed"
+msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
-msgstr "Шрифт пасує до маленьких написів. Великі літери мають ширину 0,2 дюйма при 100% масштабі. Можна масштабувати до 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgstr ""
#: inkstitch.py:56
msgid "Ink/Stitch experienced an unexpected error."
diff --git a/translations/messages_vi_VN.po b/translations/messages_vi_VN.po
index 9e35e4dd..18bd4aa6 100644
--- a/translations/messages_vi_VN.po
+++ b/translations/messages_vi_VN.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: vi_VN\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_zh_CN.po b/translations/messages_zh_CN.po
index 2057928e..8e9af287 100644
--- a/translations/messages_zh_CN.po
+++ b/translations/messages_zh_CN.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: zh_CN\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56
diff --git a/translations/messages_zh_TW.po b/translations/messages_zh_TW.po
index 5973b0c4..4e36bb5e 100644
--- a/translations/messages_zh_TW.po
+++ b/translations/messages_zh_TW.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-19 00:21+0000\n"
-"PO-Revision-Date: 2020-07-09 00:28\n"
+"POT-Creation-Date: 2020-08-07 00:32+0000\n"
+"PO-Revision-Date: 2020-08-07 00:33\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"MIME-Version: 1.0\n"
@@ -22,77 +22,77 @@ msgstr ""
"X-Crowdin-File-ID: 5\n"
"Language: zh_TW\n"
-#. name of font in fonts/medium_font
+#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:2
-msgid "Ink/Stitch Medium Font"
+msgid "TT Directors"
msgstr ""
-#. description of font in fonts/medium_font
+#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:4
-#, python-format
-msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
+msgid "A font suited for directing"
msgstr ""
-#. name of font in fonts/tt_directors
+#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:6
-msgid "TT Directors"
+msgid "Ink/Stitch Small Font"
msgstr ""
-#. description of font in fonts/tt_directors
+#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:8
-msgid "A font suited for directing"
+#, python-format
+msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
-#. name of font in fonts/geneva_simple
+#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:10
-msgid "Geneva Simple Sans"
+msgid "TT Masters"
msgstr ""
-#. description of font in fonts/geneva_simple
+#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:12
-msgid "Suitable for small fonts (6 to 15mm)"
+msgid "A font suited for heavy typing :)"
msgstr ""
-#. name of font in fonts/dejavufont
+#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:14
-msgid "Dejavu for Inkstitch semicondensed"
+msgid "Ink/Stitch Medium Font"
msgstr ""
-#. description of font in fonts/dejavufont
+#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:16
#, python-format
-msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
+msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
-#. name of font in fonts/geneva_rounded
+#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:18
-msgid "Geneva Simple Sans Rounded"
+msgid "Geneva Simple Sans"
msgstr ""
-#. description of font in fonts/geneva_rounded
+#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:20
-msgid "Suitable for small fonts (8 to 20 mm)"
+msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
-#. name of font in fonts/tt_masters
+#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:22
-msgid "TT Masters"
+msgid "Geneva Simple Sans Rounded"
msgstr ""
-#. description of font in fonts/tt_masters
+#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:24
-msgid "A font suited for heavy typing :)"
+msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
-#. name of font in fonts/small_font
+#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:26
-msgid "Ink/Stitch Small Font"
+msgid "Dejavu for Inkstitch semicondensed"
msgstr ""
-#. description of font in fonts/small_font
+#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:28
#, python-format
-msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
+msgid "The capital em is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#: inkstitch.py:56