From 52f5519ad20ae01ad83978615173eac0080e7e1f Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Sun, 19 Oct 2014 12:45:53 +0200 Subject: Typo. Fixing typos in translatable strings. Translations. POT file and Italian translation update (by Firas Hanife). (bzr r13626) --- share/extensions/gcodetools.py | 4 ++-- share/symbols/MapSymbolsNPS.svg | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'share') diff --git a/share/extensions/gcodetools.py b/share/extensions/gcodetools.py index b9e6348f2..12f438cca 100755 --- a/share/extensions/gcodetools.py +++ b/share/extensions/gcodetools.py @@ -3321,7 +3321,7 @@ class Gcodetools(inkex.Effect): self.error(_("No paths are selected! Trying to work on all available paths."),"warning") if self.selected_paths == {}: - self.error(_("Noting is selected. Please select something."),"warning") + self.error(_("Nothing is selected. Please select something."),"warning") a = self.options.plasma_prepare_corners_tolerance corner_tolerance = cross([1.,0.], [math.cos(a),math.sin(a)]) @@ -4664,7 +4664,7 @@ class Gcodetools(inkex.Effect): ################################################################################ def dxfpoints(self): if self.selected_paths == {}: - self.error(_("Noting is selected. Please select something to convert to drill point (dxfpoint) or clear point sign."),"warning") + self.error(_("Nothing is selected. Please select something to convert to drill point (dxfpoint) or clear point sign."),"warning") for layer in self.layers : if layer in self.selected_paths : for path in self.selected_paths[layer]: diff --git a/share/symbols/MapSymbolsNPS.svg b/share/symbols/MapSymbolsNPS.svg index 4a8a4bdba..81b24adde 100644 --- a/share/symbols/MapSymbolsNPS.svg +++ b/share/symbols/MapSymbolsNPS.svg @@ -309,7 +309,7 @@ - Four Wheel Drive Road" + Four Wheel Drive Road @@ -318,7 +318,7 @@ - Four Wheel Drive Road" + Four Wheel Drive Road -- cgit v1.2.3 From 817c1153fa4607ce381565a1ff9322d2ea2b517d Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Sun, 19 Oct 2014 21:06:15 +0200 Subject: Fix a bug in stroke joins in symbolic icons miter toogled with bevel (bzr r13629) --- share/icons/symbolic_icons.svg | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'share') diff --git a/share/icons/symbolic_icons.svg b/share/icons/symbolic_icons.svg index c9eb469ff..cd06c902e 100644 --- a/share/icons/symbolic_icons.svg +++ b/share/icons/symbolic_icons.svg @@ -3342,7 +3342,7 @@ - + @@ -3356,9 +3356,8 @@ - + - @@ -3371,7 +3370,6 @@ - @@ -3387,7 +3385,7 @@ - + @@ -3400,7 +3398,7 @@ - + -- cgit v1.2.3 From 13aef9138410eeb3de3c6647a7201eb3dfeb3de7 Mon Sep 17 00:00:00 2001 From: Alvin Penner Date: Wed, 22 Oct 2014 17:16:58 -0400 Subject: use double precision Quantity::convert for units conversion in viewBox, instead of single-precision SVGLength.computed. (bzr r13632) --- share/ui/units.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'share') diff --git a/share/ui/units.xml b/share/ui/units.xml index ef00aa9ce..286e9e62b 100644 --- a/share/ui/units.xml +++ b/share/ui/units.xml @@ -39,21 +39,21 @@ millimeter millimeters mm - 3.5433071 + 3.543307087 Millimeters (25.4 mm/in) centimeter centimeters cm - 35.433071 + 35.43307087 Centimeters (10 mm/cm) meter meters m - 3543.3071 + 3543.307087 Meters (100 cm/m) -- cgit v1.2.3