From 9670db0064c81ed9dfd7d5184711a28aa8d5cf37 Mon Sep 17 00:00:00 2001 From: "Liam P. White" Date: Sun, 9 Nov 2014 11:38:49 -0500 Subject: Add special rotation solution to optimized transforms, found by Johan (bzr r13691) --- src/svg/svg-affine-test.h | 7 ++++--- src/svg/svg-affine.cpp | 18 +++++++++--------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/svg/svg-affine-test.h b/src/svg/svg-affine-test.h index 6d8387328..af670a3a8 100644 --- a/src/svg/svg-affine-test.h +++ b/src/svg/svg-affine-test.h @@ -35,7 +35,7 @@ private: static test_t const write_matrix_tests[2]; static test_t const write_translate_tests[3]; static test_t const write_scale_tests[3]; - static test_t const write_rotate_tests[2]; + static test_t const write_rotate_tests[3]; static test_t const write_skew_tests[3]; public: SvgAffineTest() { @@ -242,9 +242,10 @@ SvgAffineTest::test_t const SvgAffineTest::write_scale_tests[3] = { {"scale(0)",Geom::Affine(0,0,0,0,0,0)}, {"scale(7)",Geom::Affine(7,0,0,7,0,0)}, {"scale(2,3)",Geom::Affine(2,0,0,3,0,0)}}; -SvgAffineTest::test_t const SvgAffineTest::write_rotate_tests[2] = { +SvgAffineTest::test_t const SvgAffineTest::write_rotate_tests[3] = { {"rotate(13)",Geom::Affine(cos(13.*DEGREE),sin(13.*DEGREE),-sin(13.*DEGREE),cos(13.*DEGREE),0,0)}, - {"rotate(-13,7,11)",Geom::Affine(cos(-13.*DEGREE),sin(-13.*DEGREE),-sin(-13.*DEGREE),cos(-13.*DEGREE),(1-cos(-13.*DEGREE))*7+sin(-13.*DEGREE)*11,(1-cos(-13.*DEGREE))*11-sin(-13.*DEGREE)*7)}}; + {"rotate(-13,7,11)",Geom::Affine(cos(-13.*DEGREE),sin(-13.*DEGREE),-sin(-13.*DEGREE),cos(-13.*DEGREE),(1-cos(-13.*DEGREE))*7+sin(-13.*DEGREE)*11,(1-cos(-13.*DEGREE))*11-sin(-13.*DEGREE)*7)}, + {"rotate(-34.5,6.7,89)",Geom::Affine(cos(-34.5*DEGREE),sin(-34.5*DEGREE),-sin(-34.5*DEGREE),cos(-34.5*DEGREE),(1-cos(-34.5*DEGREE))*6.7+sin(-34.5*DEGREE)*89,(1-cos(-34.5*DEGREE))*89-sin(-34.5*DEGREE)*6.7)}}; SvgAffineTest::test_t const SvgAffineTest::write_skew_tests[3] = { {"skewX(30)",Geom::Affine(1,0,tan(30.*DEGREE),1,0,0)}, {"skewX(-30)",Geom::Affine(1,0,tan(-30.*DEGREE),1,0,0)}, diff --git a/src/svg/svg-affine.cpp b/src/svg/svg-affine.cpp index af58c4544..c853f9930 100644 --- a/src/svg/svg-affine.cpp +++ b/src/svg/svg-affine.cpp @@ -217,29 +217,29 @@ sp_svg_transform_write(Geom::Affine const &transform) c[p++] = ')'; c[p] = '\000'; - /* } else if (transform.withoutTranslation().isRotation()) { - // FIXME someone please figure out if this can actually be done - // The rotation angle is correct, the points are not + } else if (transform.withoutTranslation().isRotation()) { + // Solution found by Johan Engelen // Refer to the matrix in svg-affine-test.h // We are a rotation about a special axis strcpy(c + p, "rotate("); p += 7; - Geom::Affine const sans_translate = transform.withoutTranslation(); - double angle = std::atan2(sans_translate[1], sans_translate[0]) * (180 / M_PI); + double angle = std::atan2(transform[1], transform[0]) * (180 / M_PI); p += sp_svg_number_write_de(c + p, sizeof(c) - p, angle, prec, min_exp); c[p++] = ','; - Geom::Point pt = transform.translation(); - p += sp_svg_number_write_de(c + p, sizeof(c) - p, pt[Geom::X], prec, min_exp); + Geom::Affine const& m = transform; + double tx = (m[2]*m[5]+m[4]-m[4]*m[3]) / (1-m[3]-m[0]+m[0]*m[3]-m[2]*m[1]); + p += sp_svg_number_write_de(c + p, sizeof(c) - p, tx, prec, min_exp); c[p++] = ','; - p += sp_svg_number_write_de(c + p, sizeof(c) - p, pt[Geom::Y], prec, min_exp); + double ty = (m[1]*tx + m[5]) / (1 - m[3]); + p += sp_svg_number_write_de(c + p, sizeof(c) - p, ty, prec, min_exp); c[p++] = ')'; - c[p] = '\000';*/ + c[p] = '\000'; } else if (transform.isHShear()) { // We are more or less a pure skewX strcpy(c + p, "skewX("); -- cgit v1.2.3 From 0549127f3066a1451b7f0b5496e294ffd6761aad Mon Sep 17 00:00:00 2001 From: Alvin Penner Date: Sun, 9 Nov 2014 14:06:26 -0500 Subject: add option to read dxf input scale from file (Bug 1388851) Fixed bugs: - https://launchpad.net/bugs/1388851 (bzr r13692) --- share/extensions/dxf_input.inx | 12 +++++++++--- share/extensions/dxf_input.py | 16 ++++++++++++---- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/share/extensions/dxf_input.inx b/share/extensions/dxf_input.inx index d51a07c39..4488774a3 100644 --- a/share/extensions/dxf_input.inx +++ b/share/extensions/dxf_input.inx @@ -6,8 +6,12 @@ inkex.py - true - 1.0 + + + + + + 1.0 0.0 0.0 false @@ -22,9 +26,11 @@ <_param name="inputhelp" type="description" xml:space="preserve">- AutoCAD Release 13 and newer. -- assume dxf drawing is in mm. +- for manual scaling, assume dxf drawing is in mm. - assume svg drawing is in pixels, at 96 dpi. - scale factor and origin apply only to manual scaling. +- 'Automatic scaling' will fit the width of an A4 page. +- 'Read from file' uses the variable $MEASUREMENT. - layers are preserved only on File->Open, not Import. - limited support for BLOCKS, use AutoCAD Explode Blocks instead, if needed. diff --git a/share/extensions/dxf_input.py b/share/extensions/dxf_input.py index 972895cb8..f0a1296f1 100755 --- a/share/extensions/dxf_input.py +++ b/share/extensions/dxf_input.py @@ -344,7 +344,7 @@ colors = { 1: '#FF0000', 2: '#FFFF00', 3: '#00FF00', 4: '#00FFFF', 5: ' 250: '#333333', 251: '#505050', 252: '#696969', 253: '#828282', 254: '#BEBEBE', 255: '#FFFFFF'} parser = inkex.optparse.OptionParser(usage="usage: %prog [options] SVGfile", option_class=inkex.InkOption) -parser.add_option("--auto", action="store", type="inkbool", dest="auto", default=True) +parser.add_option("--scalemethod", action="store", type="string", dest="scalemethod", default="manual") parser.add_option("--scale", action="store", type="string", dest="scale", default="1.0") parser.add_option("--xmin", action="store", type="string", dest="xmin", default="0.0") parser.add_option("--ymin", action="store", type="string", dest="ymin", default="0.0") @@ -366,6 +366,7 @@ inkex.etree.SubElement(pattern, 'path', {'d': 'M4 0 l-4,4', 'stroke': '#000000', stream = open(args[0], 'r') xmax = xmin = ymin = 0.0 height = 297.0*96.0/25.4 # default A4 height in pixels +measurement = 0 # default inches line = get_line() polylines = 0 flag = 0 # (0, 1, 2, 3) = (none, LAYER, LTYPE, DIMTXT) @@ -376,7 +377,10 @@ DIMTXT = {} # store DIMENSION text sizes while line[0] and line[1] != 'BLOCKS': line = get_line() - if options.auto: + if options.scalemethod == 'file': + if line[1] == '$MEASUREMENT': + measurement = get_group('70') + elif options.scalemethod == 'auto': if line[1] == '$EXTMIN': xmin = get_group('10') ymin = get_group('20') @@ -406,7 +410,11 @@ while line[0] and line[1] != 'BLOCKS': if line[0] == '0' and line[1] == 'ENDTAB': flag = 0 -if options.auto: +if options.scalemethod == 'file': + scale = 25.4 # default inches + if measurement == 1.0: + scale = 1.0 # use mm +elif options.scalemethod == 'auto': scale = 1.0 if xmax > xmin: scale = 210.0/(xmax - xmin) # scale to A4 width @@ -414,7 +422,7 @@ else: scale = float(options.scale) # manual scale factor xmin = float(options.xmin) ymin = float(options.ymin) -desc.text = '%s - scale = %f, origin = (%f, %f), auto = %s' % (unicode(args[0], options.input_encode), scale, xmin, ymin, options.auto) +desc.text = '%s - scale = %f, origin = (%f, %f), method = %s' % (unicode(args[0], options.input_encode), scale, xmin, ymin, options.scalemethod) scale *= 96.0/25.4 # convert from mm to pixels if not layer_nodes.has_key('0'): -- cgit v1.2.3 From 3b8481a788dc641039219ba93514794fd2551b20 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Sun, 9 Nov 2014 21:23:51 +0100 Subject: From bug #1389723 Roadmap for 0.92: (this bug) ================= TODO Non-pixel units are allowed but everything in a document should use the same units including guides and grids. TODO (Guides and grids need code to do this.) DONE An extension that saves a document in pixels should be added to allow backwards compatability with 0.91. It should be possible to avoid overwriting Inkscape version until any necessary conversion is done. If a conversion appears to be needed, a pop-up can ask the author if it should be done. Roadmap for 0.91: (bug #1387864) ================= TODO: Everything should use only pixels as is (mostly) done in 0.48 (including templates). TODO: The ability to switch document units should be disabled (it's broken in several ways). TODO: Font size should be stored in pixels. DONE: Some templates in 0.48 templates do use 'mm' so there does need to be a script to convert files based on those templates to 96dpi. (bzr r13693) --- share/extensions/dpiswitcher.py | 73 +++++++++++++++++++++++++---------------- 1 file changed, 44 insertions(+), 29 deletions(-) diff --git a/share/extensions/dpiswitcher.py b/share/extensions/dpiswitcher.py index b4630ae4c..d35a46597 100644 --- a/share/extensions/dpiswitcher.py +++ b/share/extensions/dpiswitcher.py @@ -35,7 +35,8 @@ class DPISwitcher(inkex.Effect): type="string", dest="switcher", default="0", help="Select the DPI switch you want") self.factor = 90.0/96.0 - self.unit = "px" + self.units = "px" + self.unitExponent = 1.0 def scaleRoot(self, svg): widthNumber = re.sub("[a-zA-Z]", "", svg.get('width')) @@ -43,13 +44,17 @@ class DPISwitcher(inkex.Effect): if svg.get('viewBox'): widthNumber = svg.get('viewBox').split(" ")[2] heightNumber = svg.get('viewBox').split(" ")[3] - widthDoc = str(float(widthNumber) * self.factor) - heightDoc = str(float(heightNumber) * self.factor) + widthDoc = str(float(widthNumber) * self.factor * self.unitExponent) + heightDoc = str(float(heightNumber) * self.factor * self.unitExponent) if svg.get('height'): svg.set('height', heightDoc) if svg.get('width'): svg.set('width', widthDoc) svg.set('viewBox',"0 0 " + widthDoc + " " + heightDoc) + self.scaleGuides(svg) + self.scaleGrid(svg) + if self.options.switcher == "1": + self.factor = self.factor * self.unitExponent xpathStr = '//svg:rect | //svg:image | //svg:path | //svg:circle | //svg:ellipse | //svg:text' elements = svg.xpath(xpathStr, namespaces=inkex.NSS) for element in elements: @@ -77,30 +82,34 @@ class DPISwitcher(inkex.Effect): if "translate" in str(element.get('transform')): result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) element.set('transform', result) - self.scaleGuides(svg) - self.scaleGrid(svg) - - def scaleGrid(self, svg): - xpathStr = '//inkscape:grid' - grids = svg.xpath(xpathStr, namespaces=inkex.NSS) - for grid in grids: - empspacingNumber = float(grid.get("empspacing")) * self.factor - spacingxNumber = float(grid.get("spacingx").replace("px", "")) * self.factor - spacingyNumber = float(grid.get("spacingy").replace("px", "")) * self.factor - originxNumber = float(grid.get("originx").replace("px", "")) * self.factor - originyNumber = float(grid.get("originy").replace("px", "")) * self.factor - grid.set("empspacing", str(empspacingNumber)) - grid.set("spacingx", str(spacingxNumber) + "px") - grid.set("spacingy", str(spacingyNumber) + "px") - grid.set("originx", str(originxNumber) + "px") - grid.set("originy", str(originyNumber) + "px") - + def scaleGuides(self, svg): xpathStr = '//sodipodi:guide' guides = svg.xpath(xpathStr, namespaces=inkex.NSS) for guide in guides: point = string.split(guide.get("position"), ",") - guide.set("position", str(float(point[0].strip()) * self.factor) + "," + str(float(point[1].strip()) * self.factor)) + guide.set("position", str(float(point[0].strip()) * self.factor ) + "," + str(float(point[1].strip()) * self.factor )) + + def scaleGrid(self, svg): + xpathStr = '//inkscape:grid' + grids = svg.xpath(xpathStr, namespaces=inkex.NSS) + for grid in grids: + if self.options.switcher == "0": + self.unitExponent = 1.0/(self.factor/self.__uuconv[grid.get("units")]) + self.factor = self.factor * self.unitExponent + grid.set("units", "px") + if grid.get("spacingx"): + spacingx = str(float(re.sub("[a-zA-Z]", "", grid.get("spacingx"))) * self.factor) + "px" + grid.set("spacingx", str(spacingx)) + if grid.get("spacingy"): + spacingy = str(float(re.sub("[a-zA-Z]", "", grid.get("spacingy"))) * self.factor) + "px" + grid.set("spacingy", str(spacingy)) + if grid.get("originx"): + originx = str(float(re.sub("[a-zA-Z]", "", grid.get("originx"))) * self.factor) + "px" + grid.set("originx", str(originx)) + if grid.get("originy"): + originy = str(float(re.sub("[a-zA-Z]", "", grid.get("originy"))) * self.factor) + "px" + grid.set("originy", str(originy)) #a dictionary of unit to user unit conversion factors __uuconv = {'in':96.0, 'pt':1.33333333333, 'px':1.0, 'mm':3.77952755913, 'cm':37.7952755913, @@ -132,15 +141,21 @@ class DPISwitcher(inkex.Effect): sys.stdout = sys.stderr svg = self.document.getroot() namedview = svg.find(inkex.addNS('namedview', 'sodipodi')) - self.unit = namedview.get(inkex.addNS('document-units', 'inkscape')) - if self.unit and self.unit <> "px": - unitExponent = 0.0 + namedview.set(inkex.addNS('document-units', 'inkscape'), "px") + self.units = re.sub("[0-9]*\.?[0-9]", "", svg.get('width')) + if self.units and self.units <> "px": if self.options.switcher == "0": - unitExponent = 1.0/(self.factor/self.__uuconv[self.unit]) + self.unitExponent = 1.0/(self.factor/self.__uuconv[self.units]) else: - unitExponent = 1.0/(self.factor/self.__uuconvLegazy[self.unit]) - namedview.set(inkex.addNS('document-units', 'inkscape'), "px") - self.factor = self.factor * unitExponent + self.unitExponent = 1.0/(self.factor/self.__uuconvLegazy[self.units]) + ''' + else: + self.scaleGuides(svg) + self.unitExponent = 1.0 + self.scaleGrid(svg) + sys.stdout = saveout + return + ''' self.scaleRoot(svg); sys.stdout = saveout -- cgit v1.2.3 From d973faeac0f9dc8a0b100362ca93c79241b569af Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Sun, 9 Nov 2014 22:04:21 +0100 Subject: fixed a bug pointed by su_v about transformations (bzr r13694) --- share/extensions/dpiswitcher.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/share/extensions/dpiswitcher.py b/share/extensions/dpiswitcher.py index d35a46597..57ca4f731 100644 --- a/share/extensions/dpiswitcher.py +++ b/share/extensions/dpiswitcher.py @@ -68,6 +68,18 @@ class DPISwitcher(inkex.Effect): if "scale" in str(element.get('transform')): result = re.sub(r".*?((scale).*?\))", self.scaleElement, str(element.get('transform'))) element.set('transform', result) + if "matrix" in str(element.get('transform')): + result = re.sub(r".*?((matrix).*?\))", self.translateMatrixElement, str(element.get('transform'))) + element.set('transform', result) + if "translate" in str(element.get('transform')): + result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) + element.set('transform', result) + if "matrix" in str(element.get('transform')): + result = re.sub(r".*?((matrix).*?\))", self.skewMatrixElement, str(element.get('transform'))) + element.set('transform', result) + if "skew" in str(element.get('transform')): + result = re.sub(r".*?((translate).*?\))", self.skewElement, str(element.get('transform'))) + element.set('transform', result) if "scale" not in str(element.get('transform')) and "matrix" not in str(element.get('transform')): element.set('transform', str(element.get('transform')) + "scale(" + str(self.factor) + ", " + str(self.factor) + ")") else: @@ -134,6 +146,14 @@ class DPISwitcher(inkex.Effect): translateMatrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","").split(",") return "matrix(" + translateMatrixVal[0] + "," + translateMatrixVal[1] + "," + translateMatrixVal[2] + "," + translateMatrixVal[3] + "," + str(float(translateMatrixVal[4]) * self.factor) + "," + str(float(translateMatrixVal[5]) * self.factor) + ")" + def skewElement(self, m): + skeweVal = m.group(1).replace("skew","").replace(" ","").replace("(","").replace(")","").split(",") + return "skew(" + str(float(skewVal[0]) * self.factor) + "," + str(float(skewVal[1]) * self.factor) + ")" + + def skewMatrixElement(self, m): + skewMatrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","").split(",") + return "matrix(" + skewMatrixVal[0] + "," + str(float(skewMatrixVal[1]) * self.factor) + "," + str(float(skewMatrixVal[4]) * self.factor) + "," + skewMatrixVal[3] + "," + skewMatrixVal[4] + "," + skewMatrixVal[5]+ ")" + def effect(self): if self.options.switcher == "0": self.factor = 96.0/90.0 -- cgit v1.2.3 From 7f6a9bd0980238ee25285bd23b060f6310b04ee4 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Sun, 9 Nov 2014 23:04:22 +0100 Subject: Allow shorteners transforms in DPI switcher.A bit of refactor. (bzr r13695) --- share/extensions/dpiswitcher.py | 73 ++++++++++++++++++++++++++--------------- 1 file changed, 46 insertions(+), 27 deletions(-) diff --git a/share/extensions/dpiswitcher.py b/share/extensions/dpiswitcher.py index 57ca4f731..051a72ee1 100644 --- a/share/extensions/dpiswitcher.py +++ b/share/extensions/dpiswitcher.py @@ -63,20 +63,14 @@ class DPISwitcher(inkex.Effect): continue if element.get('transform'): if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.scaleMatrixElement, str(element.get('transform'))) + result = re.sub(r".*?((matrix).*?\))", self.matrixElement, str(element.get('transform'))) element.set('transform', result) if "scale" in str(element.get('transform')): result = re.sub(r".*?((scale).*?\))", self.scaleElement, str(element.get('transform'))) element.set('transform', result) - if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.translateMatrixElement, str(element.get('transform'))) - element.set('transform', result) if "translate" in str(element.get('transform')): result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) element.set('transform', result) - if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.skewMatrixElement, str(element.get('transform'))) - element.set('transform', result) if "skew" in str(element.get('transform')): result = re.sub(r".*?((translate).*?\))", self.skewElement, str(element.get('transform'))) element.set('transform', result) @@ -88,12 +82,15 @@ class DPISwitcher(inkex.Effect): elements = svg.xpath(xpathStr, namespaces=inkex.NSS) for element in elements: if element.get('transform'): - if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.translateMatrixElement, str(element.get('transform'))) - element.set('transform', result) if "translate" in str(element.get('transform')): result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) element.set('transform', result) + if "matrix" in str(element.get('transform')): + result = re.sub(r".*?((matrix).*?\))", self.matrixElementNoScale, str(element.get('transform'))) + element.set('transform', result) + if "skew" in str(element.get('transform')): + result = re.sub(r".*?((translate).*?\))", self.skewElement, str(element.get('transform'))) + element.set('transform', result) def scaleGuides(self, svg): xpathStr = '//sodipodi:guide' @@ -131,28 +128,50 @@ class DPISwitcher(inkex.Effect): 'km':3543307.0866, 'pc':15.0, 'yd':3240 , 'ft':1080} def scaleElement(self, m): - scaleVal = m.group(1).replace("scale","").replace(" ","").replace("(","").replace(")","").split(",") - return "scale(" + str(float(scaleVal[0]) * self.factor) + "," + str(float(scaleVal[1]) * self.factor) + ")" + scaleVal = m.group(1).replace("scale","").replace(" ","").replace("(","").replace(")","") + total = scaleVal.count(',') + if total == 1: + scaleVal = scaleVal.split(",") + return "scale(" + str(float(scaleVal[0]) * self.factor) + "," + str(float(scaleVal[1]) * self.factor) + ")" + else: + return "scale(" + str(float(scaleVal) * self.factor) + ")" - def scaleMatrixElement(self, m): - scaleMatrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","").split(",") - return "matrix(" + str(float(scaleMatrixVal[0]) * self.factor) + "," + scaleMatrixVal[1] + "," + scaleMatrixVal[2] + "," + str(float(scaleMatrixVal[3]) * self.factor) + "," + scaleMatrixVal[4] + "," + scaleMatrixVal[5] + ")" def translateElement(self, m): - translateVal = m.group(1).replace("translate","").replace(" ","").replace("(","").replace(")","").split(",") - return "translate(" + str(float(translateVal[0]) * self.factor) + "," + str(float(translateVal[1]) * self.factor) + ")" - - def translateMatrixElement(self, m): - translateMatrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","").split(",") - return "matrix(" + translateMatrixVal[0] + "," + translateMatrixVal[1] + "," + translateMatrixVal[2] + "," + translateMatrixVal[3] + "," + str(float(translateMatrixVal[4]) * self.factor) + "," + str(float(translateMatrixVal[5]) * self.factor) + ")" + translateVal = m.group(1).replace("translate","").replace(" ","").replace("(","").replace(")","") + total = translateVal.count(',') + if total == 1: + translateVal = translateVal.split(",") + return "translate(" + str(float(translateVal[0]) * self.factor) + "," + str(float(translateVal[1]) * self.factor) + ")" + else: + return "translate(" + str(float(translateVal) * self.factor) + ")" def skewElement(self, m): - skeweVal = m.group(1).replace("skew","").replace(" ","").replace("(","").replace(")","").split(",") - return "skew(" + str(float(skewVal[0]) * self.factor) + "," + str(float(skewVal[1]) * self.factor) + ")" - - def skewMatrixElement(self, m): - skewMatrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","").split(",") - return "matrix(" + skewMatrixVal[0] + "," + str(float(skewMatrixVal[1]) * self.factor) + "," + str(float(skewMatrixVal[4]) * self.factor) + "," + skewMatrixVal[3] + "," + skewMatrixVal[4] + "," + skewMatrixVal[5]+ ")" + skeweVal = m.group(1).replace("skew","").replace(" ","").replace("(","").replace(")","") + total = skewVal.count(',') + if total == 1: + skeweVal = skewVal.split(",") + return "skew(" + str(float(skewVal[0]) * self.factor) + "," + str(float(skewVal[1]) * self.factor) + ")" + else: + return "skew(" + str(float(skewVal) * self.factor) + ")" + + def matrixElement(self, m): + matrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","") + total = matrixVal.count(',') + matrixVal = matrixVal.split(",") + if total > 2: + return "matrix(" + str(float(matrixVal[0]) * self.factor) + "," + str(float(matrixVal[1]) * self.factor) + "," + str(float(matrixVal[2]) * self.factor) + "," + str(float(matrixVal[3]) * self.factor) + "," + str(float(matrixVal[4]) * self.factor) + "," + str(float(matrixVal[5]) * self.factor) + ")" + else: + return "matrix(" + str(float(matrixVal[0]) * self.factor) + "," + str(float(matrixVal[1]) * self.factor) + "," + str(float(matrixVal[2]) * self.factor) + ")" + + def matrixElementNoScale(self, m): + matrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","") + total = matrixVal.count(',') + matrixVal = matrixVal.split(",") + if total > 2: + return "matrix(" + matrixVal[0] + "," + str(float(matrixVal[1]) * self.factor) + "," + matrixVal[2] + "," + str(float(matrixVal[3]) * self.factor) + "," + str(float(matrixVal[4]) * self.factor) + "," + str(float(matrixVal[5]) * self.factor) + ")" + else: + return "matrix(" + matrixVal[0] + "," + str(float(matrixVal[1]) * self.factor) + "," + str(float(matrixVal[2]) * self.factor) + ")" def effect(self): if self.options.switcher == "0": -- cgit v1.2.3 From cd6113d3cc7e7f3468b488ee5fb6c28f9576e3b9 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Sun, 9 Nov 2014 23:51:30 +0100 Subject: improve regex from DPI Switcher (bzr r13696) --- share/extensions/dpiswitcher.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/share/extensions/dpiswitcher.py b/share/extensions/dpiswitcher.py index 051a72ee1..a1a7a1a52 100644 --- a/share/extensions/dpiswitcher.py +++ b/share/extensions/dpiswitcher.py @@ -63,16 +63,16 @@ class DPISwitcher(inkex.Effect): continue if element.get('transform'): if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.matrixElement, str(element.get('transform'))) + result = re.sub(r".*?matrix( \(|\()(.*?)\)", self.matrixElement, str(element.get('transform'))) element.set('transform', result) if "scale" in str(element.get('transform')): - result = re.sub(r".*?((scale).*?\))", self.scaleElement, str(element.get('transform'))) + result = re.sub(r".*?scale( \(|\()(.*?)\)", self.scaleElement, str(element.get('transform'))) element.set('transform', result) if "translate" in str(element.get('transform')): - result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) + result = re.sub(r".*?translate( \(|\()(.*?)\)", self.translateElement, str(element.get('transform'))) element.set('transform', result) if "skew" in str(element.get('transform')): - result = re.sub(r".*?((translate).*?\))", self.skewElement, str(element.get('transform'))) + result = re.sub(r".*?skew( \(|\()(.*?)\)", self.skewElement, str(element.get('transform'))) element.set('transform', result) if "scale" not in str(element.get('transform')) and "matrix" not in str(element.get('transform')): element.set('transform', str(element.get('transform')) + "scale(" + str(self.factor) + ", " + str(self.factor) + ")") @@ -82,14 +82,14 @@ class DPISwitcher(inkex.Effect): elements = svg.xpath(xpathStr, namespaces=inkex.NSS) for element in elements: if element.get('transform'): - if "translate" in str(element.get('transform')): - result = re.sub(r".*?((translate).*?\))", self.translateElement, str(element.get('transform'))) - element.set('transform', result) if "matrix" in str(element.get('transform')): - result = re.sub(r".*?((matrix).*?\))", self.matrixElementNoScale, str(element.get('transform'))) + result = re.sub(r".*?matrix( \(|\()(.*?)\)", self.matrixGroupElement, str(element.get('transform'))) + element.set('transform', result) + if "translate" in str(element.get('transform')): + result = re.sub(r".*?translate( \(|\()(.*?)\)", self.translateElement, str(element.get('transform'))) element.set('transform', result) if "skew" in str(element.get('transform')): - result = re.sub(r".*?((translate).*?\))", self.skewElement, str(element.get('transform'))) + result = re.sub(r".*?skew( \(|\()(.*?)\)", self.skewElement, str(element.get('transform'))) element.set('transform', result) def scaleGuides(self, svg): @@ -128,7 +128,7 @@ class DPISwitcher(inkex.Effect): 'km':3543307.0866, 'pc':15.0, 'yd':3240 , 'ft':1080} def scaleElement(self, m): - scaleVal = m.group(1).replace("scale","").replace(" ","").replace("(","").replace(")","") + scaleVal = m.group(2).replace(" ","") total = scaleVal.count(',') if total == 1: scaleVal = scaleVal.split(",") @@ -138,7 +138,7 @@ class DPISwitcher(inkex.Effect): def translateElement(self, m): - translateVal = m.group(1).replace("translate","").replace(" ","").replace("(","").replace(")","") + translateVal = m.group(2).replace(" ","") total = translateVal.count(',') if total == 1: translateVal = translateVal.split(",") @@ -147,7 +147,7 @@ class DPISwitcher(inkex.Effect): return "translate(" + str(float(translateVal) * self.factor) + ")" def skewElement(self, m): - skeweVal = m.group(1).replace("skew","").replace(" ","").replace("(","").replace(")","") + skeweVal = m.group(2).replace(" ","") total = skewVal.count(',') if total == 1: skeweVal = skewVal.split(",") @@ -156,7 +156,7 @@ class DPISwitcher(inkex.Effect): return "skew(" + str(float(skewVal) * self.factor) + ")" def matrixElement(self, m): - matrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","") + matrixVal = m.group(2).replace(" ","") total = matrixVal.count(',') matrixVal = matrixVal.split(",") if total > 2: @@ -164,8 +164,8 @@ class DPISwitcher(inkex.Effect): else: return "matrix(" + str(float(matrixVal[0]) * self.factor) + "," + str(float(matrixVal[1]) * self.factor) + "," + str(float(matrixVal[2]) * self.factor) + ")" - def matrixElementNoScale(self, m): - matrixVal = m.group(1).replace("matrix","").replace(" ","").replace("(","").replace(")","") + def matrixGroupElement(self, m): + matrixVal = m.group(2).replace(" ","") total = matrixVal.count(',') matrixVal = matrixVal.split(",") if total > 2: -- cgit v1.2.3 From 05a8ca8653fefcdc59e3ee1d1416829ec2712c8f Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 10 Nov 2014 00:50:46 +0100 Subject: fix a bug pointed by su_v in fillet chamfer dialog, about units (bzr r13697) --- src/live_effects/effect.cpp | 1 - src/live_effects/lpe-fillet-chamfer.cpp | 1 + .../parameter/filletchamferpointarray.cpp | 7 ++++- .../parameter/filletchamferpointarray.h | 2 ++ src/ui/dialog/lpe-fillet-chamfer-properties.cpp | 34 +++++++++++++--------- src/ui/dialog/lpe-fillet-chamfer-properties.h | 13 +++++---- 6 files changed, 38 insertions(+), 20 deletions(-) diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index fbdc78f8a..ca3b29b66 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -416,7 +416,6 @@ Effect::isNodePointSelected(Geom::Point const &nodePoint) const for (std::vector::const_iterator i = selectedNodesPoints.begin(); i != selectedNodesPoints.end(); ++i) { Geom::Point p = *i; - std::cout << p << "p\n"; p[Geom::X] = Inkscape::Util::Quantity::convert(p[Geom::X], "px", *defaultUnit); p[Geom::Y] = Inkscape::Util::Quantity::convert(p[Geom::Y], "px", *defaultUnit); if (Geom::are_near(p, nodePoint, 0.01)) { diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp index c491ea858..c89bfbd37 100644 --- a/src/live_effects/lpe-fillet-chamfer.cpp +++ b/src/live_effects/lpe-fillet-chamfer.cpp @@ -416,6 +416,7 @@ void LPEFilletChamfer::doBeforeEffect(SPLPEItem const *lpeItem) } else { fillet_chamfer_values.set_helper_size(helper_size); } + fillet_chamfer_values.set_document_unit(defaultUnit); fillet_chamfer_values.set_use_distance(use_knot_distance); fillet_chamfer_values.set_unit(unit.get_abbreviation()); SPCurve *c = SP_IS_PATH(lpeItem) ? static_cast(lpeItem) diff --git a/src/live_effects/parameter/filletchamferpointarray.cpp b/src/live_effects/parameter/filletchamferpointarray.cpp index 31d996ad0..cf9ef3132 100644 --- a/src/live_effects/parameter/filletchamferpointarray.cpp +++ b/src/live_effects/parameter/filletchamferpointarray.cpp @@ -354,6 +354,11 @@ void FilletChamferPointArrayParam::set_pwd2( last_pwd2_normal = pwd2_normal_in; } +void FilletChamferPointArrayParam::set_document_unit(Glib::ustring const * value_document_unit) +{ + documentUnit = value_document_unit; +} + void FilletChamferPointArrayParam::set_helper_size(int hs) { helper_size = hs; @@ -819,7 +824,7 @@ void FilletChamferPointArrayParamKnotHolderEntity::knot_click(guint state) bool aprox = (A[0].degreesOfFreedom() != 2 || B[0].degreesOfFreedom() != 2) && !_pparam->use_distance?true:false; Geom::Point offset = Geom::Point(xModified, _pparam->_vector.at(_index).y()); Inkscape::UI::Dialogs::FilletChamferPropertiesDialog::showDialog( - this->desktop, offset, this, _pparam->unit, _pparam->use_distance, aprox); + this->desktop, offset, this, _pparam->unit, _pparam->use_distance, aprox, _pparam->documentUnit); } } diff --git a/src/live_effects/parameter/filletchamferpointarray.h b/src/live_effects/parameter/filletchamferpointarray.h index 1dd31d6d4..6e5cce353 100644 --- a/src/live_effects/parameter/filletchamferpointarray.h +++ b/src/live_effects/parameter/filletchamferpointarray.h @@ -53,6 +53,7 @@ public: virtual void set_helper_size(int hs); virtual void set_use_distance(bool use_knot_distance); virtual void set_chamfer_steps(int value_chamfer_steps); + virtual void set_document_unit(Glib::ustring const * value_document_unit); virtual void set_unit(const gchar *abbr); virtual void addCanvasIndicators(SPLPEItem const *lpeitem, std::vector &hp_vec); @@ -89,6 +90,7 @@ private: int chamfer_steps; bool use_distance; const gchar *unit; + Glib::ustring const * documentUnit; Geom::PathVector hp; Geom::Piecewise > last_pwd2; diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp index fa909924d..e9d69b464 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp @@ -116,7 +116,7 @@ FilletChamferPropertiesDialog::FilletChamferPropertiesDialog() FilletChamferPropertiesDialog::~FilletChamferPropertiesDialog() { - _setDesktop(NULL); + _set_desktop(NULL); } void FilletChamferPropertiesDialog::showDialog( @@ -125,16 +125,18 @@ void FilletChamferPropertiesDialog::showDialog( FilletChamferPointArrayParamKnotHolderEntity *pt, const gchar *unit, bool use_distance, - bool aprox_radius) + bool aprox_radius, + Glib::ustring const * documentUnit) { FilletChamferPropertiesDialog *dialog = new FilletChamferPropertiesDialog(); - dialog->_setDesktop(desktop); - dialog->_setUnit(unit); + dialog->_set_desktop(desktop); + dialog->_set_unit(unit); dialog->_set_use_distance(use_distance); dialog->_set_aprox(aprox_radius); - dialog->_setKnotPoint(knotpoint); - dialog->_setPt(pt); + dialog->_set_document_unit(documentUnit); + dialog->_set_knot_point(knotpoint); + dialog->_set_pt(pt); dialog->set_title(_("Modify Fillet-Chamfer")); dialog->_apply_button.set_label(_("_Modify")); @@ -165,7 +167,7 @@ void FilletChamferPropertiesDialog::_apply() } d_pos = _index + (d_pos / 100); } else { - d_pos = Inkscape::Util::Quantity::convert(d_pos, unit, "px"); + d_pos = Inkscape::Util::Quantity::convert(d_pos, unit, *document_unit); d_pos = d_pos * -1; } _knotpoint->knot_set_offset(Geom::Point(d_pos, d_width)); @@ -175,7 +177,7 @@ void FilletChamferPropertiesDialog::_apply() void FilletChamferPropertiesDialog::_close() { - _setDesktop(NULL); + _set_desktop(NULL); destroy_(); Glib::signal_idle().connect( sigc::bind_return( @@ -197,7 +199,7 @@ void FilletChamferPropertiesDialog::_handleButtonEvent(GdkEventButton *event) } } -void FilletChamferPropertiesDialog::_setKnotPoint(Geom::Point knotpoint) +void FilletChamferPropertiesDialog::_set_knot_point(Geom::Point knotpoint) { double position; std::string distance_or_radius = std::string(_("Radius ")); @@ -219,7 +221,8 @@ void FilletChamferPropertiesDialog::_setKnotPoint(Geom::Point knotpoint) std::string(_("(")) + std::string(unit) + std::string(")"); _fillet_chamfer_position_label.set_label(_(posConcat.c_str())); position = knotpoint[Geom::X] * -1; - position = Inkscape::Util::Quantity::convert(position, "px", unit); + + position = Inkscape::Util::Quantity::convert(position, *document_unit, unit); } _fillet_chamfer_position_numeric.set_value(position); if (knotpoint.y() == 1) { @@ -231,7 +234,7 @@ void FilletChamferPropertiesDialog::_setKnotPoint(Geom::Point knotpoint) } } -void FilletChamferPropertiesDialog::_setPt( +void FilletChamferPropertiesDialog::_set_pt( const Inkscape::LivePathEffect:: FilletChamferPointArrayParamKnotHolderEntity *pt) { @@ -240,11 +243,16 @@ void FilletChamferPropertiesDialog::_setPt( pt); } -void FilletChamferPropertiesDialog::_setUnit(const gchar *abbr) +void FilletChamferPropertiesDialog::_set_unit(const gchar *abbr) { unit = abbr; } +void FilletChamferPropertiesDialog::_set_document_unit(Glib::ustring const *abbr) +{ + document_unit = abbr; +} + void FilletChamferPropertiesDialog::_set_use_distance(bool use_knot_distance) { use_distance = use_knot_distance; @@ -255,7 +263,7 @@ void FilletChamferPropertiesDialog::_set_aprox(bool aprox_radius) aprox = aprox_radius; } -void FilletChamferPropertiesDialog::_setDesktop(SPDesktop *desktop) +void FilletChamferPropertiesDialog::_set_desktop(SPDesktop *desktop) { if (desktop) { Inkscape::GC::anchor(desktop); diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.h b/src/ui/dialog/lpe-fillet-chamfer-properties.h index deae0cee0..ec87addc5 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.h +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.h @@ -32,7 +32,8 @@ public: FilletChamferPointArrayParamKnotHolderEntity *pt, const gchar *unit, bool use_distance, - bool aprox_radius); + bool aprox_radius, + Glib::ustring const * documentUnit); protected: @@ -63,19 +64,21 @@ protected: return instance; } - void _setDesktop(SPDesktop *desktop); - void _setPt(const Inkscape::LivePathEffect:: + void _set_desktop(SPDesktop *desktop); + void _set_pt(const Inkscape::LivePathEffect:: FilletChamferPointArrayParamKnotHolderEntity *pt); - void _setUnit(const gchar *abbr); + void _set_unit(const gchar *abbr); + void _set_document_unit(Glib::ustring const * abbr); void _set_use_distance(bool use_knot_distance); void _set_aprox(bool aprox_radius); void _apply(); void _close(); bool _flexible; const gchar *unit; + Glib::ustring const * document_unit; bool use_distance; bool aprox; - void _setKnotPoint(Geom::Point knotpoint); + void _set_knot_point(Geom::Point knotpoint); void _prepareLabelRenderer(Gtk::TreeModel::const_iterator const &row); bool _handleKeyEvent(GdkEventKey *event); -- cgit v1.2.3 From 581b206d6d02582aa5b20bb7f8c523be458357d8 Mon Sep 17 00:00:00 2001 From: "Liam P. White" Date: Mon, 10 Nov 2014 09:06:53 -0500 Subject: Fix use-after-free crash (bzr r13698) --- src/gradient-drag.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gradient-drag.cpp b/src/gradient-drag.cpp index a14220cfa..d945231fc 100644 --- a/src/gradient-drag.cpp +++ b/src/gradient-drag.cpp @@ -782,6 +782,8 @@ static void gr_knot_moved_handler(SPKnot *knot, Geom::Point const &ppointer, gui // unlink and delete this dragger dragger->parent->draggers = g_list_remove (dragger->parent->draggers, dragger); + d_new->parent->draggers = g_list_remove (d_new->parent->draggers, dragger); + d_new->parent->selected = g_list_remove (d_new->parent->selected, dragger); delete dragger; // throw out delayed snap context -- cgit v1.2.3 From 46314979be91405f5a1fb31b1ac8b5c62b622948 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Mon, 10 Nov 2014 09:04:48 -0800 Subject: Fix 32-bit build break. (bzr r13699) --- src/ui/dialog/lpe-fillet-chamfer-properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp index e9d69b464..e55c9f8df 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp @@ -64,7 +64,7 @@ FilletChamferPropertiesDialog::FilletChamferPropertiesDialog() _fillet_chamfer_chamfer_subdivisions.set_digits(0); _fillet_chamfer_chamfer_subdivisions.set_increments(1,1); //todo: get tha max aloable infinity freeze the widget - _fillet_chamfer_chamfer_subdivisions.set_range(0, 999999999999999999); + _fillet_chamfer_chamfer_subdivisions.set_range(0, 999999999999999999.0); _fillet_chamfer_chamfer_subdivisions_label.set_label(_("Chamfer subdivisions:")); _fillet_chamfer_chamfer_subdivisions_label.set_alignment(1.0, 0.5); -- cgit v1.2.3 From e179290f049d5c34ae2b9c05fdfeab830b7c39e7 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Mon, 10 Nov 2014 09:39:33 -0800 Subject: Removed SP_USE/SP_IS_USE Gtk-ish macros and cleaned affected files. (bzr r13700) --- src/desktop-style.cpp | 240 ++++++++++++++----------- src/display/nr-svgfonts.cpp | 132 +++++++++----- src/extension/internal/cairo-renderer.cpp | 164 +++++++++-------- src/extension/internal/latex-text-renderer.cpp | 100 ++++++----- src/extension/internal/latex-text-renderer.h | 12 +- src/helper/pixbuf-ops.cpp | 15 +- src/libnrtype/Layout-TNG.h | 1 + src/object-snapper.cpp | 44 +++-- src/selection-describer.cpp | 77 +++++--- src/sp-flowregion.cpp | 62 ++++--- src/sp-flowtext.cpp | 167 +++++++++-------- src/sp-flowtext.h | 8 +- src/sp-item.cpp | 183 +++++++++++-------- src/sp-use.cpp | 109 ++++++----- src/sp-use.h | 5 +- src/ui/dialog/clonetiler.cpp | 22 ++- src/ui/dialog/find.cpp | 93 ++++++---- src/ui/dialog/livepatheffect-editor.cpp | 127 ++++++------- src/ui/dialog/symbols.cpp | 22 +-- 19 files changed, 921 insertions(+), 662 deletions(-) diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp index 15dc339cf..30869d87d 100644 --- a/src/desktop-style.cpp +++ b/src/desktop-style.cpp @@ -49,6 +49,24 @@ #include "box3d-side.h" #include <2geom/math-utils.h> +namespace { + +bool isTextualItem(SPObject const *obj) +{ + bool isTextual = dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj) // + || dynamic_cast(obj); + + return isTextual; +} + +} // namespace + /** * Set color on selection on desktop. */ @@ -89,8 +107,10 @@ void sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines) { // non-items should not have style - if (!SP_IS_ITEM(o)) + SPItem *item = dynamic_cast(o); + if (!item) { return; + } // 1. tspans with role=line are not regular objects in that they are not supposed to have style of their own, // but must always inherit from the parent text. Same for textPath. @@ -100,22 +120,24 @@ sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines) // it, be it clone or not; it's just styleless shape (because that's how Inkscape does // flowtext). + SPTSpan *tspan = dynamic_cast(o); + if (!(skip_lines - && ((SP_IS_TSPAN(o) && SP_TSPAN(o)->role == SP_TSPAN_ROLE_LINE) - || SP_IS_FLOWDIV(o) - || SP_IS_FLOWPARA(o) - || SP_IS_TEXTPATH(o)) + && ((tspan && tspan->role == SP_TSPAN_ROLE_LINE) + || dynamic_cast(o) + || dynamic_cast(o) + || dynamic_cast(o)) && !o->getAttribute("style")) && - !(SP_IS_FLOWREGION(o) || - SP_IS_FLOWREGIONEXCLUDE(o) || - (SP_IS_USE(o) && + !(dynamic_cast(o) || + dynamic_cast(o) || + (dynamic_cast(o) && o->parent && - (SP_IS_FLOWREGION(o->parent) || - SP_IS_FLOWREGIONEXCLUDE(o->parent) - ) - ) - ) + (dynamic_cast(o->parent) || + dynamic_cast(o->parent) + ) + ) + ) ) { SPCSSAttr *css_set = sp_repr_css_attr_new(); @@ -123,7 +145,7 @@ sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines) // Scale the style by the inverse of the accumulated parent transform in the paste context. { - Geom::Affine const local(SP_ITEM(o)->i2doc_affine()); + Geom::Affine const local(item->i2doc_affine()); double const ex(local.descrim()); if ( ( ex != 0. ) && ( ex != 1. ) ) { @@ -137,8 +159,9 @@ sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines) } // setting style on child of clone spills into the clone original (via shared repr), don't do it! - if (SP_IS_USE(o)) + if (dynamic_cast(o)) { return; + } for ( SPObject *child = o->firstChild() ; child ; child = child->getNext() ) { if (sp_repr_css_property(css, "opacity", NULL) != NULL) { @@ -212,11 +235,10 @@ sp_desktop_set_style(SPDesktop *desktop, SPCSSAttr *css, bool change, bool write css_no_text = sp_css_attr_unset_text(css_no_text); for (GSList const *i = desktop->selection->itemList(); i != NULL; i = i->next) { + SPItem *item = reinterpret_cast(i->data); // If not text, don't apply text attributes (can a group have text attributes? Yes! FIXME) - if ( SP_IS_TEXT(i->data) || SP_IS_FLOWTEXT(i->data) - || SP_IS_TSPAN(i->data) || SP_IS_TREF(i->data) || SP_IS_TEXTPATH(i->data) - || SP_IS_FLOWDIV(i->data) || SP_IS_FLOWPARA(i->data) || SP_IS_FLOWTSPAN(i->data)) { + if (isTextualItem(item)) { // If any font property has changed, then we have written out the font // properties in longhand and we need to remove the 'font' shorthand. @@ -224,11 +246,11 @@ sp_desktop_set_style(SPDesktop *desktop, SPCSSAttr *css, bool change, bool write sp_repr_css_unset_property(css, "font"); } - sp_desktop_apply_css_recursive(SP_OBJECT(i->data), css, true); + sp_desktop_apply_css_recursive(item, css, true); } else { - sp_desktop_apply_css_recursive(SP_OBJECT(i->data), css_no_text, true); + sp_desktop_apply_css_recursive(item, css_no_text, true); } } @@ -427,16 +449,17 @@ stroke_average_width (GSList const *objects) int n_notstroked = 0; for (GSList const *l = objects; l != NULL; l = l->next) { - if (!SP_IS_ITEM (l->data)) + SPObject *obj = reinterpret_cast(l->data); + SPItem *item = dynamic_cast(obj); + if (!item) { continue; + } - Geom::Affine i2dt = SP_ITEM(l->data)->i2dt_affine(); - - SPObject *object = SP_OBJECT(l->data); + Geom::Affine i2dt = item->i2dt_affine(); - double width = object->style->stroke_width.computed * i2dt.descrim(); + double width = item->style->stroke_width.computed * i2dt.descrim(); - if ( object->style->stroke.isNone() || IS_NAN(width)) { + if ( item->style->stroke.isNone() || IS_NAN(width)) { ++n_notstroked; // do not count nonstroked objects continue; } else { @@ -493,7 +516,10 @@ objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill bool same_color = true; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); + if (!obj) { + continue; + } SPStyle *style = obj->style; if (!style) { continue; @@ -504,9 +530,9 @@ objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill // We consider paint "effectively set" for anything within text hierarchy SPObject *parent = obj->parent; bool paint_effectively_set = - paint->set || (SP_IS_TEXT(parent) || SP_IS_TEXTPATH(parent) || SP_IS_TSPAN(parent) - || SP_IS_FLOWTEXT(parent) || SP_IS_FLOWDIV(parent) || SP_IS_FLOWPARA(parent) - || SP_IS_FLOWTSPAN(parent) || SP_IS_FLOWLINE(parent)); + paint->set || (dynamic_cast(parent) || dynamic_cast(parent) || dynamic_cast(parent) + || dynamic_cast(parent) || dynamic_cast(parent) || dynamic_cast(parent) + || dynamic_cast(parent) || dynamic_cast(parent)); // 1. Bail out with QUERY_STYLE_MULTIPLE_DIFFERENT if necessary @@ -518,38 +544,45 @@ objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill if (paint_res->set && paint->set && paint_res->isPaintserver()) { // both previous paint and this paint were a server, see if the servers are compatible - SPPaintServer *server_res = isfill? SP_STYLE_FILL_SERVER (style_res) : SP_STYLE_STROKE_SERVER (style_res); - SPPaintServer *server = isfill? SP_STYLE_FILL_SERVER (style) : SP_STYLE_STROKE_SERVER (style); + SPPaintServer *server_res = isfill ? style_res->getFillPaintServer() : style_res->getStrokePaintServer(); + SPPaintServer *server = isfill ? style->getFillPaintServer() : style->getStrokePaintServer(); - if (SP_IS_LINEARGRADIENT (server_res)) { - - if (!SP_IS_LINEARGRADIENT(server)) + SPLinearGradient *linear_res = dynamic_cast(server_res); + SPRadialGradient *radial_res = linear_res ? NULL : dynamic_cast(server_res); + SPPattern *pattern_res = (linear_res || radial_res) ? NULL : dynamic_cast(server_res); + if (linear_res) { + SPLinearGradient *linear = dynamic_cast(server); + if (!linear) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server + } - SPGradient *vector = SP_GRADIENT(server)->getVector(); - SPGradient *vector_res = SP_GRADIENT(server_res)->getVector(); - if (vector_res != vector) + SPGradient *vector = linear->getVector(); + SPGradient *vector_res = linear_res->getVector(); + if (vector_res != vector) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different gradient vectors - - } else if (SP_IS_RADIALGRADIENT (server_res)) { - - if (!SP_IS_RADIALGRADIENT(server)) + } + } else if (radial_res) { + SPRadialGradient *radial = dynamic_cast(server); + if (!radial) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server + } - SPGradient *vector = SP_GRADIENT(server)->getVector(); - SPGradient *vector_res = SP_GRADIENT(server_res)->getVector(); - if (vector_res != vector) + SPGradient *vector = radial->getVector(); + SPGradient *vector_res = radial_res->getVector(); + if (vector_res != vector) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different gradient vectors - - } else if (SP_IS_PATTERN (server_res)) { - - if (!SP_IS_PATTERN(server)) + } + } else if (pattern_res) { + SPPattern *pattern = dynamic_cast(server); + if (!pattern) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server + } - SPPattern *pat = pattern_getroot (SP_PATTERN (server)); - SPPattern *pat_res = pattern_getroot (SP_PATTERN (server_res)); - if (pat_res != pat) + SPPattern *pat = pattern_getroot (pattern); + SPPattern *pat_res = pattern_getroot (pattern_res); + if (pat_res != pat) { return QUERY_STYLE_MULTIPLE_DIFFERENT; // different pattern roots + } } } @@ -667,7 +700,10 @@ objects_query_opacity (GSList *objects, SPStyle *style_res) for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); + if (!obj) { + continue; + } SPStyle *style = obj->style; if (!style) { continue; @@ -720,8 +756,12 @@ objects_query_strokewidth (GSList *objects, SPStyle *style_res) int n_stroked = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); - if (!SP_IS_ITEM(obj)) { + SPObject *obj = reinterpret_cast(i->data); + if (!obj) { + continue; + } + SPItem *item = dynamic_cast(obj); + if (!item) { continue; } SPStyle *style = obj->style; @@ -740,7 +780,7 @@ objects_query_strokewidth (GSList *objects, SPStyle *style_res) noneSet &= style->stroke.isNone(); - Geom::Affine i2d = SP_ITEM(obj)->i2dt_affine(); + Geom::Affine i2d = item->i2dt_affine(); double sw = style->stroke_width.computed * i2d.descrim(); if (!IS_NAN(sw)) { @@ -790,8 +830,8 @@ objects_query_miterlimit (GSList *objects, SPStyle *style_res) bool same_ml = true; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); - if (!SP_IS_ITEM(obj)) { + SPObject *obj = reinterpret_cast(i->data); + if (!dynamic_cast(obj)) { continue; } SPStyle *style = obj->style; @@ -849,8 +889,8 @@ objects_query_strokecap (GSList *objects, SPStyle *style_res) int n_stroked = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); - if (!SP_IS_ITEM(obj)) { + SPObject *obj = reinterpret_cast(i->data); + if (!dynamic_cast(obj)) { continue; } SPStyle *style = obj->style; @@ -903,8 +943,8 @@ objects_query_strokejoin (GSList *objects, SPStyle *style_res) int n_stroked = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); - if (!SP_IS_ITEM(obj)) { + SPObject *obj = reinterpret_cast(i->data); + if (!dynamic_cast(obj)) { continue; } SPStyle *style = obj->style; @@ -966,11 +1006,9 @@ objects_query_fontnumbers (GSList *objects, SPStyle *style_res) int no_size = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); - if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj) - && !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj) - && !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj)) { + if (!isTextualItem(obj)) { continue; } @@ -980,7 +1018,9 @@ objects_query_fontnumbers (GSList *objects, SPStyle *style_res) } texts ++; - double dummy = style->font_size.computed * Geom::Affine(SP_ITEM(obj)->i2dt_affine()).descrim(); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + double dummy = style->font_size.computed * Geom::Affine(item->i2dt_affine()).descrim(); if (!IS_NAN(dummy)) { size += dummy; /// \todo FIXME: we assume non-% units here } else { @@ -1085,12 +1125,11 @@ objects_query_fontstyle (GSList *objects, SPStyle *style_res) int texts = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); - if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj) - && !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj) - && !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj)) + if (!isTextualItem(obj)) { continue; + } SPStyle *style = obj->style; if (!style) { @@ -1155,11 +1194,9 @@ objects_query_baselines (GSList *objects, SPStyle *style_res) int texts = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); - if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj) - && !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj) - && !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj)) { + if (!isTextualItem(obj)) { continue; } @@ -1245,12 +1282,10 @@ objects_query_fontfamily (GSList *objects, SPStyle *style_res) style_res->font_family.set = FALSE; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); // std::cout << " " << reinterpret_cast(i->data)->getId() << std::endl; - if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj) - && !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj) - && !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj)) { + if (!isTextualItem(obj)) { continue; } @@ -1303,12 +1338,10 @@ objects_query_fontspecification (GSList *objects, SPStyle *style_res) style_res->font_specification.set = FALSE; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); // std::cout << " " << reinterpret_cast(i->data)->getId() << std::endl; - if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj) - && !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj) - && !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj)) { + if (!isTextualItem(obj)) { continue; } @@ -1363,9 +1396,12 @@ objects_query_blend (GSList *objects, SPStyle *style_res) guint items = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); + if (!obj) { + continue; + } SPStyle *style = obj->style; - if (!style || !SP_IS_ITEM(obj)) { + if (!style || !dynamic_cast(obj)) { continue; } @@ -1378,14 +1414,14 @@ objects_query_blend (GSList *objects, SPStyle *style_res) // determine whether filter is simple (blend and/or blur) or complex for(SPObject *primitive_obj = style->getFilter()->children; - primitive_obj && SP_IS_FILTER_PRIMITIVE(primitive_obj); + primitive_obj && dynamic_cast(primitive_obj); primitive_obj = primitive_obj->next) { - SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj); - if(SP_IS_FEBLEND(primitive)) + SPFilterPrimitive *primitive = dynamic_cast(primitive_obj); + if (dynamic_cast(primitive)) { ++blendcount; - else if(SP_IS_GAUSSIANBLUR(primitive)) + } else if (dynamic_cast(primitive)) { ++blurcount; - else { + } else { blurcount = complex_filter; break; } @@ -1394,10 +1430,10 @@ objects_query_blend (GSList *objects, SPStyle *style_res) // simple filter if(blurcount == 1 || blendcount == 1) { for(SPObject *primitive_obj = style->getFilter()->children; - primitive_obj && SP_IS_FILTER_PRIMITIVE(primitive_obj); + primitive_obj && dynamic_cast(primitive_obj); primitive_obj = primitive_obj->next) { - if(SP_IS_FEBLEND(primitive_obj)) { - SPFeBlend *spblend = SP_FEBLEND(primitive_obj); + SPFeBlend *spblend = dynamic_cast(primitive_obj); + if (spblend) { blend = spblend->blend_mode; } } @@ -1450,16 +1486,20 @@ objects_query_blur (GSList *objects, SPStyle *style_res) guint items = 0; for (GSList const *i = objects; i != NULL; i = i->next) { - SPObject *obj = SP_OBJECT (i->data); + SPObject *obj = reinterpret_cast(i->data); + if (!obj) { + continue; + } SPStyle *style = obj->style; if (!style) { continue; } - if (!SP_IS_ITEM(obj)) { + SPItem *item = dynamic_cast(obj); + if (!item) { continue; } - Geom::Affine i2d = SP_ITEM(obj)->i2dt_affine(); + Geom::Affine i2d = item->i2dt_affine(); items ++; @@ -1468,12 +1508,12 @@ objects_query_blur (GSList *objects, SPStyle *style_res) //cycle through filter primitives SPObject *primitive_obj = style->getFilter()->children; while (primitive_obj) { - if (SP_IS_FILTER_PRIMITIVE(primitive_obj)) { - SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj); + SPFilterPrimitive *primitive = dynamic_cast(primitive_obj); + if (primitive) { //if primitive is gaussianblur - if(SP_IS_GAUSSIANBLUR(primitive)) { - SPGaussianBlur * spblur = SP_GAUSSIANBLUR(primitive); + SPGaussianBlur * spblur = dynamic_cast(primitive); + if (spblur) { float num = spblur->stdDeviation.getNumber(); float dummy = num * i2d.descrim(); if (!IS_NAN(dummy)) { diff --git a/src/display/nr-svgfonts.cpp b/src/display/nr-svgfonts.cpp index 84b4bd080..011f51977 100644 --- a/src/display/nr-svgfonts.cpp +++ b/src/display/nr-svgfonts.cpp @@ -4,6 +4,7 @@ * * Authors: * Felipe C. da S. Sanches + * Jon A. Cruz * * Copyright (C) 2008 Felipe C. da S. Sanches * @@ -32,9 +33,9 @@ #include "sp-font.h" #include "sp-glyph-kerning.h" -//*************************// +// ************************// // UserFont Implementation // -//*************************// +// ************************// // I wrote this binding code because Cairomm does not yet support userfonts. I have moved this code to cairomm and sent them a patch. // Once Cairomm incorporate the UserFonts binding, this code should be removed from inkscape and Cairomm API should be used. @@ -111,16 +112,38 @@ unsigned int size_of_substring(const char* substring, gchar* str){ return 0; } -//TODO: in these macros, verify what happens when using unicode strings. -#define Match_VKerning_Rule ((SP_VKERN(node))->u1->contains(previous_unicode[0])\ - || (SP_VKERN(node))->g1->contains(previous_glyph_name)) &&\ - ((SP_VKERN(node))->u2->contains(this->glyphs[i]->unicode[0])\ - || (SP_VKERN(node))->g2->contains(this->glyphs[i]->glyph_name.c_str())) -#define Match_HKerning_Rule ((SP_HKERN(node))->u1->contains(previous_unicode[0])\ - || (SP_HKERN(node))->g1->contains(previous_glyph_name)) &&\ - ((SP_HKERN(node))->u2->contains(this->glyphs[i]->unicode[0])\ - || (SP_HKERN(node))->g2->contains(this->glyphs[i]->glyph_name.c_str())) +namespace { + +//TODO: in these functions, verify what happens when using unicode strings. + +bool MatchVKerningRule(SPVkern const *vkern, + SPGlyph *glyph, + char const *previous_unicode, + gchar const *previous_glyph_name) +{ + bool value = (vkern->u1->contains(previous_unicode[0]) + || vkern->g1->contains(previous_glyph_name)) + && (vkern->u2->contains(glyph->unicode[0]) + || vkern->g2->contains(glyph->glyph_name.c_str())); + + return value; +} + +bool MatchHKerningRule(SPHkern const *hkern, + SPGlyph *glyph, + char const *previous_unicode, + gchar const *previous_glyph_name) +{ + bool value = (hkern->u1->contains(previous_unicode[0]) + || hkern->g1->contains(previous_glyph_name)) + && (hkern->u2->contains(glyph->unicode[0]) + || hkern->g2->contains(glyph->glyph_name.c_str())); + + return value; +} + +} // namespace cairo_status_t SvgFont::scaled_font_text_to_glyphs (cairo_scaled_font_t */*scaled_font*/, @@ -182,11 +205,13 @@ SvgFont::scaled_font_text_to_glyphs (cairo_scaled_font_t */*scaled_font*/, if ( (len = size_of_substring(this->glyphs[i]->unicode.c_str(), _utf8)) ){ for(SPObject* node = this->font->children;previous_unicode && node;node=node->next){ //apply glyph kerning if appropriate - if (SP_IS_HKERN(node) && is_horizontal_text && Match_HKerning_Rule ){ - x -= ((SP_HKERN(node))->k / 1000.0);//TODO: use here the height of the font + SPHkern *hkern = dynamic_cast(node); + if (hkern && is_horizontal_text && MatchHKerningRule(hkern, this->glyphs[i], previous_unicode, previous_glyph_name) ){ + x -= (hkern->k / 1000.0);//TODO: use here the height of the font } - if (SP_IS_VKERN(node) && !is_horizontal_text && Match_VKerning_Rule ){ - y -= ((SP_VKERN(node))->k / 1000.0);//TODO: use here the "height" of the font + SPVkern *vkern = dynamic_cast(node); + if (vkern && !is_horizontal_text && MatchVKerningRule(vkern, this->glyphs[i], previous_unicode, previous_glyph_name) ){ + y -= (vkern->k / 1000.0);//TODO: use here the "height" of the font } } previous_unicode = const_cast(this->glyphs[i]->unicode.c_str());//used for kerning checking @@ -246,9 +271,8 @@ SvgFont::glyph_modified(SPObject* /* blah */, unsigned int /* bleh */){ Geom::PathVector SvgFont::flip_coordinate_system(SPFont* spfont, Geom::PathVector pathv){ double units_per_em = 1000; - SPObject* obj; - for (obj = (SP_OBJECT(spfont))->children; obj; obj=obj->next){ - if (SP_IS_FONTFACE(obj)){ + for (SPObject *obj = spfont->children; obj; obj = obj->next){ + if (dynamic_cast(obj)) { //XML Tree being directly used here while it shouldn't be. sp_repr_get_double(obj->getRepr(), "units_per_em", &units_per_em); } @@ -275,19 +299,21 @@ SvgFont::scaled_font_render_glyph (cairo_scaled_font_t */*scaled_font*/, if (glyph > this->glyphs.size()) return CAIRO_STATUS_SUCCESS;//TODO: this is an error! - SPObject* node; - if (glyph == this->glyphs.size()){ - if (!this->missingglyph) return CAIRO_STATUS_SUCCESS; - node = SP_OBJECT(this->missingglyph); + SPObject *node = NULL; + if (glyph == glyphs.size()){ + if (!missingglyph) { + return CAIRO_STATUS_SUCCESS; + } + node = missingglyph; } else { - node = SP_OBJECT(this->glyphs[glyph]); + node = glyphs[glyph]; } - if (!SP_IS_GLYPH(node) && !SP_IS_MISSING_GLYPH(node)) { + if (!dynamic_cast(node) && !dynamic_cast(node)) { return CAIRO_STATUS_SUCCESS; // FIXME: is this the right code to return? } - SPFont* spfont = SP_FONT(node->parent); + SPFont* spfont = dynamic_cast(node->parent); if (!spfont) { return CAIRO_STATUS_SUCCESS; // FIXME: is this the right code to return? } @@ -296,36 +322,48 @@ SvgFont::scaled_font_render_glyph (cairo_scaled_font_t */*scaled_font*/, // or using the d attribute of a glyph node. // pathv stores the path description from the d attribute: Geom::PathVector pathv; - if (SP_IS_GLYPH(node) && (SP_GLYPH(node))->d) { - pathv = sp_svg_read_pathv((SP_GLYPH(node))->d); - pathv = flip_coordinate_system(spfont, pathv); - this->render_glyph_path(cr, &pathv); - } else if (SP_IS_MISSING_GLYPH(node) && (SP_MISSING_GLYPH(node))->d) { - pathv = sp_svg_read_pathv((SP_MISSING_GLYPH(node))->d); + + SPGlyph *glyphNode = dynamic_cast(node); + if (glyphNode && glyphNode->d) { + pathv = sp_svg_read_pathv(glyphNode->d); pathv = flip_coordinate_system(spfont, pathv); - this->render_glyph_path(cr, &pathv); + render_glyph_path(cr, &pathv); + } else { + SPMissingGlyph *missing = dynamic_cast(node); + if (missing && missing->d) { + pathv = sp_svg_read_pathv(missing->d); + pathv = flip_coordinate_system(spfont, pathv); + render_glyph_path(cr, &pathv); + } } if (node->hasChildren()){ //render the SVG described on this glyph's child nodes. for(node = node->children; node; node=node->next){ - if (SP_IS_PATH(node)){ - pathv = (SP_SHAPE(node))->_curve->get_pathvector(); - pathv = flip_coordinate_system(spfont, pathv); - this->render_glyph_path(cr, &pathv); + { + SPPath *path = dynamic_cast(node); + if (path) { + pathv = path->_curve->get_pathvector(); + pathv = flip_coordinate_system(spfont, pathv); + render_glyph_path(cr, &pathv); + } } - if (SP_IS_OBJECTGROUP(node)){ + if (dynamic_cast(node)) { g_warning("TODO: svgfonts: render OBJECTGROUP"); } - if (SP_IS_USE(node)){ - SPItem* item = SP_USE(node)->ref->getObject(); - if (SP_IS_PATH(item)){ - pathv = (SP_SHAPE(item))->_curve->get_pathvector(); + SPUse *use = dynamic_cast(node); + if (use) { + SPItem* item = use->ref->getObject(); + SPPath *path = dynamic_cast(item); + if (path) { + SPShape *shape = dynamic_cast(item); + g_assert(shape != NULL); + pathv = shape->_curve->get_pathvector(); pathv = flip_coordinate_system(spfont, pathv); this->render_glyph_path(cr, &pathv); } - glyph_modified_connection = (SP_OBJECT(item))->connectModified(sigc::mem_fun(*this, &SvgFont::glyph_modified)); + glyph_modified_connection = item->connectModified(sigc::mem_fun(*this, &SvgFont::glyph_modified)); } } } @@ -337,11 +375,13 @@ cairo_font_face_t* SvgFont::get_font_face(){ if (!this->userfont) { for(SPObject* node = this->font->children;node;node=node->next){ - if (SP_IS_GLYPH(node)){ - this->glyphs.push_back(SP_GLYPH(node)); + SPGlyph *glyph = dynamic_cast(node); + if (glyph) { + glyphs.push_back(glyph); } - if (SP_IS_MISSING_GLYPH(node)){ - this->missingglyph=SP_MISSING_GLYPH(node); + SPMissingGlyph *missing = dynamic_cast(node); + if (missing) { + missingglyph = missing; } } this->userfont = new UserFont(this); diff --git a/src/extension/internal/cairo-renderer.cpp b/src/extension/internal/cairo-renderer.cpp index 1d9bb09d0..5a9a28ef9 100644 --- a/src/extension/internal/cairo-renderer.cpp +++ b/src/extension/internal/cairo-renderer.cpp @@ -147,13 +147,13 @@ Here comes the rendering part which could be put into the 'render' methods of SP /* The below functions are copy&pasted plus slightly modified from *_invoke_print functions. */ static void sp_item_invoke_render(SPItem *item, CairoRenderContext *ctx); -static void sp_group_render(SPItem *item, CairoRenderContext *ctx); -static void sp_use_render(SPItem *item, CairoRenderContext *ctx); -static void sp_shape_render(SPItem *item, CairoRenderContext *ctx); -static void sp_text_render(SPItem *item, CairoRenderContext *ctx); -static void sp_flowtext_render(SPItem *item, CairoRenderContext *ctx); -static void sp_image_render(SPItem *item, CairoRenderContext *ctx); -static void sp_symbol_render(SPItem *item, CairoRenderContext *ctx); +static void sp_group_render(SPGroup *group, CairoRenderContext *ctx); +static void sp_use_render(SPUse *use, CairoRenderContext *ctx); +static void sp_shape_render(SPShape *shape, CairoRenderContext *ctx); +static void sp_text_render(SPText *text, CairoRenderContext *ctx); +static void sp_flowtext_render(SPFlowtext *flowtext, CairoRenderContext *ctx); +static void sp_image_render(SPImage *image, CairoRenderContext *ctx); +static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx); static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx); static void sp_shape_render_invoke_marker_rendering(SPMarker* marker, Geom::Affine tr, SPStyle* style, CairoRenderContext *ctx) @@ -179,17 +179,15 @@ static void sp_shape_render_invoke_marker_rendering(SPMarker* marker, Geom::Affi } } -static void sp_shape_render (SPItem *item, CairoRenderContext *ctx) +static void sp_shape_render(SPShape *shape, CairoRenderContext *ctx) { - SPShape *shape = SP_SHAPE(item); - if (!shape->_curve) { return; } - Geom::OptRect pbox = item->geometricBounds(); + Geom::OptRect pbox = shape->geometricBounds(); - SPStyle* style = item->style; + SPStyle* style = shape->style; Geom::PathVector const & pathv = shape->_curve->get_pathvector(); if (pathv.empty()) { @@ -201,7 +199,7 @@ static void sp_shape_render (SPItem *item, CairoRenderContext *ctx) // START marker for (int i = 0; i < 2; i++) { // SP_MARKER_LOC and SP_MARKER_LOC_START if ( shape->_marker[i] ) { - SPMarker* marker = SP_MARKER (shape->_marker[i]); + SPMarker* marker = shape->_marker[i]; Geom::Affine tr; if (marker->orient_mode == MARKER_ORIENT_AUTO) { tr = sp_shape_marker_get_transform_at_start(pathv.begin()->front()); @@ -216,7 +214,7 @@ static void sp_shape_render (SPItem *item, CairoRenderContext *ctx) // MID marker for (int i = 0; i < 3; i += 2) { // SP_MARKER_LOC and SP_MARKER_LOC_MID if ( !shape->_marker[i] ) continue; - SPMarker* marker = SP_MARKER (shape->_marker[i]); + SPMarker* marker = shape->_marker[i]; for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) { // START position if ( path_it != pathv.begin() @@ -268,7 +266,7 @@ static void sp_shape_render (SPItem *item, CairoRenderContext *ctx) // END marker for (int i = 0; i < 4; i += 3) { // SP_MARKER_LOC and SP_MARKER_LOC_END if ( shape->_marker[i] ) { - SPMarker* marker = SP_MARKER (shape->_marker[i]); + SPMarker* marker = shape->_marker[i]; /* Get reference to last curve in the path. * For moveto-only path, this returns the "closing line segment". */ @@ -291,26 +289,25 @@ static void sp_shape_render (SPItem *item, CairoRenderContext *ctx) } } -static void sp_group_render(SPItem *item, CairoRenderContext *ctx) +static void sp_group_render(SPGroup *group, CairoRenderContext *ctx) { - SPGroup *group = SP_GROUP(item); CairoRenderer *renderer = ctx->getRenderer(); TRACE(("sp_group_render opacity: %f\n", SP_SCALE24_TO_FLOAT(item->style->opacity.value))); GSList *l = g_slist_reverse(group->childList(false)); while (l) { - SPObject *o = SP_OBJECT (l->data); - if (SP_IS_ITEM(o)) { - renderer->renderItem (ctx, SP_ITEM (o)); + SPObject *o = reinterpret_cast(l->data); + SPItem *item = dynamic_cast(o); + if (item) { + renderer->renderItem(ctx, item); } l = g_slist_remove (l, o); } } -static void sp_use_render(SPItem *item, CairoRenderContext *ctx) +static void sp_use_render(SPUse *use, CairoRenderContext *ctx) { bool translated = false; - SPUse *use = SP_USE(item); CairoRenderer *renderer = ctx->getRenderer(); if ((use->x._set && use->x.computed != 0) || (use->y._set && use->y.computed != 0)) { @@ -320,8 +317,8 @@ static void sp_use_render(SPItem *item, CairoRenderContext *ctx) translated = true; } - if (use->child && SP_IS_ITEM(use->child)) { - renderer->renderItem(ctx, SP_ITEM(use->child)); + if (use->child) { + renderer->renderItem(ctx, use->child); } if (translated) { @@ -329,30 +326,27 @@ static void sp_use_render(SPItem *item, CairoRenderContext *ctx) } } -static void sp_text_render(SPItem *item, CairoRenderContext *ctx) +static void sp_text_render(SPText *text, CairoRenderContext *ctx) { - SPText *group = SP_TEXT (item); - group->layout.showGlyphs(ctx); + text->layout.showGlyphs(ctx); } -static void sp_flowtext_render(SPItem *item, CairoRenderContext *ctx) +static void sp_flowtext_render(SPFlowtext *flowtext, CairoRenderContext *ctx) { - SPFlowtext *group = SP_FLOWTEXT(item); - group->layout.showGlyphs(ctx); + flowtext->layout.showGlyphs(ctx); } -static void sp_image_render(SPItem *item, CairoRenderContext *ctx) +static void sp_image_render(SPImage *image, CairoRenderContext *ctx) { - SPImage *image; - int w, h; - - image = SP_IMAGE (item); - - if (!image->pixbuf) return; - if ((image->width.computed <= 0.0) || (image->height.computed <= 0.0)) return; + if (!image->pixbuf) { + return; + } + if ((image->width.computed <= 0.0) || (image->height.computed <= 0.0)) { + return; + } - w = image->pixbuf->width(); - h = image->pixbuf->height(); + int w = image->pixbuf->width(); + int h = image->pixbuf->height(); double x = image->x.computed; double y = image->y.computed; @@ -372,12 +366,11 @@ static void sp_image_render(SPItem *item, CairoRenderContext *ctx) Geom::Scale s(width / (double)w, height / (double)h); Geom::Affine t(s * tp); - ctx->renderImage (image->pixbuf, t, item->style); + ctx->renderImage(image->pixbuf, t, image->style); } -static void sp_symbol_render(SPItem *item, CairoRenderContext *ctx) +static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx) { - SPSymbol *symbol = SP_SYMBOL(item); if (!symbol->cloned) { return; } @@ -412,7 +405,7 @@ static void sp_symbol_render(SPItem *item, CairoRenderContext *ctx) ctx->transform(vb2user); } - sp_group_render(item, ctx); + sp_group_render(symbol, ctx); ctx->popState(); } @@ -524,34 +517,56 @@ static void sp_item_invoke_render(SPItem *item, CairoRenderContext *ctx) SPStyle* style = item->style; if((ctx->getFilterToBitmap() == TRUE) && (style->filter.set != 0)) { - return sp_asbitmap_render(item, ctx); + sp_asbitmap_render(item, ctx); } - if (SP_IS_ROOT(item)) { + SPRoot *root = dynamic_cast(item); + if (root) { TRACE(("root\n")); - return sp_root_render(SP_ROOT(item), ctx); - } else if (SP_IS_SYMBOL(item)) { - TRACE(("symbol\n")); - return sp_symbol_render(item, ctx); - } else if (SP_IS_GROUP(item)) { - TRACE(("group\n")); - return sp_group_render(item, ctx); - } else if (SP_IS_SHAPE(item)) { - TRACE(("shape\n")); - return sp_shape_render(item, ctx); - } else if (SP_IS_USE(item)) { - TRACE(("use begin---\n")); - sp_use_render(item, ctx); - TRACE(("---use end\n")); - } else if (SP_IS_TEXT(item)) { - TRACE(("text\n")); - return sp_text_render(item, ctx); - } else if (SP_IS_FLOWTEXT(item)) { - TRACE(("flowtext\n")); - return sp_flowtext_render(item, ctx); - } else if (SP_IS_IMAGE(item)) { - TRACE(("image\n")); - return sp_image_render(item, ctx); + sp_root_render(root, ctx); + } else { + SPSymbol *symbol = dynamic_cast(item); + if (symbol) { + TRACE(("symbol\n")); + sp_symbol_render(symbol, ctx); + } else { + SPGroup *group = dynamic_cast(item); + if (group) { + TRACE(("group\n")); + sp_group_render(group, ctx); + } else { + SPShape *shape = dynamic_cast(item); + if (shape) { + TRACE(("shape\n")); + sp_shape_render(shape, ctx); + } else { + SPUse *use = dynamic_cast(item); + if (use) { + TRACE(("use begin---\n")); + sp_use_render(use, ctx); + TRACE(("---use end\n")); + } else { + SPText *text = dynamic_cast(item); + if (text) { + TRACE(("text\n")); + sp_text_render(text, ctx); + } else { + SPFlowtext *flowtext = dynamic_cast(item); + if (flowtext) { + TRACE(("flowtext\n")); + sp_flowtext_render(flowtext, ctx); + } else { + SPImage *image = dynamic_cast(item); + if (image) { + TRACE(("image\n")); + sp_image_render(image, ctx); + } + } + } + } + } + } + } } } @@ -571,8 +586,9 @@ CairoRenderer::setStateForItem(CairoRenderContext *ctx, SPItem const *item) // This is so because we use the image's/(flow)text's transform for positioning // instead of explicitly specifying it and letting the renderer do the // transformation before rendering the item. - if (SP_IS_TEXT(item) || SP_IS_FLOWTEXT(item) || SP_IS_IMAGE(item)) + if (dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item)) { state->parent_has_userspace = TRUE; + } TRACE(("setStateForItem opacity: %f\n", state->opacity)); } @@ -700,8 +716,8 @@ CairoRenderer::applyClipPath(CairoRenderContext *ctx, SPClipPath const *cp) TRACE(("BEGIN clip\n")); SPObject const *co = cp; for ( SPObject const *child = co->firstChild() ; child; child = child->getNext() ) { - if (SP_IS_ITEM(child)) { - SPItem const *item = SP_ITEM(child); + SPItem const *item = dynamic_cast(child); + if (item) { // combine transform of the item in clippath and the item using clippath: Geom::Affine tempmat = item->transform * ctx->getCurrentState()->item_transform; @@ -759,8 +775,8 @@ CairoRenderer::applyMask(CairoRenderContext *ctx, SPMask const *mask) TRACE(("BEGIN mask\n")); SPObject const *co = mask; for ( SPObject const *child = co->firstChild() ; child; child = child->getNext() ) { - if (SP_IS_ITEM(child)) { - SPItem const *item = SP_ITEM(child); + SPItem const *item = dynamic_cast(child); + if (item) { // TODO fix const correctness: renderItem(ctx, const_cast(item)); } diff --git a/src/extension/internal/latex-text-renderer.cpp b/src/extension/internal/latex-text-renderer.cpp index 398c9f061..ab0733848 100644 --- a/src/extension/internal/latex-text-renderer.cpp +++ b/src/extension/internal/latex-text-renderer.cpp @@ -66,7 +66,8 @@ latex_render_document_text_to_file( SPDocument *doc, gchar const *filename, bool pageBoundingBox = true; if (exportId && strcmp(exportId, "")) { // we want to export the given item only - base = SP_ITEM(doc->getObjectById(exportId)); + base = dynamic_cast(doc->getObjectById(exportId)); + g_assert(base != NULL); pageBoundingBox = exportCanvas; } else { @@ -225,26 +226,22 @@ LaTeXTextRenderer::writePostamble() fprintf(_stream, "%s", postamble); } -void -LaTeXTextRenderer::sp_group_render(SPItem *item) +void LaTeXTextRenderer::sp_group_render(SPGroup *group) { - SPGroup *group = SP_GROUP(item); - GSList *l = g_slist_reverse(group->childList(false)); while (l) { - SPObject *o = SP_OBJECT (l->data); - if (SP_IS_ITEM(o)) { - renderItem (SP_ITEM (o)); + SPObject *o = reinterpret_cast(l->data); + SPItem *item = dynamic_cast(o); + if (item) { + renderItem(item); } l = g_slist_remove (l, o); } } -void -LaTeXTextRenderer::sp_use_render(SPItem *item) +void LaTeXTextRenderer::sp_use_render(SPUse *use) { bool translated = false; - SPUse *use = SP_USE(item); if ((use->x._set && use->x.computed != 0) || (use->y._set && use->y.computed != 0)) { Geom::Affine tp(Geom::Translate(use->x.computed, use->y.computed)); @@ -252,8 +249,9 @@ LaTeXTextRenderer::sp_use_render(SPItem *item) translated = true; } - if (use->child && SP_IS_ITEM(use->child)) { - renderItem(SP_ITEM(use->child)); + SPItem *childItem = dynamic_cast(use->child); + if (childItem) { + renderItem(childItem); } if (translated) { @@ -261,16 +259,14 @@ LaTeXTextRenderer::sp_use_render(SPItem *item) } } -void -LaTeXTextRenderer::sp_text_render(SPItem *item) +void LaTeXTextRenderer::sp_text_render(SPText *textobj) { // Only PDFLaTeX supports importing a single page of a graphics file, // so only PDF backend gets interleaved text/graphics if (_pdflatex && _omittext_state == GRAPHIC_ON_TOP) _omittext_state = NEW_PAGE_ON_GRAPHIC; - SPText *textobj = SP_TEXT (item); - SPStyle *style = item->style; + SPStyle *style = textobj->style; // get position and alignment // Align vertically on the baseline of the font (retreived from the anchor point) @@ -312,7 +308,7 @@ LaTeXTextRenderer::sp_text_render(SPItem *item) } // get rotation - Geom::Affine i2doc = item->i2doc_affine(); + Geom::Affine i2doc = textobj->i2doc_affine(); Geom::Affine wotransl = i2doc.withoutTranslation(); double degrees = -180/M_PI * Geom::atan2(wotransl.xAxis()); bool has_rotation = !Geom::are_near(degrees,0.); @@ -336,11 +332,11 @@ LaTeXTextRenderer::sp_text_render(SPItem *item) // Walk through all spans in the text object. // Write span strings to LaTeX, associated with font weight and style. - Inkscape::Text::Layout const &layout = *(te_get_layout (item)); + Inkscape::Text::Layout const &layout = *(te_get_layout (textobj)); for (Inkscape::Text::Layout::iterator li = layout.begin(), le = layout.end(); li != le; li.nextStartOfSpan()) { - SPStyle const &spanstyle = *(sp_te_style_at_position (item, li)); + SPStyle const &spanstyle = *(sp_te_style_at_position (textobj, li)); bool is_bold = false, is_italic = false, is_oblique = false; if (spanstyle.font_weight.computed == SP_CSS_FONT_WEIGHT_500 || @@ -367,7 +363,7 @@ LaTeXTextRenderer::sp_text_render(SPItem *item) Inkscape::Text::Layout::iterator ln = li; ln.nextStartOfSpan(); - Glib::ustring uspanstr = sp_te_get_string_multiline (item, li, ln); + Glib::ustring uspanstr = sp_te_get_string_multiline (textobj, li, ln); const gchar *spanstr = uspanstr.c_str(); if (!spanstr) { continue; @@ -394,8 +390,7 @@ LaTeXTextRenderer::sp_text_render(SPItem *item) fprintf(_stream, "%s", os.str().c_str()); } -void -LaTeXTextRenderer::sp_flowtext_render(SPItem * item) +void LaTeXTextRenderer::sp_flowtext_render(SPFlowtext *flowtext) { /* Flowtext is possible by using a minipage! :) @@ -407,16 +402,15 @@ Flowing in rectangle is possible, not in arb shape. if (_pdflatex && _omittext_state == GRAPHIC_ON_TOP) _omittext_state = NEW_PAGE_ON_GRAPHIC; - SPFlowtext *flowtext = SP_FLOWTEXT(item); - SPStyle *style = item->style; + SPStyle *style = flowtext->style; SPItem *frame_item = flowtext->get_frame(NULL); - if (!frame_item || !SP_IS_RECT(frame_item)) { + SPRect *frame = dynamic_cast(frame_item); + if (!frame_item || !frame) { g_warning("LaTeX export: non-rectangular flowed text shapes are not supported, skipping text."); return; // don't know how to handle non-rect frames yet. is quite uncommon for latex users i think } - SPRect *frame = SP_RECT(frame_item); Geom::Rect framebox = frame->getRect() * transform(); // get position and alignment @@ -460,7 +454,7 @@ Flowing in rectangle is possible, not in arb shape. } // get rotation - Geom::Affine i2doc = item->i2doc_affine(); + Geom::Affine i2doc = flowtext->i2doc_affine(); Geom::Affine wotransl = i2doc.withoutTranslation(); double degrees = -180/M_PI * Geom::atan2(wotransl.xAxis()); bool has_rotation = !Geom::are_near(degrees,0.); @@ -485,11 +479,11 @@ Flowing in rectangle is possible, not in arb shape. // Walk through all spans in the text object. // Write span strings to LaTeX, associated with font weight and style. - Inkscape::Text::Layout const &layout = *(te_get_layout (item)); + Inkscape::Text::Layout const &layout = *(te_get_layout(flowtext)); for (Inkscape::Text::Layout::iterator li = layout.begin(), le = layout.end(); li != le; li.nextStartOfSpan()) { - SPStyle const &spanstyle = *(sp_te_style_at_position (item, li)); + SPStyle const &spanstyle = *(sp_te_style_at_position(flowtext, li)); bool is_bold = false, is_italic = false, is_oblique = false; if (spanstyle.font_weight.computed == SP_CSS_FONT_WEIGHT_500 || @@ -516,7 +510,7 @@ Flowing in rectangle is possible, not in arb shape. Inkscape::Text::Layout::iterator ln = li; ln.nextStartOfSpan(); - Glib::ustring uspanstr = sp_te_get_string_multiline (item, li, ln); + Glib::ustring uspanstr = sp_te_get_string_multiline(flowtext, li, ln); const gchar *spanstr = uspanstr.c_str(); if (!spanstr) { continue; @@ -558,22 +552,36 @@ LaTeXTextRenderer::sp_item_invoke_render(SPItem *item) return; } - if (SP_IS_ROOT(item)) { - return sp_root_render(SP_ROOT(item)); - } else if (SP_IS_GROUP(item)) { - return sp_group_render(item); - } else if (SP_IS_USE(item)) { - sp_use_render(item); - } else if (SP_IS_TEXT(item)) { - return sp_text_render(item); - } else if (SP_IS_FLOWTEXT(item)) { - return sp_flowtext_render(item); + SPRoot *root = dynamic_cast(item); + if (root) { + sp_root_render(root); } else { - // Only PDFLaTeX supports importing a single page of a graphics file, - // so only PDF backend gets interleaved text/graphics - if (_pdflatex && (_omittext_state == EMPTY || _omittext_state == NEW_PAGE_ON_GRAPHIC)) - writeGraphicPage(); - _omittext_state = GRAPHIC_ON_TOP; + SPGroup *group = dynamic_cast(item); + if (group) { + sp_group_render(group); + } else { + SPUse *use = dynamic_cast(item); + if (use) { + sp_use_render(use); + } else { + SPText *text = dynamic_cast(item); + if (text) { + sp_text_render(text); + } else { + SPFlowtext *flowtext = dynamic_cast(item); + if (flowtext) { + sp_flowtext_render(flowtext); + } else { + // Only PDFLaTeX supports importing a single page of a graphics file, + // so only PDF backend gets interleaved text/graphics + if (_pdflatex && (_omittext_state == EMPTY || _omittext_state == NEW_PAGE_ON_GRAPHIC)) { + writeGraphicPage(); + } + _omittext_state = GRAPHIC_ON_TOP; + } + } + } + } } } diff --git a/src/extension/internal/latex-text-renderer.h b/src/extension/internal/latex-text-renderer.h index 77d12bc61..b9563b53b 100644 --- a/src/extension/internal/latex-text-renderer.h +++ b/src/extension/internal/latex-text-renderer.h @@ -23,6 +23,10 @@ class SPItem; class SPRoot; +class SPGroup; +class SPUse; +class SPText; +class SPFlowtext; namespace Inkscape { namespace Extension { @@ -73,10 +77,10 @@ protected: void sp_item_invoke_render(SPItem *item); void sp_root_render(SPRoot *item); - void sp_group_render(SPItem *item); - void sp_use_render(SPItem *item); - void sp_text_render(SPItem *item); - void sp_flowtext_render(SPItem *item); + void sp_group_render(SPGroup *group); + void sp_use_render(SPUse *use); + void sp_text_render(SPText *text); + void sp_flowtext_render(SPFlowtext *flowtext); }; } /* namespace Internal */ diff --git a/src/helper/pixbuf-ops.cpp b/src/helper/pixbuf-ops.cpp index acb2be4da..9639096fb 100644 --- a/src/helper/pixbuf-ops.cpp +++ b/src/helper/pixbuf-ops.cpp @@ -34,20 +34,21 @@ #include "helper/pixbuf-ops.h" -// TODO look for copy-n-past duplication of this function: +// TODO look for copy-n-paste duplication of this function: /** * Hide all items that are not listed in list, recursively, skipping groups and defs. */ static void hide_other_items_recursively(SPObject *o, GSList *list, unsigned dkey) { - if ( SP_IS_ITEM(o) - && !SP_IS_DEFS(o) - && !SP_IS_ROOT(o) - && !SP_IS_GROUP(o) - && !SP_IS_USE(o) + SPItem *item = dynamic_cast(o); + if ( item + && !dynamic_cast(item) + && !dynamic_cast(item) + && !dynamic_cast(item) + && !dynamic_cast(item) && !g_slist_find(list, o) ) { - SP_ITEM(o)->invoke_hide(dkey); + item->invoke_hide(dkey); } // recurse diff --git a/src/libnrtype/Layout-TNG.h b/src/libnrtype/Layout-TNG.h index efb5ebc24..fd5bbfaef 100644 --- a/src/libnrtype/Layout-TNG.h +++ b/src/libnrtype/Layout-TNG.h @@ -481,6 +481,7 @@ public: from a call to appendText() then the optional \a text_iterator parameter is set to point to the actual character, otherwise \a text_iterator is unaltered. */ + // TODO FIXME a void* cookie is a very unsafe design, and C++ makes it unnecessary. void getSourceOfCharacter(iterator const &it, void **source_cookie, Glib::ustring::iterator *text_iterator = NULL) const; /** For latin text, the left side of the character, on the baseline */ diff --git a/src/object-snapper.cpp b/src/object-snapper.cpp index 2b29814b0..338f91463 100644 --- a/src/object-snapper.cpp +++ b/src/object-snapper.cpp @@ -91,7 +91,8 @@ void Inkscape::ObjectSnapper::_findCandidates(SPObject* parent, for ( SPObject *o = parent->firstChild(); o; o = o->getNext() ) { g_assert(dt != NULL); - if (SP_IS_ITEM(o) && !(dt->itemIsHidden(SP_ITEM(o)) && !clip_or_mask)) { + SPItem *item = dynamic_cast(o); + if (item && !(dt->itemIsHidden(item) && !clip_or_mask)) { // Snapping to items in a locked layer is allowed // Don't snap to hidden objects, unless they're a clipped path or a mask /* See if this item is on the ignore list */ @@ -104,23 +105,22 @@ void Inkscape::ObjectSnapper::_findCandidates(SPObject* parent, } if (it == NULL || i == it->end()) { - SPItem *item = SP_ITEM(o); if (item) { if (!clip_or_mask) { // cannot clip or mask more than once // The current item is not a clipping path or a mask, but might // still be the subject of clipping or masking itself ; if so, then // we should also consider that path or mask for snapping to - SPObject *obj = SP_OBJECT(item->clip_ref ? item->clip_ref->getObject() : NULL); + SPObject *obj = item->clip_ref ? item->clip_ref->getObject() : NULL; if (obj && _snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_PATH_CLIP)) { _findCandidates(obj, it, false, bbox_to_snap, true, item->i2doc_affine()); } - obj = SP_OBJECT(item->mask_ref ? item->mask_ref->getObject() : NULL); + obj = item->mask_ref ? item->mask_ref->getObject() : NULL; if (obj && _snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_PATH_MASK)) { _findCandidates(obj, it, false, bbox_to_snap, true, item->i2doc_affine()); } } - if (SP_IS_GROUP(o)) { + if (dynamic_cast(item)) { _findCandidates(o, it, false, bbox_to_snap, clip_or_mask, additional_affine); } else { Geom::OptRect bbox_of_item; @@ -197,8 +197,10 @@ void Inkscape::ObjectSnapper::_collectNodes(SnapSourceType const &t, for (std::vector::const_iterator i = _candidates->begin(); i != _candidates->end(); ++i) { //Geom::Affine i2doc(Geom::identity()); SPItem *root_item = (*i).item; - if (SP_IS_USE((*i).item)) { - root_item = SP_USE((*i).item)->root(); + + SPUse *use = dynamic_cast((*i).item); + if (use) { + root_item = use->root(); } g_return_if_fail(root_item); @@ -382,9 +384,10 @@ void Inkscape::ObjectSnapper::_collectPaths(Geom::Point /*p*/, Geom::Affine i2doc(Geom::identity()); SPItem *root_item = NULL; /* We might have a clone at hand, so make sure we get the root item */ - if (SP_IS_USE((*i).item)) { - i2doc = SP_USE((*i).item)->get_root_transform(); - root_item = SP_USE((*i).item)->root(); + SPUse *use = dynamic_cast((*i).item); + if (use) { + i2doc = use->get_root_transform(); + root_item = use->root(); g_return_if_fail(root_item); } else { i2doc = (*i).item->i2doc_affine(); @@ -396,7 +399,7 @@ void Inkscape::ObjectSnapper::_collectPaths(Geom::Point /*p*/, //Add the item's path to snap to if (_snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_PATH, SNAPTARGET_PATH_INTERSECTION, SNAPTARGET_TEXT_BASELINE)) { if (p_is_other || p_is_a_node || (!_snapmanager->snapprefs.getStrictSnapping() && p_is_a_bbox)) { - if (SP_IS_TEXT(root_item) || SP_IS_FLOWTEXT(root_item)) { + if (dynamic_cast(root_item) || dynamic_cast(root_item)) { if (_snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_TEXT_BASELINE)) { // Snap to the text baseline Text::Layout const *layout = te_get_layout(static_cast(root_item)); @@ -411,15 +414,17 @@ void Inkscape::ObjectSnapper::_collectPaths(Geom::Point /*p*/, // the CPU, so we'll only snap to paths having no more than 500 nodes // This also leads to a lag of approx. 500 msec (in my lousy test set-up). bool very_complex_path = false; - if (SP_IS_PATH(root_item)) { - very_complex_path = SP_PATH(root_item)->nodesInPath() > 500; + SPPath *path = dynamic_cast(root_item); + if (path) { + very_complex_path = path->nodesInPath() > 500; } if (!very_complex_path && root_item && _snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_PATH, SNAPTARGET_PATH_INTERSECTION)) { SPCurve *curve = NULL; - if (SP_IS_SHAPE(root_item)) { - curve = SP_SHAPE(root_item)->getCurve(); - }/* else if (SP_IS_TEXT(root_item) || SP_IS_FLOWTEXT(root_item)) { + SPShape *shape = dynamic_cast(root_item); + if (shape) { + curve = shape->getCurve(); + }/* else if (dynamic_cast(root_item) || dynamic_cast(root_item)) { curve = te_get_layout(root_item)->convertToCurves(); }*/ if (curve) { @@ -711,10 +716,11 @@ void Inkscape::ObjectSnapper::freeSnap(IntermSnapResults &isr, * That path must not be ignored however when snapping to the paths, so we add it here * manually when applicable */ - SPPath *path = NULL; + SPPath const *path = NULL; if (it != NULL) { - if (it->size() == 1 && SP_IS_PATH(*it->begin())) { - path = SP_PATH(*it->begin()); + SPPath const *tmpPath = dynamic_cast(*it->begin()); + if ((it->size() == 1) && tmpPath) { + path = tmpPath; } // else: *it->begin() might be a SPGroup, e.g. when editing a LPE of text that has been converted to a group of paths // as reported in bug #356743. In that case we can just ignore it, i.e. not snap to this item } diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp index 1cb96fed0..f7814fd57 100644 --- a/src/selection-describer.cpp +++ b/src/selection-describer.cpp @@ -5,6 +5,7 @@ * MenTaLguY * bulia byak * Abhishek Sharma + * Jon A. Cruz * * Copyright (C) 2004-2006 Authors * @@ -46,11 +47,14 @@ char* collect_terms (GSList *items) bool first = true; for (GSList *i = (GSList *)items; i != NULL; i = i->next) { - const char *term = SP_ITEM(i->data)->displayName(); - if (term != NULL && g_slist_find (check, term) == NULL) { - check = g_slist_prepend (check, (void *) term); - ss << (first ? "" : ", ") << "" << term << ""; - first = false; + SPItem *item = dynamic_cast(reinterpret_cast(i->data)); + if (item) { + const char *term = item->displayName(); + if (term != NULL && g_slist_find (check, term) == NULL) { + check = g_slist_prepend (check, (void *) term); + ss << (first ? "" : ", ") << "" << term << ""; + first = false; + } } } return g_strdup(ss.str().c_str()); @@ -62,10 +66,13 @@ static int count_terms (GSList *items) GSList *check = NULL; int count=0; for (GSList *i = (GSList *)items; i != NULL; i = i->next) { - const char *term = SP_ITEM(i->data)->displayName(); - if (term != NULL && g_slist_find (check, term) == NULL) { - check = g_slist_prepend (check, (void *) term); - count++; + SPItem *item = dynamic_cast(reinterpret_cast(i->data)); + if (item) { + const char *term = item->displayName(); + if (term != NULL && g_slist_find (check, term) == NULL) { + check = g_slist_prepend (check, (void *) term); + count++; + } } } return count; @@ -76,8 +83,10 @@ static int count_filtered (GSList *items) { int count=0; for (GSList *i = items; i != NULL; i = i->next) { - SPItem *item = SP_ITEM(i->data); - count += item->isFiltered(); + SPItem *item = dynamic_cast(reinterpret_cast((i->data))); + if (item) { + count += item->isFiltered(); + } } return count; } @@ -118,7 +127,8 @@ void SelectionDescriber::_updateMessageFromSelection(Inkscape::Selection *select if (!items) { // no items _context.set(Inkscape::NORMAL_MESSAGE, _when_nothing); } else { - SPItem *item = SP_ITEM(items->data); + SPItem *item = dynamic_cast(reinterpret_cast(items->data)); + g_assert(item != NULL); SPObject *layer = selection->layers()->layerForObject(item); SPObject *root = selection->layers()->currentRoot(); @@ -181,30 +191,41 @@ void SelectionDescriber::_updateMessageFromSelection(Inkscape::Selection *select if (!items->next) { // one item char *item_desc = item->detailedDescription(); - if (SP_IS_USE(item) && SP_IS_SYMBOL(item->firstChild())) { + bool isUse = dynamic_cast(item) != NULL; + if (isUse && dynamic_cast(item->firstChild())) { _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", item_desc, in_phrase, _("Convert symbol to group to edit"), _when_selected); - } else if (SP_IS_SYMBOL(item)) { + } else if (dynamic_cast(item)) { _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s.", item_desc, in_phrase, _("Remove from symbols tray to edit symbol")); - } else if (SP_IS_USE(item) || (SP_IS_OFFSET(item) && SP_OFFSET(item)->sourceHref)) { - _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", - item_desc, in_phrase, - _("Use Shift+D to look up original"), _when_selected); - } else if (SP_IS_TEXT_TEXTPATH(item)) { - _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", - item_desc, in_phrase, - _("Use Shift+D to look up path"), _when_selected); - } else if (SP_IS_FLOWTEXT(item) && !SP_FLOWTEXT(item)->has_internal_frame()) { - _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", - item_desc, in_phrase, - _("Use Shift+D to look up frame"), _when_selected); } else { - _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s.", - item_desc, in_phrase, _when_selected); + SPOffset *offset = (isUse) ? NULL : dynamic_cast(item); + if (isUse || (offset && offset->sourceHref)) { + _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", + item_desc, in_phrase, + _("Use Shift+D to look up original"), _when_selected); + } else { + SPText *text = dynamic_cast(item); + if (text && text->firstChild() && dynamic_cast(text->firstChild())) { + _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", + item_desc, in_phrase, + _("Use Shift+D to look up path"), _when_selected); + } else { + SPFlowtext *flowtext = dynamic_cast(item); + if (flowtext && !flowtext->has_internal_frame()) { + _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s. %s.", + item_desc, in_phrase, + _("Use Shift+D to look up frame"), _when_selected); + } else { + _context.setF(Inkscape::NORMAL_MESSAGE, "%s%s. %s.", + item_desc, in_phrase, _when_selected); + } + } + } } + g_free(item_desc); } else { // multiple items int objcount = g_slist_length((GSList *)items); diff --git a/src/sp-flowregion.cpp b/src/sp-flowregion.cpp index 32d3b0f60..580945d74 100644 --- a/src/sp-flowregion.cpp +++ b/src/sp-flowregion.cpp @@ -85,12 +85,14 @@ void SPFlowregion::update(SPCtx *ctx, unsigned int flags) { l = g_slist_reverse(l); while (l) { - SPObject *child = SP_OBJECT(l->data); + SPObject *child = reinterpret_cast(l->data); + g_assert(child != NULL); l = g_slist_remove(l, child); + SPItem *item = dynamic_cast(child); if (childflags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { - if (SP_IS_ITEM (child)) { - SPItem const &chi = *SP_ITEM(child); + if (item) { + SPItem const &chi = *item; cctx.i2doc = chi.transform * ictx->i2doc; cctx.i2vp = chi.transform * ictx->i2vp; child->updateDisplay((SPCtx *)&cctx, childflags); @@ -138,7 +140,8 @@ void SPFlowregion::modified(guint flags) { l = g_slist_reverse(l); while (l) { - SPObject *child = SP_OBJECT(l->data); + SPObject *child = reinterpret_cast(l->data); + g_assert(child != NULL); l = g_slist_remove(l, child); if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { @@ -157,7 +160,7 @@ Inkscape::XML::Node *SPFlowregion::write(Inkscape::XML::Document *xml_doc, Inksc GSList *l = NULL; for ( SPObject *child = this->firstChild() ; child; child = child->getNext() ) { - if ( !SP_IS_TITLE(child) && !SP_IS_DESC(child) ) { + if ( !dynamic_cast(child) && !dynamic_cast(child) ) { Inkscape::XML::Node *crepr = child->updateRepr(xml_doc, NULL, flags); if (crepr) { @@ -174,7 +177,7 @@ Inkscape::XML::Node *SPFlowregion::write(Inkscape::XML::Document *xml_doc, Inksc } else { for ( SPObject *child = this->firstChild() ; child; child = child->getNext() ) { - if ( !SP_IS_TITLE(child) && !SP_IS_DESC(child) ) { + if ( !dynamic_cast(child) && !dynamic_cast(child) ) { child->updateRepr(flags); } } @@ -240,12 +243,14 @@ void SPFlowregionExclude::update(SPCtx *ctx, unsigned int flags) { l = g_slist_reverse (l); while (l) { - SPObject *child = SP_OBJECT(l->data); + SPObject *child = reinterpret_cast(l->data); + g_assert(child != NULL); l = g_slist_remove(l, child); if (flags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { - if (SP_IS_ITEM (child)) { - SPItem const &chi = *SP_ITEM(child); + SPItem *item = dynamic_cast(child); + if (item) { + SPItem const &chi = *item; cctx.i2doc = chi.transform * ictx->i2doc; cctx.i2vp = chi.transform * ictx->i2vp; child->updateDisplay((SPCtx *)&cctx, flags); @@ -290,7 +295,8 @@ void SPFlowregionExclude::modified(guint flags) { l = g_slist_reverse (l); while (l) { - SPObject *child = SP_OBJECT(l->data); + SPObject *child = reinterpret_cast(l->data); + g_assert(child != NULL); l = g_slist_remove(l, child); if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { @@ -363,20 +369,28 @@ static void GetDest(SPObject* child,Shape **computed) SPCurve *curve=NULL; Geom::Affine tr_mat; - SPObject* u_child=child; - if ( SP_IS_USE(u_child) ) { - u_child=SP_USE(u_child)->child; - tr_mat = SP_ITEM(u_child)->getRelativeTransform(child->parent); - } else { - tr_mat = SP_ITEM(u_child)->transform; - } - if ( SP_IS_SHAPE (u_child) ) { - if (!(SP_SHAPE(u_child)->_curve)) - SP_SHAPE (u_child)->set_shape (); - curve = SP_SHAPE (u_child)->getCurve (); - } else if ( SP_IS_TEXT (u_child) ) { - curve = SP_TEXT (u_child)->getNormalizedBpath (); - } + SPObject* u_child = child; + SPItem *item = dynamic_cast(u_child); + g_assert(item != NULL); + SPUse *use = dynamic_cast(item); + if ( use ) { + u_child = use->child; + tr_mat = use->getRelativeTransform(child->parent); + } else { + tr_mat = item->transform; + } + SPShape *shape = dynamic_cast(u_child); + if ( shape ) { + if (!(shape->_curve)) { + shape->set_shape(); + } + curve = shape->getCurve(); + } else { + SPText *text = dynamic_cast(u_child); + if ( text ) { + curve = text->getNormalizedBpath(); + } + } if ( curve ) { Path* temp=new Path; diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp index 72fe86daf..766026980 100644 --- a/src/sp-flowtext.cpp +++ b/src/sp-flowtext.cpp @@ -86,12 +86,14 @@ void SPFlowtext::update(SPCtx* ctx, unsigned int flags) { l = g_slist_reverse(l); while (l) { - SPObject *child = SP_OBJECT(l->data); + SPObject *child = reinterpret_cast(l->data); + g_assert(child != NULL); l = g_slist_remove(l, child); if (childflags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { - if (SP_IS_ITEM(child)) { - SPItem const &chi = *SP_ITEM(child); + SPItem *item = dynamic_cast(child); + if (item) { + SPItem const &chi = *item; cctx.i2doc = chi.transform * ictx->i2doc; cctx.i2vp = chi.transform * ictx->i2vp; child->updateDisplay((SPCtx *)&cctx, childflags); @@ -129,19 +131,18 @@ void SPFlowtext::modified(unsigned int flags) { // FIXME: the below stanza is copied over from sp_text_modified, consider factoring it out if (flags & ( SP_OBJECT_STYLE_MODIFIED_FLAG )) { - SPFlowtext *text = SP_FLOWTEXT(this); - Geom::OptRect pbox = text->geometricBounds(); + Geom::OptRect pbox = geometricBounds(); - for (SPItemView* v = text->display; v != NULL; v = v->next) { + for (SPItemView* v = display; v != NULL; v = v->next) { Inkscape::DrawingGroup *g = dynamic_cast(v->arenaitem); - text->_clearFlow(g); - g->setStyle(this->style); - text->layout.show(g, pbox); + _clearFlow(g); + g->setStyle(style); + layout.show(g, pbox); } } for ( SPObject *o = this->firstChild() ; o ; o = o->getNext() ) { - if (SP_IS_FLOWREGION(o)) { + if (dynamic_cast(o)) { region = o; break; } @@ -231,7 +232,7 @@ Inkscape::XML::Node* SPFlowtext::write(Inkscape::XML::Document* doc, Inkscape::X for (SPObject *child = this->firstChild() ; child ; child = child->getNext() ) { Inkscape::XML::Node *c_repr = NULL; - if ( SP_IS_FLOWDIV(child) || SP_IS_FLOWPARA(child) || SP_IS_FLOWREGION(child) || SP_IS_FLOWREGIONEXCLUDE(child)) { + if ( dynamic_cast(child) || dynamic_cast(child) || dynamic_cast(child) || dynamic_cast(child)) { c_repr = child->updateRepr(doc, NULL, flags); } @@ -247,7 +248,7 @@ Inkscape::XML::Node* SPFlowtext::write(Inkscape::XML::Document* doc, Inkscape::X } } else { for (SPObject *child = this->firstChild() ; child ; child = child->getNext() ) { - if ( SP_IS_FLOWDIV(child) || SP_IS_FLOWPARA(child) || SP_IS_FLOWREGION(child) || SP_IS_FLOWREGIONEXCLUDE(child) ) { + if ( dynamic_cast(child) || dynamic_cast(child) || dynamic_cast(child) || dynamic_cast(child)) { child->updateRepr(flags); } } @@ -285,7 +286,7 @@ void SPFlowtext::print(SPPrintContext *ctx) { } const char* SPFlowtext::displayName() const { - if (SP_FLOWTEXT(this)->has_internal_frame()) { + if (has_internal_frame()) { return _("Flowed Text"); } else { return _("Linked Flowed Text"); @@ -293,7 +294,6 @@ const char* SPFlowtext::displayName() const { } gchar* SPFlowtext::description() const { - Inkscape::Text::Layout const &layout = SP_FLOWTEXT(this)->layout; int const nChars = layout.iteratorToCharIndex(layout.end()); char const *trunc = (layout.inputTruncated()) ? _(" [truncated]") : ""; @@ -346,12 +346,17 @@ void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, Inkscape::Text::Layout::OptionalTextTagAttrs pi; bool with_indent = false; - if (SP_IS_FLOWPARA(root)) { + if (dynamic_cast(root)) { // emulate par-indent with the first char's kern SPObject *t = root; - for ( ; t != NULL && !SP_IS_FLOWTEXT(t); t = t->parent){}; - if (SP_IS_FLOWTEXT(t)) { - double indent = SP_FLOWTEXT(t)->par_indent; + SPFlowtext *ft = NULL; + while (t && !ft) { + ft = dynamic_cast(t); + t = t->parent; + } + + if (ft) { + double indent = ft->par_indent; if (indent != 0) { with_indent = true; SVGLength sl; @@ -363,7 +368,7 @@ void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, } if (*pending_line_break_object) { - if (SP_IS_FLOWREGIONBREAK(*pending_line_break_object)) { + if (dynamic_cast(*pending_line_break_object)) { layout.appendControlCode(Inkscape::Text::Layout::SHAPE_BREAK, *pending_line_break_object); } else { layout.appendControlCode(Inkscape::Text::Layout::PARAGRAPH_BREAK, *pending_line_break_object); @@ -372,9 +377,10 @@ void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, } for (SPObject *child = root->firstChild() ; child ; child = child->getNext() ) { - if (SP_IS_STRING(child)) { + SPString *str = dynamic_cast(child); + if (str) { if (*pending_line_break_object) { - if (SP_IS_FLOWREGIONBREAK(*pending_line_break_object)) + if (dynamic_cast(*pending_line_break_object)) layout.appendControlCode(Inkscape::Text::Layout::SHAPE_BREAK, *pending_line_break_object); else { layout.appendControlCode(Inkscape::Text::Layout::PARAGRAPH_BREAK, *pending_line_break_object); @@ -382,31 +388,35 @@ void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, *pending_line_break_object = NULL; } if (with_indent) { - layout.appendText(SP_STRING(child)->string, root->style, child, &pi); + layout.appendText(str->string, root->style, child, &pi); } else { - layout.appendText(SP_STRING(child)->string, root->style, child); + layout.appendText(str->string, root->style, child); } - } else if (SP_IS_FLOWREGION(child)) { - std::vector const &computed = SP_FLOWREGION(child)->computed; - for (std::vector::const_iterator it = computed.begin() ; it != computed.end() ; ++it) { - shapes->push_back(Shape()); - if (exclusion_shape->hasEdges()) { - shapes->back().Booleen(*it, const_cast(exclusion_shape), bool_op_diff); - } else { - shapes->back().Copy(*it); + } else { + SPFlowregion *region = dynamic_cast(child); + if (region) { + std::vector const &computed = region->computed; + for (std::vector::const_iterator it = computed.begin() ; it != computed.end() ; ++it) { + shapes->push_back(Shape()); + if (exclusion_shape->hasEdges()) { + shapes->back().Booleen(*it, const_cast(exclusion_shape), bool_op_diff); + } else { + shapes->back().Copy(*it); + } + layout.appendWrapShape(&shapes->back()); } - layout.appendWrapShape(&shapes->back()); } - } - //XML Tree is being directly used while it shouldn't be. - else if (!SP_IS_FLOWREGIONEXCLUDE(child) && !sp_repr_is_meta_element(child->getRepr())) { - _buildLayoutInput(child, exclusion_shape, shapes, pending_line_break_object); + //Xml Tree is being directly used while it shouldn't be. + else if (!dynamic_cast(child) && !sp_repr_is_meta_element(child->getRepr())) { + _buildLayoutInput(child, exclusion_shape, shapes, pending_line_break_object); + } } } - if (SP_IS_FLOWDIV(root) || SP_IS_FLOWPARA(root) || SP_IS_FLOWREGIONBREAK(root) || SP_IS_FLOWLINE(root)) { - if (!root->hasChildren()) + if (dynamic_cast(root) || dynamic_cast(root) || dynamic_cast(root) || dynamic_cast(root)) { + if (!root->hasChildren()) { layout.appendText("", root->style, root); + } *pending_line_break_object = root; } } @@ -418,16 +428,13 @@ Shape* SPFlowtext::_buildExclusionShape() const for (SPObject *child = children ; child ; child = child->getNext() ) { // RH: is it right that this shouldn't be recursive? - if ( SP_IS_FLOWREGIONEXCLUDE(child) ) { - SPFlowregionExclude *c_child = SP_FLOWREGIONEXCLUDE(child); - - if ( c_child->computed && c_child->computed->hasEdges() ) { - if (shape->hasEdges()) { - shape_temp->Booleen(shape, c_child->computed, bool_op_union); - std::swap(shape, shape_temp); - } else { - shape->Copy(c_child->computed); - } + SPFlowregionExclude *c_child = dynamic_cast(child); + if ( c_child && c_child->computed && c_child->computed->hasEdges() ) { + if (shape->hasEdges()) { + shape_temp->Booleen(shape, c_child->computed, bool_op_union); + std::swap(shape, shape_temp); + } else { + shape->Copy(c_child->computed); } } } @@ -514,24 +521,23 @@ Inkscape::XML::Node *SPFlowtext::getAsText() sp_repr_set_svg_double(line_tspan, "y", anchor_point[Geom::Y]); } - SPObject *source_obj = 0; void *rawptr = 0; Glib::ustring::iterator span_text_start_iter; this->layout.getSourceOfCharacter(it, &rawptr, &span_text_start_iter); - source_obj = SP_OBJECT (rawptr); - gchar *style_text = sp_style_write_difference((SP_IS_STRING(source_obj) ? source_obj->parent : source_obj)->style, this->style); + SPObject *source_obj = reinterpret_cast(rawptr); + gchar *style_text = sp_style_write_difference((dynamic_cast(source_obj) ? source_obj->parent : source_obj)->style, this->style); if (style_text && *style_text) { span_tspan->setAttribute("style", style_text); g_free(style_text); } - if (SP_IS_STRING(source_obj)) { - Glib::ustring *string = &SP_STRING(source_obj)->string; - SPObject *span_end_obj = 0; + SPString *str = dynamic_cast(source_obj); + if (str) { + Glib::ustring *string = &(str->string); // TODO fixme: dangerous, unsafe premature-optimization void *rawptr = 0; Glib::ustring::iterator span_text_end_iter; this->layout.getSourceOfCharacter(it_span_end, &rawptr, &span_text_end_iter); - span_end_obj = SP_OBJECT(rawptr); + SPObject *span_end_obj = reinterpret_cast(rawptr); if (span_end_obj != source_obj) { if (it_span_end == this->layout.end()) { span_text_end_iter = span_text_start_iter; @@ -562,13 +568,19 @@ Inkscape::XML::Node *SPFlowtext::getAsText() return repr; } -SPItem *SPFlowtext::get_frame(SPItem *after) +SPItem const *SPFlowtext::get_frame(SPItem const *after) const +{ + SPItem *item = const_cast(this)->get_frame(after); + return item; +} + +SPItem *SPFlowtext::get_frame(SPItem const *after) { SPItem *frame = 0; SPObject *region = 0; for (SPObject *o = firstChild() ; o ; o = o->getNext() ) { - if (SP_IS_FLOWREGION(o)) { + if (dynamic_cast(o)) { region = o; break; } @@ -578,29 +590,31 @@ SPItem *SPFlowtext::get_frame(SPItem *after) bool past = false; for (SPObject *o = region->firstChild() ; o ; o = o->getNext() ) { - if (SP_IS_ITEM(o)) { + SPItem *item = dynamic_cast(o); + if (item) { if ( (after == NULL) || past ) { - frame = SP_ITEM(o); + frame = item; } else { - if (SP_ITEM(o) == after) { + if (item == after) { past = true; } } } } - if ( frame && SP_IS_USE(frame) ) { - frame = SP_USE(frame)->get_original(); + SPUse *use = dynamic_cast(frame); + if ( use ) { + frame = use->get_original(); } } return frame; } -bool SPFlowtext::has_internal_frame() +bool SPFlowtext::has_internal_frame() const { - SPItem *frame = get_frame(NULL); + SPItem const *frame = get_frame(NULL); - return (frame && this->isAncestorOf(frame) && SP_IS_RECT(frame)); + return (frame && isAncestorOf(frame) && dynamic_cast(frame)); } @@ -611,19 +625,21 @@ SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p0, Inkscape::XML::Document *xml_doc = doc->getReprDoc(); Inkscape::XML::Node *root_repr = xml_doc->createElement("svg:flowRoot"); root_repr->setAttribute("xml:space", "preserve"); // we preserve spaces in the text objects we create - SPItem *ft_item = SP_ITEM(desktop->currentLayer()->appendChildRepr(root_repr)); + SPItem *ft_item = dynamic_cast(desktop->currentLayer()->appendChildRepr(root_repr)); + g_assert(ft_item != NULL); SPObject *root_object = doc->getObjectByRepr(root_repr); - g_assert(SP_IS_FLOWTEXT(root_object)); + g_assert(dynamic_cast(root_object) != NULL); Inkscape::XML::Node *region_repr = xml_doc->createElement("svg:flowRegion"); root_repr->appendChild(region_repr); SPObject *region_object = doc->getObjectByRepr(region_repr); - g_assert(SP_IS_FLOWREGION(region_object)); + g_assert(dynamic_cast(region_object) != NULL); Inkscape::XML::Node *rect_repr = xml_doc->createElement("svg:rect"); // FIXME: use path!!! after rects are converted to use path region_repr->appendChild(rect_repr); - SPRect *rect = SP_RECT(doc->getObjectByRepr(rect_repr)); + SPRect *rect = dynamic_cast(doc->getObjectByRepr(rect_repr)); + g_assert(rect != NULL); p0 *= desktop->dt2doc(); p1 *= desktop->dt2doc(); @@ -642,7 +658,7 @@ SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p0, Inkscape::XML::Node *para_repr = xml_doc->createElement("svg:flowPara"); root_repr->appendChild(para_repr); SPObject *para_object = doc->getObjectByRepr(para_repr); - g_assert(SP_IS_FLOWPARA(para_object)); + g_assert(dynamic_cast(para_object) != NULL); Inkscape::XML::Node *text = xml_doc->createTextNode(""); para_repr->appendChild(text); @@ -652,7 +668,10 @@ SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p0, Inkscape::GC::release(para_repr); Inkscape::GC::release(rect_repr); - ft_item->transform = SP_ITEM(desktop->currentLayer())->i2doc_affine().inverse(); + + SPItem *item = dynamic_cast(desktop->currentLayer()); + g_assert(item != NULL); + ft_item->transform = item->i2doc_affine().inverse(); return ft_item; } @@ -675,14 +694,14 @@ Geom::Affine SPFlowtext::set_transform (Geom::Affine const &xform) SPObject *region = NULL; for ( SPObject *o = this->firstChild() ; o ; o = o->getNext() ) { - if (SP_IS_FLOWREGION(o)) { + if (dynamic_cast(o)) { region = o; break; } } if (region) { - if (SP_IS_RECT(region->firstChild())) { - SPRect *rect = SP_RECT(region->firstChild()); + SPRect *rect = dynamic_cast(region->firstChild()); + if (rect) { rect->set_i2d_affine(xform * rect->i2dt_affine()); rect->doWriteTransform(rect->getRepr(), rect->transform, NULL, true); } diff --git a/src/sp-flowtext.h b/src/sp-flowtext.h index 743d55030..9e6046469 100644 --- a/src/sp-flowtext.h +++ b/src/sp-flowtext.h @@ -31,9 +31,13 @@ public: but losing the automatic wrapping ability. */ Inkscape::XML::Node *getAsText(); - SPItem *get_frame(SPItem *after); + // TODO check if these should return SPRect instead of SPItem - bool has_internal_frame(); + SPItem *get_frame(SPItem const *after); + + SPItem const *get_frame(SPItem const *after) const; + + bool has_internal_frame() const; //semiprivate: (need to be accessed by the C-style functions still) Inkscape::Text::Layout layout; diff --git a/src/sp-item.cpp b/src/sp-item.cpp index ebb08e3d8..73347fc4e 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -130,7 +130,8 @@ bool SPItem::isVisibleAndUnlocked(unsigned display_key) const { bool SPItem::isLocked() const { for (SPObject const *o = this; o != NULL; o = o->parent) { - if (SP_IS_ITEM(o) && !(SP_ITEM(o)->sensitive)) { + SPItem const *item = dynamic_cast(o); + if (item && !(item->sensitive)) { return true; } } @@ -185,14 +186,17 @@ guint32 SPItem::highlight_color() const { { return atoi(_highlightColor) | 0x00000000; } - else if (parent && parent != this && SP_IS_ITEM(parent)) - { - return SP_ITEM(parent)->highlight_color(); - } - else - { - static Inkscape::Preferences *prefs = Inkscape::Preferences::get(); - return prefs->getInt("/tools/nodes/highlight_color", 0xff0000ff) | 0x00000000; + else { + SPItem const *item = dynamic_cast(parent); + if (parent && (parent != this) && item) + { + return item->highlight_color(); + } + else + { + static Inkscape::Preferences *prefs = Inkscape::Preferences::get(); + return prefs->getInt("/tools/nodes/highlight_color", 0xff0000ff) | 0x00000000; + } } } @@ -209,8 +213,9 @@ void SPItem::resetEvaluated() { requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG); } } if ( StatusSet == _evaluated_status ) { - if (SP_IS_SWITCH(parent)) { - SP_SWITCH(parent)->resetChildEvaluated(); + SPSwitch *switchItem = dynamic_cast(parent); + if (switchItem) { + switchItem->resetChildEvaluated(); } } } @@ -306,7 +311,7 @@ SPItem::scaleCenter(Geom::Scale const &sc) { namespace { bool is_item(SPObject const &object) { - return SP_IS_ITEM(&object); + return dynamic_cast(&object) != NULL; } } @@ -566,20 +571,23 @@ void SPItem::clip_ref_changed(SPObject *old_clip, SPObject *clip, SPItem *item) SPItemView *v; /* Hide clippath */ for (v = item->display; v != NULL; v = v->next) { - SP_CLIPPATH(old_clip)->hide(v->arenaitem->key()); + SPClipPath *oldPath = dynamic_cast(old_clip); + g_assert(oldPath != NULL); + oldPath->hide(v->arenaitem->key()); } } - if (SP_IS_CLIPPATH(clip)) { + SPClipPath *clipPath = dynamic_cast(clip); + if (clipPath) { Geom::OptRect bbox = item->geometricBounds(); for (SPItemView *v = item->display; v != NULL; v = v->next) { if (!v->arenaitem->key()) { v->arenaitem->setKey(SPItem::display_key_new(3)); } - Inkscape::DrawingItem *ai = SP_CLIPPATH(clip)->show( + Inkscape::DrawingItem *ai = clipPath->show( v->arenaitem->drawing(), v->arenaitem->key()); v->arenaitem->setClip(ai); - SP_CLIPPATH(clip)->setBBox(v->arenaitem->key(), bbox); + clipPath->setBBox(v->arenaitem->key(), bbox); clip->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } } @@ -590,34 +598,37 @@ void SPItem::mask_ref_changed(SPObject *old_mask, SPObject *mask, SPItem *item) if (old_mask) { /* Hide mask */ for (SPItemView *v = item->display; v != NULL; v = v->next) { - SP_MASK(old_mask)->sp_mask_hide(v->arenaitem->key()); + SPMask *maskItem = dynamic_cast(old_mask); + g_assert(maskItem != NULL); + maskItem->sp_mask_hide(v->arenaitem->key()); } } - if (SP_IS_MASK(mask)) { + SPMask *maskItem = dynamic_cast(mask); + if (maskItem) { Geom::OptRect bbox = item->geometricBounds(); for (SPItemView *v = item->display; v != NULL; v = v->next) { if (!v->arenaitem->key()) { v->arenaitem->setKey(SPItem::display_key_new(3)); } - Inkscape::DrawingItem *ai = SP_MASK(mask)->sp_mask_show( + Inkscape::DrawingItem *ai = maskItem->sp_mask_show( v->arenaitem->drawing(), v->arenaitem->key()); v->arenaitem->setMask(ai); - SP_MASK(mask)->sp_mask_set_bbox(v->arenaitem->key(), bbox); + maskItem->sp_mask_set_bbox(v->arenaitem->key(), bbox); mask->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } } } void SPItem::fill_ps_ref_changed(SPObject *old_ps, SPObject *ps, SPItem *item) { - SPPaintServer *old_fill_ps = SP_PAINT_SERVER(old_ps); + SPPaintServer *old_fill_ps = dynamic_cast(old_ps); if (old_fill_ps) { for (SPItemView *v =item->display; v != NULL; v = v->next) { old_fill_ps->hide(v->arenaitem->key()); } } - SPPaintServer *new_fill_ps = SP_PAINT_SERVER(ps); + SPPaintServer *new_fill_ps = dynamic_cast(ps); if (new_fill_ps) { Geom::OptRect bbox = item->geometricBounds(); for (SPItemView *v = item->display; v != NULL; v = v->next) { @@ -635,14 +646,14 @@ void SPItem::fill_ps_ref_changed(SPObject *old_ps, SPObject *ps, SPItem *item) { } void SPItem::stroke_ps_ref_changed(SPObject *old_ps, SPObject *ps, SPItem *item) { - SPPaintServer *old_stroke_ps = SP_PAINT_SERVER(old_ps); + SPPaintServer *old_stroke_ps = dynamic_cast(old_ps); if (old_stroke_ps) { for (SPItemView *v =item->display; v != NULL; v = v->next) { old_stroke_ps->hide(v->arenaitem->key()); } } - SPPaintServer *new_stroke_ps = SP_PAINT_SERVER(ps); + SPPaintServer *new_stroke_ps = dynamic_cast(ps); if (new_stroke_ps) { Geom::OptRect bbox = item->geometricBounds(); for (SPItemView *v = item->display; v != NULL; v = v->next) { @@ -731,7 +742,7 @@ Inkscape::XML::Node* SPItem::write(Inkscape::XML::Document *xml_doc, Inkscape::X if (flags & SP_OBJECT_WRITE_BUILD) { GSList *l = NULL; for (SPObject *child = object->firstChild(); child != NULL; child = child->next ) { - if (SP_IS_TITLE(child) || SP_IS_DESC(child)) { + if (dynamic_cast(child) || dynamic_cast(child)) { Inkscape::XML::Node *crepr = child->updateRepr(xml_doc, NULL, flags); if (crepr) { l = g_slist_prepend (l, crepr); @@ -745,7 +756,7 @@ Inkscape::XML::Node* SPItem::write(Inkscape::XML::Document *xml_doc, Inkscape::X } } else { for (SPObject *child = object->firstChild() ; child != NULL; child = child->next ) { - if (SP_IS_TITLE(child) || SP_IS_DESC(child)) { + if (dynamic_cast(child) || dynamic_cast(child)) { child->updateRepr(flags); } } @@ -821,13 +832,14 @@ Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform) const Geom::OptRect bbox; - if ( style && style->filter.href && style->getFilter() && SP_IS_FILTER(style->getFilter())) { + + SPFilter *filter = (style && style->filter.href) ? dynamic_cast(style->getFilter()) : NULL; + if ( filter ) { // call the subclass method // CPPIFY //bbox = this->bbox(Geom::identity(), SPItem::VISUAL_BBOX); bbox = const_cast(this)->bbox(Geom::identity(), SPItem::GEOMETRIC_BBOX); // see LP Bug 1229971 - SPFilter *filter = SP_FILTER(style->getFilter()); // default filer area per the SVG spec: SVGLength x, y, w, h; Geom::Point minp, maxp; @@ -874,8 +886,10 @@ Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform) const bbox = const_cast(this)->bbox(transform, SPItem::VISUAL_BBOX); } if (clip_ref->getObject()) { - SP_ITEM(clip_ref->getOwner())->bbox_valid = FALSE; // LP Bug 1349018 - bbox.intersectWith(SP_CLIPPATH(clip_ref->getObject())->geometricBounds(transform)); + SPItem *ownerItem = dynamic_cast(clip_ref->getOwner()); + g_assert(ownerItem != NULL); + ownerItem->bbox_valid = FALSE; // LP Bug 1349018 + bbox.intersectWith(clip_ref->getObject()->geometricBounds(transform)); } return bbox; @@ -955,7 +969,7 @@ unsigned int SPItem::pos_in_parent() const { return pos; } - if (SP_IS_ITEM(iter)) { + if (dynamic_cast(iter)) { pos++; } } @@ -997,10 +1011,11 @@ void SPItem::getSnappoints(std::vector &p, Inkscap if (*o) { // obj is a group object, the children are the actual clippers for (SPObject *child = (*o)->children ; child ; child = child->next) { - if (SP_IS_ITEM(child)) { + SPItem *item = dynamic_cast(child); + if (item) { std::vector p_clip_or_mask; // Please note the recursive call here! - SP_ITEM(child)->getSnappoints(p_clip_or_mask, snapprefs); + item->getSnappoints(p_clip_or_mask, snapprefs); // Take into account the transformation of the item being clipped or masked for (std::vector::const_iterator p_orig = p_clip_or_mask.begin(); p_orig != p_clip_or_mask.end(); ++p_orig) { // All snappoints are in desktop coordinates, but the item's transformation is @@ -1122,7 +1137,7 @@ Inkscape::DrawingItem *SPItem::invoke_show(Inkscape::Drawing &drawing, unsigned ai->setClip(ac); // Update bbox, in case the clip uses bbox units - SP_CLIPPATH(cp)->setBBox(clip_key, item_bbox); + cp->setBBox(clip_key, item_bbox); cp->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } if (mask_ref->getObject()) { @@ -1138,7 +1153,7 @@ Inkscape::DrawingItem *SPItem::invoke_show(Inkscape::Drawing &drawing, unsigned ai->setMask(ac); // Update bbox, in case the mask uses bbox units - SP_MASK(mask)->sp_mask_set_bbox(mask_key, item_bbox); + mask->sp_mask_set_bbox(mask_key, item_bbox); mask->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } @@ -1226,8 +1241,9 @@ void SPItem::adjust_pattern(Geom::Affine const &postmul, bool set, PatternTransf bool fill = (pt == TRANSFORM_FILL || pt == TRANSFORM_BOTH); if (fill && style && (style->fill.isPaintserver())) { SPObject *server = style->getFillPaintServer(); - if ( SP_IS_PATTERN(server) ) { - SPPattern *pattern = sp_pattern_clone_if_necessary(this, SP_PATTERN(server), "fill"); + SPPattern *serverPatt = dynamic_cast(server); + if ( serverPatt ) { + SPPattern *pattern = sp_pattern_clone_if_necessary(this, serverPatt, "fill"); sp_pattern_transform_multiply(pattern, postmul, set); } } @@ -1235,8 +1251,9 @@ void SPItem::adjust_pattern(Geom::Affine const &postmul, bool set, PatternTransf bool stroke = (pt == TRANSFORM_STROKE || pt == TRANSFORM_BOTH); if (stroke && style && (style->stroke.isPaintserver())) { SPObject *server = style->getStrokePaintServer(); - if ( SP_IS_PATTERN(server) ) { - SPPattern *pattern = sp_pattern_clone_if_necessary(this, SP_PATTERN(server), "stroke"); + SPPattern *serverPatt = dynamic_cast(server); + if ( serverPatt ) { + SPPattern *pattern = sp_pattern_clone_if_necessary(this, serverPatt, "stroke"); sp_pattern_transform_multiply(pattern, postmul, set); } } @@ -1246,7 +1263,8 @@ void SPItem::adjust_gradient( Geom::Affine const &postmul, bool set ) { if ( style && style->fill.isPaintserver() ) { SPPaintServer *server = style->getFillPaintServer(); - if ( SP_IS_GRADIENT(server) ) { + SPGradient *serverGrad = dynamic_cast(server); + if ( serverGrad ) { /** * \note Bbox units for a gradient are generally a bad idea because @@ -1257,7 +1275,7 @@ void SPItem::adjust_gradient( Geom::Affine const &postmul, bool set ) * \todo FIXME: convert back to bbox units after transforming with * the item, so as to preserve the original units. */ - SPGradient *gradient = sp_gradient_convert_to_userspace( SP_GRADIENT(server), this, "fill" ); + SPGradient *gradient = sp_gradient_convert_to_userspace( serverGrad, this, "fill" ); sp_gradient_transform_multiply( gradient, postmul, set ); } @@ -1265,8 +1283,9 @@ void SPItem::adjust_gradient( Geom::Affine const &postmul, bool set ) if ( style && style->stroke.isPaintserver() ) { SPPaintServer *server = style->getStrokePaintServer(); - if ( SP_IS_GRADIENT(server) ) { - SPGradient *gradient = sp_gradient_convert_to_userspace( SP_GRADIENT(server), this, "stroke"); + SPGradient *serverGrad = dynamic_cast(server); + if ( serverGrad ) { + SPGradient *gradient = sp_gradient_convert_to_userspace( serverGrad, this, "stroke"); sp_gradient_transform_multiply( gradient, postmul, set ); } } @@ -1318,10 +1337,11 @@ void SPItem::adjust_stroke_width_recursive(double expansion) adjust_stroke (expansion); // A clone's child is the ghost of its original - we must not touch it, skip recursion - if ( !SP_IS_USE(this) ) { + if ( !dynamic_cast(this) ) { for ( SPObject *o = children; o; o = o->getNext() ) { - if (SP_IS_ITEM(o)) { - SP_ITEM(o)->adjust_stroke_width_recursive(expansion); + SPItem *item = dynamic_cast(o); + if (item) { + item->adjust_stroke_width_recursive(expansion); } } } @@ -1332,10 +1352,11 @@ void SPItem::freeze_stroke_width_recursive(bool freeze) freeze_stroke_width = freeze; // A clone's child is the ghost of its original - we must not touch it, skip recursion - if ( !SP_IS_USE(this) ) { + if ( !dynamic_cast(this) ) { for ( SPObject *o = children; o; o = o->getNext() ) { - if (SP_IS_ITEM(o)) { - SP_ITEM(o)->freeze_stroke_width_recursive(freeze); + SPItem *item = dynamic_cast(o); + if (item) { + item->freeze_stroke_width_recursive(freeze); } } } @@ -1347,13 +1368,16 @@ void SPItem::freeze_stroke_width_recursive(bool freeze) static void sp_item_adjust_rects_recursive(SPItem *item, Geom::Affine advertized_transform) { - if (SP_IS_RECT (item)) { - SP_RECT(item)->compensateRxRy(advertized_transform); + SPRect *rect = dynamic_cast(item); + if (rect) { + rect->compensateRxRy(advertized_transform); } for (SPObject *o = item->children; o != NULL; o = o->next) { - if (SP_IS_ITEM(o)) - sp_item_adjust_rects_recursive(SP_ITEM(o), advertized_transform); + SPItem *item = dynamic_cast(o); + if (item) { + sp_item_adjust_rects_recursive(item, advertized_transform); + } } } @@ -1368,12 +1392,13 @@ void SPItem::adjust_paint_recursive (Geom::Affine advertized_transform, Geom::Af // Within text, we do not fork gradients, and so must not recurse to avoid double compensation; // also we do not recurse into clones, because a clone's child is the ghost of its original - // we must not touch it - if (!(this && (SP_IS_TEXT(this) || SP_IS_USE(this)))) { + if (!(this && (dynamic_cast(this) || dynamic_cast(this)))) { for (SPObject *o = children; o != NULL; o = o->next) { - if (SP_IS_ITEM(o)) { + SPItem *item = dynamic_cast(o); + if (item) { // At the level of the transformed item, t_ancestors is identity; // below it, it is the accmmulated chain of transforms from this level to the top level - SP_ITEM(o)->adjust_paint_recursive (advertized_transform, t_item * t_ancestors, is_pattern); + item->adjust_paint_recursive (advertized_transform, t_item * t_ancestors, is_pattern); } } } @@ -1392,20 +1417,18 @@ void SPItem::adjust_paint_recursive (Geom::Affine advertized_transform, Geom::Af void SPItem::adjust_livepatheffect (Geom::Affine const &postmul, bool set) { - if ( SP_IS_LPE_ITEM(this) ) { - SPLPEItem *lpeitem = SP_LPE_ITEM (this); - if ( lpeitem->hasPathEffect() ) { - lpeitem->forkPathEffectsIfNecessary(); - - // now that all LPEs are forked_if_necessary, we can apply the transform - PathEffectList effect_list = lpeitem->getEffectList(); - for (PathEffectList::iterator it = effect_list.begin(); it != effect_list.end(); ++it) - { - LivePathEffectObject *lpeobj = (*it)->lpeobject; - if (lpeobj && lpeobj->get_lpe()) { - Inkscape::LivePathEffect::Effect * effect = lpeobj->get_lpe(); - effect->transform_multiply(postmul, set); - } + SPLPEItem *lpeitem = dynamic_cast(this); + if ( lpeitem && lpeitem->hasPathEffect() ) { + lpeitem->forkPathEffectsIfNecessary(); + + // now that all LPEs are forked_if_necessary, we can apply the transform + PathEffectList effect_list = lpeitem->getEffectList(); + for (PathEffectList::iterator it = effect_list.begin(); it != effect_list.end(); ++it) + { + LivePathEffectObject *lpeobj = (*it)->lpeobject; + if (lpeobj && lpeobj->get_lpe()) { + Inkscape::LivePathEffect::Effect * effect = lpeobj->get_lpe(); + effect->transform_multiply(postmul, set); } } } @@ -1480,7 +1503,7 @@ void SPItem::doWriteTransform(Inkscape::XML::Node *repr, Geom::Affine const &tra // onSetTransform cannot be pure due to the fact that not all visible Items are transformable. if ( // run the object's set_transform (i.e. embed transform) only if: - SP_IS_TEXT_TEXTPATH(this) || + (dynamic_cast(this) && firstChild() && dynamic_cast(firstChild())) || (!preserve && // user did not chose to preserve all transforms (!clip_ref || !clip_ref->getObject()) && // the object does not have a clippath (!mask_ref || !mask_ref->getObject()) && // the object does not have a mask @@ -1551,11 +1574,14 @@ Geom::Affine i2anc_affine(SPObject const *object, SPObject const *const ancestor g_return_val_if_fail(object != NULL, ret); /* stop at first non-renderable ancestor */ - while ( object != ancestor && SP_IS_ITEM(object) ) { - if (SP_IS_ROOT(object)) { - ret *= SP_ROOT(object)->c2p; + while ( object != ancestor && dynamic_cast(object) ) { + SPRoot const *root = dynamic_cast(object); + if (root) { + ret *= root->c2p; } else { - ret *= SP_ITEM(object)->transform; + SPItem const *item = dynamic_cast(object); + g_assert(item != NULL); + ret *= item->transform; } object = object->parent; } @@ -1619,7 +1645,7 @@ Geom::Affine SPItem::dt2i_affine() const SPItemView *SPItem::sp_item_view_new_prepend(SPItemView *list, SPItem *item, unsigned flags, unsigned key, Inkscape::DrawingItem *drawing_item) { g_assert(item != NULL); - g_assert(SP_IS_ITEM(item)); + g_assert(dynamic_cast(item) != NULL); g_assert(drawing_item != NULL); SPItemView *new_view = g_new(SPItemView, 1); @@ -1677,8 +1703,9 @@ SPItem *sp_item_first_item_child(SPObject *obj) { SPItem *child = 0; for ( SPObject *iter = obj->firstChild() ; iter ; iter = iter->next ) { - if ( SP_IS_ITEM(iter) ) { - child = SP_ITEM(iter); + SPItem *tmp = dynamic_cast(iter); + if ( tmp ) { + child = tmp; break; } } diff --git a/src/sp-use.cpp b/src/sp-use.cpp index e3fcd252a..2bd6757ff 100644 --- a/src/sp-use.cpp +++ b/src/sp-use.cpp @@ -50,10 +50,17 @@ namespace { } SPUse::SPUse() - : SPItem() - , child(NULL) - , href(NULL) - , ref(new SPUseReference(this)) + : SPItem(), + child(NULL), + x(), + y(), + width(), + height(), + href(NULL), + ref(new SPUseReference(this)), + _delete_connection(), + _changed_connection(), + _transformed_connection() { this->x.unset(); this->y.unset(); @@ -179,14 +186,23 @@ Inkscape::XML::Node* SPUse::write(Inkscape::XML::Document *xml_doc, Inkscape::XM g_free(uri_string); } - if (SP_IS_SHAPE(this->child)) { - SP_SHAPE(this->child)->set_shape(); // evaluate SPCurve of child - } else if (SP_IS_TEXT(this->child)) { - SP_TEXT(this->child)->rebuildLayout(); // refresh Layout, LP Bug 1339305 - } else if (SP_IS_FLOWTEXT(this->child)) { - if (SP_IS_FLOWREGION(SP_FLOWTEXT(this->child)->firstChild())) - SP_FLOWREGION(SP_FLOWTEXT(this->child)->firstChild())->UpdateComputed(); - SP_FLOWTEXT(this->child)->rebuildLayout(); + SPShape *shape = dynamic_cast(child); + if (shape) { + shape->set_shape(); // evaluate SPCurve of child + } else { + SPText *text = dynamic_cast(child); + if (text) { + text->rebuildLayout(); // refresh Layout, LP Bug 1339305 + } else { + SPFlowtext *flowtext = dynamic_cast(child); + if (flowtext) { + SPFlowregion *flowregion = dynamic_cast(flowtext->firstChild()); + if (flowregion) { + flowregion->UpdateComputed(); + } + flowtext->rebuildLayout(); + } + } } return repr; @@ -223,18 +239,18 @@ void SPUse::print(SPPrintContext* ctx) { } const char* SPUse::displayName() const { - if (this->child && SP_IS_SYMBOL( this->child )) { + if (dynamic_cast(child)) { return _("Symbol"); + } else { + return _("Clone"); } - - return _("Clone"); } gchar* SPUse::description() const { - if (this->child) { - if( SP_IS_SYMBOL( this->child ) ) { - if (this->child->title()) { - return g_strdup_printf(_("called %s"), Glib::Markup::escape_text(Glib::ustring( g_dpgettext2(NULL, "Symbol", this->child->title()))).c_str()); + if (child) { + if ( dynamic_cast(child) ) { + if (child->title()) { + return g_strdup_printf(_("called %s"), Glib::Markup::escape_text(Glib::ustring( g_dpgettext2(NULL, "Symbol", child->title()))).c_str()); } else { return g_strdup_printf(_("called %s"), _("Unnamed Symbol")); } @@ -302,12 +318,10 @@ void SPUse::hide(unsigned int key) { SPItem *SPUse::root() { SPItem *orig = this->child; - while (orig && SP_IS_USE(orig)) { - orig = SP_USE(orig)->child; - } - - if (!orig) { - return NULL; + SPUse *use = dynamic_cast(orig); + while (orig && use) { + orig = use->child; + use = dynamic_cast(orig); } return orig; @@ -325,13 +339,16 @@ int SPUse::cloneDepth() const { unsigned depth = 1; SPItem *orig = this->child; - while (orig && SP_IS_USE(orig)) { + while (orig && dynamic_cast(orig)) { ++depth; - orig = SP_USE(orig)->child; + orig = dynamic_cast(orig)->child; } - if (!orig) return -1; - return depth; + if (!orig) { + return -1; + } else { + return depth; + } } /** @@ -345,9 +362,9 @@ Geom::Affine SPUse::get_root_transform() { GSList *chain = NULL; chain = g_slist_prepend(chain, this); - while (SP_IS_USE(orig)) { + while (dynamic_cast(orig)) { chain = g_slist_prepend(chain, orig); - orig = SP_USE(orig)->child; + orig = dynamic_cast(orig)->child; } chain = g_slist_prepend(chain, orig); @@ -357,14 +374,13 @@ Geom::Affine SPUse::get_root_transform() { Geom::Affine t(Geom::identity()); for (GSList *i = chain; i != NULL; i = i->next) { - SPItem *i_tem = SP_ITEM(i->data); + SPItem *i_tem = reinterpret_cast(i->data); // "An additional transformation translate(x,y) is appended to the end (i.e., // right-side) of the transform attribute on the generated 'g', where x and y // represent the values of the x and y attributes on the 'use' element." - http://www.w3.org/TR/SVG11/struct.html#UseElement - if (SP_IS_USE(i_tem)) { - SPUse *i_use = SP_USE(i_tem); - + SPUse *i_use = dynamic_cast(i_tem); + if (i_use) { if ((i_use->x._set && i_use->x.computed != 0) || (i_use->y._set && i_use->y.computed != 0)) { t = t * Geom::Translate(i_use->x._set ? i_use->x.computed : 0, i_use->y._set ? i_use->y.computed : 0); } @@ -405,7 +421,7 @@ void SPUse::move_compensate(Geom::Affine const *mp) { } // never compensate uses which are used in flowtext - if (this->parent && SP_IS_FLOWREGION(this->parent)) { + if (parent && dynamic_cast(parent)) { return; } @@ -462,8 +478,9 @@ void SPUse::href_changed() { SPObject* obj = SPFactory::instance().createObject(NodeTraits::get_type_string(*childrepr)); - if (SP_IS_ITEM(obj)) { - this->child = SP_ITEM(obj); + SPItem *item = dynamic_cast(obj); + if (item) { + child = item; this->attach(this->child, this->lastChild()); sp_object_unref(this->child, this); @@ -495,8 +512,8 @@ void SPUse::href_changed() { void SPUse::delete_self() { // always delete uses which are used in flowtext - if (this->parent && SP_IS_FLOWREGION(this->parent)) { - this->deleteObject(); + if (parent && dynamic_cast(parent)) { + deleteObject(); return; } @@ -547,9 +564,10 @@ void SPUse::update(SPCtx *ctx, unsigned flags) { sp_object_ref(this->child); if (childflags || (this->child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { - SPItem const &chi = *SP_ITEM(this->child); - cctx.i2doc = chi.transform * ictx->i2doc; - cctx.i2vp = chi.transform * ictx->i2vp; + SPItem const *chi = dynamic_cast(child); + g_assert(chi != NULL); + cctx.i2doc = chi->transform * ictx->i2doc; + cctx.i2vp = chi->transform * ictx->i2vp; this->child->updateDisplay((SPCtx *)&cctx, childflags); } @@ -621,7 +639,7 @@ SPItem *SPUse::unlink() { Inkscape::XML::Node *copy = NULL; - if (SP_IS_SYMBOL(orig)) { // make a group, copy children + if (dynamic_cast(orig)) { // make a group, copy children copy = xml_doc->createElement("svg:g"); for (Inkscape::XML::Node *child = orig->getRepr()->firstChild() ; child != NULL; child = child->next()) { @@ -669,7 +687,8 @@ SPItem *SPUse::unlink() { this->setSuccessor(unlinked); sp_object_unref(this, NULL); - SPItem *item = SP_ITEM(unlinked); + SPItem *item = dynamic_cast(unlinked); + g_assert(item != NULL); // Set the accummulated transform. { diff --git a/src/sp-use.h b/src/sp-use.h index 97385b986..81e4391aa 100644 --- a/src/sp-use.h +++ b/src/sp-use.h @@ -6,7 +6,9 @@ * * Authors: * Lauris Kaplinski + * Jon A. Cruz * + * Copyright (C) 1999-2014 Authors * Copyright (C) 1999-2002 Lauris Kaplinski * Copyright (C) 2000-2001 Ximian, Inc. * @@ -20,9 +22,6 @@ #include "sp-item.h" #include "enums.h" -#define SP_USE(obj) (dynamic_cast((SPObject*)obj)) -#define SP_IS_USE(obj) (dynamic_cast((SPObject*)obj) != NULL) - class SPUseReference; class SPUse : public SPItem { diff --git a/src/ui/dialog/clonetiler.cpp b/src/ui/dialog/clonetiler.cpp index 5ef885ab2..d1a675735 100644 --- a/src/ui/dialog/clonetiler.cpp +++ b/src/ui/dialog/clonetiler.cpp @@ -1,5 +1,6 @@ -/** @file +/** + * @file * Clone tiling dialog */ /* Authors: @@ -2002,7 +2003,7 @@ bool CloneTiler::clonetiler_is_a_clone_of(SPObject *tile, SPObject *obj) id_href = g_strdup_printf("#%s", obj_repr->attribute("id")); } - if (SP_IS_USE(tile) && + if (dynamic_cast(tile) && tile->getRepr()->attribute("xlink:href") && (!id_href || !strcmp(id_href, tile->getRepr()->attribute("xlink:href"))) && tile->getRepr()->attribute("inkscape:tiled-clone-of") && @@ -2025,8 +2026,10 @@ void CloneTiler::clonetiler_trace_hide_tiled_clones_recursively(SPObject *from) return; for (SPObject *o = from->firstChild(); o != NULL; o = o->next) { - if (SP_IS_ITEM(o) && clonetiler_is_a_clone_of (o, NULL)) - SP_ITEM(o)->invoke_hide(trace_visionkey); // FIXME: hide each tiled clone's original too! + SPItem *item = dynamic_cast(o); + if (item && clonetiler_is_a_clone_of(o, NULL)) { + item->invoke_hide(trace_visionkey); // FIXME: hide each tiled clone's original too! + } clonetiler_trace_hide_tiled_clones_recursively (o); } } @@ -2160,7 +2163,9 @@ void CloneTiler::clonetiler_remove(GtkWidget */*widget*/, GtkWidget *dlg, bool d } } for (GSList *i = to_delete; i; i = i->next) { - SP_OBJECT(i->data)->deleteObject(); + SPObject *obj = reinterpret_cast(i->data); + g_assert(obj != NULL); + obj->deleteObject(); } g_slist_free (to_delete); @@ -2330,7 +2335,7 @@ void CloneTiler::clonetiler_apply(GtkWidget */*widget*/, GtkWidget *dlg) bool invert_picked = prefs->getBool(prefs_path + "invert_picked"); double gamma_picked = prefs->getDoubleLimited(prefs_path + "gamma_picked", 0, -10, 10); - SPItem *item = SP_IS_ITEM(obj) ? SP_ITEM(obj) : 0; + SPItem *item = dynamic_cast(obj); if (dotrace) { clonetiler_trace_setup (sp_desktop_document(desktop), 1.0, item); } @@ -2621,9 +2626,10 @@ void CloneTiler::clonetiler_apply(GtkWidget */*widget*/, GtkWidget *dlg) if (center_set) { SPObject *clone_object = sp_desktop_document(desktop)->getObjectByRepr(clone); - if (clone_object && SP_IS_ITEM(clone_object)) { + SPItem *item = dynamic_cast(clone_object); + if (clone_object && item) { clone_object->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); - SP_ITEM(clone_object)->setCenter(desktop->doc2dt(new_center)); + item->setCenter(desktop->doc2dt(new_center)); clone_object->updateRepr(); } } diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp index 1a4823e4a..1a7832688 100644 --- a/src/ui/dialog/find.cpp +++ b/src/ui/dialog/find.cpp @@ -241,7 +241,7 @@ Find::Find() Inkscape::Selection *selection = sp_desktop_selection (SP_ACTIVE_DESKTOP); SPItem *item = selection->singleItem(); if (item) { - if (SP_IS_TEXT(item) || SP_IS_FLOWTEXT(item)) { + if (dynamic_cast(item) || dynamic_cast(item)) { gchar *str; str = sp_te_get_string_multiline (item); entry_find.getEntry()->set_text(str); @@ -343,7 +343,7 @@ bool Find::item_text_match (SPItem *item, const gchar *find, bool exact, bool ca return false; } - if (SP_IS_TEXT(item) || SP_IS_FLOWTEXT(item)) { + if (dynamic_cast(item) || dynamic_cast(item)) { const gchar *item_text = sp_te_get_string_multiline (item); if (item_text == NULL) { return false; @@ -388,7 +388,7 @@ bool Find::item_id_match (SPItem *item, const gchar *id, bool exact, bool casema return false; } - if (SP_IS_STRING(item)) { // SPStrings have "on demand" ids which are useless for searching + if (dynamic_cast(item)) { // SPStrings have "on demand" ids which are useless for searching return false; } @@ -561,11 +561,14 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (check_searchin_text.get_active()) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_text_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_text_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_text_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_text_match(item, text, exact, casematch, _action_replace); } } } @@ -581,11 +584,13 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (ids) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_id_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + if (item_id_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_id_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_id_match(item, text, exact, casematch, _action_replace); } } } @@ -595,12 +600,15 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (style) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_style_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_style_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_style_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_style_match(item, text, exact, casematch, _action_replace); } } } @@ -610,11 +618,14 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (attrname) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_attr_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_attr_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_attr_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_attr_match(item, text, exact, casematch, _action_replace); } } } @@ -624,11 +635,14 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (attrvalue) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_attrvalue_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_attrvalue_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_attrvalue_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_attrvalue_match(item, text, exact, casematch, _action_replace); } } } @@ -638,11 +652,14 @@ GSList *Find::filter_fields (GSList *l, bool exact, bool casematch) if (font) { for (GSList *i = in; i != NULL; i = i->next) { - if (item_font_match (SP_ITEM(i->data), text, exact, casematch)) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_font_match(item, text, exact, casematch)) { if (!g_slist_find(out, i->data)) { out = g_slist_prepend (out, i->data); if (_action_replace) { - item_font_match (SP_ITEM(i->data), text, exact, casematch, _action_replace); + item_font_match(item, text, exact, casematch, _action_replace); } } } @@ -661,34 +678,34 @@ bool Find::item_type_match (SPItem *item) { bool all =check_alltypes.get_active(); - if ( SP_IS_RECT(item)) { + if ( dynamic_cast(item)) { return ( all ||check_rects.get_active()); - } else if (SP_IS_GENERICELLIPSE(item)) { + } else if (dynamic_cast(item)) { return ( all || check_ellipses.get_active()); - } else if (SP_IS_STAR(item) || SP_IS_POLYGON(item)) { + } else if (dynamic_cast(item) || dynamic_cast(item)) { return ( all || check_stars.get_active()); - } else if (SP_IS_SPIRAL(item)) { + } else if (dynamic_cast(item)) { return ( all || check_spirals.get_active()); - } else if (SP_IS_PATH(item) || SP_IS_LINE(item) || SP_IS_POLYLINE(item)) { + } else if (dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item)) { return (all || check_paths.get_active()); - } else if (SP_IS_TEXT(item) || SP_IS_TSPAN(item) || SP_IS_TREF(item) || SP_IS_STRING(item)) { + } else if (dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item)) { return (all || check_texts.get_active()); - } else if (SP_IS_GROUP(item) && !desktop->isLayer(item) ) { // never select layers! + } else if (dynamic_cast(item) && !desktop->isLayer(item) ) { // never select layers! return (all || check_groups.get_active()); - } else if (SP_IS_USE(item)) { + } else if (dynamic_cast(item)) { return (all || check_clones.get_active()); - } else if (SP_IS_IMAGE(item)) { + } else if (dynamic_cast(item)) { return (all || check_images.get_active()); - } else if (SP_IS_OFFSET(item)) { + } else if (dynamic_cast(item)) { return (all || check_offsets.get_active()); } @@ -699,7 +716,10 @@ GSList *Find::filter_types (GSList *l) { GSList *n = NULL; for (GSList *i = l; i != NULL; i = i->next) { - if (item_type_match (SP_ITEM(i->data))) { + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item_type_match(item)) { n = g_slist_prepend (n, i->data); } } @@ -716,7 +736,7 @@ GSList *Find::filter_list (GSList *l, bool exact, bool casematch) GSList *Find::all_items (SPObject *r, GSList *l, bool hidden, bool locked) { - if (SP_IS_DEFS(r)) { + if (dynamic_cast(r)) { return l; // we're not interested in items in defs } @@ -725,8 +745,8 @@ GSList *Find::all_items (SPObject *r, GSList *l, bool hidden, bool locked) } for (SPObject *child = r->firstChild(); child; child = child->getNext()) { - if (SP_IS_ITEM(child) && !child->cloned && !desktop->isLayer(SP_ITEM(child))) { - SPItem *item = reinterpret_cast(child); + SPItem *item = dynamic_cast(child); + if (item && !child->cloned && !desktop->isLayer(item)) { if ((hidden || !desktop->itemIsHidden(item)) && (locked || !item->isLocked())) { l = g_slist_prepend (l, child); } @@ -739,16 +759,18 @@ GSList *Find::all_items (SPObject *r, GSList *l, bool hidden, bool locked) GSList *Find::all_selection_items (Inkscape::Selection *s, GSList *l, SPObject *ancestor, bool hidden, bool locked) { for (GSList *i = (GSList *) s->itemList(); i != NULL; i = i->next) { - if (SP_IS_ITEM (i->data) && !reinterpret_cast(i->data)->cloned && !desktop->isLayer(SP_ITEM(i->data))) { - SPItem *item = reinterpret_cast(i->data); + SPObject *obj = reinterpret_cast(i->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + if (item && !item->cloned && !desktop->isLayer(item)) { if (!ancestor || ancestor->isAncestorOf(item)) { if ((hidden || !desktop->itemIsHidden(item)) && (locked || !item->isLocked())) { l = g_slist_prepend (l, i->data); } } } - if (!ancestor || ancestor->isAncestorOf(SP_OBJECT (i->data))) { - l = all_items (SP_OBJECT (i->data), l, hidden, locked); + if (!ancestor || ancestor->isAncestorOf(item)) { + l = all_items(item, l, hidden, locked); } } return l; @@ -831,7 +853,10 @@ void Find::onAction() Inkscape::Selection *selection = sp_desktop_selection (desktop); selection->clear(); selection->setList(n); - scroll_to_show_item (desktop, SP_ITEM(n->data)); + SPObject *obj = reinterpret_cast(n->data); + SPItem *item = dynamic_cast(obj); + g_assert(item != NULL); + scroll_to_show_item(desktop, item); if (_action_replace) { DocumentUndo::done(sp_desktop_document(desktop), SP_VERB_CONTEXT_TEXT, _("Replace text or property")); diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index 9a569725c..eb3857ee7 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -295,9 +295,8 @@ LivePathEffectEditor::onSelectionChanged(Inkscape::Selection *sel) if ( sel && !sel->isEmpty() ) { SPItem *item = sel->singleItem(); if ( item ) { - if ( SP_IS_LPE_ITEM(item) ) { - SPLPEItem *lpeitem = SP_LPE_ITEM(item); - + SPLPEItem *lpeitem = dynamic_cast(item); + if ( lpeitem ) { effect_list_reload(lpeitem); current_lpeitem = lpeitem; @@ -318,25 +317,28 @@ LivePathEffectEditor::onSelectionChanged(Inkscape::Selection *sel) button_up.set_sensitive(false); button_down.set_sensitive(false); } - } else if ( SP_IS_USE(item) ) { - // test whether linked object is supported by the CLONE_ORIGINAL LPE - SPItem *orig = SP_USE(item)->get_original(); - if ( SP_IS_SHAPE(orig) || - SP_IS_TEXT(orig) ) - { - // Note that an SP_USE cannot have an LPE applied, so we only need to worry about the "add effect" case. - set_sensitize_all(true); - showText(_("Click add button to convert clone")); - button_remove.set_sensitive(false); - button_up.set_sensitive(false); - button_down.set_sensitive(false); + } else { + SPUse *use = dynamic_cast(item); + if ( use ) { + // test whether linked object is supported by the CLONE_ORIGINAL LPE + SPItem *orig = use->get_original(); + if ( dynamic_cast(orig) || + dynamic_cast(orig) ) + { + // Note that an SP_USE cannot have an LPE applied, so we only need to worry about the "add effect" case. + set_sensitize_all(true); + showText(_("Click add button to convert clone")); + button_remove.set_sensitive(false); + button_up.set_sensitive(false); + button_down.set_sensitive(false); + } else { + showText(_("Select a path or shape")); + set_sensitize_all(false); + } } else { showText(_("Select a path or shape")); set_sensitize_all(false); } - } else { - showText(_("Select a path or shape")); - set_sensitize_all(false); } } else { showText(_("Only one item can be selected")); @@ -423,7 +425,7 @@ LivePathEffectEditor::onAdd() if ( sel && !sel->isEmpty() ) { SPItem *item = sel->singleItem(); if (item) { - if ( SP_IS_LPE_ITEM(item) ) { + if ( dynamic_cast(item) ) { // show effectlist dialog using Inkscape::UI::Dialog::LivePathEffectAdd; LivePathEffectAdd::show(current_desktop); @@ -439,7 +441,7 @@ LivePathEffectEditor::onAdd() } // If item is a SPRect, convert it to path first: - if ( SP_IS_RECT(item) ) { + if ( dynamic_cast(item) ) { sp_selected_path_to_curves(sel, current_desktop, false); item = sel->singleItem(); // get new item } @@ -451,41 +453,43 @@ LivePathEffectEditor::onAdd() lpe_list_locked = false; onSelectionChanged(sel); - } - else if ( SP_IS_USE(item) ) { - // item is a clone. do not show effectlist dialog. - // convert to path, apply CLONE_ORIGINAL LPE, link it to the cloned path - - // test whether linked object is supported by the CLONE_ORIGINAL LPE - SPItem *orig = SP_USE(item)->get_original(); - if ( SP_IS_SHAPE(orig) || - SP_IS_TEXT(orig) ) - { - // select original - sel->set(orig); - - // delete clone but remember its id and transform - gchar *id = g_strdup(item->getRepr()->attribute("id")); - gchar *transform = g_strdup(item->getRepr()->attribute("transform")); - item->deleteObject(false); - item = NULL; - - // run sp_selection_clone_original_path_lpe - sp_selection_clone_original_path_lpe(current_desktop); - SPItem *new_item = sel->singleItem(); - new_item->getRepr()->setAttribute("id", id); - new_item->getRepr()->setAttribute("transform", transform); - g_free(id); - g_free(transform); - - /// \todo Add the LPE stack of the original path? - - SPDocument *doc = current_desktop->doc(); - DocumentUndo::done(doc, SP_VERB_DIALOG_LIVE_PATH_EFFECT, - _("Create and apply Clone original path effect")); - - lpe_list_locked = false; - onSelectionChanged(sel); + } else { + SPUse *use = dynamic_cast(item); + if ( use ) { + // item is a clone. do not show effectlist dialog. + // convert to path, apply CLONE_ORIGINAL LPE, link it to the cloned path + + // test whether linked object is supported by the CLONE_ORIGINAL LPE + SPItem *orig = use->get_original(); + if ( dynamic_cast(orig) || + dynamic_cast(orig) ) + { + // select original + sel->set(orig); + + // delete clone but remember its id and transform + gchar *id = g_strdup(item->getRepr()->attribute("id")); + gchar *transform = g_strdup(item->getRepr()->attribute("transform")); + item->deleteObject(false); + item = NULL; + + // run sp_selection_clone_original_path_lpe + sp_selection_clone_original_path_lpe(current_desktop); + SPItem *new_item = sel->singleItem(); + new_item->getRepr()->setAttribute("id", id); + new_item->getRepr()->setAttribute("transform", transform); + g_free(id); + g_free(transform); + + /// \todo Add the LPE stack of the original path? + + SPDocument *doc = current_desktop->doc(); + DocumentUndo::done(doc, SP_VERB_DIALOG_LIVE_PATH_EFFECT, + _("Create and apply Clone original path effect")); + + lpe_list_locked = false; + onSelectionChanged(sel); + } } } } @@ -498,13 +502,14 @@ LivePathEffectEditor::onRemove() Inkscape::Selection *sel = _getSelection(); if ( sel && !sel->isEmpty() ) { SPItem *item = sel->singleItem(); - if ( item && SP_IS_LPE_ITEM(item) ) { - SP_LPE_ITEM(item)->removeCurrentPathEffect(false); + SPLPEItem *lpeitem = dynamic_cast(item); + if ( lpeitem ) { + lpeitem->removeCurrentPathEffect(false); DocumentUndo::done( sp_desktop_document(current_desktop), SP_VERB_DIALOG_LIVE_PATH_EFFECT, _("Remove path effect") ); - effect_list_reload(SP_LPE_ITEM(item)); + effect_list_reload(lpeitem); } } @@ -515,7 +520,8 @@ void LivePathEffectEditor::onUp() Inkscape::Selection *sel = _getSelection(); if ( sel && !sel->isEmpty() ) { SPItem *item = sel->singleItem(); - if ( SPLPEItem *lpeitem = SP_LPE_ITEM(item) ) { + SPLPEItem *lpeitem = dynamic_cast(item); + if ( lpeitem ) { lpeitem->upCurrentPathEffect(); DocumentUndo::done( sp_desktop_document(current_desktop), SP_VERB_DIALOG_LIVE_PATH_EFFECT, @@ -531,7 +537,8 @@ void LivePathEffectEditor::onDown() Inkscape::Selection *sel = _getSelection(); if ( sel && !sel->isEmpty() ) { SPItem *item = sel->singleItem(); - if ( SPLPEItem *lpeitem = SP_LPE_ITEM(item) ) { + SPLPEItem *lpeitem = dynamic_cast(item); + if ( lpeitem ) { lpeitem->downCurrentPathEffect(); DocumentUndo::done( sp_desktop_document(current_desktop), SP_VERB_DIALOG_LIVE_PATH_EFFECT, diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp index a9cf8d068..a17a03861 100644 --- a/src/ui/dialog/symbols.cpp +++ b/src/ui/dialog/symbols.cpp @@ -298,8 +298,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) : // This might need to be a global variable so setTargetDesktop can modify it SPDefs *defs = currentDocument->getDefs(); - sigc::connection defsModifiedConn = (SP_OBJECT(defs))->connectModified( - sigc::mem_fun(*this, &SymbolsDialog::defsModified)); + sigc::connection defsModifiedConn = defs->connectModified(sigc::mem_fun(*this, &SymbolsDialog::defsModified)); instanceConns.push_back(defsModifiedConn); sigc::connection selectionChangedConn = currentDesktop->selection->connectChanged( @@ -658,11 +657,11 @@ GSList* SymbolsDialog::symbols_in_doc_recursive (SPObject *r, GSList *l) g_return_val_if_fail(r != NULL, l); // Stop multiple counting of same symbol - if( SP_IS_USE(r) ) { + if ( dynamic_cast(r) ) { return l; } - if( SP_IS_SYMBOL(r) ) { + if ( dynamic_cast(r) ) { l = g_slist_prepend (l, r); } @@ -684,7 +683,7 @@ GSList* SymbolsDialog::symbols_in_doc( SPDocument* symbolDocument ) { GSList* SymbolsDialog::use_in_doc_recursive (SPObject *r, GSList *l) { - if( SP_IS_USE(r) ) { + if ( dynamic_cast(r) ) { l = g_slist_prepend (l, r); } @@ -709,8 +708,9 @@ gchar const* SymbolsDialog::style_from_use( gchar const* id, SPDocument* documen gchar const* style = 0; GSList* l = use_in_doc( document ); for( ; l != NULL; l = l->next ) { - SPObject* use = SP_OBJECT(l->data); - if( SP_IS_USE( use ) ) { + SPObject *obj = reinterpret_cast(l->data); + SPUse *use = dynamic_cast(obj); + if ( use ) { gchar const *href = use->getRepr()->attribute("xlink:href"); if( href ) { Glib::ustring href2(href); @@ -730,8 +730,9 @@ void SymbolsDialog::add_symbols( SPDocument* symbolDocument ) { GSList* l = symbols_in_doc( symbolDocument ); for( ; l != NULL; l = l->next ) { - SPObject* symbol = SP_OBJECT(l->data); - if (SP_IS_SYMBOL(symbol)) { + SPObject *obj = reinterpret_cast(l->data); + SPSymbol *symbol = dynamic_cast(obj); + if (symbol) { add_symbol( symbol ); } } @@ -820,7 +821,8 @@ SymbolsDialog::draw_symbol(SPObject *symbol) previewDocument->getRoot()->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); previewDocument->ensureUpToDate(); - SPItem *item = SP_ITEM(object_temp); + SPItem *item = dynamic_cast(object_temp); + g_assert(item != NULL); unsigned psize = SYMBOL_ICON_SIZES[pack_size]; Glib::RefPtr pixbuf(NULL); -- cgit v1.2.3 From a213372bccdad1d36a559e97482f4ce3ddcdc133 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 10 Nov 2014 21:46:54 +0100 Subject: Add a extra info page pointed by suv in bug page (bzr r13701) --- share/extensions/dpiswitcher.inx | 12 +++++-- share/extensions/dpiswitcher.py | 68 ++++++++++++++++++++++++++++++---------- 2 files changed, 61 insertions(+), 19 deletions(-) diff --git a/share/extensions/dpiswitcher.inx b/share/extensions/dpiswitcher.inx index 145fd9357..a4f487c97 100644 --- a/share/extensions/dpiswitcher.inx +++ b/share/extensions/dpiswitcher.inx @@ -5,10 +5,18 @@ org.inkscape.dpiswitcher dpiswitcher.py inkex.py - + + + <_item value="0">DPI Switch from 90 to 96 <_item value="1">DPI Switch from 96 to 90 - + + + + <_param name="d" type="description">Choose this tab if you would like to see page info previously to apply DPI Switcher. + + + all diff --git a/share/extensions/dpiswitcher.py b/share/extensions/dpiswitcher.py index a1a7a1a52..b110c259f 100644 --- a/share/extensions/dpiswitcher.py +++ b/share/extensions/dpiswitcher.py @@ -34,6 +34,9 @@ class DPISwitcher(inkex.Effect): self.OptionParser.add_option("--switcher", action="store", type="string", dest="switcher", default="0", help="Select the DPI switch you want") + self.OptionParser.add_option("--action", action="store", + type="string", dest="action", + default=None, help="") self.factor = 90.0/96.0 self.units = "px" self.unitExponent = 1.0 @@ -174,28 +177,59 @@ class DPISwitcher(inkex.Effect): return "matrix(" + matrixVal[0] + "," + str(float(matrixVal[1]) * self.factor) + "," + str(float(matrixVal[2]) * self.factor) + ")" def effect(self): - if self.options.switcher == "0": - self.factor = 96.0/90.0 + action = self.options.action.strip("\"") # TODO Is this a bug? (Extra " characters) saveout = sys.stdout sys.stdout = sys.stderr svg = self.document.getroot() - namedview = svg.find(inkex.addNS('namedview', 'sodipodi')) - namedview.set(inkex.addNS('document-units', 'inkscape'), "px") - self.units = re.sub("[0-9]*\.?[0-9]", "", svg.get('width')) - if self.units and self.units <> "px": + if action == "page_info": + print ":::SVG document related info:::" + width = svg.get('width') + if width: + print "width: " + width + height = svg.get('height') + if height: + print "height: " + height + viewBox = svg.get('viewBox') + if viewBox: + print "viewBox: " + viewBox + namedview = svg.find(inkex.addNS('namedview', 'sodipodi')) + docunits= namedview.get(inkex.addNS('document-units', 'inkscape')) + if docunits: + print "document-units: " + docunits + units = namedview.get('units') + if units: + print "units: " + units + xpathStr = '//sodipodi:guide' + guides = svg.xpath(xpathStr, namespaces=inkex.NSS) + xpathStr = '//inkscape:grid' + if guides: + numberGuides = len(guides) + print "Document has " + str(numberGuides) + " guides" + grids = svg.xpath(xpathStr, namespaces=inkex.NSS) + i = 1 + for grid in grids: + print "Grid number " + str(i) + ": Units: " + grid.get("units") + i = i+1 + else: if self.options.switcher == "0": - self.unitExponent = 1.0/(self.factor/self.__uuconv[self.units]) + self.factor = 96.0/90.0 + namedview = svg.find(inkex.addNS('namedview', 'sodipodi')) + namedview.set(inkex.addNS('document-units', 'inkscape'), "px") + self.units = re.sub("[0-9]*\.?[0-9]", "", svg.get('width')) + if self.units and self.units <> "px": + if self.options.switcher == "0": + self.unitExponent = 1.0/(self.factor/self.__uuconv[self.units]) + else: + self.unitExponent = 1.0/(self.factor/self.__uuconvLegazy[self.units]) + ''' else: - self.unitExponent = 1.0/(self.factor/self.__uuconvLegazy[self.units]) - ''' - else: - self.scaleGuides(svg) - self.unitExponent = 1.0 - self.scaleGrid(svg) - sys.stdout = saveout - return - ''' - self.scaleRoot(svg); + self.scaleGuides(svg) + self.unitExponent = 1.0 + self.scaleGrid(svg) + sys.stdout = saveout + return + ''' + self.scaleRoot(svg); sys.stdout = saveout effect = DPISwitcher() -- cgit v1.2.3 From 81e1c629cc911a8313ab7f528a65c616156440b2 Mon Sep 17 00:00:00 2001 From: "Liam P. White" Date: Mon, 10 Nov 2014 22:05:04 -0500 Subject: Add totally unfinished XML/SPObject test suite (bzr r13702) --- build-x64.xml | 1 + build.xml | 1 + src/CMakeLists.txt | 1 + src/Makefile_insert | 1 + src/object-test.h | 209 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 213 insertions(+) create mode 100644 src/object-test.h diff --git a/build-x64.xml b/build-x64.xml index aa8717bdd..afe9db724 100644 --- a/build-x64.xml +++ b/build-x64.xml @@ -241,6 +241,7 @@ + diff --git a/build.xml b/build.xml index dd3bf0942..7da46b7c9 100644 --- a/build.xml +++ b/build.xml @@ -237,6 +237,7 @@ + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1455b762e..a1f5fc3dd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -365,6 +365,7 @@ set(inkscape_SRC number-opt-number.h object-hierarchy.h object-snapper.h + object-test.h path-chemistry.h path-prefix.h persp3d-reference.h diff --git a/src/Makefile_insert b/src/Makefile_insert index 2fff44cb8..107acdf31 100644 --- a/src/Makefile_insert +++ b/src/Makefile_insert @@ -247,6 +247,7 @@ CXXTEST_TESTSUITES += \ $(srcdir)/extract-uri-test.h \ $(srcdir)/marker-test.h \ $(srcdir)/mod360-test.h \ + $(srcdir)/object-test.h \ $(srcdir)/preferences-test.h \ $(srcdir)/round-test.h \ $(srcdir)/sp-gradient-test.h \ diff --git a/src/object-test.h b/src/object-test.h new file mode 100644 index 000000000..77e9afa86 --- /dev/null +++ b/src/object-test.h @@ -0,0 +1,209 @@ +#ifndef SEEN_OBJECT_TEST_H +#define SEEN_OBJECT_TEST_H + +#include +#include +#include +#include +#include + +#include "document.h" +#include "sp-item-group.h" +#include "sp-object.h" +#include "sp-path.h" +#include "sp-root.h" +#include "xml/document.h" +#include "xml/node.h" + +class ObjectTest : public CxxTest::TestSuite +{ +public: + virtual ~ObjectTest() {} + + static ObjectTest *createSuite() { return new ObjectTest(); } + static void destroySuite(ObjectTest *suite) { delete suite; } + + void testObjects() + { + clock_t begin, end; + // Sample document + // svg:svg + // svg:defs + // svg:path + // svg:linearGradient + // svg:stop + // svg:filter + // svg:feGaussianBlur (feel free to implement for other filters) + // svg:clipPath + // svg:rect + // svg:g + // svg:use + // svg:circle + // svg:ellipse + // svg:text + // svg:polygon + // svg:polyline + // svg:image + // svg:line + + char const *docString = + "\n" + "\n" + "SVG test\n" + "\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n" + + "\n" + " \n" + " \n" + " \n" + " TEST\n" + " \n" + " \n" + " \n" + " \n" + "\n" + "\n"; + + begin = clock(); + SPDocument *doc = SPDocument::createNewDocFromMem(docString, strlen(docString), false); + end = clock(); + + assert(doc != NULL); // cannot continue if doc is null, abort! + assert(doc->getRoot() != NULL); + + SPRoot *root = doc->getRoot(); + assert(root->getRepr() != NULL); + assert(root->hasChildren()); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to construct the test document\n"; + + SPPath *path = dynamic_cast(doc->getObjectById("P")); + testClones(path); + + SPGroup *group = dynamic_cast(doc->getObjectById("G")); + testGrouping(group); + } + + void testClones(SPPath *path) + { + clock_t begin, end; + + assert(path != NULL); + + // Since we don't yet have any clean way to do this (FIXME), we'll abuse the XML tree a bit. + Inkscape::XML::Node *node = path->getRepr(); + assert(node != NULL); + + Inkscape::XML::Document *xml_doc = node->document(); + + Inkscape::XML::Node *parent = node->parent(); + assert(parent != NULL); + + TS_TRACE("Benchmarking clones..."); + const size_t num_clones = 10000; + + std::string href(std::string("#") + std::string(path->getId())); + std::vector clones(num_clones, NULL); + + begin = clock(); + // Create num_clones clones of this path and stick them in the document + for (size_t i = 0; i < num_clones; ++i) { + Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); + Inkscape::GC::release(clone); + clone->setAttribute("xlink:href", href.c_str()); + parent->addChild(clone, node); + clones[i] = clone; + } + end = clock(); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to write " << num_clones << " clones of a path\n"; + + begin = clock(); + // Remove those clones + for (size_t i = num_clones - 1; i >= 1; --i) { + parent->removeChild(clones[i]); + } + end = clock(); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to remove " << num_clones << " clones of a path\n"; + } + + void testGrouping(SPGroup *group) + { + clock_t begin, end; + + assert(group != NULL); + + // Since we don't yet have any clean way to do this (FIXME), we'll abuse the XML tree a bit. + Inkscape::XML::Node *node = group->getRepr(); + assert(node != NULL); + + Inkscape::XML::Document *xml_doc = node->document(); + + TS_TRACE("Benchmarking groups..."); + const size_t num_elements = 10000; + + Inkscape::XML::Node *new_group = xml_doc->createElement("svg:g"); + Inkscape::GC::release(new_group); + node->addChild(new_group, NULL); + + std::vector elements(num_elements, NULL); + + begin = clock(); + for (size_t i = 0; i < num_elements; ++i) { + Inkscape::XML::Node *circle = xml_doc->createElement("svg:circle"); + Inkscape::GC::release(circle); + circle->setAttribute("cx", "2048"); + circle->setAttribute("cy", "1024"); + circle->setAttribute("r", "1.5"); + new_group->addChild(circle, NULL); + elements[i] = circle; + } + end = clock(); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to write " << num_elements << " elements into a group\n"; + + SPGroup *n_group = dynamic_cast(group->get_child_by_repr(new_group)); + assert(n_group != NULL); + + begin = clock(); + sp_item_group_ungroup(n_group, NULL, false); + end = clock(); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to ungroup a with " << num_elements << " elements\n"; + + begin = clock(); + // Remove those elements + for (size_t i = num_elements - 1; i >= 1; --i) { + elements[i]->parent()->removeChild(elements[i]); + } + end = clock(); + + std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to remove " << num_elements << " elements\n"; + } +}; +#endif // SEEN_OBJECT_TEST_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : -- cgit v1.2.3 From 84d91e1c53584458c783820f7e8e341b8617e4cb Mon Sep 17 00:00:00 2001 From: "Liam P. White" Date: Tue, 11 Nov 2014 17:07:11 -0500 Subject: Add a few more tests (bzr r13703) --- src/object-test.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/object-test.h b/src/object-test.h index 77e9afa86..d6a9dbbd3 100644 --- a/src/object-test.h +++ b/src/object-test.h @@ -95,6 +95,30 @@ public: SPGroup *group = dynamic_cast(doc->getObjectById("G")); testGrouping(group); + + // Test parent behavior + SPObject *child = root->firstChild(); + assert(child != NULL); + TS_ASSERT(child->parent == root); + TS_ASSERT(child->document == doc); + TS_ASSERT(root->isAncestorOf(child)); + + // Test list behavior + SPObject *next = child->getNext(); + SPObject *prev = next; + TS_ASSERT(next->getPrev() == child); + prev = next; + next = next->getNext(); + while (next != NULL) { + // Walk the list + TS_ASSERT(next->getPrev() == prev); + prev = next; + next = next->getNext(); + } + TS_ASSERT(child->lastChild() == next); + + // Test hrefcount + TS_ASSERT(path->isReferenced()); } void testClones(SPPath *path) -- cgit v1.2.3 From 7ff4799d9ecde4286c94e76f4005e18db5a60055 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Wed, 12 Nov 2014 01:12:35 +0100 Subject: Fixed bug in node point selection to LPE. (bzr r13704) --- src/live_effects/effect.cpp | 9 ++++++--- src/ui/tools/node-tool.cpp | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index ca3b29b66..e49a15dd0 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -413,12 +413,15 @@ bool Effect::isNodePointSelected(Geom::Point const &nodePoint) const { if (selectedNodesPoints.size() > 0) { + using Geom::X; + using Geom::Y; for (std::vector::const_iterator i = selectedNodesPoints.begin(); i != selectedNodesPoints.end(); ++i) { Geom::Point p = *i; - p[Geom::X] = Inkscape::Util::Quantity::convert(p[Geom::X], "px", *defaultUnit); - p[Geom::Y] = Inkscape::Util::Quantity::convert(p[Geom::Y], "px", *defaultUnit); - if (Geom::are_near(p, nodePoint, 0.01)) { + Geom::Affine transformCoordinate = sp_lpe_item->i2dt_affine(); + Geom::Point p2(nodePoint[X],nodePoint[Y]); + p2 *= transformCoordinate; + if (Geom::are_near(p, p2, 0.01)) { return true; } } diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index 99d60e2b7..838c2a884 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -310,7 +310,7 @@ void NodeTool::update_helperpath () { for (Inkscape::UI::ControlPointSelection::Set::iterator i = selectionNodes.begin(); i != selectionNodes.end(); ++i) { if ((*i)->selected()) { Inkscape::UI::Node *n = dynamic_cast(*i); - selectedNodesPositions.push_back(desktop->doc2dt(n->position())); + selectedNodesPositions.push_back(n->position()); } } lpe->setSelectedNodePoints(selectedNodesPositions); -- cgit v1.2.3 From 922a3d737c578c3de5343704f81e0db85e028278 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Wed, 12 Nov 2014 18:58:18 +0100 Subject: Fix a bug releasing LPE clip and mask (bzr r13705) --- src/selection-chemistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index d0ef0afea..d00e8d702 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -4186,7 +4186,7 @@ void sp_selection_unset_mask(SPDesktop *desktop, bool apply_clip_path) { for ( SPObject *child = obj->firstChild() ; child; child = child->getNext() ) { // Collect all clipped paths and masks within a single group Inkscape::XML::Node *copy = SP_OBJECT(child)->getRepr()->duplicate(xml_doc); - if(copy->attribute("inkscape:original-d")) + if(copy->attribute("inkscape:original-d") && copy->attribute("inkscape:path-effect")) { copy->setAttribute("d", copy->attribute("inkscape:original-d")); } -- cgit v1.2.3 From 320bacdb7957098144ee11a015c6614af4f1e6ea Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Wed, 12 Nov 2014 20:26:25 +0100 Subject: Add new text decoration properties. (bzr r13706) --- share/attributes/genMapDataCSS.pl | 26 ++++++++++++++++++++++++++ src/style-internal.h | 12 +++++++++--- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/share/attributes/genMapDataCSS.pl b/share/attributes/genMapDataCSS.pl index 9b013c758..438c26d04 100755 --- a/share/attributes/genMapDataCSS.pl +++ b/share/attributes/genMapDataCSS.pl @@ -210,6 +210,32 @@ push @{$properties{ "solid-opacity" }->{elements}}, @graphics_elements; $properties{ "solid-opacity" }->{default} = "1.0"; $properties{ "solid-opacity" }->{inherit} = "no"; +# CSS Text Decoration +push @{$properties{ "text-decoration-line" }->{elements}}, @container_elements; +push @{$properties{ "text-decoration-line" }->{elements}}, @text_content_elements; +$properties{ "text-decoration-line" }->{default} = "none"; +$properties{ "text-decoration-line" }->{inherit} = "no"; + +push @{$properties{ "text-decoration-color" }->{elements}}, @container_elements; +push @{$properties{ "text-decoration-color" }->{elements}}, @text_content_elements; +$properties{ "text-decoration-color" }->{default} = "NO_DEFAULT"; +$properties{ "text-decoration-color" }->{inherit} = "no"; + +push @{$properties{ "text-decoration-style" }->{elements}}, @container_elements; +push @{$properties{ "text-decoration-style" }->{elements}}, @text_content_elements; +$properties{ "text-decoration-color" }->{default} = "solid"; +$properties{ "text-decoration-color" }->{inherit} = "no"; + +push @{$properties{ "text-decoration-fill" }->{elements}}, @container_elements; +push @{$properties{ "text-decoration-fill" }->{elements}}, @text_content_elements; +$properties{ "text-decoration-fill" }->{default} = "NO_DEFAULT"; +$properties{ "text-decoration-fill" }->{inherit} = "no"; + +push @{$properties{ "text-decoration-stroke" }->{elements}}, @container_elements; +push @{$properties{ "text-decoration-stroke" }->{elements}}, @text_content_elements; +$properties{ "text-decoration-stroke" }->{default} = "NO_DEFAULT"; +$properties{ "text-decoration-stroke" }->{inherit} = "no"; + # Output diff --git a/src/style-internal.h b/src/style-internal.h index 32792827a..faae76ac5 100644 --- a/src/style-internal.h +++ b/src/style-internal.h @@ -36,6 +36,12 @@ static const unsigned SP_STYLE_FLAG_ALWAYS (1 << 2); static const unsigned SP_STYLE_FLAG_IFSET (1 << 0); static const unsigned SP_STYLE_FLAG_IFDIFF (1 << 1); +enum SPStyleSrc { + SP_STYLE_SRC_UNSET, + SP_STYLE_SRC_STYLE_PROP, + SP_STYLE_SRC_STYLE_SHEET, + SP_STYLE_SRC_ATTRIBUTE +}; /* General comments: * @@ -113,7 +119,7 @@ public: inherits(inherits), set(false), inherit(false), - style_att(false), + style_src(SP_STYLE_SRC_UNSET), style(NULL) {} @@ -150,7 +156,7 @@ public: inherits = rhs.inherits; set = rhs.set; inherit = rhs.inherit; - style_att = rhs.style_att; + style_src = rhs.style_src; style = rhs.style; return *this; } @@ -170,7 +176,7 @@ public: unsigned inherits : 1; // Property inherits by default from parent. unsigned set : 1; // Property has been explicitly set (vs. inherited). unsigned inherit : 1; // Property value set to 'inherit'. - unsigned style_att : 2; // Source (attribute, style attribute, style-sheet). NOT USED YET FIX ME + SPStyleSrc style_src : 2; // Source (attribute, style attribute, style-sheet). NOT USED YET FIX ME // To do: make private after g_asserts removed public: -- cgit v1.2.3 From 55d0c379b07eec85949d69fd8853153d22c6d95f Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Wed, 12 Nov 2014 20:30:41 +0100 Subject: Really add new text-decoration properties. (bzr r13707) --- share/attributes/cssprops | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/share/attributes/cssprops b/share/attributes/cssprops index aefb60cc1..1f8be6b16 100644 --- a/share/attributes/cssprops +++ b/share/attributes/cssprops @@ -124,6 +124,16 @@ "text-decoration" - "altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" +"text-decoration-color" - "a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use","altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" + +"text-decoration-fill" - "a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use","altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" + +"text-decoration-line" - "a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use","altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" + +"text-decoration-stroke" - "a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use","altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" + +"text-decoration-style" - "a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use","altGlyph","textPath","text","tref","tspan","flowRoot","flowPara","flowSpan" + "text-rendering" - "text","a","defs","glyph","g","marker","mask","missing-glyph","pattern","svg","switch","symbol","use" "title" - "circle","ellipse","image","line","path","polygon","polyline","rect","text","use","g" -- cgit v1.2.3 From 87469d81799b58681b91800234f266ea8b19b30b Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Fri, 14 Nov 2014 01:08:40 +0100 Subject: Add inverse subdivision chamfer to fillet chamfer LPE, feature sugested by Ivan Louette. (bzr r13708) --- src/live_effects/lpe-fillet-chamfer.cpp | 76 +++++++++++++++++----- src/live_effects/lpe-fillet-chamfer.h | 4 +- .../parameter/filletchamferpointarray.cpp | 32 ++++++--- src/ui/dialog/lpe-fillet-chamfer-properties.cpp | 15 ++++- src/ui/dialog/lpe-fillet-chamfer-properties.h | 1 + 5 files changed, 99 insertions(+), 29 deletions(-) diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp index c89bfbd37..78e24f0b8 100644 --- a/src/live_effects/lpe-fillet-chamfer.cpp +++ b/src/live_effects/lpe-fillet-chamfer.cpp @@ -79,7 +79,7 @@ LPEFilletChamfer::LPEFilletChamfer(LivePathEffectObject *lpeobject) : radius.param_set_range(0., infinity()); radius.param_set_increments(1, 1); radius.param_set_digits(4); - chamfer_steps.param_set_range(0, infinity()); + chamfer_steps.param_set_range(0, 999); chamfer_steps.param_set_increments(1, 1); chamfer_steps.param_set_digits(0); helper_size.param_set_range(0, infinity()); @@ -116,7 +116,7 @@ Gtk::Widget *LPEFilletChamfer::newWidget() } } else if (param->param_key == "chamfer_steps") { Inkscape::UI::Widget::Scalar *widgRegistered = Gtk::manage(dynamic_cast(widg)); - widgRegistered->signal_value_changed().connect(sigc::mem_fun(*this, &LPEFilletChamfer::chamfer)); + widgRegistered->signal_value_changed().connect(sigc::mem_fun(*this, &LPEFilletChamfer::chamferSubdivisions)); widg = widgRegistered; if (widg) { Gtk::HBox *scalarParameter = dynamic_cast(widg); @@ -153,21 +153,26 @@ Gtk::Widget *LPEFilletChamfer::newWidget() ++it; } - - Gtk::VBox *buttonsContainer = Gtk::manage(new Gtk::VBox(true, 0)); + Gtk::HBox *filletContainer = Gtk::manage(new Gtk::HBox(true, 0)); Gtk::Button *fillet = Gtk::manage(new Gtk::Button(Glib::ustring(_("Fillet")))); fillet->signal_clicked().connect(sigc::mem_fun(*this, &LPEFilletChamfer::fillet)); - buttonsContainer->pack_start(*fillet, true, true, 2); - Gtk::Button *inverse = Gtk::manage(new Gtk::Button(Glib::ustring(_("Inverse fillet")))); - inverse->signal_clicked().connect(sigc::mem_fun(*this, &LPEFilletChamfer::inverse)); - buttonsContainer->pack_start(*inverse, true, true, 2); - + filletContainer->pack_start(*fillet, true, true, 2); + Gtk::Button *inverseFillet = Gtk::manage(new Gtk::Button(Glib::ustring(_("Inverse fillet")))); + inverseFillet->signal_clicked().connect(sigc::mem_fun(*this, &LPEFilletChamfer::inverseFillet)); + filletContainer->pack_start(*inverseFillet, true, true, 2); + + Gtk::HBox *chamferContainer = Gtk::manage(new Gtk::HBox(true, 0)); Gtk::Button *chamfer = Gtk::manage(new Gtk::Button(Glib::ustring(_("Chamfer")))); chamfer->signal_clicked().connect(sigc::mem_fun(*this, &LPEFilletChamfer::chamfer)); - buttonsContainer->pack_start(*chamfer, true, true, 2); - vbox->pack_start(*buttonsContainer, true, true, 2); + chamferContainer->pack_start(*chamfer, true, true, 2); + Gtk::Button *inverseChamfer = Gtk::manage(new Gtk::Button(Glib::ustring(_("Inverse chamfer")))); + inverseChamfer->signal_clicked().connect(sigc::mem_fun(*this, &LPEFilletChamfer::inverseChamfer)); + chamferContainer->pack_start(*inverseChamfer, true, true, 2); + + vbox->pack_start(*filletContainer, true, true, 2); + vbox->pack_start(*chamferContainer, true, true, 2); return vbox; } @@ -232,17 +237,31 @@ void LPEFilletChamfer::fillet() doChangeType(path_from_piecewise(pwd2, tolerance), 1); } -void LPEFilletChamfer::inverse() +void LPEFilletChamfer::inverseFillet() { Piecewise > const &pwd2 = fillet_chamfer_values.get_pwd2(); doChangeType(path_from_piecewise(pwd2, tolerance), 2); } +void LPEFilletChamfer::chamferSubdivisions() +{ + fillet_chamfer_values.set_chamfer_steps(chamfer_steps); + Piecewise > const &pwd2 = fillet_chamfer_values.get_pwd2(); + doChangeType(path_from_piecewise(pwd2, tolerance), chamfer_steps + 5000); +} + void LPEFilletChamfer::chamfer() { - fillet_chamfer_values.set_chamfer_steps(chamfer_steps + 3); + fillet_chamfer_values.set_chamfer_steps(chamfer_steps); Piecewise > const &pwd2 = fillet_chamfer_values.get_pwd2(); - doChangeType(path_from_piecewise(pwd2, tolerance), chamfer_steps + 3); + doChangeType(path_from_piecewise(pwd2, tolerance), chamfer_steps + 3000); +} + +void LPEFilletChamfer::inverseChamfer() +{ + fillet_chamfer_values.set_chamfer_steps(chamfer_steps); + Piecewise > const &pwd2 = fillet_chamfer_values.get_pwd2(); + doChangeType(path_from_piecewise(pwd2, tolerance), chamfer_steps + 4000); } void LPEFilletChamfer::refreshKnots() @@ -333,6 +352,13 @@ void LPEFilletChamfer::doChangeType(std::vector const& original_path toggle = false; } if (toggle) { + if(type >= 5000){ + if(filletChamferData[counter][Y] >= 3000 && filletChamferData[counter][Y] < 4000){ + type = type - 2000; + } else if (filletChamferData[counter][Y] >= 4000 && filletChamferData[counter][Y] < 5000){ + type = type - 1000; + } + } result.push_back(Point(filletChamferData[counter][X], type)); } else { result.push_back(filletChamferData[counter]); @@ -552,8 +578,8 @@ LPEFilletChamfer::doEffect_path(std::vector const &path_in) } else { type = std::abs(filletChamferData[counter + 1][Y]); } - if (type >= 3) { - unsigned int chamferSubs = type-2; + if (type >= 3000 && type < 4000) { + unsigned int chamferSubs = type-2999; Geom::Path path_chamfer; path_chamfer.start(path_out.finalPoint()); if((is_straight_curve(*curve_it1) && is_straight_curve(*curve_it2Fixed) && method != FM_BEZIER )|| method == FM_ARC){ @@ -567,6 +593,22 @@ LPEFilletChamfer::doEffect_path(std::vector const &path_in) path_out.appendNew(chamferStep); } path_out.appendNew(endArcPoint); + } else if (type >= 4000 && type < 5000) { + unsigned int chamferSubs = type-3999; + Geom::Path path_chamfer; + path_chamfer.start(path_out.finalPoint()); + if((is_straight_curve(*curve_it1) && is_straight_curve(*curve_it2Fixed) && method != FM_BEZIER )|| method == FM_ARC){ + ccwToggle = ccwToggle?0:1; + path_chamfer.appendNew(rx, ry, angleArc, 0, ccwToggle, endArcPoint); + }else{ + path_chamfer.appendNew(inverseHandle1, inverseHandle2, endArcPoint); + } + double chamfer_stepsTime = 1.0/chamferSubs; + for(unsigned int i = 1; i < chamferSubs; i++){ + Geom::Point chamferStep = path_chamfer.pointAt(chamfer_stepsTime * i); + path_out.appendNew(chamferStep); + } + path_out.appendNew(endArcPoint); } else if (type == 2) { if((is_straight_curve(*curve_it1) && is_straight_curve(*curve_it2Fixed) && method != FM_BEZIER )|| method == FM_ARC){ ccwToggle = ccwToggle?0:1; @@ -574,7 +616,7 @@ LPEFilletChamfer::doEffect_path(std::vector const &path_in) }else{ path_out.appendNew(inverseHandle1, inverseHandle2, endArcPoint); } - } else { + } else if (type == 1){ if((is_straight_curve(*curve_it1) && is_straight_curve(*curve_it2Fixed) && method != FM_BEZIER )|| method == FM_ARC){ path_out.appendNew(rx, ry, angleArc, 0, ccwToggle, endArcPoint); } else { diff --git a/src/live_effects/lpe-fillet-chamfer.h b/src/live_effects/lpe-fillet-chamfer.h index e3589197c..0d6a1ff17 100644 --- a/src/live_effects/lpe-fillet-chamfer.h +++ b/src/live_effects/lpe-fillet-chamfer.h @@ -56,8 +56,10 @@ public: void toggleHide(); void toggleFlexFixed(); void chamfer(); + void chamferSubdivisions(); + void inverseChamfer(); void fillet(); - void inverse(); + void inverseFillet(); void updateFillet(); void doUpdateFillet(std::vector const& original_pathv, double power); void doChangeType(std::vector const& original_pathv, int type); diff --git a/src/live_effects/parameter/filletchamferpointarray.cpp b/src/live_effects/parameter/filletchamferpointarray.cpp index cf9ef3132..4e2be6e88 100644 --- a/src/live_effects/parameter/filletchamferpointarray.cpp +++ b/src/live_effects/parameter/filletchamferpointarray.cpp @@ -723,7 +723,7 @@ FilletChamferPointArrayParamKnotHolderEntity( void FilletChamferPointArrayParamKnotHolderEntity::knot_set(Point const &p, Point const &/*origin*/, - guint /*state*/) + guint state) { using namespace Geom; @@ -733,7 +733,7 @@ void FilletChamferPointArrayParamKnotHolderEntity::knot_set(Point const &p, /// @todo how about item transforms??? Piecewise > const &pwd2 = _pparam->get_pwd2(); //todo: add snapping - //Geom::Point const s = snap_knot_position(p, state); + Geom::Point const s = snap_knot_position(p, state); double t = nearest_point(p, pwd2[_index]); if (t == 1) { t = 0.9999; @@ -777,13 +777,21 @@ void FilletChamferPointArrayParamKnotHolderEntity::knot_click(guint state) }else{ using namespace Geom; int type = (int)_pparam->_vector.at(_index)[Y]; - + if (type >=3000 && type < 4000){ + type = 3; + } + if (type >=4000 && type < 5000){ + type = 4; + } switch(type){ case 1: type = 2; break; case 2: - type = _pparam->chamfer_steps; + type = _pparam->chamfer_steps + 3000; + break; + case 3: + type = _pparam->chamfer_steps + 4000; break; default: type = 1; @@ -793,8 +801,12 @@ void FilletChamferPointArrayParamKnotHolderEntity::knot_click(guint state) _pparam->param_set_and_write_new_value(_pparam->_vector); sp_lpe_item_update_patheffect(SP_LPE_ITEM(item), false, false); const gchar *tip; - if (type >= 3) { - tip = _("Chamfer: Ctrl+Click toogle type, " + if (type >=3000 && type < 4000){ + tip = _("Chamfer: Ctrl+Click toogle type, " + "Shift+Click open dialog, " + "Ctrl+Alt+Click reset"); + } else if (type >=4000 && type < 5000) { + tip = _("Inverse Chamfer: Ctrl+Click toogle type, " "Shift+Click open dialog, " "Ctrl+Alt+Click reset"); } else if (type == 2) { @@ -850,8 +862,12 @@ void FilletChamferPointArrayParam::addKnotHolderEntities(KnotHolder *knotholder, continue; } const gchar *tip; - if (_vector[i][Y] >= 3) { - tip = _("Chamfer: Ctrl+Click toogle type, " + if (_vector[i][Y] >=3000 && _vector[i][Y] < 4000){ + tip = _("Chamfer: Ctrl+Click toogle type, " + "Shift+Click open dialog, " + "Ctrl+Alt+Click reset"); + } else if (_vector[i][Y] >=4000 && _vector[i][Y] < 5000) { + tip = _("Inverse Chamfer: Ctrl+Click toogle type, " "Shift+Click open dialog, " "Ctrl+Alt+Click reset"); } else if (_vector[i][Y] == 2) { diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp index e55c9f8df..55a19fc51 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp @@ -79,12 +79,15 @@ FilletChamferPropertiesDialog::FilletChamferPropertiesDialog() _fillet_chamfer_type_inverse_fillet.set_group(_fillet_chamfer_type_group); _fillet_chamfer_type_chamfer.set_label(_("Chamfer")); _fillet_chamfer_type_chamfer.set_group(_fillet_chamfer_type_group); + _fillet_chamfer_type_inverse_chamfer.set_label(_("Inverse chamfer")); + _fillet_chamfer_type_inverse_chamfer.set_group(_fillet_chamfer_type_group); mainVBox->pack_start(_layout_table, true, true, 4); mainVBox->pack_start(_fillet_chamfer_type_fillet, true, true, 4); mainVBox->pack_start(_fillet_chamfer_type_inverse_fillet, true, true, 4); mainVBox->pack_start(_fillet_chamfer_type_chamfer, true, true, 4); + mainVBox->pack_start(_fillet_chamfer_type_inverse_chamfer, true, true, 4); // Buttons _close_button.set_use_stock(true); @@ -158,8 +161,10 @@ void FilletChamferPropertiesDialog::_apply() d_width = 1; } else if (_fillet_chamfer_type_inverse_fillet.get_active() == true) { d_width = 2; + } else if (_fillet_chamfer_type_inverse_chamfer.get_active() == true) { + d_width = _fillet_chamfer_chamfer_subdivisions.get_value() + 4000; } else { - d_width = _fillet_chamfer_chamfer_subdivisions.get_value() + 3; + d_width = _fillet_chamfer_chamfer_subdivisions.get_value() + 3000; } if (_flexible) { if (d_pos > 99.99999 || d_pos < 0) { @@ -229,8 +234,12 @@ void FilletChamferPropertiesDialog::_set_knot_point(Geom::Point knotpoint) _fillet_chamfer_type_fillet.set_active(true); } else if (knotpoint.y() == 2) { _fillet_chamfer_type_inverse_fillet.set_active(true); - } else if (knotpoint.y() >= 3) { - _fillet_chamfer_chamfer_subdivisions.set_value(knotpoint.y() - 3); + } else if (knotpoint.y() >= 3000 && knotpoint.y() < 4000) { + _fillet_chamfer_chamfer_subdivisions.set_value(knotpoint.y() - 3000); + _fillet_chamfer_type_chamfer.set_active(true); + } else if (knotpoint.y() >= 4000 && knotpoint.y() < 5000) { + _fillet_chamfer_chamfer_subdivisions.set_value(knotpoint.y() - 4000); + _fillet_chamfer_type_inverse_chamfer.set_active(true); } } diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.h b/src/ui/dialog/lpe-fillet-chamfer-properties.h index ec87addc5..3807e98c8 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.h +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.h @@ -47,6 +47,7 @@ protected: Gtk::RadioButton _fillet_chamfer_type_fillet; Gtk::RadioButton _fillet_chamfer_type_inverse_fillet; Gtk::RadioButton _fillet_chamfer_type_chamfer; + Gtk::RadioButton _fillet_chamfer_type_inverse_chamfer; Gtk::Label _fillet_chamfer_chamfer_subdivisions_label; Gtk::SpinButton _fillet_chamfer_chamfer_subdivisions; -- cgit v1.2.3 From 510c80b1b2d9a4ee700bd152d320c6963bccd358 Mon Sep 17 00:00:00 2001 From: Alvin Penner Date: Sat, 15 Nov 2014 07:52:51 -0500 Subject: scale symbols when changing document units (Bug 1365451) Fixed bugs: - https://launchpad.net/bugs/1365451 (bzr r13709) --- src/sp-item-group.cpp | 9 +++++++-- src/ui/clipboard.cpp | 7 +++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp index 613ace5c1..992bca631 100644 --- a/src/sp-item-group.cpp +++ b/src/sp-item-group.cpp @@ -662,8 +662,13 @@ void SPGroup::scaleChildItemsRec(Geom::Scale const &sc, Geom::Point const &p, bo { if ( hasChildren() ) { for (SPObject *o = firstChild() ; o ; o = o->getNext() ) { - SPItem *item = dynamic_cast(o); - if ( item ) { + if ( SPDefs *defs = dynamic_cast(o) ) { // select symbols from defs, ignore clips, masks, patterns + for (SPObject *defschild = defs->firstChild() ; defschild ; defschild = defschild->getNext() ) { + SPGroup *defsgroup = dynamic_cast(defschild); + if (defsgroup) + defsgroup->scaleChildItemsRec(sc, p, false); + } + } else if ( SPItem *item = dynamic_cast(o) ) { SPGroup *group = dynamic_cast(item); if (group && !dynamic_cast(item)) { /* Using recursion breaks clipping because transforms are applied diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp index 931a295d8..153ed9830 100644 --- a/src/ui/clipboard.cpp +++ b/src/ui/clipboard.cpp @@ -330,6 +330,13 @@ void ClipboardManagerImpl::copySymbol(Inkscape::XML::Node* symbol, gchar const* use->setAttribute("xlink:href", id.c_str() ); // Set a default style in rather than so it can be changed. use->setAttribute("style", style ); + + Inkscape::XML::Node *nv_repr = sp_desktop_namedview(inkscape_active_desktop())->getRepr(); + gdouble scale_units = Inkscape::Util::Quantity::convert(1, nv_repr->attribute("inkscape:document-units"), "px"); + gchar *transform_str = sp_svg_transform_write(Geom::Scale(scale_units, scale_units)); + use->setAttribute("transform", transform_str); + g_free(transform_str); + _root->appendChild(use); // This min and max sets offsets, we don't have any so set to zero. -- cgit v1.2.3 From 33dadbe79b6cc996650bb4c27fe6a8526b256ead Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Sat, 15 Nov 2014 09:10:42 -0800 Subject: Macro cleanup of commented out code. (bzr r13710) --- src/selection-chemistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index d00e8d702..ffa149cee 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -1643,7 +1643,7 @@ void sp_selection_apply_affine(Inkscape::Selection *selection, Geom::Affine cons item->doWriteTransform(item->getRepr(), move, &move, compensate); } else if (prefs_unmoved) { - //if (SP_IS_USE(sp_use_get_original(SP_USE(item)))) + //if (dynamic_cast(sp_use_get_original(dynamic_cast(item)))) // clone_move = Geom::identity(); Geom::Affine move = result * clone_move; item->doWriteTransform(item->getRepr(), move, &t, compensate); -- cgit v1.2.3 From 9094351b78c40b8ad59e86fcea438a27f666083b Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Sat, 15 Nov 2014 10:24:11 -0800 Subject: Purged SP_STYLE_ELEM/SP_IS_STYLE_ELEM macro abuse. (bzr r13711) --- src/sp-object.cpp | 2 +- src/sp-style-elem.cpp | 54 +++++++++++++++++++++------------------------------ src/sp-style-elem.h | 3 --- 3 files changed, 23 insertions(+), 36 deletions(-) diff --git a/src/sp-object.cpp b/src/sp-object.cpp index fcff43aa5..569714bae 100644 --- a/src/sp-object.cpp +++ b/src/sp-object.cpp @@ -406,7 +406,7 @@ void SPObject::requestOrphanCollection() { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); // do not remove style or script elements (Bug #276244) - if (SP_IS_STYLE_ELEM(this)) { + if (dynamic_cast(this)) { // leave it } else if (SP_IS_SCRIPT(this)) { // leave it diff --git a/src/sp-style-elem.cpp b/src/sp-style-elem.cpp index 84f110134..da17b08d9 100644 --- a/src/sp-style-elem.cpp +++ b/src/sp-style-elem.cpp @@ -26,23 +26,18 @@ SPStyleElem::~SPStyleElem() { } void SPStyleElem::set(unsigned int key, const gchar* value) { - SPStyleElem* object = this; - - g_return_if_fail(object); - SPStyleElem &style_elem = *SP_STYLE_ELEM(object); - switch (key) { case SP_ATTR_TYPE: { if (!value) { /* TODO: `type' attribute is required. Give error message as per http://www.w3.org/TR/SVG11/implnote.html#ErrorProcessing. */ - style_elem.is_css = false; + is_css = false; } else { /* fixme: determine what whitespace is allowed. Will probably need to ask on SVG - * list; though the relevant RFC may give info on its lexer. */ - style_elem.is_css = ( g_ascii_strncasecmp(value, "text/css", 8) == 0 - && ( value[8] == '\0' || - value[8] == ';' ) ); + list; though the relevant RFC may give info on its lexer. */ + is_css = ( g_ascii_strncasecmp(value, "text/css", 8) == 0 + && ( value[8] == '\0' || + value[8] == ';' ) ); } break; } @@ -67,14 +62,18 @@ static void child_add_rm_cb(Inkscape::XML::Node *, Inkscape::XML::Node *, Inkscape::XML::Node *, void *const data) { - static_cast(data)->read_content(); + SPObject *obj = reinterpret_cast(data); + g_assert(data != NULL); + obj->read_content(); } static void content_changed_cb(Inkscape::XML::Node *, gchar const *, gchar const *, void *const data) { - static_cast(data)->read_content(); + SPObject *obj = reinterpret_cast(data); + g_assert(data != NULL); + obj->read_content(); } static void @@ -82,24 +81,22 @@ child_order_changed_cb(Inkscape::XML::Node *, Inkscape::XML::Node *, Inkscape::XML::Node *, Inkscape::XML::Node *, void *const data) { - static_cast(data)->read_content(); + SPObject *obj = reinterpret_cast(data); + g_assert(data != NULL); + obj->read_content(); } Inkscape::XML::Node* SPStyleElem::write(Inkscape::XML::Document* xml_doc, Inkscape::XML::Node* repr, guint flags) { - SPStyleElem* object = this; - if ((flags & SP_OBJECT_WRITE_BUILD) && !repr) { repr = xml_doc->createElement("svg:style"); } - g_return_val_if_fail(object, repr); - SPStyleElem &style_elem = *SP_STYLE_ELEM(object); if (flags & SP_OBJECT_WRITE_BUILD) { g_warning("nyi: Forming -- cgit v1.2.3 From 42c299b2c9bc7c2ca6fe1ba01fc981b85e107369 Mon Sep 17 00:00:00 2001 From: Christoffer Holmstedt Date: Mon, 17 Nov 2014 20:03:00 +0100 Subject: Updated Swedish to 41% (bzr r13724.1.1) --- po/sv.po | 577 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 233 insertions(+), 344 deletions(-) diff --git a/po/sv.po b/po/sv.po index ad2d5672a..697b63bc7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -13,14 +13,15 @@ msgstr "" "Project-Id-Version: inkscape\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-08-14 23:05-0700\n" -"PO-Revision-Date: 2009-10-13 23:42+0100\n" -"Last-Translator: Jesper Öqvist \n" -"Language-Team: Svenska \n" -"Language: \n" +"PO-Revision-Date: 2014-11-17 16:36+0100\n" +"Last-Translator: Christoffer Holmstedt \n" +"Language-Team: Svenska \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n>1);\n" +"X-Generator: Poedit 1.5.4\n" #: ../inkscape.desktop.in.h:1 #, fuzzy @@ -147,307 +148,307 @@ msgstr "Vit" #: ../share/palettes/palettes.h:16 msgctxt "Palette" msgid "Maroon (#800000)" -msgstr "" +msgstr "Rödbrun (#800000)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:17 msgctxt "Palette" msgid "Red (#FF0000)" -msgstr "" +msgstr "Röd (#FF0000)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:18 msgctxt "Palette" msgid "Olive (#808000)" -msgstr "" +msgstr "Olivgrön (#808000)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:19 msgctxt "Palette" msgid "Yellow (#FFFF00)" -msgstr "" +msgstr "Gul (#FFFF00)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:20 msgctxt "Palette" msgid "Green (#008000)" -msgstr "" +msgstr "Grön" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:21 msgctxt "Palette" msgid "Lime (#00FF00)" -msgstr "" +msgstr "Limegrön (#00FF00)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:22 msgctxt "Palette" msgid "Teal (#008080)" -msgstr "" +msgstr "Blågrön (#008080)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:23 msgctxt "Palette" msgid "Aqua (#00FFFF)" -msgstr "" +msgstr "Akvablå (#00FFFF)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:24 msgctxt "Palette" msgid "Navy (#000080)" -msgstr "" +msgstr "Marinblå (#000080)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:25 msgctxt "Palette" msgid "Blue (#0000FF)" -msgstr "" +msgstr "Blå (#0000FF)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:26 msgctxt "Palette" msgid "Purple (#800080)" -msgstr "" +msgstr "Lila (#800080)" #. Palette: ./inkscape.gpl #: ../share/palettes/palettes.h:27 msgctxt "Palette" msgid "Fuchsia (#FF00FF)" -msgstr "" +msgstr "Rosa (#FF00FF)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:28 msgctxt "Palette" msgid "black (#000000)" -msgstr "" +msgstr "Svart (#000000)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:29 msgctxt "Palette" msgid "dimgray (#696969)" -msgstr "" +msgstr "Dimgrå (#696969)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:30 msgctxt "Palette" msgid "gray (#808080)" -msgstr "" +msgstr "Grå (#808080)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:31 msgctxt "Palette" msgid "darkgray (#A9A9A9)" -msgstr "" +msgstr "Mörkgrå (#A9A9A9)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:32 msgctxt "Palette" msgid "silver (#C0C0C0)" -msgstr "" +msgstr "Silver (#C0C0C0)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:33 msgctxt "Palette" msgid "lightgray (#D3D3D3)" -msgstr "" +msgstr "Ljusgrå (#D3D3D3)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:34 msgctxt "Palette" msgid "gainsboro (#DCDCDC)" -msgstr "" +msgstr "Gainsboro (#DCDCDC)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:35 msgctxt "Palette" msgid "whitesmoke (#F5F5F5)" -msgstr "" +msgstr "Rökvit (#F5F5F5)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:36 msgctxt "Palette" msgid "white (#FFFFFF)" -msgstr "" +msgstr "Vit (#FFFFFF)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:37 msgctxt "Palette" msgid "rosybrown (#BC8F8F)" -msgstr "" +msgstr "Brunrosa (#BC8F8F)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:38 msgctxt "Palette" msgid "indianred (#CD5C5C)" -msgstr "" +msgstr "Indiskt röd (#CD5C5C)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:39 msgctxt "Palette" msgid "brown (#A52A2A)" -msgstr "" +msgstr "Brun (#A52A2A)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:40 msgctxt "Palette" msgid "firebrick (#B22222)" -msgstr "" +msgstr "Tegelstensbrun (#B22222)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:41 msgctxt "Palette" msgid "lightcoral (#F08080)" -msgstr "" +msgstr "Ljus korallfärg (#F08080)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:42 msgctxt "Palette" msgid "maroon (#800000)" -msgstr "" +msgstr "Rödbrun (#800000)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:43 msgctxt "Palette" msgid "darkred (#8B0000)" -msgstr "" +msgstr "Mörkröd (#8B0000)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:44 msgctxt "Palette" msgid "red (#FF0000)" -msgstr "" +msgstr "Röd (#FF0000)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:45 msgctxt "Palette" msgid "snow (#FFFAFA)" -msgstr "" +msgstr "Snövit (#FFFAFA)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:46 msgctxt "Palette" msgid "mistyrose (#FFE4E1)" -msgstr "" +msgstr "Dimrosa (#FFE4E1)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:47 msgctxt "Palette" msgid "salmon (#FA8072)" -msgstr "" +msgstr "Laxrosa (#FA8072)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:48 msgctxt "Palette" msgid "tomato (#FF6347)" -msgstr "" +msgstr "Tomatröd (#FF6347)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:49 msgctxt "Palette" msgid "darksalmon (#E9967A)" -msgstr "" +msgstr "Mörk laxrosa (#E9967A)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:50 msgctxt "Palette" msgid "coral (#FF7F50)" -msgstr "" +msgstr "Korallfärg (#FF7F50)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:51 msgctxt "Palette" msgid "orangered (#FF4500)" -msgstr "" +msgstr "Orangeröd (#FF4500)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:52 msgctxt "Palette" msgid "lightsalmon (#FFA07A)" -msgstr "" +msgstr "Ljus laxrosa (#FFA07A)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:53 msgctxt "Palette" msgid "sienna (#A0522D)" -msgstr "" +msgstr "Organgebrun (#A0522D)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:54 msgctxt "Palette" msgid "seashell (#FFF5EE)" -msgstr "" +msgstr "Snäckskalvit (#FFF5EE)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:55 msgctxt "Palette" msgid "chocolate (#D2691E)" -msgstr "" +msgstr "Chokladbrun (#D2691E)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:56 msgctxt "Palette" msgid "saddlebrown (#8B4513)" -msgstr "" +msgstr "Sadelbrun (#8B4513)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:57 msgctxt "Palette" msgid "sandybrown (#F4A460)" -msgstr "" +msgstr "Sandbrun (#F4A460)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:58 msgctxt "Palette" msgid "peachpuff (#FFDAB9)" -msgstr "" +msgstr "Peachpuff-rosa (#FFDAB9)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:59 msgctxt "Palette" msgid "peru (#CD853F)" -msgstr "" +msgstr "Peru-brun" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:60 msgctxt "Palette" msgid "linen (#FAF0E6)" -msgstr "" +msgstr "Linne vit (#FAF0E6)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:61 msgctxt "Palette" msgid "bisque (#FFE4C4)" -msgstr "" +msgstr "Biskvi (#FFE4C4)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:62 msgctxt "Palette" msgid "darkorange (#FF8C00)" -msgstr "" +msgstr "Mörkorange (#FF8C00)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:63 msgctxt "Palette" msgid "burlywood (#DEB887)" -msgstr "" +msgstr "Sandbrun (#DEB887)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:64 msgctxt "Palette" msgid "tan (#D2B48C)" -msgstr "" +msgstr "Ljusbrun (#D2B48C)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:65 msgctxt "Palette" msgid "antiquewhite (#FAEBD7)" -msgstr "" +msgstr "Antikvit (#FAEBD7)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:66 msgctxt "Palette" msgid "navajowhite (#FFDEAD)" -msgstr "" +msgstr "Orangevit (#FFDEAD)" #. Palette: ./svg.gpl #: ../share/palettes/palettes.h:67 @@ -1244,19 +1245,19 @@ msgstr "Svart" #: ../share/symbols/symbols.h:2 msgctxt "Symbol" msgid "AIGA Symbol Signs" -msgstr "" +msgstr "American Institute of Graphic Arts symboler" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4 msgctxt "Symbol" msgid "Telephone" -msgstr "" +msgstr "Telefon" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:5 ../share/symbols/symbols.h:6 msgctxt "Symbol" msgid "Mail" -msgstr "" +msgstr "Post" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:7 ../share/symbols/symbols.h:8 @@ -1269,13 +1270,13 @@ msgstr "Aktuellt lager:" #: ../share/symbols/symbols.h:9 ../share/symbols/symbols.h:10 msgctxt "Symbol" msgid "Currency Exchange - Euro" -msgstr "" +msgstr "Växlingskontor - Euro" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:11 ../share/symbols/symbols.h:12 msgctxt "Symbol" msgid "Cashier" -msgstr "" +msgstr "Kassa" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:13 ../share/symbols/symbols.h:14 @@ -1295,49 +1296,49 @@ msgstr "Icke rundad" #: ../share/symbols/symbols.h:17 ../share/symbols/symbols.h:18 msgctxt "Symbol" msgid "Coat Check" -msgstr "" +msgstr "Garderob" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:19 ../share/symbols/symbols.h:20 msgctxt "Symbol" msgid "Baggage Lockers" -msgstr "" +msgstr "Förvaringsboxar" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:21 ../share/symbols/symbols.h:22 msgctxt "Symbol" msgid "Escalator" -msgstr "" +msgstr "Rulltrappa" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:23 ../share/symbols/symbols.h:24 msgctxt "Symbol" msgid "Escalator Down" -msgstr "" +msgstr "Rulltrappa ned" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:25 ../share/symbols/symbols.h:26 msgctxt "Symbol" msgid "Escalator Up" -msgstr "" +msgstr "Rulltrappa up" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:27 ../share/symbols/symbols.h:28 msgctxt "Symbol" msgid "Stairs" -msgstr "" +msgstr "Trappa" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:29 ../share/symbols/symbols.h:30 msgctxt "Symbol" msgid "Stairs Down" -msgstr "" +msgstr "Trappa ner" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:31 ../share/symbols/symbols.h:32 msgctxt "Symbol" msgid "Stairs Up" -msgstr "" +msgstr "Trappa upp" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:33 ../share/symbols/symbols.h:34 @@ -1350,19 +1351,19 @@ msgstr "Höjd" #: ../share/symbols/symbols.h:35 ../share/symbols/symbols.h:36 msgctxt "Symbol" msgid "Toilets - Men" -msgstr "" +msgstr "Toaletter - Män" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:37 ../share/symbols/symbols.h:38 msgctxt "Symbol" msgid "Toilets - Women" -msgstr "" +msgstr "Toaletter - Kvinnor" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:39 ../share/symbols/symbols.h:40 msgctxt "Symbol" msgid "Toilets" -msgstr "" +msgstr "Toaletter" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbols.svg @@ -1370,13 +1371,13 @@ msgstr "" #: ../share/symbols/symbols.h:227 msgctxt "Symbol" msgid "Nursery" -msgstr "" +msgstr "Skötbord" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:43 ../share/symbols/symbols.h:44 msgctxt "Symbol" msgid "Drinking Fountain" -msgstr "" +msgstr "Dricksvatten" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:45 ../share/symbols/symbols.h:46 @@ -1414,7 +1415,7 @@ msgstr "Transformering" #: ../share/symbols/symbols.h:318 msgctxt "Symbol" msgid "Heliport" -msgstr "" +msgstr "Helikopterplatta" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbols.svg @@ -1422,7 +1423,7 @@ msgstr "" #: ../share/symbols/symbols.h:314 msgctxt "Symbol" msgid "Taxi" -msgstr "" +msgstr "Taxi" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:57 ../share/symbols/symbols.h:58 @@ -1458,7 +1459,7 @@ msgstr "Transformering" #: ../share/symbols/symbols.h:316 msgctxt "Symbol" msgid "Car Rental" -msgstr "" +msgstr "Biluthyrning" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbols.svg @@ -1466,13 +1467,13 @@ msgstr "" #: ../share/symbols/symbols.h:228 msgctxt "Symbol" msgid "Restaurant" -msgstr "" +msgstr "Restaurang" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:69 ../share/symbols/symbols.h:70 msgctxt "Symbol" msgid "Coffeeshop" -msgstr "" +msgstr "Café" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:71 ../share/symbols/symbols.h:72 @@ -1485,43 +1486,43 @@ msgstr "Bark" #: ../share/symbols/symbols.h:73 ../share/symbols/symbols.h:74 msgctxt "Symbol" msgid "Shops" -msgstr "" +msgstr "Butiker" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:75 ../share/symbols/symbols.h:76 msgctxt "Symbol" msgid "Barber Shop - Beauty Salon" -msgstr "" +msgstr "Barberarsalong - Skönhetssalong" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:77 ../share/symbols/symbols.h:78 msgctxt "Symbol" msgid "Barber Shop" -msgstr "" +msgstr "Barberarsalong" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:79 ../share/symbols/symbols.h:80 msgctxt "Symbol" msgid "Beauty Salon" -msgstr "" +msgstr "Skönhetssalong" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:81 ../share/symbols/symbols.h:82 msgctxt "Symbol" msgid "Ticket Purchase" -msgstr "" +msgstr "Biljettkiosk" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:83 ../share/symbols/symbols.h:84 msgctxt "Symbol" msgid "Baggage Check In" -msgstr "" +msgstr "Bagage incheckning" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:85 ../share/symbols/symbols.h:86 msgctxt "Symbol" msgid "Baggage Claim" -msgstr "" +msgstr "Återfunnet bagage" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:87 ../share/symbols/symbols.h:88 @@ -1555,13 +1556,13 @@ msgstr "Ljusstyrka" #: ../share/symbols/symbols.h:95 ../share/symbols/symbols.h:96 msgctxt "Symbol" msgid "Smoking" -msgstr "" +msgstr "Rökning" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:97 ../share/symbols/symbols.h:98 msgctxt "Symbol" msgid "No Smoking" -msgstr "" +msgstr "Rökning ej tillåten" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbols.svg @@ -1569,25 +1570,25 @@ msgstr "" #: ../share/symbols/symbols.h:325 msgctxt "Symbol" msgid "Parking" -msgstr "" +msgstr "Parkering" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:101 ../share/symbols/symbols.h:102 msgctxt "Symbol" msgid "No Parking" -msgstr "" +msgstr "Ej parkering" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:103 ../share/symbols/symbols.h:104 msgctxt "Symbol" msgid "No Dogs" -msgstr "" +msgstr "Inga hundar" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:105 ../share/symbols/symbols.h:106 msgctxt "Symbol" msgid "No Entry" -msgstr "" +msgstr "Ej utgång" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbols.svg @@ -1595,13 +1596,13 @@ msgstr "" #: ../share/symbols/symbols.h:218 msgctxt "Symbol" msgid "Exit" -msgstr "" +msgstr "Utgång" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:109 ../share/symbols/symbols.h:110 msgctxt "Symbol" msgid "Fire Extinguisher" -msgstr "" +msgstr "Brandsläkare" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:111 ../share/symbols/symbols.h:112 @@ -1614,7 +1615,7 @@ msgstr "Höger" #: ../share/symbols/symbols.h:113 ../share/symbols/symbols.h:114 msgctxt "Symbol" msgid "Forward and Right Arrow" -msgstr "" +msgstr "Framåt- och högerpil" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:115 ../share/symbols/symbols.h:116 @@ -1627,7 +1628,7 @@ msgstr "Pilar" #: ../share/symbols/symbols.h:117 ../share/symbols/symbols.h:118 msgctxt "Symbol" msgid "Forward and Left Arrow" -msgstr "" +msgstr "Framåt- och vänsterpil " #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:119 ../share/symbols/symbols.h:120 @@ -1640,7 +1641,7 @@ msgstr "Pilar" #: ../share/symbols/symbols.h:121 ../share/symbols/symbols.h:122 msgctxt "Symbol" msgid "Left and Down Arrow" -msgstr "" +msgstr "Vänster- och neråtpil" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:123 ../share/symbols/symbols.h:124 @@ -1653,43 +1654,43 @@ msgstr "Pilar" #: ../share/symbols/symbols.h:125 ../share/symbols/symbols.h:126 msgctxt "Symbol" msgid "Right and Down Arrow" -msgstr "" +msgstr "Höger- och neråtpil" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:127 ../share/symbols/symbols.h:128 msgctxt "Symbol" msgid "NPS Wheelchair Accessible - 1996" -msgstr "" +msgstr "NPS Tillgängligt för rullstolsbundna" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:129 ../share/symbols/symbols.h:130 msgctxt "Symbol" msgid "NPS Wheelchair Accessible" -msgstr "" +msgstr "NPS Tillgängligt för rullstolsbundna" #. Symbols: ./AigaSymbols.svg #: ../share/symbols/symbols.h:131 ../share/symbols/symbols.h:132 msgctxt "Symbol" msgid "New Wheelchair Accessible" -msgstr "" +msgstr "Tillgängligt för rullstolsbundna " #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:133 msgctxt "Symbol" msgid "Word Balloons" -msgstr "" +msgstr "Pratbubblor" #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:134 msgctxt "Symbol" msgid "Thought Balloon" -msgstr "" +msgstr "Tankebubbla" #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:135 msgctxt "Symbol" msgid "Dream Speaking" -msgstr "" +msgstr "Drömbubbla" #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:136 @@ -1709,13 +1710,13 @@ msgstr "Fyrkantig avslutning" #: ../share/symbols/symbols.h:138 msgctxt "Symbol" msgid "Over the Phone" -msgstr "" +msgstr "Prata i telefon" #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:139 msgctxt "Symbol" msgid "Hip Balloon" -msgstr "" +msgstr "Indragen pratbubbla" #. Symbols: ./BalloonSymbols.svg #: ../share/symbols/symbols.h:140 @@ -1728,19 +1729,19 @@ msgstr "Cirkel" #: ../share/symbols/symbols.h:141 msgctxt "Symbol" msgid "Exclaim Balloon" -msgstr "" +msgstr "Pratbubbla - Ropande" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:142 msgctxt "Symbol" msgid "Flow Chart Shapes" -msgstr "" +msgstr "Flödesdiagram" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:143 msgctxt "Symbol" msgid "Process" -msgstr "" +msgstr "Process" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:144 @@ -1788,7 +1789,7 @@ msgstr "Precision" #: ../share/symbols/symbols.h:150 msgctxt "Symbol" msgid "Magnetic Tape" -msgstr "" +msgstr "Magnetband" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:151 @@ -1957,67 +1958,67 @@ msgstr "" #: ../share/symbols/symbols.h:177 msgctxt "Symbol" msgid "Logic Symbols" -msgstr "" +msgstr "Logiska funktioner" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:178 msgctxt "Symbol" msgid "Xnor Gate" -msgstr "" +msgstr "Xnor-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:179 msgctxt "Symbol" msgid "Xor Gate" -msgstr "" +msgstr "Xor-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:180 msgctxt "Symbol" msgid "Nor Gate" -msgstr "" +msgstr "Nor-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:181 msgctxt "Symbol" msgid "Or Gate" -msgstr "" +msgstr "Or-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:182 msgctxt "Symbol" msgid "Nand Gate" -msgstr "" +msgstr "Nand-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:183 msgctxt "Symbol" msgid "And Gate" -msgstr "" +msgstr "And-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:184 msgctxt "Symbol" msgid "Buffer" -msgstr "" +msgstr "Buffer" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:185 msgctxt "Symbol" msgid "Not Gate" -msgstr "" +msgstr "Icke-grind" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:186 msgctxt "Symbol" msgid "Buffer Small" -msgstr "" +msgstr "Liten buffer" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:187 msgctxt "Symbol" msgid "Not Gate Small" -msgstr "" +msgstr "Icke-grind liten" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:188 @@ -2037,7 +2038,7 @@ msgstr "Skapa och redigera gradienter" #: ../share/symbols/symbols.h:190 msgctxt "Symbol" msgid "Youth Hostel" -msgstr "" +msgstr "Vandrarhem" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:191 @@ -2050,13 +2051,13 @@ msgstr "filter" #: ../share/symbols/symbols.h:192 msgctxt "Symbol" msgid "Motel" -msgstr "" +msgstr "Motell" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:193 msgctxt "Symbol" msgid "Hotel" -msgstr "" +msgstr "Hotell" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:194 @@ -2076,7 +2077,7 @@ msgstr "Paletten" #: ../share/symbols/symbols.h:196 msgctxt "Symbol" msgid "Caravan Park" -msgstr "" +msgstr "Campingplats (husvagnar)" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:197 @@ -2089,13 +2090,13 @@ msgstr "Fästpunkter" #: ../share/symbols/symbols.h:198 msgctxt "Symbol" msgid "Alpine Hut" -msgstr "" +msgstr "Bergshydda" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:199 msgctxt "Symbol" msgid "Bench or Park" -msgstr "" +msgstr "Parkbänk eller park" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:200 @@ -2108,31 +2109,31 @@ msgstr "Bakgrund" #: ../share/symbols/symbols.h:201 msgctxt "Symbol" msgid "Fountain" -msgstr "" +msgstr "Fontän" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:202 msgctxt "Symbol" msgid "Library" -msgstr "" +msgstr "Bibliotek" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:203 msgctxt "Symbol" msgid "Town Hall" -msgstr "" +msgstr "Stadshus" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:204 msgctxt "Symbol" msgid "Court" -msgstr "" +msgstr "Domstol" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:205 msgctxt "Symbol" msgid "Fire Station / House" -msgstr "" +msgstr "Brandstation" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:206 @@ -2145,13 +2146,13 @@ msgstr "Mera Mättnad" #: ../share/symbols/symbols.h:207 msgctxt "Symbol" msgid "Prison" -msgstr "" +msgstr "Fängelse" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:208 msgctxt "Symbol" msgid "Post Office" -msgstr "" +msgstr "Postkontor" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:209 @@ -2164,7 +2165,7 @@ msgstr "Publik Domän" #: ../share/symbols/symbols.h:210 msgctxt "Symbol" msgid "Recycling" -msgstr "" +msgstr "Återvinning" #. Symbols: ./MapSymbols.svg #: ../share/symbols/symbols.h:211 @@ -4612,14 +4613,12 @@ msgstr "" "från orginalpositionen" #: ../src/extension/internal/bitmap/swirl.cpp:37 -#, fuzzy msgid "Swirl" msgstr "Virvla" #: ../src/extension/internal/bitmap/swirl.cpp:39 -#, fuzzy msgid "Degrees:" -msgstr "grader" +msgstr "Grader:" #: ../src/extension/internal/bitmap/swirl.cpp:45 #, fuzzy @@ -4653,19 +4652,16 @@ msgid "Sharpen selected bitmap(s) using unsharp mask algorithms" msgstr "Öka skärpa för markerade bitmappar mha. oskarp mask-algoritmer." #: ../src/extension/internal/bitmap/wave.cpp:38 -#, fuzzy msgid "Wave" msgstr "Våg" #: ../src/extension/internal/bitmap/wave.cpp:40 -#, fuzzy msgid "Amplitude:" -msgstr "Amplitud" +msgstr "Amplitud:" #: ../src/extension/internal/bitmap/wave.cpp:41 -#, fuzzy msgid "Wavelength:" -msgstr "Våglängd" +msgstr "Våglängd:" #: ../src/extension/internal/bitmap/wave.cpp:47 #, fuzzy @@ -4775,9 +4771,8 @@ msgstr "" #: ../src/extension/internal/cairo-ps-out.cpp:342 #: ../src/extension/internal/cairo-ps-out.cpp:381 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:259 -#, fuzzy msgid "Limit export to the object with ID:" -msgstr "Begränsa export till objektet med ID" +msgstr "Begränsa export till objekt med ID:" #: ../src/extension/internal/cairo-ps-out.cpp:346 #: ../share/extensions/ps_input.inx.h:2 @@ -4811,14 +4806,12 @@ msgid "Encapsulated PostScript File" msgstr "Inkapslad PostScript-fil" #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:244 -#, fuzzy msgid "Restrict to PDF version:" -msgstr "Begränsa till PDF version" +msgstr "Begränsa till PDF version:" #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:246 -#, fuzzy msgid "PDF 1.5" -msgstr "PDF 1.4" +msgstr "PDF 1.5" #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:248 msgid "PDF 1.4" @@ -5186,7 +5179,6 @@ msgstr "Blanda" #: ../src/extension/internal/filter/paint.h:705 #: ../src/extension/internal/filter/transparency.h:63 #: ../src/filter-enums.cpp:54 -#, fuzzy msgid "Darken" msgstr "Mörkare" @@ -5222,7 +5214,6 @@ msgstr "Skärm" #: ../src/extension/internal/filter/paint.h:701 #: ../src/extension/internal/filter/transparency.h:60 #: ../src/filter-enums.cpp:52 -#, fuzzy msgid "Multiply" msgstr "Multiplicera" @@ -5238,7 +5229,6 @@ msgstr "Multiplicera" #: ../src/extension/internal/filter/paint.h:704 #: ../src/extension/internal/filter/transparency.h:64 #: ../src/filter-enums.cpp:55 -#, fuzzy msgid "Lighten" msgstr "Ljusare" @@ -5312,7 +5302,6 @@ msgstr "Filtyp:" #: ../src/extension/internal/filter/textures.h:77 #: ../src/extension/internal/filter/transparency.h:61 #: ../src/filter-enums.cpp:51 ../src/ui/dialog/inkscape-preferences.cpp:644 -#, fuzzy msgid "Normal" msgstr "Normal" @@ -6744,7 +6733,6 @@ msgstr "Linjebredd" #: ../src/extension/internal/filter/paint.h:593 #: ../src/extension/internal/filter/paint.h:861 #: ../src/ui/widget/filter-effect-chooser.cpp:25 -#, fuzzy msgid "Blend mode:" msgstr "Blandningsläge:" @@ -7625,7 +7613,7 @@ msgstr "Välj en fil att öppna" #: ../src/file.cpp:623 #, fuzzy msgid "Clean up document" -msgstr "Spara dokument" +msgstr "Rensa oanvända definitioner" #: ../src/file.cpp:630 #, c-format @@ -7709,9 +7697,8 @@ msgid "Select file to export to" msgstr "Välj fil att exportera till" #: ../src/file.cpp:1680 -#, fuzzy msgid "Import Clip Art" -msgstr "Importering/Exportering" +msgstr "Importera Clip Art bild" #: ../src/filter-enums.cpp:21 msgid "Color Matrix" @@ -8202,7 +8189,6 @@ msgstr "" #: ../src/interface.cpp:1392 ../src/ui/dialog/export.cpp:1302 #: ../src/widgets/desktop-widget.cpp:1122 #: ../src/widgets/desktop-widget.cpp:1184 -#, fuzzy msgid "_Cancel" msgstr "Avbryt" @@ -8234,29 +8220,25 @@ msgstr "Markera detta" #: ../src/interface.cpp:1661 #, fuzzy msgid "Select Same" -msgstr "Välj sida:" +msgstr "Välj objekt med likadana egenskaper" #. Select same fill and stroke #: ../src/interface.cpp:1671 -#, fuzzy msgid "Fill and Stroke" -msgstr "_Fyllning och linje" +msgstr "_Fyllningsfärg och linjefärg" #. Select same fill color #: ../src/interface.cpp:1678 -#, fuzzy msgid "Fill Color" -msgstr "Enfärgad" +msgstr "Fyllningsfärg" #. Select same stroke color #: ../src/interface.cpp:1685 -#, fuzzy msgid "Stroke Color" -msgstr "Sött linjefärg" +msgstr "Linjefärg" #. Select same stroke style #: ../src/interface.cpp:1692 -#, fuzzy msgid "Stroke Style" msgstr "Linjestil" @@ -10626,9 +10608,8 @@ msgid "Clo_ne" msgstr "Klona" #: ../src/menus-skeleton.h:79 -#, fuzzy msgid "Select Sa_me" -msgstr "Välj sida:" +msgstr "Välj objekt med likadana egenskaper" #: ../src/menus-skeleton.h:97 msgid "_View" @@ -10654,7 +10635,6 @@ msgstr "Visningsläge" #. " \n" #. " \n" #: ../src/menus-skeleton.h:136 -#, fuzzy msgid "Sh_ow/Hide" msgstr "Visa/Dölj" @@ -11915,14 +11895,12 @@ msgstr[0] "_Infoga Unicode-styrtecken" msgstr[1] "_Infoga Unicode-styrtecken" #: ../src/sp-guide.cpp:303 -#, fuzzy msgid "Create Guides Around the Page" -msgstr "_Stödlinjer Runt Sida" +msgstr "Skapa stödlinjer runt sidan" #: ../src/sp-guide.cpp:315 ../src/verbs.cpp:2470 -#, fuzzy msgid "Delete All Guides" -msgstr "Radera hjälplinje" +msgstr "Radera alla stödlinjer" #. Guide has probably been deleted and no longer has an attached namedview. #: ../src/sp-guide.cpp:475 @@ -12157,7 +12135,7 @@ msgstr "Textinput" #: ../src/sp-use.cpp:227 msgid "Symbol" -msgstr "" +msgstr "Symbol" #: ../src/sp-use.cpp:230 #, fuzzy @@ -12985,7 +12963,6 @@ msgid "Smallest object" msgstr "Minst objekt" #: ../src/ui/dialog/align-and-distribute.cpp:1005 -#, fuzzy msgid "Selection Area" msgstr "Markering" @@ -13328,7 +13305,6 @@ msgid "Alternate the sign of blur change for each column" msgstr "Alternera tecknet på oskärpans förändring för varje kolumn" #: ../src/ui/dialog/clonetiler.cpp:608 -#, fuzzy msgid "Opacity:" msgstr "Opacitet:" @@ -14056,12 +14032,10 @@ msgid "Scripting" msgstr "Skriptning" #: ../src/ui/dialog/document-properties.cpp:322 -#, fuzzy msgid "General" msgstr "Allmänt" #: ../src/ui/dialog/document-properties.cpp:324 -#, fuzzy msgid "Page Size" msgstr "Sidstorlek" @@ -14180,9 +14154,8 @@ msgid "Content:" msgstr "Exponent:" #: ../src/ui/dialog/document-properties.cpp:1045 -#, fuzzy msgid "_Save as default" -msgstr "Ange som standard" +msgstr "Spara som standard" #: ../src/ui/dialog/document-properties.cpp:1046 msgid "Save this metadata as the default metadata" @@ -14275,14 +14248,12 @@ msgid "Units:" msgstr "Enheter:" #: ../src/ui/dialog/export.cpp:172 -#, fuzzy msgid "_Export As..." -msgstr "_Exportera bitmappsbild..." +msgstr "_Exportera som..." #: ../src/ui/dialog/export.cpp:175 -#, fuzzy msgid "B_atch export all selected objects" -msgstr "Exportera alla valda objekt satsvis" +msgstr "Exportera alla valda objekt i omgångar" #: ../src/ui/dialog/export.cpp:175 msgid "" @@ -14293,7 +14264,6 @@ msgstr "" "sådana finns (varning, skriver över utan att fråga!)" #: ../src/ui/dialog/export.cpp:177 -#, fuzzy msgid "Hide a_ll except selected" msgstr "Dölj alla utom markerade" @@ -14302,9 +14272,8 @@ msgid "In the exported image, hide all objects except those that are selected" msgstr "I den exporterade bilden, dölj alla objekt utom de som är markerade" #: ../src/ui/dialog/export.cpp:178 -#, fuzzy msgid "Close when complete" -msgstr "Automatisk säkerhetskopiering klar." +msgstr "Stäng flik när exporteringen är klar" #: ../src/ui/dialog/export.cpp:178 msgid "Once the export completes, close this dialog" @@ -14315,9 +14284,8 @@ msgid "_Export" msgstr "Exportera" #: ../src/ui/dialog/export.cpp:198 -#, fuzzy msgid "Export area" -msgstr "Exportera yta" +msgstr "Yta att exportera" #: ../src/ui/dialog/export.cpp:237 msgid "_x0:" @@ -14344,9 +14312,8 @@ msgid "Hei_ght:" msgstr "Hö_jd:" #: ../src/ui/dialog/export.cpp:272 -#, fuzzy msgid "Image size" -msgstr "Sidstorlek" +msgstr "Bildstorlek" #: ../src/ui/dialog/export.cpp:290 ../src/ui/dialog/export.cpp:301 msgid "pixels at" @@ -14369,7 +14336,6 @@ msgid "dpi" msgstr "punkter per tum (dpi)" #: ../src/ui/dialog/export.cpp:317 -#, fuzzy msgid "_Filename" msgstr "_Filnamn" @@ -15399,7 +15365,7 @@ msgstr "Ange grundfilterattribut" #: ../src/ui/dialog/find.cpp:71 msgid "F_ind:" -msgstr "" +msgstr "Sök efter:" #: ../src/ui/dialog/find.cpp:71 #, fuzzy @@ -15407,9 +15373,8 @@ msgid "Find objects by their content or properties (exact or partial match)" msgstr "Hitta objekt med detta textinnehåll (exakt eller delvis träff)" #: ../src/ui/dialog/find.cpp:72 -#, fuzzy msgid "R_eplace:" -msgstr "Ersätt:" +msgstr "Ersätt med:" #: ../src/ui/dialog/find.cpp:72 #, fuzzy @@ -15418,7 +15383,7 @@ msgstr "Duplicera objekt, med Skift ta bort" #: ../src/ui/dialog/find.cpp:74 msgid "_All" -msgstr "" +msgstr "Hela filen" #: ../src/ui/dialog/find.cpp:74 #, fuzzy @@ -15426,16 +15391,14 @@ msgid "Search in all layers" msgstr "Markera i alla lager" #: ../src/ui/dialog/find.cpp:75 -#, fuzzy msgid "Current _layer" -msgstr "Aktuellt lager:" +msgstr "Aktuellt lager" #: ../src/ui/dialog/find.cpp:75 msgid "Limit search to the current layer" msgstr "Begränsa sökningen till aktuellt lager" #: ../src/ui/dialog/find.cpp:76 -#, fuzzy msgid "Sele_ction" msgstr "Markering" @@ -15449,36 +15412,32 @@ msgid "Search in text objects" msgstr "Sök textobjekt" #: ../src/ui/dialog/find.cpp:78 -#, fuzzy msgid "_Properties" -msgstr "Egenskaper för %s" +msgstr "Egenskaper" #: ../src/ui/dialog/find.cpp:78 msgid "Search in object properties, styles, attributes and IDs" msgstr "" #: ../src/ui/dialog/find.cpp:80 -#, fuzzy msgid "Search in" -msgstr "Sök" +msgstr "Sök i" #: ../src/ui/dialog/find.cpp:81 msgid "Scope" -msgstr "" +msgstr "Omfång" #: ../src/ui/dialog/find.cpp:83 -#, fuzzy msgid "Case sensiti_ve" -msgstr "Markeringskänslighet:" +msgstr "Skiftlägeskänslig" #: ../src/ui/dialog/find.cpp:83 msgid "Match upper/lower case" msgstr "" #: ../src/ui/dialog/find.cpp:84 -#, fuzzy msgid "E_xact match" -msgstr "Extrahera bild" +msgstr "Endast exakta träffar" #: ../src/ui/dialog/find.cpp:84 #, fuzzy @@ -15494,9 +15453,8 @@ msgid "Include hidden objects in search" msgstr "Inkludera dolda objekt i sökningen" #: ../src/ui/dialog/find.cpp:86 -#, fuzzy msgid "Include loc_ked" -msgstr "Inkludera låsta" +msgstr "Inkludera låsta lager" #: ../src/ui/dialog/find.cpp:86 msgid "Include locked objects in search" @@ -15508,9 +15466,8 @@ msgid "General" msgstr "Allmänt" #: ../src/ui/dialog/find.cpp:90 -#, fuzzy msgid "_ID" -msgstr "_ID: " +msgstr "_ID" #: ../src/ui/dialog/find.cpp:90 #, fuzzy @@ -15518,7 +15475,6 @@ msgid "Search id name" msgstr "Sök bilder" #: ../src/ui/dialog/find.cpp:91 -#, fuzzy msgid "Attribute _name" msgstr "Attributnamn" @@ -15528,7 +15484,6 @@ msgid "Search attribute name" msgstr "Attributnamn" #: ../src/ui/dialog/find.cpp:92 -#, fuzzy msgid "Attri_bute value" msgstr "Attributvärde" @@ -15538,9 +15493,8 @@ msgid "Search attribute value" msgstr "Attributvärde" #: ../src/ui/dialog/find.cpp:93 -#, fuzzy msgid "_Style" -msgstr " _Stil: " +msgstr " _Stil" #: ../src/ui/dialog/find.cpp:93 #, fuzzy @@ -15557,9 +15511,8 @@ msgid "Search fonts" msgstr "Sök kloner" #: ../src/ui/dialog/find.cpp:95 -#, fuzzy msgid "Properties" -msgstr "Egenskaper för %s" +msgstr "Egenskaper" #: ../src/ui/dialog/find.cpp:97 msgid "All types" @@ -15631,7 +15584,6 @@ msgstr "Sök grupper" #. TRANSLATORS: "Clones" is a noun indicating type of object to find #: ../src/ui/dialog/find.cpp:107 -#, fuzzy msgctxt "Find dialog" msgid "Clones" msgstr "Kloner" @@ -15660,9 +15612,8 @@ msgid "Search offset objects" msgstr "Sök avståndsobjekt" #: ../src/ui/dialog/find.cpp:111 -#, fuzzy msgid "Object types" -msgstr "Objekttyp" +msgstr "Objekttyper" #: ../src/ui/dialog/find.cpp:114 msgid "_Find" @@ -15674,14 +15625,12 @@ msgid "Select all objects matching the selection criteria" msgstr "Markera objekten som matchar alla fält du fyllt i" #: ../src/ui/dialog/find.cpp:115 -#, fuzzy msgid "_Replace All" -msgstr "Ersätt" +msgstr "Ersätt alla träffar" #: ../src/ui/dialog/find.cpp:115 -#, fuzzy msgid "Replace all matches" -msgstr "Ersätt text" +msgstr "Ersätt alla träffar" #: ../src/ui/dialog/find.cpp:775 #, fuzzy @@ -16661,7 +16610,6 @@ msgid "Actual Size:" msgstr "Verklig Storlek:" #: ../src/ui/dialog/icon-preview.cpp:245 -#, fuzzy msgctxt "Icon preview window" msgid "Sele_ction" msgstr "Markering" @@ -16718,9 +16666,8 @@ msgstr "" "linjebredd)" #: ../src/ui/dialog/inkscape-preferences.cpp:218 -#, fuzzy msgid "No objects selected to take the style from." -msgstr "Inga objekt markerade att ta stil från." +msgstr "Inga objekt markerade att kopiera stil från." #: ../src/ui/dialog/inkscape-preferences.cpp:227 msgid "" @@ -17115,7 +17062,6 @@ msgstr "" #. Text #: ../src/ui/dialog/inkscape-preferences.cpp:439 ../src/verbs.cpp:2670 -#, fuzzy msgctxt "ContextVerb" msgid "Text" msgstr "Text" @@ -19180,9 +19126,8 @@ msgid "Clippaths and masks" msgstr "Beskärningsslingor och masker" #: ../src/ui/dialog/inkscape-preferences.cpp:1341 -#, fuzzy msgid "Stroke Style Markers" -msgstr "Linjestil" +msgstr "Linjestil markörer" #: ../src/ui/dialog/inkscape-preferences.cpp:1343 #: ../src/ui/dialog/inkscape-preferences.cpp:1345 @@ -20066,7 +20011,6 @@ msgstr "Rendering" #: ../src/ui/dialog/object-properties.cpp:399 #: ../src/ui/dialog/object-properties.cpp:470 #: ../src/ui/dialog/object-properties.cpp:477 -#, fuzzy msgid "_ID:" msgstr "_ID: " @@ -20717,7 +20661,6 @@ msgid "Add font" msgstr "Lägg till typsnitt" #: ../src/ui/dialog/svg-fonts-dialog.cpp:912 ../src/ui/dialog/text-edit.cpp:70 -#, fuzzy msgid "_Font" msgstr "_Typsnitt" @@ -20778,55 +20721,48 @@ msgstr "Palett-bibliotek (%s) är inte tillgängligt." #. ******************* Symbol Sets ************************ #: ../src/ui/dialog/symbols.cpp:127 msgid "Symbol set: " -msgstr "" +msgstr "Symbol bibliotek:" #. Fill in later #: ../src/ui/dialog/symbols.cpp:136 ../src/ui/dialog/symbols.cpp:137 -#, fuzzy msgid "Current Document" -msgstr "Skriv ut dokument" +msgstr "Aktivt dokument" #: ../src/ui/dialog/symbols.cpp:204 -#, fuzzy msgid "Add Symbol from the current document." -msgstr "Visa endast aktuellt lager" +msgstr "Lägg till symbol från aktivt dokument" #: ../src/ui/dialog/symbols.cpp:213 -#, fuzzy msgid "Remove Symbol from the current document." -msgstr "Redigera stopp i gradient" +msgstr "Ta bort symbol från aktivt dokument" #: ../src/ui/dialog/symbols.cpp:227 -#, fuzzy msgid "Display more icons in row." -msgstr "Visa mätinformation" +msgstr "Visa fler ikoner per rad" #: ../src/ui/dialog/symbols.cpp:236 -#, fuzzy msgid "Display fewer icons in row." -msgstr "Visa mätinformation" +msgstr "Visa färre ikoner per rad" #: ../src/ui/dialog/symbols.cpp:246 msgid "Toggle 'fit' symbols in icon space." -msgstr "" +msgstr "Aktivera/avaktivera möjligheten att ändra storlek på ikonerna." #: ../src/ui/dialog/symbols.cpp:258 msgid "Make symbols smaller by zooming out." -msgstr "" +msgstr "Gör symboler mindre genom att zooma ut." #: ../src/ui/dialog/symbols.cpp:268 msgid "Make symbols bigger by zooming in." -msgstr "" +msgstr "Gör symboler större genom att zooma in." #: ../src/ui/dialog/symbols.cpp:622 -#, fuzzy msgid "Unnamed Symbols" -msgstr "Använd namngivna färger" +msgstr "Ej namngivna symboler" #: ../src/ui/dialog/template-widget.cpp:36 -#, fuzzy msgid "More info" -msgstr "Mera Ljus" +msgstr "Mer information" #: ../src/ui/dialog/template-widget.cpp:38 #, fuzzy @@ -20850,7 +20786,7 @@ msgstr "Nyckelord" #: ../src/ui/dialog/template-widget.cpp:131 msgid "By: " -msgstr "" +msgstr "Av:" #: ../src/ui/dialog/text-edit.cpp:73 #, fuzzy @@ -23118,7 +23054,7 @@ msgstr "Lås eller lås upp aktuellt lager" #: ../src/ui/widget/layer-selector.cpp:142 msgid "Current layer" -msgstr "Aktuellt lager:" +msgstr "Aktuellt lager" #: ../src/ui/widget/layer-selector.cpp:583 #, fuzzy @@ -23137,7 +23073,6 @@ msgstr "MetadataLicence|Andra inställningar" #: ../src/ui/widget/object-composite-settings.cpp:67 #: ../src/ui/widget/selected-style.cpp:1095 #: ../src/ui/widget/selected-style.cpp:1096 -#, fuzzy msgid "Opacity (%)" msgstr "Opacitet, %" @@ -23773,9 +23708,9 @@ msgid "O: %2.0f" msgstr "" #: ../src/ui/widget/style-swatch.cpp:368 -#, fuzzy, c-format +#, c-format msgid "Opacity: %2.1f %%" -msgstr "Transparens: %.3g" +msgstr "Opacitet: %.3g" #: ../src/vanishing-point.cpp:132 #, fuzzy @@ -23820,8 +23755,8 @@ msgstr[1] "" msgid "" "shared by %d box; drag with Shift to separate selected box(es)" msgid_plural "" -"shared by %d boxes; drag with Shift to separate selected box" -"(es)" +"shared by %d boxes; drag with Shift to separate selected " +"box(es)" msgstr[0] "" "Gradientpunkt delad med %d gradient; dra med Shift för att " "separera" @@ -23932,24 +23867,20 @@ msgid "Deleted layer." msgstr "Raderade lagret." #: ../src/verbs.cpp:1411 -#, fuzzy msgid "Show all layers" -msgstr "Markera i alla lager" +msgstr "Visa alla lager" #: ../src/verbs.cpp:1416 -#, fuzzy msgid "Hide all layers" -msgstr "Dölj lager" +msgstr "Dölj alla lager" #: ../src/verbs.cpp:1421 -#, fuzzy msgid "Lock all layers" -msgstr "Markera i alla lager" +msgstr "Lås alla lager" #: ../src/verbs.cpp:1435 -#, fuzzy msgid "Unlock all layers" -msgstr "Lås upp lager" +msgstr "Lås upp alla lager" #: ../src/verbs.cpp:1519 msgid "Flip horizontally" @@ -24086,9 +24017,8 @@ msgstr "Skriv ut dokument" #. TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions) #: ../src/verbs.cpp:2367 -#, fuzzy msgid "Clean _up document" -msgstr "Kunde inte öppna hjälpdokument" +msgstr "Rensa oanvända definitioner" #: ../src/verbs.cpp:2367 msgid "" @@ -24108,9 +24038,8 @@ msgstr "Importera bitmappsbild eller SVG-bild till dokument" #. new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."), N_("Export this document or a selection as a bitmap image"), INKSCAPE_ICON("document-export")), #: ../src/verbs.cpp:2372 -#, fuzzy msgid "Import Clip Art..." -msgstr "_Importera..." +msgstr "Importera Clip Art bild..." #: ../src/verbs.cpp:2373 #, fuzzy @@ -24151,9 +24080,8 @@ msgid "Quit Inkscape" msgstr "Avsluta Inkscape" #: ../src/verbs.cpp:2382 -#, fuzzy msgid "_Templates..." -msgstr "Färgprover..." +msgstr "Mallar..." #: ../src/verbs.cpp:2383 #, fuzzy @@ -24433,9 +24361,8 @@ msgid "Select all objects in all visible and unlocked layers" msgstr "Markera alla objekt i alla synliga och olåsta lager" #: ../src/verbs.cpp:2450 -#, fuzzy msgid "Fill _and Stroke" -msgstr "_Fyllning och linje" +msgstr "_Fyllningsfärg och linjefärg" #: ../src/verbs.cpp:2451 #, fuzzy @@ -24445,9 +24372,8 @@ msgstr "" "Välj ett objekt med mönsterfyllnad för att extrahera objektets form." #: ../src/verbs.cpp:2452 -#, fuzzy msgid "_Fill Color" -msgstr "Enfärgad" +msgstr "Fyllningsfärg" #: ../src/verbs.cpp:2453 #, fuzzy @@ -24456,9 +24382,8 @@ msgstr "" "Välj ett objekt med mönsterfyllnad för att extrahera objektets form." #: ../src/verbs.cpp:2454 -#, fuzzy msgid "_Stroke Color" -msgstr "Sött linjefärg" +msgstr "Linjefärg" #: ../src/verbs.cpp:2455 #, fuzzy @@ -24468,7 +24393,6 @@ msgstr "" "kopierade objektet" #: ../src/verbs.cpp:2456 -#, fuzzy msgid "Stroke St_yle" msgstr "Linjestil" @@ -24482,7 +24406,6 @@ msgstr "" "kopierade objektet" #: ../src/verbs.cpp:2458 -#, fuzzy msgid "_Object Type" msgstr "Objekttyp" @@ -24514,7 +24437,6 @@ msgid "Invert selection in all visible and unlocked layers" msgstr "Markera alla objekt i alla synliga och olåsta lager" #: ../src/verbs.cpp:2464 -#, fuzzy msgid "Select Next" msgstr "Markera nästa" @@ -24542,14 +24464,12 @@ msgid "Deselect any selected objects or nodes" msgstr "Avmarkera alla markerade objekt eller noder" #: ../src/verbs.cpp:2471 -#, fuzzy msgid "Delete all the guides in the document" -msgstr "Ta bort alla objekt från dokumentet" +msgstr "Radera alla stödlinjer i dokumentet" #: ../src/verbs.cpp:2472 -#, fuzzy msgid "Create _Guides Around the Page" -msgstr "_Stödlinjer Runt Sida" +msgstr "Skapa stödlinjer runt sidan" #: ../src/verbs.cpp:2473 msgid "Create four guides aligned with the page borders" @@ -24788,9 +24708,8 @@ msgid "Create paths using Kopf-Lischinski algorithm to vectorize pixel art" msgstr "" #: ../src/verbs.cpp:2553 -#, fuzzy msgid "Make a _Bitmap Copy" -msgstr "Skapa en Bitmappskopia" +msgstr "Skapa en Bitmapskopia" #: ../src/verbs.cpp:2554 msgid "Export selection to a bitmap and insert it into document" @@ -24874,9 +24793,8 @@ msgid "Move selection to the layer below the current" msgstr "Flytta markering till lagret under det aktuella" #: ../src/verbs.cpp:2576 -#, fuzzy msgid "Move Selection to Layer..." -msgstr "Flytta markering till lagret över" +msgstr "Flytta markering till lager..." #: ../src/verbs.cpp:2578 msgid "Layer to _Top" @@ -24911,9 +24829,8 @@ msgid "Lower the current layer" msgstr "Sänk det aktuella lagret" #: ../src/verbs.cpp:2586 -#, fuzzy msgid "D_uplicate Current Layer" -msgstr "Duplicera aktuellt lager" +msgstr "Duplicera aktivt lager" #: ../src/verbs.cpp:2587 msgid "Duplicate an existing layer" @@ -24928,9 +24845,8 @@ msgid "Delete the current layer" msgstr "Radera det aktuella lagret" #: ../src/verbs.cpp:2590 -#, fuzzy msgid "_Show/hide other layers" -msgstr "Visa eller dölj statusrad" +msgstr "Visa/dölj andra lager" #: ../src/verbs.cpp:2591 #, fuzzy @@ -24938,78 +24854,63 @@ msgid "Solo the current layer" msgstr "Visa endast aktuellt lager" #: ../src/verbs.cpp:2592 -#, fuzzy msgid "_Show all layers" -msgstr "Markera i alla lager" +msgstr "Visa alla lager" #: ../src/verbs.cpp:2593 -#, fuzzy msgid "Show all the layers" -msgstr "Visa eller dölj statusrad" +msgstr "Visa alla lager" #: ../src/verbs.cpp:2594 -#, fuzzy msgid "_Hide all layers" -msgstr "Dölj lager" +msgstr "Dölj alla lager" #: ../src/verbs.cpp:2595 -#, fuzzy msgid "Hide all the layers" -msgstr "Dölj lager" +msgstr "Dölj alla lager" #: ../src/verbs.cpp:2596 -#, fuzzy msgid "_Lock all layers" -msgstr "Markera i alla lager" +msgstr "Lås alla lager" #: ../src/verbs.cpp:2597 -#, fuzzy msgid "Lock all the layers" -msgstr "Visa eller dölj statusrad" +msgstr "Lås alla lager" #: ../src/verbs.cpp:2598 -#, fuzzy msgid "Lock/Unlock _other layers" -msgstr "Lås eller lås upp aktuellt lager" +msgstr "Lås/Lås upp andra lager" #: ../src/verbs.cpp:2599 -#, fuzzy msgid "Lock all the other layers" -msgstr "Visa eller dölj statusrad" +msgstr "Lås alla andra lager" #: ../src/verbs.cpp:2600 -#, fuzzy msgid "_Unlock all layers" -msgstr "Lås upp lager" +msgstr "Lås upp alla lager" #: ../src/verbs.cpp:2601 -#, fuzzy msgid "Unlock all the layers" -msgstr "Visa eller dölj statusrad" +msgstr "Lås upp alla lager" #: ../src/verbs.cpp:2602 -#, fuzzy msgid "_Lock/Unlock Current Layer" -msgstr "Lås eller lås upp aktuellt lager" +msgstr "Lås/Lås upp aktivt lager" #: ../src/verbs.cpp:2603 -#, fuzzy msgid "Toggle lock on current layer" -msgstr "Visa endast aktuellt lager" +msgstr "Växla nuvarande lager (låst/upplåst)" #: ../src/verbs.cpp:2604 -#, fuzzy msgid "_Show/hide Current Layer" -msgstr "Visa eller dölj statusrad" +msgstr "Visa/dölj aktivt lager" #: ../src/verbs.cpp:2605 -#, fuzzy msgid "Toggle visibility of current layer" -msgstr "Visa endast aktuellt lager" +msgstr "Växla synlighet för aktivt lager" #. Object #: ../src/verbs.cpp:2608 -#, fuzzy msgid "Rotate _90° CW" msgstr "Rotera 90° medurs" @@ -25020,7 +24921,6 @@ msgid "Rotate selection 90° clockwise" msgstr "Rotera markering 90° medurs" #: ../src/verbs.cpp:2612 -#, fuzzy msgid "Rotate 9_0° CCW" msgstr "Rotera 90° moturs" @@ -25096,7 +24996,6 @@ msgstr "" "Tillämpa mask på markering (genom att använda det översta objektet som mask)" #: ../src/verbs.cpp:2635 -#, fuzzy msgid "Edit mask" msgstr "R_edigera mask" @@ -25601,9 +25500,8 @@ msgid "Show or hide the canvas scrollbars" msgstr "Visa eller dölj rullningslister för ritduken" #: ../src/verbs.cpp:2742 -#, fuzzy msgid "Page _Grid" -msgstr "Sidans bredd" +msgstr "Rutnät" #: ../src/verbs.cpp:2742 #, fuzzy @@ -25851,9 +25749,8 @@ msgstr "Passa in markeringen i fönstret" #. Dialogs #: ../src/verbs.cpp:2806 -#, fuzzy msgid "P_references..." -msgstr "Inställningar för pennan" +msgstr "Egenskaper..." #: ../src/verbs.cpp:2807 msgid "Edit global Inkscape preferences" @@ -25906,7 +25803,7 @@ msgstr "Välj färger från en färgprovspalett" #: ../src/verbs.cpp:2821 msgid "S_ymbols..." -msgstr "" +msgstr "Symboler..." #: ../src/verbs.cpp:2822 #, fuzzy @@ -25960,9 +25857,8 @@ msgid "View and edit the XML tree of the document" msgstr "Visa och redigera dokumentets XML-träd" #: ../src/verbs.cpp:2835 -#, fuzzy msgid "_Find/Replace..." -msgstr "Sök efter och ersätt text" +msgstr "Sök och ersätt..." #: ../src/verbs.cpp:2836 msgid "Find objects in document" @@ -26092,9 +25988,8 @@ msgstr "" "Färgutskriftsförhandsgransknings-läge" #: ../src/verbs.cpp:2865 -#, fuzzy msgid "_Export PNG Image..." -msgstr "Extrahera bild" +msgstr "Generera PNG bild..." #: ../src/verbs.cpp:2866 #, fuzzy @@ -26984,9 +26879,8 @@ msgstr "" "Vill du spara filen i ett annat format?" #: ../src/widgets/desktop-widget.cpp:1179 -#, fuzzy msgid "_Save as Inkscape SVG" -msgstr "_Spara som SVG" +msgstr "_Spara som Inkscape SVG" #: ../src/widgets/desktop-widget.cpp:1392 msgid "Note:" @@ -27804,9 +27698,8 @@ msgstr "" "nonzero)" #: ../src/widgets/paint-selector.cpp:590 -#, fuzzy msgid "No objects" -msgstr "Fäst mot objekt" +msgstr "Inga objekt" #: ../src/widgets/paint-selector.cpp:601 #, fuzzy @@ -32494,14 +32387,12 @@ msgid "GIMP XCF" msgstr "GIMP XCF" #: ../share/extensions/gimp_xcf.inx.h:3 -#, fuzzy msgid "Save Guides" -msgstr "Spara hjälplinjer:" +msgstr "Spara stödlinjer:" #: ../share/extensions/gimp_xcf.inx.h:4 -#, fuzzy msgid "Save Grid" -msgstr "Spara Rutnät:" +msgstr "Spara rutnät" #: ../share/extensions/gimp_xcf.inx.h:5 #, fuzzy @@ -32900,9 +32791,8 @@ msgstr "Rendera" #: ../share/extensions/render_alphabetsoup.inx.h:2 #: ../share/extensions/render_barcode_datamatrix.inx.h:2 #: ../share/extensions/render_barcode_qrcode.inx.h:3 -#, fuzzy msgid "Text:" -msgstr "Text" +msgstr "Text:" #: ../share/extensions/hershey.inx.h:4 #, fuzzy @@ -34928,9 +34818,8 @@ msgid "Filename:" msgstr "Filnamn:" #: ../share/extensions/polyhedron_3d.inx.h:5 -#, fuzzy msgid "Object Type:" -msgstr "Objekttyp" +msgstr "Objekttyp:" #: ../share/extensions/polyhedron_3d.inx.h:6 #, fuzzy -- cgit v1.2.3 From 8e9f1ad900f718cbbf2d529bbd5606845902feaa Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 17 Nov 2014 22:18:25 +0100 Subject: Fixes crash with perspective_lpe (bzr r13725) --- src/live_effects/lpe-perspective_path.cpp | 40 ++++++++++++++++++------------- src/live_effects/lpe-perspective_path.h | 5 +--- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/src/live_effects/lpe-perspective_path.cpp b/src/live_effects/lpe-perspective_path.cpp index d43772cf7..5183a455f 100644 --- a/src/live_effects/lpe-perspective_path.cpp +++ b/src/live_effects/lpe-perspective_path.cpp @@ -44,6 +44,8 @@ public: } // namespace PP static Glib::ustring perspectiveID = _("First perspective"); + + LPEPerspectivePath::LPEPerspectivePath(LivePathEffectObject *lpeobject) : Effect(lpeobject), // initialise your parameters here: @@ -62,35 +64,41 @@ LPEPerspectivePath::LPEPerspectivePath(LivePathEffectObject *lpeobject) : concatenate_before_pwd2 = true; // don't split the path into its subpaths _provides_knotholder_entities = true; - unapply = false; - Persp3D *persp = persp3d_document_first_persp(lpeobject->document); +} + +LPEPerspectivePath::~LPEPerspectivePath() +{ + +} +void +LPEPerspectivePath::doOnApply(SPLPEItem const* lpeitem) +{ + Persp3D *persp = persp3d_document_first_persp(lpeitem->document); if(persp == 0 ){ char *msg = _("You need a BOX 3D object"); Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, true); dialog.run(); - unapply = true; - return; + SPLPEItem * item = const_cast(lpeitem); + item->removeCurrentPathEffect(false); } - Proj::TransfMat3x4 pmat = persp->perspective_impl->tmat; - pmat = pmat * SP_ACTIVE_DESKTOP->doc2dt(); - pmat.copy_tmat(tmat); -} - -LPEPerspectivePath::~LPEPerspectivePath() -{ - } - void LPEPerspectivePath::doBeforeEffect (SPLPEItem const* lpeitem) { original_bbox(lpeitem, true); - if(unapply){ - SP_LPE_ITEM(lpeitem)->removeCurrentPathEffect(false); + SPLPEItem * item = const_cast(lpeitem); + Persp3D *persp = persp3d_document_first_persp(lpeitem->document); + if(persp == 0 ){ + char *msg = _("You need a BOX 3D object"); + Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO, + Gtk::BUTTONS_OK, true); + dialog.run(); return; } - SPLPEItem * item = const_cast(lpeitem); + Proj::TransfMat3x4 pmat = persp->perspective_impl->tmat; + pmat = pmat * SP_ACTIVE_DESKTOP->doc2dt(); + pmat.copy_tmat(tmat); item->apply_to_clippath(item); item->apply_to_mask(item); } diff --git a/src/live_effects/lpe-perspective_path.h b/src/live_effects/lpe-perspective_path.h index 6ccac4a51..c4ddf1853 100644 --- a/src/live_effects/lpe-perspective_path.h +++ b/src/live_effects/lpe-perspective_path.h @@ -33,9 +33,8 @@ class LPEPerspectivePath : public Effect, GroupBBoxEffect { public: LPEPerspectivePath(LivePathEffectObject *lpeobject); virtual ~LPEPerspectivePath(); - virtual void doBeforeEffect (SPLPEItem const* lpeitem); - + virtual void doOnApply(SPLPEItem const* lpeitem); virtual Geom::Piecewise > doEffect_pwd2 (Geom::Piecewise > const & pwd2_in); virtual void refresh(Gtk::Entry* perspective); @@ -53,8 +52,6 @@ private: ScalarParam offsety; BoolParam uses_plane_xy; // there are all kinds of parameters. Check the /live_effects/parameter directory which types exist! - - bool unapply; Geom::Point orig; LPEPerspectivePath(const LPEPerspectivePath&); -- cgit v1.2.3 From d2417aa8fb6f6945faccd0ba4a19337c509329b6 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 17 Nov 2014 22:27:06 +0100 Subject: fix a bug in bspline on apply on non shapes (bzr r13726) --- src/live_effects/lpe-bspline.cpp | 21 ++++----------------- src/live_effects/lpe-bspline.h | 2 +- 2 files changed, 5 insertions(+), 18 deletions(-) diff --git a/src/live_effects/lpe-bspline.cpp b/src/live_effects/lpe-bspline.cpp index 97a4c6205..c5390a0c9 100644 --- a/src/live_effects/lpe-bspline.cpp +++ b/src/live_effects/lpe-bspline.cpp @@ -88,25 +88,12 @@ void LPEBSpline::doBeforeEffect (SPLPEItem const* /*lpeitem*/) } -void LPEBSpline::createAndApply(const char *name, SPDocument *doc, - SPItem *item) +void LPEBSpline::doOnApply(SPLPEItem const* lpeitem) { - if (!SP_IS_SHAPE(item)) { + if (!SP_IS_SHAPE(lpeitem)) { g_warning("LPE BSpline can only be applied to shapes (not groups)."); - } else { - // Path effect definition - Inkscape::XML::Document *xml_doc = doc->getReprDoc(); - Inkscape::XML::Node *repr = xml_doc->createElement("inkscape:path-effect"); - repr->setAttribute("effect", name); - - doc->getDefs()->getRepr() - ->addChild(repr, NULL); // adds to and assigns the 'id' attribute - const gchar *repr_id = repr->attribute("id"); - Inkscape::GC::release(repr); - - gchar *href = g_strdup_printf("#%s", repr_id); - SP_LPE_ITEM(item)->addPathEffect(href, true); - g_free(href); + SPLPEItem * item = const_cast(lpeitem); + item->removeCurrentPathEffect(false); } } diff --git a/src/live_effects/lpe-bspline.h b/src/live_effects/lpe-bspline.h index 8751a5720..a17c0c4ac 100644 --- a/src/live_effects/lpe-bspline.h +++ b/src/live_effects/lpe-bspline.h @@ -19,10 +19,10 @@ public: LPEBSpline(LivePathEffectObject *lpeobject); virtual ~LPEBSpline(); - virtual void createAndApply(const char *name, SPDocument *doc, SPItem *item); virtual LPEPathFlashType pathFlashType() const { return SUPPRESS_FLASH; } + virtual void doOnApply(SPLPEItem const* lpeitem); virtual void doEffect(SPCurve *curve); virtual void doBeforeEffect (SPLPEItem const* lpeitem); void drawHandle(Geom::Point p, double radiusHelperNodes); -- cgit v1.2.3 From 332ce1f44ba815b149c288b2cc03977caeb56adf Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 17 Nov 2014 22:32:18 +0100 Subject: fix a bug in fillet/chamfer on apply on non shapes (bzr r13727) --- src/live_effects/lpe-fillet-chamfer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp index 680b4f763..119759b87 100644 --- a/src/live_effects/lpe-fillet-chamfer.cpp +++ b/src/live_effects/lpe-fillet-chamfer.cpp @@ -431,6 +431,8 @@ void LPEFilletChamfer::doOnApply(SPLPEItem const *lpeItem) fillet_chamfer_values.param_set_and_write_new_value(point); } else { g_warning("LPE Fillet can only be applied to shapes (not groups)."); + SPLPEItem * item = const_cast(lpeItem); + item->removeCurrentPathEffect(false); } } -- cgit v1.2.3 From 90e57a25353694141b0b15b9678e382d59b978ca Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Mon, 17 Nov 2014 23:56:27 +0100 Subject: commented unused variables (bzr r13728) --- src/ui/tool/node.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/tool/node.cpp b/src/ui/tool/node.cpp index 4abc901d2..8a1ca0b90 100644 --- a/src/ui/tool/node.cpp +++ b/src/ui/tool/node.cpp @@ -60,10 +60,10 @@ Inkscape::ControlType nodeTypeToCtrlType(Inkscape::UI::NodeType type) namespace Inkscape { namespace UI { -const double handleCubicGap = 0.01; +/*const double handleCubicGap = 0.01;*/ const double noPower = 0.0; const double defaultStartPower = 0.3334; -const double defaultEndPower = 0.6667; +/*const double defaultEndPower = 0.6667;*/ ControlPoint::ColorSet Node::node_colors = { {0xbfbfbf00, 0x000000ff}, // normal fill, stroke -- cgit v1.2.3 From 7416271e277db143292dca3429f410b9553793c1 Mon Sep 17 00:00:00 2001 From: mathog <> Date: Tue, 18 Nov 2014 08:59:12 +0100 Subject: [FIX] Patch for bug #1282968 (kerning of Telugu fonts is broken) by David Mathog. Fixed bugs: - https://launchpad.net/bugs/1282968 (bzr r13729) --- src/libnrtype/Layout-TNG-Compute.cpp | 53 +++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/src/libnrtype/Layout-TNG-Compute.cpp b/src/libnrtype/Layout-TNG-Compute.cpp index 7eb53446f..bd1acbe46 100644 --- a/src/libnrtype/Layout-TNG-Compute.cpp +++ b/src/libnrtype/Layout-TNG-Compute.cpp @@ -704,6 +704,7 @@ static void dumpUnbrokenSpans(ParagraphInfo *para){ // create the Layout::Character(s) double advance_width = new_glyph.width; if (newcluster){ + newcluster = 0; // find where the text ends for this log_cluster end_byte = it_span->start.iter_span->text_bytes; // Upper limit for(int next_glyph_index = glyph_index+1; next_glyph_index < unbroken_span.glyph_string->num_glyphs; next_glyph_index++){ @@ -751,18 +752,15 @@ static void dumpUnbrokenSpans(ParagraphInfo *para){ log_cluster_size_chars--; } - if (newcluster){ - advance_width *= direction_sign; - if (new_span.direction != para.direction) { - counter_directional_width_remaining -= advance_width; - x -= advance_width; - x_in_span_last -= advance_width; - } else { - x += advance_width; - x_in_span_last += advance_width; - } + advance_width *= direction_sign; + if (new_span.direction != para.direction) { + counter_directional_width_remaining -= advance_width; + x -= advance_width; + x_in_span_last -= advance_width; + } else { + x += advance_width; + x_in_span_last += advance_width; } - newcluster = 0; } } else if (_flow._input_stream[unbroken_span.input_index]->Type() == CONTROL_CODE) { x += static_cast(_flow._input_stream[unbroken_span.input_index])->width; @@ -1080,7 +1078,9 @@ void Layout::Calculator::_computeFontLineHeight(font_instance *font, double font bool compareGlyphWidth(const PangoGlyphInfo &a, const PangoGlyphInfo &b) { - return (a.geometry.width > b.geometry.width); + bool retval = false; + if ( b.geometry.width == 0 && (a.geometry.width > 0))retval = true; + return (retval); } @@ -1227,13 +1227,27 @@ unsigned Layout::Calculator::_buildSpansForPara(ParagraphInfo *para) const /* CAREFUL, within a log_cluster the order of glyphs may not map 1:1, or even in the same order, to the original unicode characters!!! Among - other things, diacritical mark glyphs can end up in front of the base - character. That makes determining kerning, even approximately, difficult - later on. To resolve this somewhat sort the glyphs with the same - log_cluster into descending order by width. In theory there should be 1 - that is nonzero, and N that are zero. The order of the zero width ones - does not matter. Sort the glyphs before copying. If ligatures other than with - Mark, nonspacing are ever implemented in Pango this will screw up, for instance + other things, diacritical mark glyphs can end up sequentially in front of the base + character glyph. That makes determining kerning, even approximately, difficult + later on. + + To resolve this to the extent possible sort the glyphs within the same + log_cluster into descending order by width in a special manner before copying. Diacritical marks + and similar have zero width and the glyph they modify has nonzero width. The order + of the zero width ones does not matter. A logical cluster is sorted into sequential order + [base] [zw_modifier1] [zw_modifier2] + where all the modifiers have zero width and the base does not. This works for languages like Hebrew. + + Pango also creates log clusters for languages like Telugu having many glyphs with nonzero widths. + Since these are nonzero, their order is not modified. + + If some language mixes these modes, having a log cluster having something like + [base1] [zw_modifier1] [base2] [zw_modifier2] + the result will be incorrect: + base1] [base2] [zw_modifier1] [zw_modifier2] + + + If ligatures other than with Mark, nonspacing are ever implemented in Pango this will screw up, for instance changing "fi" to "if". */ if(j - i){ @@ -1258,6 +1272,7 @@ unsigned Layout::Calculator::_buildSpansForPara(ParagraphInfo *para) const while( (j < nglyphs-1) && (new_span.glyph_string->log_clusters[j+1] == new_span.glyph_string->log_clusters[i]) )j++; + /* see note in preceding section */ if(j - i){ std::sort(&(new_span.glyph_string->glyphs[i]), &(new_span.glyph_string->glyphs[j+1]), compareGlyphWidth); } -- cgit v1.2.3 From 2a94bf5830bfc0caeaa14ce9907288ab22f6d99b Mon Sep 17 00:00:00 2001 From: Ivan Mas??r Date: Tue, 18 Nov 2014 15:31:49 +0100 Subject: * [INTL:zh_TW] Traditional Chinese translation update (bzr r13730) --- po/zh_TW.po | 19771 +++++++++++++++++++++++++++++++--------------------------- 1 file changed, 10525 insertions(+), 9246 deletions(-) mode change 100644 => 100755 po/zh_TW.po diff --git a/po/zh_TW.po b/po/zh_TW.po old mode 100644 new mode 100755 index 9b37294eb..9232d6c92 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,16 +1,13 @@ -# Traditional Chinese Messages for inkscape. -# Copyright (C) 2004, 06, 07 Free Software Foundation, Inc. -# This file is distributed under the same license as the inkscape package. -# tad , 2004. -# Wei-Lun Chao , 2006, 2007, 2008, 2009. -# Dong-Jun Wu , 2009, 2010, 2012. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # +# Dongjun Wu , 2011, 2012, 2013, 2014. msgid "" msgstr "" "Project-Id-Version: inkscape\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-08-14 23:05-0700\n" -"PO-Revision-Date: 2012-04-19 00:35+0800\n" +"POT-Creation-Date: 2014-11-05 22:05+0100\n" +"PO-Revision-Date: 2014-11-14 14:08+0800\n" "Last-Translator: Dongjun Wu \n" "Language-Team: Chinese Traditional \n" "Language: zh_TW\n" @@ -20,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-Language: Chinese (tranditional)\n" "X-Poedit-Country: TAIWAN\n" -"X-Generator: Lokalize 1.4\n" +"X-Generator: Lokalize 1.5\n" #: ../inkscape.desktop.in.h:1 msgid "Inkscape" @@ -42,3240 +39,4359 @@ msgstr "建立和編輯可縮放向量繪圖圖形" msgid "New Drawing" msgstr "新增圖畫" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:2 -msgctxt "Palette" -msgid "Black" -msgstr "黑色" +#: ../share/filters/filters.svg.h:2 +msgid "Smart Jelly" +msgstr "智慧型果凍" + +#: ../share/filters/filters.svg.h:3 ../share/filters/filters.svg.h:7 +#: ../share/filters/filters.svg.h:15 ../share/filters/filters.svg.h:31 +#: ../share/filters/filters.svg.h:35 ../share/filters/filters.svg.h:107 +#: ../share/filters/filters.svg.h:139 ../share/filters/filters.svg.h:143 +#: ../share/filters/filters.svg.h:147 ../share/filters/filters.svg.h:151 +#: ../share/filters/filters.svg.h:163 ../share/filters/filters.svg.h:171 +#: ../share/filters/filters.svg.h:219 ../share/filters/filters.svg.h:227 +#: ../share/filters/filters.svg.h:283 ../share/filters/filters.svg.h:299 +#: ../share/filters/filters.svg.h:303 ../share/filters/filters.svg.h:551 +#: ../share/filters/filters.svg.h:555 ../share/filters/filters.svg.h:559 +#: ../share/filters/filters.svg.h:563 ../share/filters/filters.svg.h:567 +#: ../src/extension/internal/filter/bevels.h:63 +#: ../src/extension/internal/filter/bevels.h:144 +#: ../src/extension/internal/filter/bevels.h:228 +msgid "Bevels" +msgstr "斜角" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:3 -#, no-c-format -msgctxt "Palette" -msgid "90% Gray" -msgstr "90% 灰" +#: ../share/filters/filters.svg.h:4 +msgid "Same as Matte jelly but with more controls" +msgstr "同於霧面果凍,但有更多的控制選項" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:4 -#, no-c-format -msgctxt "Palette" -msgid "80% Gray" -msgstr "80% 灰" +#: ../share/filters/filters.svg.h:6 +msgid "Metal Casting" +msgstr "金屬鑄造" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:5 -#, no-c-format -msgctxt "Palette" -msgid "70% Gray" -msgstr "70% 灰" +#: ../share/filters/filters.svg.h:8 +msgid "Smooth drop-like bevel with metallic finish" +msgstr "類似下落的平滑斜角,帶有金屬光澤" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:6 -#, no-c-format -msgctxt "Palette" -msgid "60% Gray" -msgstr "60% 灰" +#: ../share/filters/filters.svg.h:10 +msgid "Apparition" +msgstr "幻影" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:7 -#, no-c-format -msgctxt "Palette" -msgid "50% Gray" -msgstr "50% 灰" +#: ../share/filters/filters.svg.h:11 ../share/filters/filters.svg.h:323 +#: ../share/filters/filters.svg.h:655 +#: ../src/extension/internal/filter/blurs.h:63 +#: ../src/extension/internal/filter/blurs.h:132 +#: ../src/extension/internal/filter/blurs.h:201 +#: ../src/extension/internal/filter/blurs.h:267 +#: ../src/extension/internal/filter/blurs.h:351 +msgid "Blurs" +msgstr "模糊" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:8 -#, no-c-format -msgctxt "Palette" -msgid "40% Gray" -msgstr "40% 灰" +#: ../share/filters/filters.svg.h:12 +msgid "Edges are partly feathered out" +msgstr "邊緣部份逐漸消失" + +#: ../share/filters/filters.svg.h:14 +msgid "Jigsaw Piece" +msgstr "鋸片" + +#: ../share/filters/filters.svg.h:16 +msgid "Low, sharp bevel" +msgstr "低且銳利的斜角" + +#: ../share/filters/filters.svg.h:18 +msgid "Rubber Stamp" +msgstr "橡皮章" + +#: ../share/filters/filters.svg.h:19 ../share/filters/filters.svg.h:43 +#: ../share/filters/filters.svg.h:47 ../share/filters/filters.svg.h:51 +#: ../share/filters/filters.svg.h:59 ../share/filters/filters.svg.h:63 +#: ../share/filters/filters.svg.h:95 ../share/filters/filters.svg.h:99 +#: ../share/filters/filters.svg.h:103 ../share/filters/filters.svg.h:287 +#: ../share/filters/filters.svg.h:291 ../share/filters/filters.svg.h:331 +#: ../share/filters/filters.svg.h:335 ../share/filters/filters.svg.h:339 +#: ../share/filters/filters.svg.h:391 ../share/filters/filters.svg.h:407 +#: ../share/filters/filters.svg.h:451 ../share/filters/filters.svg.h:455 +#: ../share/filters/filters.svg.h:459 ../share/filters/filters.svg.h:475 +#: ../share/filters/filters.svg.h:487 ../share/filters/filters.svg.h:583 +#: ../share/filters/filters.svg.h:643 ../share/filters/filters.svg.h:683 +#: ../share/filters/filters.svg.h:687 ../share/filters/filters.svg.h:691 +#: ../share/filters/filters.svg.h:695 ../share/filters/filters.svg.h:699 +#: ../share/filters/filters.svg.h:703 ../share/filters/filters.svg.h:707 +#: ../share/filters/filters.svg.h:711 ../share/filters/filters.svg.h:715 +#: ../share/filters/filters.svg.h:723 +#: ../src/extension/internal/filter/overlays.h:80 +msgid "Overlays" +msgstr "覆蓋" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:9 -#, no-c-format -msgctxt "Palette" -msgid "30% Gray" -msgstr "30% 灰" +#: ../share/filters/filters.svg.h:20 +msgid "Random whiteouts inside" +msgstr "隨機白色內部" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:10 -#, no-c-format -msgctxt "Palette" -msgid "20% Gray" -msgstr "20% 灰" +#: ../share/filters/filters.svg.h:22 +msgid "Ink Bleed" +msgstr "墨水暈開" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:11 -#, no-c-format -msgctxt "Palette" -msgid "10% Gray" -msgstr "10% 灰" +#: ../share/filters/filters.svg.h:23 ../share/filters/filters.svg.h:27 +#: ../share/filters/filters.svg.h:115 ../share/filters/filters.svg.h:431 +msgid "Protrusions" +msgstr "突出" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:12 -#, no-c-format -msgctxt "Palette" -msgid "7.5% Gray" -msgstr "7.5% 灰" +#: ../share/filters/filters.svg.h:24 +msgid "Inky splotches underneath the object" +msgstr "物件底下有墨水的汙點" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:13 -#, no-c-format -msgctxt "Palette" -msgid "5% Gray" -msgstr "5% 灰" +#: ../share/filters/filters.svg.h:26 +msgid "Fire" +msgstr "火燄" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:14 -#, no-c-format -msgctxt "Palette" -msgid "2.5% Gray" -msgstr "2.5% 灰" +#: ../share/filters/filters.svg.h:28 +msgid "Edges of object are on fire" +msgstr "使物件邊緣著火" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:15 -msgctxt "Palette" -msgid "White" -msgstr "白色" +#: ../share/filters/filters.svg.h:30 +msgid "Bloom" +msgstr "塊鋼" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:16 -msgctxt "Palette" -msgid "Maroon (#800000)" -msgstr "紫藍 (#800000)" +#: ../share/filters/filters.svg.h:32 +msgid "Soft, cushion-like bevel with matte highlights" +msgstr "柔和、帶有霧面光澤、類似橡皮軟墊的斜角" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:17 -msgctxt "Palette" -msgid "Red (#FF0000)" -msgstr "紅色 (#FF0000)" +#: ../share/filters/filters.svg.h:34 +msgid "Ridged Border" +msgstr "脊形邊框" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:18 -msgctxt "Palette" -msgid "Olive (#808000)" -msgstr "橄欖綠 (#808000)" +#: ../share/filters/filters.svg.h:36 +msgid "Ridged border with inner bevel" +msgstr "帶有內斜角的脊形邊框" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:19 -msgctxt "Palette" -msgid "Yellow (#FFFF00)" -msgstr "黃色 (#FFFF00)" +#: ../share/filters/filters.svg.h:38 +msgid "Ripple" +msgstr "波紋" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:20 -msgctxt "Palette" -msgid "Green (#008000)" -msgstr "綠色 (#008000)" +#: ../share/filters/filters.svg.h:39 ../share/filters/filters.svg.h:123 +#: ../share/filters/filters.svg.h:315 ../share/filters/filters.svg.h:319 +#: ../share/filters/filters.svg.h:327 ../share/filters/filters.svg.h:363 +#: ../share/filters/filters.svg.h:443 ../share/filters/filters.svg.h:519 +#: ../share/filters/filters.svg.h:635 +#: ../src/extension/internal/filter/distort.h:96 +#: ../src/extension/internal/filter/distort.h:205 +msgid "Distort" +msgstr "扭曲" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:21 -msgctxt "Palette" -msgid "Lime (#00FF00)" -msgstr "萊姆 (#00FF00)" +#: ../share/filters/filters.svg.h:40 +msgid "Horizontal rippling of edges" +msgstr "邊緣的水平波紋" + +#: ../share/filters/filters.svg.h:42 +msgid "Speckle" +msgstr "斑點" + +#: ../share/filters/filters.svg.h:44 +msgid "Fill object with sparse translucent specks" +msgstr "用稀疏半透明的斑紋填入物件" + +#: ../share/filters/filters.svg.h:46 +msgid "Oil Slick" +msgstr "浮油" + +#: ../share/filters/filters.svg.h:48 +msgid "Rainbow-colored semitransparent oily splotches" +msgstr "彩虹顏色的半透明油汙" + +#: ../share/filters/filters.svg.h:50 +msgid "Frost" +msgstr "霜" + +#: ../share/filters/filters.svg.h:52 +msgid "Flake-like white splotches" +msgstr "類似薄片的白色斑點" + +#: ../share/filters/filters.svg.h:54 +msgid "Leopard Fur" +msgstr "豹紋" + +#: ../share/filters/filters.svg.h:55 ../share/filters/filters.svg.h:175 +#: ../share/filters/filters.svg.h:179 ../share/filters/filters.svg.h:183 +#: ../share/filters/filters.svg.h:191 ../share/filters/filters.svg.h:211 +#: ../share/filters/filters.svg.h:239 ../share/filters/filters.svg.h:243 +#: ../share/filters/filters.svg.h:247 ../share/filters/filters.svg.h:255 +#: ../share/filters/filters.svg.h:387 ../share/filters/filters.svg.h:395 +#: ../share/filters/filters.svg.h:399 ../share/filters/filters.svg.h:403 +msgid "Materials" +msgstr "材質" + +#: ../share/filters/filters.svg.h:56 +msgid "Leopard spots (loses object's own color)" +msgstr "豹斑 (會喪失物件原有的顏色)" + +#: ../share/filters/filters.svg.h:58 +msgid "Zebra" +msgstr "斑馬" + +#: ../share/filters/filters.svg.h:60 +msgid "Irregular vertical dark stripes (loses object's own color)" +msgstr "不規則的垂直黑條紋 (會喪失物件原有的顏色)" + +#: ../share/filters/filters.svg.h:62 +msgid "Clouds" +msgstr "雲" + +#: ../share/filters/filters.svg.h:64 +msgid "Airy, fluffy, sparse white clouds" +msgstr "輕飄飄、蓬鬆、稀疏的白雲" + +#: ../share/filters/filters.svg.h:66 +#: ../src/extension/internal/bitmap/sharpen.cpp:38 +msgid "Sharpen" +msgstr "銳利化" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:22 -msgctxt "Palette" -msgid "Teal (#008080)" -msgstr "水鴨綠 (#008080)" +#: ../share/filters/filters.svg.h:67 ../share/filters/filters.svg.h:71 +#: ../share/filters/filters.svg.h:87 ../share/filters/filters.svg.h:295 +#: ../share/filters/filters.svg.h:415 +#: ../src/extension/internal/filter/image.h:62 +msgid "Image Effects" +msgstr "影像特效" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:23 -msgctxt "Palette" -msgid "Aqua (#00FFFF)" -msgstr "水藍 (#00FFFF)" +#: ../share/filters/filters.svg.h:68 +msgid "Sharpen edges and boundaries within the object, force=0.15" +msgstr "銳利化物件內部的邊緣和邊框,強度=0.15" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:24 -msgctxt "Palette" -msgid "Navy (#000080)" -msgstr "海軍藍 (#000080)" +#: ../share/filters/filters.svg.h:70 +msgid "Sharpen More" +msgstr "更加銳利" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:25 -msgctxt "Palette" -msgid "Blue (#0000FF)" -msgstr "藍色 (#0000FF)" +#: ../share/filters/filters.svg.h:72 +msgid "Sharpen edges and boundaries within the object, force=0.3" +msgstr "銳利化物件內部的邊緣和邊框,強度=0.3" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:26 -msgctxt "Palette" -msgid "Purple (#800080)" -msgstr "紫色 (#800080)" +#: ../share/filters/filters.svg.h:74 +msgid "Oil painting" +msgstr "油畫筆觸" -#. Palette: ./inkscape.gpl -#: ../share/palettes/palettes.h:27 -msgctxt "Palette" -msgid "Fuchsia (#FF00FF)" -msgstr "桃紅 (#FF00FF)" +#: ../share/filters/filters.svg.h:75 ../share/filters/filters.svg.h:79 +#: ../share/filters/filters.svg.h:83 ../share/filters/filters.svg.h:447 +#: ../share/filters/filters.svg.h:495 ../share/filters/filters.svg.h:499 +#: ../share/filters/filters.svg.h:503 ../share/filters/filters.svg.h:507 +#: ../share/filters/filters.svg.h:515 ../share/filters/filters.svg.h:659 +#: ../share/filters/filters.svg.h:663 ../share/filters/filters.svg.h:667 +#: ../share/filters/filters.svg.h:671 ../share/filters/filters.svg.h:675 +#: ../share/filters/filters.svg.h:679 ../share/filters/filters.svg.h:719 +#: ../share/filters/filters.svg.h:803 ../share/filters/filters.svg.h:815 +#: ../src/extension/internal/filter/paint.h:113 +#: ../src/extension/internal/filter/paint.h:244 +#: ../src/extension/internal/filter/paint.h:363 +#: ../src/extension/internal/filter/paint.h:507 +#: ../src/extension/internal/filter/paint.h:602 +#: ../src/extension/internal/filter/paint.h:725 +#: ../src/extension/internal/filter/paint.h:877 +#: ../src/extension/internal/filter/paint.h:981 +msgid "Image Paint and Draw" +msgstr "影像繪畫" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:28 -msgctxt "Palette" -msgid "black (#000000)" -msgstr "黑色 (#000000)" +#: ../share/filters/filters.svg.h:76 +msgid "Simulate oil painting style" +msgstr "模擬油畫筆觸風格" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:29 -msgctxt "Palette" -msgid "dimgray (#696969)" -msgstr "暗灰 (#696969)" +#. Pencil +#: ../share/filters/filters.svg.h:78 +#: ../src/ui/dialog/inkscape-preferences.cpp:417 +msgid "Pencil" +msgstr "鉛筆" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:30 -msgctxt "Palette" -msgid "gray (#808080)" -msgstr "灰色 (#808080)" +#: ../share/filters/filters.svg.h:80 +msgid "Detect color edges and retrace them in grayscale" +msgstr "偵測顏色邊緣並用灰階重新描繪" + +#: ../share/filters/filters.svg.h:82 +msgid "Blueprint" +msgstr "藍圖" + +#: ../share/filters/filters.svg.h:84 +msgid "Detect color edges and retrace them in blue" +msgstr "偵測顏色邊緣並用藍色重新描繪" + +#: ../share/filters/filters.svg.h:86 +msgid "Age" +msgstr "陳舊" + +#: ../share/filters/filters.svg.h:88 +msgid "Imitate aged photograph" +msgstr "模擬陳舊的相片" + +#: ../share/filters/filters.svg.h:90 +msgid "Organic" +msgstr "有機" + +#: ../share/filters/filters.svg.h:91 ../share/filters/filters.svg.h:119 +#: ../share/filters/filters.svg.h:127 ../share/filters/filters.svg.h:187 +#: ../share/filters/filters.svg.h:195 ../share/filters/filters.svg.h:199 +#: ../share/filters/filters.svg.h:251 ../share/filters/filters.svg.h:259 +#: ../share/filters/filters.svg.h:263 ../share/filters/filters.svg.h:355 +#: ../share/filters/filters.svg.h:359 ../share/filters/filters.svg.h:367 +#: ../share/filters/filters.svg.h:371 ../share/filters/filters.svg.h:375 +#: ../share/filters/filters.svg.h:379 ../share/filters/filters.svg.h:383 +#: ../share/filters/filters.svg.h:439 ../share/filters/filters.svg.h:467 +#: ../share/filters/filters.svg.h:491 ../share/filters/filters.svg.h:531 +msgid "Textures" +msgstr "紋理" + +#: ../share/filters/filters.svg.h:92 +msgid "Bulging, knotty, slick 3D surface" +msgstr "凸出、多節、光滑的立體表面" + +#: ../share/filters/filters.svg.h:94 +msgid "Barbed Wire" +msgstr "鐵刺絲" + +#: ../share/filters/filters.svg.h:96 +msgid "Gray bevelled wires with drop shadows" +msgstr "帶有下落式陰影的灰暗鐵刺絲" + +#: ../share/filters/filters.svg.h:98 +msgid "Swiss Cheese" +msgstr "瑞士乳酪" + +#: ../share/filters/filters.svg.h:100 +msgid "Random inner-bevel holes" +msgstr "隨機內斜角孔洞" + +#: ../share/filters/filters.svg.h:102 +msgid "Blue Cheese" +msgstr "藍紋乳酪" + +#: ../share/filters/filters.svg.h:104 +msgid "Marble-like bluish speckles" +msgstr "類似大理石帶有藍色的斑紋" + +#: ../share/filters/filters.svg.h:106 +msgid "Button" +msgstr "按鈕" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:31 -msgctxt "Palette" -msgid "darkgray (#A9A9A9)" -msgstr "深灰 (#A9A9A9)" +#: ../share/filters/filters.svg.h:108 +msgid "Soft bevel, slightly depressed middle" +msgstr "柔和的斜角,中央輕微凹陷" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:32 -msgctxt "Palette" -msgid "silver (#C0C0C0)" -msgstr "銀色 (#C0C0C0)" +#: ../share/filters/filters.svg.h:110 +msgid "Inset" +msgstr "內凹" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:33 -msgctxt "Palette" -msgid "lightgray (#D3D3D3)" -msgstr "淺灰 (#D3D3D3)" +#: ../share/filters/filters.svg.h:111 ../share/filters/filters.svg.h:267 +#: ../share/filters/filters.svg.h:343 ../share/filters/filters.svg.h:435 +#: ../share/filters/filters.svg.h:811 +#: ../src/extension/internal/filter/shadows.h:81 +msgid "Shadows and Glows" +msgstr "陰影與光暈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:34 -msgctxt "Palette" -msgid "gainsboro (#DCDCDC)" -msgstr "亮灰 (#DCDCDC)" +#: ../share/filters/filters.svg.h:112 +msgid "Shadowy outer bevel" +msgstr "朦朧的外斜角" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:35 -msgctxt "Palette" -msgid "whitesmoke (#F5F5F5)" -msgstr "煙白 (#F5F5F5)" +#: ../share/filters/filters.svg.h:114 +msgid "Dripping" +msgstr "淋濕" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:36 -msgctxt "Palette" -msgid "white (#FFFFFF)" -msgstr "白色 (#FFFFFF)" +#: ../share/filters/filters.svg.h:116 +msgid "Random paint streaks downwards" +msgstr "隨機向下塗繪條紋" + +#: ../share/filters/filters.svg.h:118 +msgid "Jam Spread" +msgstr "果醬塗抹" + +#: ../share/filters/filters.svg.h:120 +msgid "Glossy clumpy jam spread" +msgstr "光滑塊狀的果醬塗抹" + +#: ../share/filters/filters.svg.h:122 +msgid "Pixel Smear" +msgstr "像素塗抹" + +#: ../share/filters/filters.svg.h:124 +msgid "Van Gogh painting effect for bitmaps" +msgstr "點陣圖的梵谷風格效果" + +#: ../share/filters/filters.svg.h:126 +msgid "Cracked Glass" +msgstr "碎裂玻璃" + +#: ../share/filters/filters.svg.h:128 +msgid "Under a cracked glass" +msgstr "在碎裂玻璃底下呈現的樣子" + +#: ../share/filters/filters.svg.h:130 +msgid "Bubbly Bumps" +msgstr "發泡凹凸" + +#: ../share/filters/filters.svg.h:131 ../share/filters/filters.svg.h:307 +#: ../share/filters/filters.svg.h:311 ../share/filters/filters.svg.h:347 +#: ../share/filters/filters.svg.h:351 ../share/filters/filters.svg.h:419 +#: ../share/filters/filters.svg.h:423 ../share/filters/filters.svg.h:463 +#: ../share/filters/filters.svg.h:471 ../share/filters/filters.svg.h:479 +#: ../share/filters/filters.svg.h:483 ../share/filters/filters.svg.h:511 +#: ../share/filters/filters.svg.h:535 ../share/filters/filters.svg.h:539 +#: ../share/filters/filters.svg.h:543 ../share/filters/filters.svg.h:547 +#: ../share/filters/filters.svg.h:571 ../share/filters/filters.svg.h:579 +#: ../share/filters/filters.svg.h:595 ../share/filters/filters.svg.h:599 +#: ../share/filters/filters.svg.h:603 ../share/filters/filters.svg.h:607 +#: ../share/filters/filters.svg.h:611 ../share/filters/filters.svg.h:615 +#: ../share/filters/filters.svg.h:619 ../share/filters/filters.svg.h:623 +#: ../share/filters/filters.svg.h:799 ../share/filters/filters.svg.h:807 +#: ../src/extension/internal/filter/bumps.h:142 +#: ../src/extension/internal/filter/bumps.h:362 +msgid "Bumps" +msgstr "凹凸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:37 -msgctxt "Palette" -msgid "rosybrown (#BC8F8F)" -msgstr "玫瑰棕 (#BC8F8F)" +#: ../share/filters/filters.svg.h:132 +msgid "Flexible bubbles effect with some displacement" +msgstr "帶有些許位移的高度彎曲氣泡效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:38 -msgctxt "Palette" -msgid "indianred (#CD5C5C)" -msgstr "淺粉紅 (#CD5C5C)" +#: ../share/filters/filters.svg.h:134 +msgid "Glowing Bubble" +msgstr "發光泡泡" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:39 -msgctxt "Palette" -msgid "brown (#A52A2A)" -msgstr "棕色 (#A52A2A)" +#: ../share/filters/filters.svg.h:135 ../share/filters/filters.svg.h:155 +#: ../share/filters/filters.svg.h:159 ../share/filters/filters.svg.h:203 +#: ../share/filters/filters.svg.h:207 ../share/filters/filters.svg.h:215 +#: ../share/filters/filters.svg.h:223 +msgid "Ridges" +msgstr "脊形" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:40 -msgctxt "Palette" -msgid "firebrick (#B22222)" -msgstr "磚紅 (#B22222)" +#: ../share/filters/filters.svg.h:136 +msgid "Bubble effect with refraction and glow" +msgstr "伴隨折射和發光的泡泡效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:41 -msgctxt "Palette" -msgid "lightcoral (#F08080)" -msgstr "淺珊瑚 (#F08080)" +#: ../share/filters/filters.svg.h:138 +msgid "Neon" +msgstr "霓紅燈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:42 -msgctxt "Palette" -msgid "maroon (#800000)" -msgstr "紫藍 (#800000)" +#: ../share/filters/filters.svg.h:140 +msgid "Neon light effect" +msgstr "霓紅燈效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:43 -msgctxt "Palette" -msgid "darkred (#8B0000)" -msgstr "暗紅 (#8B0000)" +#: ../share/filters/filters.svg.h:142 +msgid "Molten Metal" +msgstr "熔化金屬" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:44 -msgctxt "Palette" -msgid "red (#FF0000)" -msgstr "紅色 (#FF0000)" +#: ../share/filters/filters.svg.h:144 +msgid "Melting parts of object together, with a glossy bevel and a glow" +msgstr "物件的一部份一起熔化,帶有光滑斜角和光暈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:45 -msgctxt "Palette" -msgid "snow (#FFFAFA)" -msgstr "雪白 (#FFFAFA)" +#: ../share/filters/filters.svg.h:146 +msgid "Pressed Steel" +msgstr "壓製鋼鐵" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:46 -msgctxt "Palette" -msgid "mistyrose (#FFE4E1)" -msgstr "淺玫瑰色 (#FFE4E1)" +#: ../share/filters/filters.svg.h:148 +msgid "Pressed metal with a rolled edge" +msgstr "帶有捲邊的被壓縮金屬" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:47 -msgctxt "Palette" -msgid "salmon (#FA8072)" -msgstr "鮭紅 (#FA8072)" +#: ../share/filters/filters.svg.h:150 +msgid "Matte Bevel" +msgstr "霧面斜角" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:48 -msgctxt "Palette" -msgid "tomato (#FF6347)" -msgstr "番茄紅 (#FF6347)" +#: ../share/filters/filters.svg.h:152 +msgid "Soft, pastel-colored, blurry bevel" +msgstr "柔和、粉色、模糊的斜角" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:49 -msgctxt "Palette" -msgid "darksalmon (#E9967A)" -msgstr "暗鮭紅 (#E9967A)" +#: ../share/filters/filters.svg.h:154 +msgid "Thin Membrane" +msgstr "薄膜" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:50 -msgctxt "Palette" -msgid "coral (#FF7F50)" -msgstr "珊瑚 (#FF7F50)" +#: ../share/filters/filters.svg.h:156 +msgid "Thin like a soap membrane" +msgstr "像肥皂膜一樣薄" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:51 -msgctxt "Palette" -msgid "orangered (#FF4500)" -msgstr "橘紅 (#FF4500)" +#: ../share/filters/filters.svg.h:158 +msgid "Matte Ridge" +msgstr "霧面脊形" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:52 -msgctxt "Palette" -msgid "lightsalmon (#FFA07A)" -msgstr "淺鮭紅 (#FFA07A)" +#: ../share/filters/filters.svg.h:160 +msgid "Soft pastel ridge" +msgstr "柔和的粉蠟脊形" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:53 -msgctxt "Palette" -msgid "sienna (#A0522D)" -msgstr "黃褐色 (#A0522D)" +#: ../share/filters/filters.svg.h:162 +msgid "Glowing Metal" +msgstr "發光金屬" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:54 -msgctxt "Palette" -msgid "seashell (#FFF5EE)" -msgstr "海貝褐 (#FFF5EE)" +#: ../share/filters/filters.svg.h:164 +msgid "Glowing metal texture" +msgstr "發光金屬紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:55 -msgctxt "Palette" -msgid "chocolate (#D2691E)" -msgstr "巧克力 (#D2691E)" +#: ../share/filters/filters.svg.h:166 +msgid "Leaves" +msgstr "樹葉" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:56 -msgctxt "Palette" -msgid "saddlebrown (#8B4513)" -msgstr "馬鞍褐 (#8B4513)" +#: ../share/filters/filters.svg.h:167 ../share/filters/filters.svg.h:235 +#: ../share/filters/filters.svg.h:271 ../share/filters/filters.svg.h:639 +#: ../share/extensions/pathscatter.inx.h:1 +msgid "Scatter" +msgstr "散佈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:57 -msgctxt "Palette" -msgid "sandybrown (#F4A460)" -msgstr "沙褐色 (#F4A460)" +#: ../share/filters/filters.svg.h:168 +msgid "Leaves on the ground in Fall, or living foliage" +msgstr "秋季地上的落葉,或生活中的葉子" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:58 -msgctxt "Palette" -msgid "peachpuff (#FFDAB9)" -msgstr "粉桃紅 (#FFDAB9)" +#: ../share/filters/filters.svg.h:170 +#: ../src/extension/internal/filter/paint.h:339 +msgid "Translucent" +msgstr "半透明" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:59 -msgctxt "Palette" -msgid "peru (#CD853F)" -msgstr "秘魯色 (#CD853F)" +#: ../share/filters/filters.svg.h:172 +msgid "Illuminated translucent plastic or glass effect" +msgstr "被照亮的半透明塑膠或玻璃效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:60 -msgctxt "Palette" -msgid "linen (#FAF0E6)" -msgstr "亞麻色 (#FAF0E6)" +#: ../share/filters/filters.svg.h:174 +msgid "Iridescent Beeswax" +msgstr "虹彩蜂蠟" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:61 -msgctxt "Palette" -msgid "bisque (#FFE4C4)" -msgstr "淡黃色 (#FFE4C4)" +#: ../share/filters/filters.svg.h:176 +msgid "Waxy texture which keeps its iridescence through color fill change" +msgstr "蠟質紋理經由改變填色來保持本身的彩虹色" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:62 -msgctxt "Palette" -msgid "darkorange (#FF8C00)" -msgstr "深橙色 (#FF8C00)" +#: ../share/filters/filters.svg.h:178 +msgid "Eroded Metal" +msgstr "腐蝕金屬" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:63 -msgctxt "Palette" -msgid "burlywood (#DEB887)" -msgstr "實木色 (#DEB887)" +#: ../share/filters/filters.svg.h:180 +msgid "Eroded metal texture with ridges, grooves, holes and bumps" +msgstr "帶有脊形、溝、孔洞和凹凸的腐蝕金屬紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:64 -msgctxt "Palette" -msgid "tan (#D2B48C)" -msgstr "曬褐色 (#D2B48C)" +#: ../share/filters/filters.svg.h:182 +msgid "Cracked Lava" +msgstr "破裂火山岩" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:65 -msgctxt "Palette" -msgid "antiquewhite (#FAEBD7)" -msgstr "復古白 (#FAEBD7)" +#: ../share/filters/filters.svg.h:184 +msgid "A volcanic texture, a little like leather" +msgstr "火山岩紋理,有點像皮革" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:66 -msgctxt "Palette" -msgid "navajowhite (#FFDEAD)" -msgstr "耐而節白 (#FFDEAD)" +#: ../share/filters/filters.svg.h:186 +msgid "Bark" +msgstr "樹皮" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:67 -msgctxt "Palette" -msgid "blanchedalmond (#FFEBCD)" -msgstr "白杏仁 (#FFEBCD)" +#: ../share/filters/filters.svg.h:188 +msgid "Bark texture, vertical; use with deep colors" +msgstr "樹皮紋理,垂直;伴隨深色使用" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:68 -msgctxt "Palette" -msgid "papayawhip (#FFEFD5)" -msgstr "木瓜色 (#FFEFD5)" +#: ../share/filters/filters.svg.h:190 +msgid "Lizard Skin" +msgstr "蜥蜴表皮" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:69 -msgctxt "Palette" -msgid "moccasin (#FFE4B5)" -msgstr "鹿皮色 (#FFE4B5)" +#: ../share/filters/filters.svg.h:192 +msgid "Stylized reptile skin texture" +msgstr "爬蟲類表皮紋理風格" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:70 -msgctxt "Palette" -msgid "orange (#FFA500)" -msgstr "橙色 (#FFA500)" +#: ../share/filters/filters.svg.h:194 +msgid "Stone Wall" +msgstr "石牆" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:71 -msgctxt "Palette" -msgid "wheat (#F5DEB3)" -msgstr "小麥色 (#F5DEB3)" +#: ../share/filters/filters.svg.h:196 +msgid "Stone wall texture to use with not too saturated colors" +msgstr "帶有不太飽和色彩的石牆紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:72 -msgctxt "Palette" -msgid "oldlace (#FDF5E6)" -msgstr "淺米色 (#FDF5E6)" +#: ../share/filters/filters.svg.h:198 +msgid "Silk Carpet" +msgstr "絲織地毯" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:73 -msgctxt "Palette" -msgid "floralwhite (#FFFAF0)" -msgstr "白花色 (#FFFAF0)" +#: ../share/filters/filters.svg.h:200 +msgid "Silk carpet texture, horizontal stripes" +msgstr "絲織地毯紋理,水平條紋" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:74 -msgctxt "Palette" -msgid "darkgoldenrod (#B8860B)" -msgstr "深秋色 (#B8860B)" +#: ../share/filters/filters.svg.h:202 +msgid "Refractive Gel A" +msgstr "折射凝膠 A" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:75 -msgctxt "Palette" -msgid "goldenrod (#DAA520)" -msgstr "秋天色 (#DAA520)" +#: ../share/filters/filters.svg.h:204 +msgid "Gel effect with light refraction" +msgstr "有光線折射的凝膠效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:76 -msgctxt "Palette" -msgid "cornsilk (#FFF8DC)" -msgstr "玉米色 (#FFF8DC)" +#: ../share/filters/filters.svg.h:206 +msgid "Refractive Gel B" +msgstr "折射凝膠 B" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:77 -msgctxt "Palette" -msgid "gold (#FFD700)" -msgstr "金色 (#FFD700)" +#: ../share/filters/filters.svg.h:208 +msgid "Gel effect with strong refraction" +msgstr "有強光折射的凝膠效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:78 -msgctxt "Palette" -msgid "khaki (#F0E68C)" -msgstr "卡其色 (#F0E68C)" +#: ../share/filters/filters.svg.h:210 +msgid "Metallized Paint" +msgstr "金屬筆觸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:79 -msgctxt "Palette" -msgid "lemonchiffon (#FFFACD)" -msgstr "檸檬沙 (#FFFACD)" +#: ../share/filters/filters.svg.h:212 +msgid "" +"Metallized effect with a soft lighting, slightly translucent at the edges" +msgstr "柔和照明的金屬處理效果,邊緣呈現輕微的半透明" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:80 -msgctxt "Palette" -msgid "palegoldenrod (#EEE8AA)" -msgstr "秋天灰 (#EEE8AA)" +#: ../share/filters/filters.svg.h:214 +msgid "Dragee" +msgstr "糖衣" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:81 -msgctxt "Palette" -msgid "darkkhaki (#BDB76B)" -msgstr "深卡其色 (#BDB76B)" +#: ../share/filters/filters.svg.h:216 +msgid "Gel Ridge with a pearlescent look" +msgstr "有珍珠般光澤外觀的凝膠脊形" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:82 -msgctxt "Palette" -msgid "beige (#F5F5DC)" -msgstr "米色 (#F5F5DC)" +#: ../share/filters/filters.svg.h:218 +msgid "Raised Border" +msgstr "邊框隆起" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:83 -msgctxt "Palette" -msgid "lightgoldenrodyellow (#FAFAD2)" -msgstr "淺金黃 (#FAFAD2)" +#: ../share/filters/filters.svg.h:220 +msgid "Strongly raised border around a flat surface" +msgstr "一個平坦表面周圍的邊界強烈隆起" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:84 -msgctxt "Palette" -msgid "olive (#808000)" -msgstr "橄欖 (#808000)" +#: ../share/filters/filters.svg.h:222 +msgid "Metallized Ridge" +msgstr "金屬脊形" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:85 -msgctxt "Palette" -msgid "yellow (#FFFF00)" -msgstr "黃色 (#FFFF00)" +#: ../share/filters/filters.svg.h:224 +msgid "Gel Ridge metallized at its top" +msgstr "於凝膠脊形上做金屬噴鍍" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:86 -msgctxt "Palette" -msgid "lightyellow (#FFFFE0)" -msgstr "淺黃 (#FFFFE0)" +#: ../share/filters/filters.svg.h:226 +msgid "Fat Oil" +msgstr "脂肪油" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:87 -msgctxt "Palette" -msgid "ivory (#FFFFF0)" -msgstr "象牙黃 (#FFFFF0)" +#: ../share/filters/filters.svg.h:228 +msgid "Fat oil with some adjustable turbulence" +msgstr "可調整性紊亂的脂肪油" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:88 -msgctxt "Palette" -msgid "olivedrab (#6B8E23)" -msgstr "橄欖黃 (#6B8E23)" +#: ../share/filters/filters.svg.h:230 +msgid "Black Hole" +msgstr "黑洞" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:89 -msgctxt "Palette" -msgid "yellowgreen (#9ACD32)" -msgstr "黃綠 (#9ACD32)" +#: ../share/filters/filters.svg.h:231 ../share/filters/filters.svg.h:275 +#: ../share/filters/filters.svg.h:279 ../share/filters/filters.svg.h:835 +#: ../share/filters/filters.svg.h:839 ../share/filters/filters.svg.h:843 +#: ../src/extension/internal/filter/morphology.h:76 +#: ../src/extension/internal/filter/morphology.h:203 +#: ../src/filter-enums.cpp:32 +msgid "Morphology" +msgstr "形態" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:90 -msgctxt "Palette" -msgid "darkolivegreen (#556B2F)" -msgstr "深橄欖綠 (#556B2F)" +#: ../share/filters/filters.svg.h:232 +msgid "Creates a black light inside and outside" +msgstr "於內部和外部建立黑色光照" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:91 -msgctxt "Palette" -msgid "greenyellow (#ADFF2F)" -msgstr "黃綠 (#ADFF2F)" +#: ../share/filters/filters.svg.h:234 +msgid "Cubes" +msgstr "方塊" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:92 -msgctxt "Palette" -msgid "chartreuse (#7FFF00)" -msgstr "查特酒綠 (#7FFF00)" +#: ../share/filters/filters.svg.h:236 +msgid "Scattered cubes; adjust the Morphology primitive to vary size" +msgstr "散佈的立方體;調整形態基元可產生不同尺寸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:93 -msgctxt "Palette" -msgid "lawngreen (#7CFC00)" -msgstr "草坪綠 (#7CFC00)" +#: ../share/filters/filters.svg.h:238 +msgid "Peel Off" +msgstr "脫落" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:94 -msgctxt "Palette" -msgid "darkseagreen (#8FBC8F)" -msgstr "深海綠 (#8FBC8F)" +#: ../share/filters/filters.svg.h:240 +msgid "Peeling painting on a wall" +msgstr "一道牆上剝落油漆" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:95 -msgctxt "Palette" -msgid "forestgreen (#228B22)" -msgstr "森林綠 (#228B22)" +#: ../share/filters/filters.svg.h:242 +msgid "Gold Splatter" +msgstr "黃金潑濺" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:96 -msgctxt "Palette" -msgid "limegreen (#32CD32)" -msgstr "萊姆綠 (#32CD32)" +#: ../share/filters/filters.svg.h:244 +msgid "Splattered cast metal, with golden highlights" +msgstr "潑濺的金屬鑄造,帶有黃金光澤" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:97 -msgctxt "Palette" -msgid "lightgreen (#90EE90)" -msgstr "淺綠 (#90EE90)" +#: ../share/filters/filters.svg.h:246 +msgid "Gold Paste" +msgstr "金箔黏貼" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:98 -msgctxt "Palette" -msgid "palegreen (#98FB98)" -msgstr "蒼綠 (#98FB98)" +#: ../share/filters/filters.svg.h:248 +msgid "Fat pasted cast metal, with golden highlights" +msgstr "貼滿鑄造金屬,帶有黃金亮光" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:99 -msgctxt "Palette" -msgid "darkgreen (#006400)" -msgstr "暗綠 (#006400)" +#: ../share/filters/filters.svg.h:250 +msgid "Crumpled Plastic" +msgstr "壓皺塑膠" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:100 -msgctxt "Palette" -msgid "green (#008000)" -msgstr "綠色 (#008000)" +#: ../share/filters/filters.svg.h:252 +msgid "Crumpled matte plastic, with melted edge" +msgstr "壓皺的霧面塑膠,帶有融化的邊緣" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:101 -msgctxt "Palette" -msgid "lime (#00FF00)" -msgstr "萊姆 (#00FF00)" +#: ../share/filters/filters.svg.h:254 +msgid "Enamel Jewelry" +msgstr "瓷釉珠寶" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:102 -msgctxt "Palette" -msgid "honeydew (#F0FFF0)" -msgstr "淺粉綠 (#F0FFF0)" +#: ../share/filters/filters.svg.h:256 +msgid "Slightly cracked enameled texture" +msgstr "輕微碎裂的瓷釉紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:103 -msgctxt "Palette" -msgid "seagreen (#2E8B57)" -msgstr "海綠 (#2E8B57)" +#: ../share/filters/filters.svg.h:258 +msgid "Rough Paper" +msgstr "粗糙紙張" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:104 -msgctxt "Palette" -msgid "mediumseagreen (#3CB371)" -msgstr "中海綠 (#3CB371)" +#: ../share/filters/filters.svg.h:260 +msgid "Aquarelle paper effect which can be used for pictures as for objects" +msgstr "水彩畫紙效果,可用於圖片 (將物件作為圖片)" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:105 -msgctxt "Palette" -msgid "springgreen (#00FF7F)" -msgstr "中亮綠 (#00FF7F)" +#: ../share/filters/filters.svg.h:262 +msgid "Rough and Glossy" +msgstr "粗糙和光滑" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:106 -msgctxt "Palette" -msgid "mintcream (#F5FFFA)" -msgstr "薄荷 (#F5FFFA)" +#: ../share/filters/filters.svg.h:264 +msgid "" +"Crumpled glossy paper effect which can be used for pictures as for objects" +msgstr "揉皺的銅版紙效果,可用於圖片 (將物件作為圖片)" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:107 -msgctxt "Palette" -msgid "mediumspringgreen (#00FA9A)" -msgstr "中春綠 (#00FA9A)" +#: ../share/filters/filters.svg.h:266 +msgid "In and Out" +msgstr "內外陰影" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:108 -msgctxt "Palette" -msgid "mediumaquamarine (#66CDAA)" -msgstr "中藍綠 (#66CDAA)" +#: ../share/filters/filters.svg.h:268 +msgid "Inner colorized shadow, outer black shadow" +msgstr "內部彩色陰影,外部黑色陰影" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:109 -msgctxt "Palette" -msgid "aquamarine (#7FFFD4)" -msgstr "藍綠 (#7FFFD4)" +#: ../share/filters/filters.svg.h:270 +msgid "Air Spray" +msgstr "氣槍噴灑" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:110 -msgctxt "Palette" -msgid "turquoise (#40E0D0)" -msgstr "寶石綠 (#40E0D0)" +#: ../share/filters/filters.svg.h:272 +msgid "Convert to small scattered particles with some thickness" +msgstr "依照厚度轉換成零散的小粒子" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:111 -msgctxt "Palette" -msgid "lightseagreen (#20B2AA)" -msgstr "淺海綠 (#20B2AA)" +#: ../share/filters/filters.svg.h:274 +msgid "Warm Inside" +msgstr "內部溫暖" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:112 -msgctxt "Palette" -msgid "mediumturquoise (#48D1CC)" -msgstr "中寶石綠 (#48D1CC)" +#: ../share/filters/filters.svg.h:276 +msgid "Blurred colorized contour, filled inside" +msgstr "模糊、著上色彩的輪廓,內部填滿" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:113 -msgctxt "Palette" -msgid "darkslategray (#2F4F4F)" -msgstr "深板岩灰 (#2F4F4F)" +#: ../share/filters/filters.svg.h:278 +msgid "Cool Outside" +msgstr "外部涼爽" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:114 -msgctxt "Palette" -msgid "paleturquoise (#AFEEEE)" -msgstr "蒼寶石綠 (#AFEEEE)" +#: ../share/filters/filters.svg.h:280 +msgid "Blurred colorized contour, empty inside" +msgstr "模糊、著上彩色的輪廓,內部清空" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:115 -msgctxt "Palette" -msgid "teal (#008080)" -msgstr "鴨綠 (#008080)" +#: ../share/filters/filters.svg.h:282 +msgid "Electronic Microscopy" +msgstr "電子顯微鏡" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:116 -msgctxt "Palette" -msgid "darkcyan (#008B8B)" -msgstr "暗青色 (#008B8B)" +#: ../share/filters/filters.svg.h:284 +msgid "" +"Bevel, crude light, discoloration and glow like in electronic microscopy" +msgstr "斜角、天然光線、變色和發光就像在電子顯微鏡裡" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:117 -msgctxt "Palette" -msgid "cyan (#00FFFF)" -msgstr "青色 (#00FFFF)" +#: ../share/filters/filters.svg.h:286 +msgid "Tartan" +msgstr "格紋" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:118 -msgctxt "Palette" -msgid "lightcyan (#E0FFFF)" -msgstr "淺青色 (#E0FFFF)" +#: ../share/filters/filters.svg.h:288 +msgid "Checkered tartan pattern" +msgstr "方格花紋圖樣" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:119 -msgctxt "Palette" -msgid "azure (#F0FFFF)" -msgstr "天青 (#F0FFFF)" +#: ../share/filters/filters.svg.h:290 +msgid "Shaken Liquid" +msgstr "晃動液體" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:120 -msgctxt "Palette" -msgid "darkturquoise (#00CED1)" -msgstr "深寶石綠 (#00CED1)" +#: ../share/filters/filters.svg.h:292 +msgid "Colorizable filling with flow inside like transparency" +msgstr "內部像透明物流動的可著色填塗" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:121 -msgctxt "Palette" -msgid "cadetblue (#5F9EA0)" -msgstr "軍校藍 (#5F9EA0)" +#: ../share/filters/filters.svg.h:294 +msgid "Soft Focus Lens" +msgstr "柔焦鏡頭" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:122 -msgctxt "Palette" -msgid "powderblue (#B0E0E6)" -msgstr "粉藍 (#B0E0E6)" +#: ../share/filters/filters.svg.h:296 +msgid "Glowing image content without blurring it" +msgstr "在不模糊化的情形下讓圖像內容覆上光暈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:123 -msgctxt "Palette" -msgid "lightblue (#ADD8E6)" -msgstr "淺藍 (#ADD8E6)" +#: ../share/filters/filters.svg.h:298 +msgid "Stained Glass" +msgstr "彩色玻璃" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:124 -msgctxt "Palette" -msgid "deepskyblue (#00BFFF)" -msgstr "深天空藍 (#00BFFF)" +#: ../share/filters/filters.svg.h:300 +msgid "Illuminated stained glass effect" +msgstr "被照亮的彩色玻璃效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:125 -msgctxt "Palette" -msgid "skyblue (#87CEEB)" -msgstr "天空藍 (#87CEEB)" +#: ../share/filters/filters.svg.h:302 +msgid "Dark Glass" +msgstr "暗色玻璃" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:126 -msgctxt "Palette" -msgid "lightskyblue (#87CEFA)" -msgstr "淺天空藍 (#87CEFA)" +#: ../share/filters/filters.svg.h:304 +msgid "Illuminated glass effect with light coming from beneath" +msgstr "光源來自下方,被照亮的玻璃效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:127 -msgctxt "Palette" -msgid "steelblue (#4682B4)" -msgstr "鐵藍 (#4682B4)" +#: ../share/filters/filters.svg.h:306 +msgid "HSL Bumps Alpha" +msgstr "透明 HSL 凹凸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:128 -msgctxt "Palette" -msgid "aliceblue (#F0F8FF)" -msgstr "誠實藍 (#F0F8FF)" +#: ../share/filters/filters.svg.h:308 +msgid "Same as HSL Bumps but with transparent highlights" +msgstr "同於 HSL 凹凸,但帶有透明反光" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:129 -msgctxt "Palette" -msgid "dodgerblue (#1E90FF)" -msgstr "柔和藍 (#1E90FF)" +#: ../share/filters/filters.svg.h:310 +msgid "Bubbly Bumps Alpha" +msgstr "透明發泡凹凸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:130 -msgctxt "Palette" -msgid "slategray (#708090)" -msgstr "板岩灰 (#708090)" +#: ../share/filters/filters.svg.h:312 +msgid "Same as Bubbly Bumps but with transparent highlights" +msgstr "同於發泡凹凸,但帶有透明反光" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:131 -msgctxt "Palette" -msgid "lightslategray (#778899)" -msgstr "淺板岩灰 (#778899)" +#: ../share/filters/filters.svg.h:314 ../share/filters/filters.svg.h:362 +msgid "Torn Edges" +msgstr "撕裂邊緣" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:132 -msgctxt "Palette" -msgid "lightsteelblue (#B0C4DE)" -msgstr "淺鐵藍 (#B0C4DE)" +#: ../share/filters/filters.svg.h:316 ../share/filters/filters.svg.h:364 +msgid "" +"Displace the outside of shapes and pictures without altering their content" +msgstr "移置形狀和圖片的外邊,不改變內容" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:133 -msgctxt "Palette" -msgid "cornflowerblue (#6495ED)" -msgstr "矢車菊藍 (#6495ED)" +#: ../share/filters/filters.svg.h:318 +msgid "Roughen Inside" +msgstr "內部粗糙化" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:134 -msgctxt "Palette" -msgid "royalblue (#4169E1)" -msgstr "皇家藍 (#4169E1)" +#: ../share/filters/filters.svg.h:320 +msgid "Roughen all inside shapes" +msgstr "內部的形狀全部粗糙化" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:135 -msgctxt "Palette" -msgid "midnightblue (#191970)" -msgstr "深夜藍 (#191970)" +#: ../share/filters/filters.svg.h:322 +msgid "Evanescent" +msgstr "逐漸消失" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:136 -msgctxt "Palette" -msgid "lavender (#E6E6FA)" -msgstr "淺紫 (#E6E6FA)" +#: ../share/filters/filters.svg.h:324 +msgid "" +"Blur the contents of objects, preserving the outline and adding progressive " +"transparency at edges" +msgstr "模糊物件的內容,保留輪廓並且於邊緣漸進地加上透明" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:137 -msgctxt "Palette" -msgid "navy (#000080)" -msgstr "海軍藍 (#000080)" +#: ../share/filters/filters.svg.h:326 +msgid "Chalk and Sponge" +msgstr "粉筆和海綿" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:138 -msgctxt "Palette" -msgid "darkblue (#00008B)" -msgstr "深藍 (#00008B)" +#: ../share/filters/filters.svg.h:328 +msgid "Low turbulence gives sponge look and high turbulence chalk" +msgstr "低紊亂可產生海綿外觀,而高紊亂則產生粉筆外觀" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:139 -msgctxt "Palette" -msgid "mediumblue (#0000CD)" -msgstr "中藍 (#0000CD)" +#: ../share/filters/filters.svg.h:330 +msgid "People" +msgstr "群眾" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:140 -msgctxt "Palette" -msgid "blue (#0000FF)" -msgstr "藍色 (#0000FF)" +#: ../share/filters/filters.svg.h:332 +msgid "Colorized blotches, like a crowd of people" +msgstr "彩色斑點,像一群人" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:141 -msgctxt "Palette" -msgid "ghostwhite (#F8F8FF)" -msgstr "幽靈白 (#F8F8FF)" +#: ../share/filters/filters.svg.h:334 +msgid "Scotland" +msgstr "蘇格蘭" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:142 -msgctxt "Palette" -msgid "slateblue (#6A5ACD)" -msgstr "板岩藍 (#6A5ACD)" +#: ../share/filters/filters.svg.h:336 +msgid "Colorized mountain tops out of the fog" +msgstr "穿出霧氣的彩色山峰群" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:143 -msgctxt "Palette" -msgid "darkslateblue (#483D8B)" -msgstr "暗板岩藍 (#483D8B)" +#: ../share/filters/filters.svg.h:338 +msgid "Garden of Delights" +msgstr "享樂花園" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:144 -msgctxt "Palette" -msgid "mediumslateblue (#7B68EE)" -msgstr "中板岩藍" +#: ../share/filters/filters.svg.h:340 +msgid "" +"Phantasmagorical turbulent wisps, like Hieronymus Bosch's Garden of Delights" +msgstr "變幻無常的紛亂幽光,像希羅尼穆斯 ‧ 波希的享樂花園" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:145 -msgctxt "Palette" -msgid "mediumpurple (#9370DB)" -msgstr "中紫色 (#9370DB)" +#: ../share/filters/filters.svg.h:342 +msgid "Cutout Glow" +msgstr "剪影光暈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:146 -msgctxt "Palette" -msgid "blueviolet (#8A2BE2)" -msgstr "藍紫色 (#8A2BE2)" +#: ../share/filters/filters.svg.h:344 +msgid "In and out glow with a possible offset and colorizable flood" +msgstr "帶有合理的位移和可著色填塗的內外光暈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:147 -msgctxt "Palette" -msgid "indigo (#4B0082)" -msgstr "靛青 (#4B0082)" +#: ../share/filters/filters.svg.h:346 +msgid "Dark Emboss" +msgstr "暗色浮雕" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:148 -msgctxt "Palette" -msgid "darkorchid (#9932CC)" -msgstr "暗淡紫 (#9932CC)" +#: ../share/filters/filters.svg.h:348 +msgid "Emboss effect : 3D relief where white is replaced by black" +msgstr "浮雕效果:立體浮雕,用黑色取代白色" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:149 -msgctxt "Palette" -msgid "darkviolet (#9400D3)" -msgstr "暗紫羅蘭 (#9400D3)" +#: ../share/filters/filters.svg.h:350 +msgid "Bubbly Bumps Matte" +msgstr "霧面發泡凹凸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:150 -msgctxt "Palette" -msgid "mediumorchid (#BA55D3)" -msgstr "中淡紫 (#BA55D3)" +#: ../share/filters/filters.svg.h:352 +msgid "Same as Bubbly Bumps but with a diffuse light instead of a specular one" +msgstr "同於發泡凹凸,但為擴散光線而非鏡面" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:151 -msgctxt "Palette" -msgid "thistle (#D8BFD8)" -msgstr "薊色 (#D8BFD8)" +#: ../share/filters/filters.svg.h:354 +msgid "Blotting Paper" +msgstr "吸墨紙" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:152 -msgctxt "Palette" -msgid "plum (#DDA0DD)" -msgstr "梅紅 (#DDA0DD)" +#: ../share/filters/filters.svg.h:356 +msgid "Inkblot on blotting paper" +msgstr "吸墨紙上的墨跡" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:153 -msgctxt "Palette" -msgid "violet (#EE82EE)" -msgstr "紫羅蘭 (#EE82EE)" +#: ../share/filters/filters.svg.h:358 +msgid "Wax Print" +msgstr "蠟染" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:154 -msgctxt "Palette" -msgid "purple (#800080)" -msgstr "紫色 (#800080)" +#: ../share/filters/filters.svg.h:360 +msgid "Wax print on tissue texture" +msgstr "棉紙上蠟染的紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:155 -msgctxt "Palette" -msgid "darkmagenta (#8B008B)" -msgstr "暗洋紅 (#8B008B)" +#: ../share/filters/filters.svg.h:366 +msgid "Watercolor" +msgstr "水彩" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:156 -msgctxt "Palette" -msgid "magenta (#FF00FF)" -msgstr "洋紅 (#FF00FF)" +#: ../share/filters/filters.svg.h:368 +msgid "Cloudy watercolor effect" +msgstr "多雲水彩效果" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:157 -msgctxt "Palette" -msgid "orchid (#DA70D6)" -msgstr "淡紫 (#DA70D6)" +#: ../share/filters/filters.svg.h:370 +msgid "Felt" +msgstr "毛氈" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:158 -msgctxt "Palette" -msgid "mediumvioletred (#C71585)" -msgstr "中紫羅蘭 (#C71585)" +#: ../share/filters/filters.svg.h:372 +msgid "" +"Felt like texture with color turbulence and slightly darker at the edges" +msgstr "帶有顏色紛亂和邊緣輕微變暗的類似毛氈紋理" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:159 -msgctxt "Palette" -msgid "deeppink (#FF1493)" -msgstr "深粉紅 (#FF1493)" +#: ../share/filters/filters.svg.h:374 +msgid "Ink Paint" +msgstr "墨水筆觸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:160 -msgctxt "Palette" -msgid "hotpink (#FF69B4)" -msgstr "亮粉紅 (#FF69B4)" +#: ../share/filters/filters.svg.h:376 +msgid "Ink paint on paper with some turbulent color shift" +msgstr "帶有一些紊亂色彩位移在紙張上的墨水筆觸" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:161 -msgctxt "Palette" -msgid "lavenderblush (#FFF0F5)" -msgstr "淡紫紅 (#FFF0F5)" +#: ../share/filters/filters.svg.h:378 +msgid "Tinted Rainbow" +msgstr "染色彩虹" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:162 -msgctxt "Palette" -msgid "palevioletred (#DB7093)" -msgstr "蒼紫羅蘭 (#DB7093)" +#: ../share/filters/filters.svg.h:380 +msgid "Smooth rainbow colors melted along the edges and colorizable" +msgstr "沿著邊緣和可著色的平滑彩虹色熔化" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:163 -msgctxt "Palette" -msgid "crimson (#DC143C)" -msgstr "緋紅 (#DC143C)" +#: ../share/filters/filters.svg.h:382 +msgid "Melted Rainbow" +msgstr "熔化彩虹" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:164 -msgctxt "Palette" -msgid "pink (#FFC0CB)" -msgstr "粉紅 (#FFC0CB)" +#: ../share/filters/filters.svg.h:384 +msgid "Smooth rainbow colors slightly melted along the edges" +msgstr "沿著邊緣的平滑彩虹色輕微熔化" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:165 -msgctxt "Palette" -msgid "lightpink (#FFB6C1)" -msgstr "淡粉紅 (#FFB6C1)" +#: ../share/filters/filters.svg.h:386 +msgid "Flex Metal" +msgstr "彎曲金屬" -#. Palette: ./svg.gpl -#: ../share/palettes/palettes.h:166 -msgctxt "Palette" -msgid "rebeccapurple (#663399)" -msgstr "" +#: ../share/filters/filters.svg.h:388 +msgid "Bright, polished uneven metal casting, colorizable" +msgstr "明亮、可著色、拋光的不均勻金屬鑄造" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:167 -msgctxt "Palette" -msgid "Butter 1" -msgstr "奶油 1" +#: ../share/filters/filters.svg.h:390 +msgid "Wavy Tartan" +msgstr "波狀格紋" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:168 -msgctxt "Palette" -msgid "Butter 2" -msgstr "奶油 2" +#: ../share/filters/filters.svg.h:392 +msgid "Tartan pattern with a wavy displacement and bevel around the edges" +msgstr "邊緣周圍產生波浪狀位移的格紋圖樣和斜角" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:169 -msgctxt "Palette" -msgid "Butter 3" -msgstr "奶油 3" +#: ../share/filters/filters.svg.h:394 +msgid "3D Marble" +msgstr "立體大理石" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:170 -msgctxt "Palette" -msgid "Chameleon 1" -msgstr "變色龍 1" +#: ../share/filters/filters.svg.h:396 +msgid "3D warped marble texture" +msgstr "立體、彎曲的大理石紋理" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:171 -msgctxt "Palette" -msgid "Chameleon 2" -msgstr "變色龍 2" +#: ../share/filters/filters.svg.h:398 +msgid "3D Wood" +msgstr "立體木頭" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:172 -msgctxt "Palette" -msgid "Chameleon 3" -msgstr "變色龍 3" +#: ../share/filters/filters.svg.h:400 +msgid "3D warped, fibered wood texture" +msgstr "立體、彎曲、纖維狀的木材紋理" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:173 -msgctxt "Palette" -msgid "Orange 1" -msgstr "橙橘 1" +#: ../share/filters/filters.svg.h:402 +msgid "3D Mother of Pearl" +msgstr "立體珍珠母" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:174 -msgctxt "Palette" -msgid "Orange 2" -msgstr "橙橘 2" +#: ../share/filters/filters.svg.h:404 +msgid "3D warped, iridescent pearly shell texture" +msgstr "立體、彎曲、彩虹色的珍珠殼紋理" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:175 -msgctxt "Palette" -msgid "Orange 3" -msgstr "橙橘 3" +#: ../share/filters/filters.svg.h:406 +msgid "Tiger Fur" +msgstr "虎皮" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:176 -msgctxt "Palette" -msgid "Sky Blue 1" -msgstr "天空藍 1" +#: ../share/filters/filters.svg.h:408 +msgid "Tiger fur pattern with folds and bevel around the edges" +msgstr "邊緣周圍有折疊和斜角的虎皮圖案" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:177 -msgctxt "Palette" -msgid "Sky Blue 2" -msgstr "天空藍 2" +#: ../share/filters/filters.svg.h:410 +msgid "Black Light" +msgstr "黑光" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:178 -msgctxt "Palette" -msgid "Sky Blue 3" -msgstr "天空藍 3" +#: ../share/filters/filters.svg.h:411 ../share/filters/filters.svg.h:575 +#: ../share/filters/filters.svg.h:587 ../share/filters/filters.svg.h:627 +#: ../share/filters/filters.svg.h:631 ../share/filters/filters.svg.h:819 +#: ../share/filters/filters.svg.h:827 ../share/filters/filters.svg.h:831 +#: ../src/extension/internal/bitmap/colorize.cpp:52 +#: ../src/extension/internal/filter/bumps.h:101 +#: ../src/extension/internal/filter/bumps.h:321 +#: ../src/extension/internal/filter/bumps.h:328 +#: ../src/extension/internal/filter/color.h:82 +#: ../src/extension/internal/filter/color.h:164 +#: ../src/extension/internal/filter/color.h:171 +#: ../src/extension/internal/filter/color.h:262 +#: ../src/extension/internal/filter/color.h:340 +#: ../src/extension/internal/filter/color.h:347 +#: ../src/extension/internal/filter/color.h:437 +#: ../src/extension/internal/filter/color.h:532 +#: ../src/extension/internal/filter/color.h:654 +#: ../src/extension/internal/filter/color.h:751 +#: ../src/extension/internal/filter/color.h:830 +#: ../src/extension/internal/filter/color.h:921 +#: ../src/extension/internal/filter/color.h:1049 +#: ../src/extension/internal/filter/color.h:1119 +#: ../src/extension/internal/filter/color.h:1212 +#: ../src/extension/internal/filter/color.h:1324 +#: ../src/extension/internal/filter/color.h:1429 +#: ../src/extension/internal/filter/color.h:1505 +#: ../src/extension/internal/filter/color.h:1609 +#: ../src/extension/internal/filter/color.h:1616 +#: ../src/extension/internal/filter/morphology.h:194 +#: ../src/extension/internal/filter/overlays.h:73 +#: ../src/extension/internal/filter/paint.h:99 +#: ../src/extension/internal/filter/paint.h:713 +#: ../src/extension/internal/filter/paint.h:717 +#: ../src/extension/internal/filter/shadows.h:73 +#: ../src/extension/internal/filter/transparency.h:345 +#: ../src/filter-enums.cpp:67 ../src/ui/dialog/clonetiler.cpp:832 +#: ../src/ui/dialog/clonetiler.cpp:983 +#: ../src/ui/dialog/document-properties.cpp:157 +#: ../share/extensions/color_HSL_adjust.inx.h:20 +#: ../share/extensions/color_blackandwhite.inx.h:3 +#: ../share/extensions/color_brighter.inx.h:2 +#: ../share/extensions/color_custom.inx.h:15 +#: ../share/extensions/color_darker.inx.h:2 +#: ../share/extensions/color_desaturate.inx.h:2 +#: ../share/extensions/color_grayscale.inx.h:2 +#: ../share/extensions/color_lesshue.inx.h:2 +#: ../share/extensions/color_lesslight.inx.h:2 +#: ../share/extensions/color_lesssaturation.inx.h:2 +#: ../share/extensions/color_morehue.inx.h:2 +#: ../share/extensions/color_morelight.inx.h:2 +#: ../share/extensions/color_moresaturation.inx.h:2 +#: ../share/extensions/color_negative.inx.h:2 +#: ../share/extensions/color_randomize.inx.h:8 +#: ../share/extensions/color_removeblue.inx.h:2 +#: ../share/extensions/color_removegreen.inx.h:2 +#: ../share/extensions/color_removered.inx.h:2 +#: ../share/extensions/color_replace.inx.h:6 +#: ../share/extensions/color_rgbbarrel.inx.h:2 +#: ../share/extensions/interp_att_g.inx.h:19 +msgid "Color" +msgstr "顏色" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:179 -msgctxt "Palette" -msgid "Plum 1" -msgstr "梅紅 1" +#: ../share/filters/filters.svg.h:412 +msgid "Light areas turn to black" +msgstr "光亮區域轉為黑色" + +#: ../share/filters/filters.svg.h:414 +msgid "Film Grain" +msgstr "底片顆粒" + +#: ../share/filters/filters.svg.h:416 +msgid "Adds a small scale graininess" +msgstr "加入小比例顆粒" + +#: ../share/filters/filters.svg.h:418 +msgid "Plaster Color" +msgstr "彩色石膏" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:180 -msgctxt "Palette" -msgid "Plum 2" -msgstr "梅紅 2" +#: ../share/filters/filters.svg.h:420 +msgid "Colored plaster emboss effect" +msgstr "彩色石膏浮雕效果" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:181 -msgctxt "Palette" -msgid "Plum 3" -msgstr "梅紅 3" +#: ../share/filters/filters.svg.h:422 +msgid "Velvet Bumps" +msgstr "柔軟凹凸" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:182 -msgctxt "Palette" -msgid "Chocolate 1" -msgstr "巧克力色 1" +#: ../share/filters/filters.svg.h:424 +msgid "Gives Smooth Bumps velvet like" +msgstr "產生像天鵝絨般柔軟的平滑凹凸" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:183 -msgctxt "Palette" -msgid "Chocolate 2" -msgstr "巧克力色 2" +#: ../share/filters/filters.svg.h:426 +msgid "Comics Cream" +msgstr "漫畫式奶油" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:184 -msgctxt "Palette" -msgid "Chocolate 3" -msgstr "巧克力色 3" +#: ../share/filters/filters.svg.h:427 ../share/filters/filters.svg.h:727 +#: ../share/filters/filters.svg.h:731 ../share/filters/filters.svg.h:735 +#: ../share/filters/filters.svg.h:739 ../share/filters/filters.svg.h:743 +#: ../share/filters/filters.svg.h:747 ../share/filters/filters.svg.h:751 +#: ../share/filters/filters.svg.h:755 ../share/filters/filters.svg.h:759 +#: ../share/filters/filters.svg.h:763 ../share/filters/filters.svg.h:767 +#: ../share/filters/filters.svg.h:771 ../share/filters/filters.svg.h:775 +#: ../share/filters/filters.svg.h:779 ../share/filters/filters.svg.h:783 +#: ../share/filters/filters.svg.h:787 ../share/filters/filters.svg.h:791 +#: ../share/filters/filters.svg.h:795 +msgid "Non realistic 3D shaders" +msgstr "非逼真立體材質" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:185 -msgctxt "Palette" -msgid "Scarlet Red 1" -msgstr "鮮紅 1" +#: ../share/filters/filters.svg.h:428 +msgid "Comics shader with creamy waves transparency" +msgstr "奶油狀波浪透明物的漫畫材質" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:186 -msgctxt "Palette" -msgid "Scarlet Red 2" -msgstr "鮮紅 2" +#: ../share/filters/filters.svg.h:430 +msgid "Chewing Gum" +msgstr "口香糖" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:187 -msgctxt "Palette" -msgid "Scarlet Red 3" -msgstr "鮮紅 3" +#: ../share/filters/filters.svg.h:432 +msgid "" +"Creates colorizable blotches which smoothly flow over the edges of the lines " +"at their crossings" +msgstr "於線條的交叉點上建立柔順流過其邊緣的可著色斑點" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:188 -#, fuzzy -msgctxt "Palette" -msgid "Snowy White" -msgstr "白色" +#: ../share/filters/filters.svg.h:434 +msgid "Dark And Glow" +msgstr "陰暗與發光" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:189 -msgctxt "Palette" -msgid "Aluminium 1" -msgstr "鋁 1" +#: ../share/filters/filters.svg.h:436 +msgid "Darkens the edge with an inner blur and adds a flexible glow" +msgstr "內部模糊且帶有柔和光暈的加深邊緣" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:190 -msgctxt "Palette" -msgid "Aluminium 2" -msgstr "鋁 2" +#: ../share/filters/filters.svg.h:438 +msgid "Warped Rainbow" +msgstr "環繞彩虹" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:191 -msgctxt "Palette" -msgid "Aluminium 3" -msgstr "鋁 3" +#: ../share/filters/filters.svg.h:440 +msgid "Smooth rainbow colors warped along the edges and colorizable" +msgstr "沿著邊緣環繞平滑彩虹顏色" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:192 -msgctxt "Palette" -msgid "Aluminium 4" -msgstr "鋁 4" +#: ../share/filters/filters.svg.h:442 +msgid "Rough and Dilate" +msgstr "粗糙和擴大" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:193 -msgctxt "Palette" -msgid "Aluminium 5" -msgstr "鋁 5" +#: ../share/filters/filters.svg.h:444 +msgid "Create a turbulent contour around" +msgstr "於周圍製作紛亂的輪廓" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:194 -msgctxt "Palette" -msgid "Aluminium 6" -msgstr "鋁 6" +#: ../share/filters/filters.svg.h:446 +msgid "Old Postcard" +msgstr "舊明信片" -#. Palette: ./Tango-Palette.gpl -#: ../share/palettes/palettes.h:195 -#, fuzzy -msgctxt "Palette" -msgid "Jet Black" -msgstr "黑色" +#: ../share/filters/filters.svg.h:448 +msgid "Slightly posterize and draw edges like on old printed postcards" +msgstr "輕微色調分離並繪製邊框就像舊式印刷的明信片一樣" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:2 -msgctxt "Symbol" -msgid "AIGA Symbol Signs" -msgstr "" +#: ../share/filters/filters.svg.h:450 +msgid "Dots Transparency" +msgstr "透明圓點" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4 -msgctxt "Symbol" -msgid "Telephone" -msgstr "" +#: ../share/filters/filters.svg.h:452 +msgid "Gives a pointillist HSL sensitive transparency" +msgstr "產生像 HSL 感光透明的點描畫" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:5 ../share/symbols/symbols.h:6 -msgctxt "Symbol" -msgid "Mail" -msgstr "" +#: ../share/filters/filters.svg.h:454 +msgid "Canvas Transparency" +msgstr "透明畫布" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:7 ../share/symbols/symbols.h:8 -#, fuzzy -msgctxt "Symbol" -msgid "Currency Exchange" -msgstr "目前圖層" +#: ../share/filters/filters.svg.h:456 +msgid "Gives a canvas like HSL sensitive transparency." +msgstr "產生像 HSL 感光透明的畫布。" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:9 ../share/symbols/symbols.h:10 -msgctxt "Symbol" -msgid "Currency Exchange - Euro" -msgstr "" +#: ../share/filters/filters.svg.h:458 +msgid "Smear Transparency" +msgstr "透明塗抹" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:11 ../share/symbols/symbols.h:12 -msgctxt "Symbol" -msgid "Cashier" -msgstr "" +#: ../share/filters/filters.svg.h:460 +msgid "" +"Paint objects with a transparent turbulence which turns around color edges" +msgstr "用透明的紊亂來塗繪物件,扭轉彩色邊緣" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:13 ../share/symbols/symbols.h:14 -#, fuzzy -msgctxt "Symbol" -msgid "First Aid" -msgstr "第一頁投影片:" +#: ../share/filters/filters.svg.h:462 +msgid "Thick Paint" +msgstr "厚塗料" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:15 ../share/symbols/symbols.h:16 -#, fuzzy -msgctxt "Symbol" -msgid "Lost and Found" -msgstr "找不到" +#: ../share/filters/filters.svg.h:464 +msgid "Thick painting effect with turbulence" +msgstr "伴隨紊亂的厚顏料塗繪效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:17 ../share/symbols/symbols.h:18 -msgctxt "Symbol" -msgid "Coat Check" -msgstr "" +#: ../share/filters/filters.svg.h:466 +msgid "Burst" +msgstr "脹破" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:19 ../share/symbols/symbols.h:20 -msgctxt "Symbol" -msgid "Baggage Lockers" -msgstr "" +#: ../share/filters/filters.svg.h:468 +msgid "Burst balloon texture crumpled and with holes" +msgstr "氣球脹破紋理,被揉皺且帶有破洞" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:21 ../share/symbols/symbols.h:22 -msgctxt "Symbol" -msgid "Escalator" -msgstr "" +#: ../share/filters/filters.svg.h:470 +msgid "Embossed Leather" +msgstr "壓紋皮革" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:23 ../share/symbols/symbols.h:24 -msgctxt "Symbol" -msgid "Escalator Down" -msgstr "" +#: ../share/filters/filters.svg.h:472 +msgid "" +"Combine a HSL edges detection bump with a leathery or woody and colorizable " +"texture" +msgstr "皮革或木頭結合 HSL 邊緣偵測凹凸效果之可著色紋理" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:25 ../share/symbols/symbols.h:26 -msgctxt "Symbol" -msgid "Escalator Up" -msgstr "" +#: ../share/filters/filters.svg.h:474 +msgid "Carnaval" +msgstr "狂歡節" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:27 ../share/symbols/symbols.h:28 -msgctxt "Symbol" -msgid "Stairs" -msgstr "" +#: ../share/filters/filters.svg.h:476 +msgid "White splotches evocating carnaval masks" +msgstr "白色斑點喚起狂歡節面具" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:29 ../share/symbols/symbols.h:30 -msgctxt "Symbol" -msgid "Stairs Down" -msgstr "" +#: ../share/filters/filters.svg.h:478 +msgid "Plastify" +msgstr "塑膠化" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:31 ../share/symbols/symbols.h:32 -msgctxt "Symbol" -msgid "Stairs Up" -msgstr "" +#: ../share/filters/filters.svg.h:480 +msgid "" +"HSL edges detection bump with a wavy reflective surface effect and variable " +"crumple" +msgstr "波狀反射表面效果和多變壓皺結合 HSL 邊緣偵測凹凸效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:33 ../share/symbols/symbols.h:34 -#, fuzzy -msgctxt "Symbol" -msgid "Elevator" -msgstr "仰角" +#: ../share/filters/filters.svg.h:482 +msgid "Plaster" +msgstr "石膏" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:35 ../share/symbols/symbols.h:36 -msgctxt "Symbol" -msgid "Toilets - Men" -msgstr "" +#: ../share/filters/filters.svg.h:484 +msgid "" +"Combine a HSL edges detection bump with a matte and crumpled surface effect" +msgstr "霧面、壓皺的表面結合 HSL 邊緣偵測凹凸效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:37 ../share/symbols/symbols.h:38 -msgctxt "Symbol" -msgid "Toilets - Women" -msgstr "" +#: ../share/filters/filters.svg.h:486 +msgid "Rough Transparency" +msgstr "透明粗糙" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:39 ../share/symbols/symbols.h:40 -msgctxt "Symbol" -msgid "Toilets" -msgstr "" +#: ../share/filters/filters.svg.h:488 +msgid "Adds a turbulent transparency which displaces pixels at the same time" +msgstr "取代像素的同時加入紊亂透明" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:41 ../share/symbols/symbols.h:42 -#: ../share/symbols/symbols.h:227 -msgctxt "Symbol" -msgid "Nursery" -msgstr "" +#: ../share/filters/filters.svg.h:490 +msgid "Gouache" +msgstr "不透明水彩" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:43 ../share/symbols/symbols.h:44 -msgctxt "Symbol" -msgid "Drinking Fountain" -msgstr "" +#: ../share/filters/filters.svg.h:492 +msgid "Partly opaque water color effect with bleed" +msgstr "有溢出情形的局部性不透明水彩效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:45 ../share/symbols/symbols.h:46 -#, fuzzy -msgctxt "Symbol" -msgid "Waiting Room" -msgstr "寫入階段" +#: ../share/filters/filters.svg.h:494 +msgid "Alpha Engraving" +msgstr "透明版畫" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:47 ../share/symbols/symbols.h:48 -#: ../share/symbols/symbols.h:308 -#, fuzzy -msgctxt "Symbol" -msgid "Information" -msgstr "資訊" +#: ../share/filters/filters.svg.h:496 +msgid "Gives a transparent engraving effect with rough line and filling" +msgstr "產生帶有粗糙線條和填充的透明版畫效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:49 ../share/symbols/symbols.h:50 -#, fuzzy -msgctxt "Symbol" -msgid "Hotel Information" -msgstr "頁面資訊" +#: ../share/filters/filters.svg.h:498 +msgid "Alpha Draw Liquid" +msgstr "透明繪畫液體" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:51 ../share/symbols/symbols.h:52 -#, fuzzy -msgctxt "Symbol" -msgid "Air Transportation" -msgstr "變形" +#: ../share/filters/filters.svg.h:500 +msgid "Gives a transparent fluid drawing effect with rough line and filling" +msgstr "產生帶有粗糙線條和填充的透明流體繪畫效果" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:53 ../share/symbols/symbols.h:54 -#: ../share/symbols/symbols.h:318 -msgctxt "Symbol" -msgid "Heliport" -msgstr "" +#: ../share/filters/filters.svg.h:502 +msgid "Liquid Drawing" +msgstr "液體繪畫" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:55 ../share/symbols/symbols.h:56 -#: ../share/symbols/symbols.h:314 -msgctxt "Symbol" -msgid "Taxi" -msgstr "" +#: ../share/filters/filters.svg.h:504 +msgid "Gives a fluid and wavy expressionist drawing effect to images" +msgstr "使圖像產生液體和波浪的抽象主義繪畫效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:57 ../share/symbols/symbols.h:58 -#, fuzzy -msgctxt "Symbol" -msgid "Bus" -msgstr "模糊" +#: ../share/filters/filters.svg.h:506 +msgid "Marbled Ink" +msgstr "大理石油墨" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:59 ../share/symbols/symbols.h:60 -#, fuzzy -msgctxt "Symbol" -msgid "Ground Transportation" -msgstr "變形" +#: ../share/filters/filters.svg.h:508 +msgid "Marbled transparency effect which conforms to image detected edges" +msgstr "按照圖像偵測邊緣產生的大理石透明效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:61 ../share/symbols/symbols.h:62 -#, fuzzy -msgctxt "Symbol" -msgid "Rail Transportation" -msgstr "變形" +#: ../share/filters/filters.svg.h:510 +msgid "Thick Acrylic" +msgstr "厚壓克力顏料" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:63 ../share/symbols/symbols.h:64 -#, fuzzy -msgctxt "Symbol" -msgid "Water Transportation" -msgstr "變形" +#: ../share/filters/filters.svg.h:512 +msgid "Thick acrylic paint texture with high texture depth" +msgstr "高紋理深度的厚壓克力顏料" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:65 ../share/symbols/symbols.h:66 -#: ../share/symbols/symbols.h:316 -msgctxt "Symbol" -msgid "Car Rental" -msgstr "" +#: ../share/filters/filters.svg.h:514 +msgid "Alpha Engraving B" +msgstr "透明版畫 B" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:67 ../share/symbols/symbols.h:68 -#: ../share/symbols/symbols.h:228 -msgctxt "Symbol" -msgid "Restaurant" -msgstr "" +#: ../share/filters/filters.svg.h:516 +msgid "" +"Gives a controllable roughness engraving effect to bitmaps and materials" +msgstr "使點陣圖和材料產生可著色的粗糙版畫效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:69 ../share/symbols/symbols.h:70 -msgctxt "Symbol" -msgid "Coffeeshop" -msgstr "" +#: ../share/filters/filters.svg.h:518 +msgid "Lapping" +msgstr "研磨" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:71 ../share/symbols/symbols.h:72 -#, fuzzy -msgctxt "Symbol" -msgid "Bar" -msgstr "樹皮" +#: ../share/filters/filters.svg.h:520 +msgid "Something like a water noise" +msgstr "有點像水雜訊" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:73 ../share/symbols/symbols.h:74 -msgctxt "Symbol" -msgid "Shops" -msgstr "" +#: ../share/filters/filters.svg.h:522 +msgid "Monochrome Transparency" +msgstr "單色透明" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:75 ../share/symbols/symbols.h:76 -msgctxt "Symbol" -msgid "Barber Shop - Beauty Salon" -msgstr "" +#: ../share/filters/filters.svg.h:523 ../share/filters/filters.svg.h:527 +#: ../share/filters/filters.svg.h:647 ../share/filters/filters.svg.h:651 +#: ../share/filters/filters.svg.h:823 +#: ../src/extension/internal/filter/transparency.h:70 +#: ../src/extension/internal/filter/transparency.h:141 +#: ../src/extension/internal/filter/transparency.h:215 +#: ../src/extension/internal/filter/transparency.h:288 +#: ../src/extension/internal/filter/transparency.h:350 +msgid "Fill and Transparency" +msgstr "填充和透明度" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:77 ../share/symbols/symbols.h:78 -msgctxt "Symbol" -msgid "Barber Shop" -msgstr "" +#: ../share/filters/filters.svg.h:524 +msgid "Convert to a colorizable transparent positive or negative" +msgstr "轉成可著色的透明正相或反相" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:79 ../share/symbols/symbols.h:80 -msgctxt "Symbol" -msgid "Beauty Salon" -msgstr "" +#: ../share/filters/filters.svg.h:526 +msgid "Saturation Map" +msgstr "飽和度分佈圖" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:81 ../share/symbols/symbols.h:82 -msgctxt "Symbol" -msgid "Ticket Purchase" -msgstr "" +#: ../share/filters/filters.svg.h:528 +msgid "" +"Creates an approximative semi-transparent and colorizable image of the " +"saturation levels" +msgstr "建立一個近似半透明且可著色的飽和度色階圖像" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:83 ../share/symbols/symbols.h:84 -msgctxt "Symbol" -msgid "Baggage Check In" -msgstr "" +#: ../share/filters/filters.svg.h:530 +msgid "Riddled" +msgstr "佈滿" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:85 ../share/symbols/symbols.h:86 -msgctxt "Symbol" -msgid "Baggage Claim" -msgstr "" +#: ../share/filters/filters.svg.h:532 +msgid "Riddle the surface and add bump to images" +msgstr "佈滿表面且將凹凸加入圖像" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:87 ../share/symbols/symbols.h:88 -#, fuzzy -msgctxt "Symbol" -msgid "Customs" -msgstr "自訂" +#: ../share/filters/filters.svg.h:534 +msgid "Wrinkled Varnish" +msgstr "皺紋亮光漆" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:89 ../share/symbols/symbols.h:90 -#, fuzzy -msgctxt "Symbol" -msgid "Immigration" -msgstr "設定檔" +#: ../share/filters/filters.svg.h:536 +msgid "Thick glossy and translucent paint texture with high depth" +msgstr "帶有高深度的光滑且稀疏之厚顏料紋理" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:91 ../share/symbols/symbols.h:92 -#, fuzzy -msgctxt "Symbol" -msgid "Departing Flights" -msgstr "目標高度" +#: ../share/filters/filters.svg.h:538 +msgid "Canvas Bumps" +msgstr "畫布凹凸" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:93 ../share/symbols/symbols.h:94 -#, fuzzy -msgctxt "Symbol" -msgid "Arriving Flights" -msgstr "顆粒亮度:" +#: ../share/filters/filters.svg.h:540 +msgid "Canvas texture with an HSL sensitive height map" +msgstr "帶有 HSL 感光高度貼圖的畫布紋理" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:95 ../share/symbols/symbols.h:96 -msgctxt "Symbol" -msgid "Smoking" -msgstr "" +#: ../share/filters/filters.svg.h:542 +msgid "Canvas Bumps Matte" +msgstr "霧面畫布凹凸" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:97 ../share/symbols/symbols.h:98 -msgctxt "Symbol" -msgid "No Smoking" -msgstr "" +#: ../share/filters/filters.svg.h:544 +msgid "Same as Canvas Bumps but with a diffuse light instead of a specular one" +msgstr "同於畫布凹凸,但為擴散光線而非鏡面" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:99 ../share/symbols/symbols.h:100 -#: ../share/symbols/symbols.h:325 -msgctxt "Symbol" -msgid "Parking" -msgstr "" +#: ../share/filters/filters.svg.h:546 +msgid "Canvas Bumps Alpha" +msgstr "透明畫布凹凸" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:101 ../share/symbols/symbols.h:102 -msgctxt "Symbol" -msgid "No Parking" -msgstr "" +#: ../share/filters/filters.svg.h:548 +msgid "Same as Canvas Bumps but with transparent highlights" +msgstr "同於畫布凹凸,但帶有透明反光" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:103 ../share/symbols/symbols.h:104 -msgctxt "Symbol" -msgid "No Dogs" -msgstr "" +#: ../share/filters/filters.svg.h:550 +msgid "Bright Metal" +msgstr "閃亮金屬" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:105 ../share/symbols/symbols.h:106 -msgctxt "Symbol" -msgid "No Entry" -msgstr "" +#: ../share/filters/filters.svg.h:552 +msgid "Bright metallic effect for any color" +msgstr "任何顏色的閃亮金屬效果" -#. Symbols: ./AigaSymbols.svg -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:107 ../share/symbols/symbols.h:108 -#: ../share/symbols/symbols.h:218 -msgctxt "Symbol" -msgid "Exit" -msgstr "" +#: ../share/filters/filters.svg.h:554 +msgid "Deep Colors Plastic" +msgstr "深色塑膠" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:109 ../share/symbols/symbols.h:110 -msgctxt "Symbol" -msgid "Fire Extinguisher" -msgstr "" +#: ../share/filters/filters.svg.h:556 +msgid "Transparent plastic with deep colors" +msgstr "深色的透明塑膠" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:111 ../share/symbols/symbols.h:112 -#, fuzzy -msgctxt "Symbol" -msgid "Right Arrow" -msgstr "右邊" +#: ../share/filters/filters.svg.h:558 +msgid "Melted Jelly Matte" +msgstr "霧面融化果凍" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:113 ../share/symbols/symbols.h:114 -msgctxt "Symbol" -msgid "Forward and Right Arrow" -msgstr "" +#: ../share/filters/filters.svg.h:560 +msgid "Matte bevel with blurred edges" +msgstr "帶有邊緣模糊的霧面斜角" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:115 ../share/symbols/symbols.h:116 -#, fuzzy -msgctxt "Symbol" -msgid "Up Arrow" -msgstr "箭頭符號" +#: ../share/filters/filters.svg.h:562 +msgid "Melted Jelly" +msgstr "融化果凍" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:117 ../share/symbols/symbols.h:118 -msgctxt "Symbol" -msgid "Forward and Left Arrow" -msgstr "" +#: ../share/filters/filters.svg.h:564 +msgid "Glossy bevel with blurred edges" +msgstr "帶有捲邊的光滑斜角" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:119 ../share/symbols/symbols.h:120 -#, fuzzy -msgctxt "Symbol" -msgid "Left Arrow" -msgstr "箭頭符號" +#: ../share/filters/filters.svg.h:566 +msgid "Combined Lighting" +msgstr "混合光照" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:121 ../share/symbols/symbols.h:122 -msgctxt "Symbol" -msgid "Left and Down Arrow" -msgstr "" +#: ../share/filters/filters.svg.h:568 +#: ../src/extension/internal/filter/bevels.h:231 +msgid "Basic specular bevel to use for building textures" +msgstr "基本的鏡面斜角用於建築物紋理" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:123 ../share/symbols/symbols.h:124 -#, fuzzy -msgctxt "Symbol" -msgid "Down Arrow" -msgstr "箭頭符號" +#: ../share/filters/filters.svg.h:570 +msgid "Tinfoil" +msgstr "錫箔" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:125 ../share/symbols/symbols.h:126 -msgctxt "Symbol" -msgid "Right and Down Arrow" -msgstr "" +#: ../share/filters/filters.svg.h:572 +msgid "Metallic foil effect combining two lighting types and variable crumple" +msgstr "混合兩種光照類型和多變壓皺的金屬錫效果" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:127 ../share/symbols/symbols.h:128 -msgctxt "Symbol" -msgid "NPS Wheelchair Accessible - 1996" -msgstr "" +#: ../share/filters/filters.svg.h:574 +msgid "Soft Colors" +msgstr "柔和色彩" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:129 ../share/symbols/symbols.h:130 -msgctxt "Symbol" -msgid "NPS Wheelchair Accessible" -msgstr "" +#: ../share/filters/filters.svg.h:576 +msgid "Adds a colorizable edges glow inside objects and pictures" +msgstr "於物件和圖片內部加入可著色的邊緣光暈" -#. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:131 ../share/symbols/symbols.h:132 -msgctxt "Symbol" -msgid "New Wheelchair Accessible" -msgstr "" +#: ../share/filters/filters.svg.h:578 +msgid "Relief Print" +msgstr "凸版版畫" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:133 -msgctxt "Symbol" -msgid "Word Balloons" -msgstr "" +#: ../share/filters/filters.svg.h:580 +msgid "Bumps effect with a bevel, color flood and complex lighting" +msgstr "帶有斜角、填滿顏色和複雜光照的凹凸效果" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:134 -msgctxt "Symbol" -msgid "Thought Balloon" -msgstr "" +#: ../share/filters/filters.svg.h:582 +msgid "Growing Cells" +msgstr "成長中的細胞" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:135 -msgctxt "Symbol" -msgid "Dream Speaking" -msgstr "" +#: ../share/filters/filters.svg.h:584 +msgid "Random rounded living cells like fill" +msgstr "隨機圓形的活細胞外觀填充" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:136 -#, fuzzy -msgctxt "Symbol" -msgid "Rounded Balloon" -msgstr "圓角接合" +#: ../share/filters/filters.svg.h:586 +msgid "Fluorescence" +msgstr "螢光" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:137 -#, fuzzy -msgctxt "Symbol" -msgid "Squared Balloon" -msgstr "方端點" +#: ../share/filters/filters.svg.h:588 +msgid "Oversaturate colors which can be fluorescent in real world" +msgstr "讓色彩過飽和可變成真實世界中的螢光物質" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:138 -msgctxt "Symbol" -msgid "Over the Phone" -msgstr "" +#: ../share/filters/filters.svg.h:590 +msgid "Pixellize" +msgstr "像素化" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:139 -msgctxt "Symbol" -msgid "Hip Balloon" -msgstr "" +#: ../share/filters/filters.svg.h:591 +msgid "Pixel tools" +msgstr "像素工具" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:140 -#, fuzzy -msgctxt "Symbol" -msgid "Circle Balloon" -msgstr "圓形" +#: ../share/filters/filters.svg.h:592 +msgid "Reduce or remove antialiasing around shapes" +msgstr "形狀周圍減少或移除反鋸齒" -#. Symbols: ./BalloonSymbols.svg -#: ../share/symbols/symbols.h:141 -msgctxt "Symbol" -msgid "Exclaim Balloon" -msgstr "" +#: ../share/filters/filters.svg.h:594 +msgid "Basic Diffuse Bump" +msgstr "基本漫射凹凸" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:142 -msgctxt "Symbol" -msgid "Flow Chart Shapes" -msgstr "" +#: ../share/filters/filters.svg.h:596 +msgid "Matte emboss effect" +msgstr "霧面浮雕效果" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:143 -#, fuzzy -msgctxt "Symbol" -msgid "Process" -msgstr "後處理:" +#: ../share/filters/filters.svg.h:598 +msgid "Basic Specular Bump" +msgstr "基本反射凹凸" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:144 -#, fuzzy -msgctxt "Symbol" -msgid "Input/Output" -msgstr "輸入 / 輸出" +#: ../share/filters/filters.svg.h:600 +msgid "Specular emboss effect" +msgstr "反光浮雕效果" + +#: ../share/filters/filters.svg.h:602 +msgid "Basic Two Lights Bump" +msgstr "基本雙光源凹凸" + +#: ../share/filters/filters.svg.h:604 +msgid "Two types of lighting emboss effect" +msgstr "兩種類型照明浮雕效果" + +#: ../share/filters/filters.svg.h:606 +msgid "Linen Canvas" +msgstr "亞麻畫布" + +#: ../share/filters/filters.svg.h:608 ../share/filters/filters.svg.h:616 +msgid "Painting canvas emboss effect" +msgstr "油畫畫布浮雕效果" + +#: ../share/filters/filters.svg.h:610 +msgid "Plasticine" +msgstr "塑像黏土" + +#: ../share/filters/filters.svg.h:612 +msgid "Matte modeling paste emboss effect" +msgstr "霧面雕像塑造黏土浮雕效果" + +#: ../share/filters/filters.svg.h:614 +msgid "Rough Canvas Painting" +msgstr "粗糙油畫畫布" + +#: ../share/filters/filters.svg.h:618 +msgid "Paper Bump" +msgstr "紙張凹凸" + +#: ../share/filters/filters.svg.h:620 +msgid "Paper like emboss effect" +msgstr "紙張外觀浮雕效果" + +#: ../share/filters/filters.svg.h:622 +msgid "Jelly Bump" +msgstr "果凍凹凸" + +#: ../share/filters/filters.svg.h:624 +msgid "Convert pictures to thick jelly" +msgstr "將影像轉變成粗厚果凍" + +#: ../share/filters/filters.svg.h:626 +msgid "Blend Opposites" +msgstr "相反混合" + +#: ../share/filters/filters.svg.h:628 +msgid "Blend an image with its hue opposite" +msgstr "用本身的相反色相混合影像" + +#: ../share/filters/filters.svg.h:630 +msgid "Hue to White" +msgstr "色相轉成白色" + +#: ../share/filters/filters.svg.h:632 +msgid "Fades hue progressively to white" +msgstr "將色相漸漸淡化成白色" + +#: ../share/filters/filters.svg.h:634 +#: ../src/extension/internal/bitmap/swirl.cpp:37 +msgid "Swirl" +msgstr "螺旋" + +#: ../share/filters/filters.svg.h:636 +msgid "" +"Paint objects with a transparent turbulence which wraps around color edges" +msgstr "用透明的紊亂來塗繪物件,顏色邊緣周圍會扭轉" + +#: ../share/filters/filters.svg.h:638 +msgid "Pointillism" +msgstr "點描派" + +#: ../share/filters/filters.svg.h:640 +msgid "Gives a turbulent pointillist HSL sensitive transparency" +msgstr "產生紊亂點描風格的 HSL 感光透明" + +#: ../share/filters/filters.svg.h:642 +msgid "Silhouette Marbled" +msgstr "大理石剪影" + +#: ../share/filters/filters.svg.h:644 +msgid "Basic noise transparency texture" +msgstr "基本雜訊透明紋理" + +#: ../share/filters/filters.svg.h:646 +msgid "Fill Background" +msgstr "填入背景" + +#: ../share/filters/filters.svg.h:648 +msgid "Adds a colorizable opaque background" +msgstr "加入彩色不透明背景" + +#: ../share/filters/filters.svg.h:650 +msgid "Flatten Transparency" +msgstr "平面化透明度" + +#: ../share/filters/filters.svg.h:652 +msgid "Adds a white opaque background" +msgstr "加入白色不透明背景" + +#: ../share/filters/filters.svg.h:654 +msgid "Blur Double" +msgstr "雙倍模糊" + +#: ../share/filters/filters.svg.h:656 +msgid "" +"Overlays two copies with different blur amounts and modifiable blend and " +"composite" +msgstr "用不同模糊程度和可修改的混合及合成重疊兩個複製物件" + +#: ../share/filters/filters.svg.h:658 +msgid "Image Drawing Basic" +msgstr "基本影像繪畫" + +#: ../share/filters/filters.svg.h:660 +msgid "Enhance and redraw color edges in 1 bit black and white" +msgstr "加強並用 1 位元黑白重繪色彩邊緣" + +#: ../share/filters/filters.svg.h:662 +msgid "Poster Draw" +msgstr "海報繪畫" + +#: ../share/filters/filters.svg.h:664 +msgid "Enhance and redraw edges around posterized areas" +msgstr "加強和重繪海報化區域的邊緣" + +#: ../share/filters/filters.svg.h:666 +msgid "Cross Noise Poster" +msgstr "交疊雜訊海報" + +#: ../share/filters/filters.svg.h:668 +msgid "Overlay with a small scale screen like noise" +msgstr "用小尺寸縮放螢幕外觀的雜訊覆蓋" + +#: ../share/filters/filters.svg.h:670 +msgid "Cross Noise Poster B" +msgstr "交疊雜訊海報 B" + +#: ../share/filters/filters.svg.h:672 +msgid "Adds a small scale screen like noise locally" +msgstr "加入類似局部性雜訊的小比例濾色" + +#: ../share/filters/filters.svg.h:674 +msgid "Poster Color Fun" +msgstr "彩繪海報" + +#: ../share/filters/filters.svg.h:678 +msgid "Poster Rough" +msgstr "粗糙海報" + +#: ../share/filters/filters.svg.h:680 +msgid "Adds roughness to one of the two channels of the Poster paint filter" +msgstr "加入粗糙度到海報塗繪濾鏡兩個色版的其中一個" + +#: ../share/filters/filters.svg.h:682 +msgid "Alpha Monochrome Cracked" +msgstr "碎裂的透明單色" + +#: ../share/filters/filters.svg.h:684 ../share/filters/filters.svg.h:688 +#: ../share/filters/filters.svg.h:692 ../share/filters/filters.svg.h:704 +#: ../share/filters/filters.svg.h:708 ../share/filters/filters.svg.h:712 +msgid "Basic noise fill texture; adjust color in Flood" +msgstr "基本雜訊填充紋理;用填滿來調整顏色" + +#: ../share/filters/filters.svg.h:686 +msgid "Alpha Turbulent" +msgstr "透明紊亂" + +#: ../share/filters/filters.svg.h:690 +msgid "Colorize Turbulent" +msgstr "彩色紊亂" + +#: ../share/filters/filters.svg.h:694 +msgid "Cross Noise B" +msgstr "交疊雜訊 B" + +#: ../share/filters/filters.svg.h:696 +msgid "Adds a small scale crossy graininess" +msgstr "加入小比例的交疊式顆粒" + +#: ../share/filters/filters.svg.h:698 +msgid "Cross Noise" +msgstr "交疊雜訊" + +#: ../share/filters/filters.svg.h:700 +msgid "Adds a small scale screen like graininess" +msgstr "加入小比例螢幕外觀的顆粒" + +#: ../share/filters/filters.svg.h:702 +msgid "Duotone Turbulent" +msgstr "雙色紊亂" + +#: ../share/filters/filters.svg.h:706 +msgid "Light Eraser Cracked" +msgstr "破裂的明亮橡皮擦" + +#: ../share/filters/filters.svg.h:710 +msgid "Poster Turbulent" +msgstr "海報紊亂" + +#: ../share/filters/filters.svg.h:714 +msgid "Tartan Smart" +msgstr "智慧型格紋" + +#: ../share/filters/filters.svg.h:716 +msgid "Highly configurable checkered tartan pattern" +msgstr "可變更許多設定的棋盤方格圖案" + +#: ../share/filters/filters.svg.h:718 +msgid "Light Contour" +msgstr "亮色輪廓" + +#: ../share/filters/filters.svg.h:720 +msgid "Uses vertical specular light to draw lines" +msgstr "使用垂直反光繪製線條" + +#: ../share/filters/filters.svg.h:722 +msgid "Liquid" +msgstr "液體" + +#: ../share/filters/filters.svg.h:724 +msgid "Colorizable filling with liquid transparency" +msgstr "液態透明物的可著色填塗" + +#: ../share/filters/filters.svg.h:726 +msgid "Aluminium" +msgstr "鋁" + +#: ../share/filters/filters.svg.h:728 +msgid "Aluminium effect with sharp brushed reflections" +msgstr "帶有銳利折射的鋁金屬效果" + +#: ../share/filters/filters.svg.h:730 +msgid "Comics" +msgstr "漫畫" + +#: ../share/filters/filters.svg.h:732 +msgid "Comics cartoon drawing effect" +msgstr "漫畫卡通繪畫效果" + +#: ../share/filters/filters.svg.h:734 +msgid "Comics Draft" +msgstr "漫畫草圖" + +#: ../share/filters/filters.svg.h:736 ../share/filters/filters.svg.h:768 +msgid "Draft painted cartoon shading with a glassy look" +msgstr "以光滑外觀的卡通明暗法繪製草圖" + +#: ../share/filters/filters.svg.h:738 +msgid "Comics Fading" +msgstr "漫畫式褪色" + +#: ../share/filters/filters.svg.h:740 +msgid "Cartoon paint style with some fading at the edges" +msgstr "邊緣些許褪色的卡通繪畫風格" + +#: ../share/filters/filters.svg.h:742 +msgid "Brushed Metal" +msgstr "拋光金屬" + +#: ../share/filters/filters.svg.h:744 +msgid "Satiny metal surface effect" +msgstr "光滑柔和金屬表面效果" + +#: ../share/filters/filters.svg.h:746 +msgid "Opaline" +msgstr "蛋白石" + +#: ../share/filters/filters.svg.h:748 +msgid "Contouring version of smooth shader" +msgstr "平滑材質的輪廓變形" + +#: ../share/filters/filters.svg.h:750 +msgid "Chrome" +msgstr "鉻" + +#: ../share/filters/filters.svg.h:752 +msgid "Bright chrome effect" +msgstr "亮色金屬鉻效果" + +#: ../share/filters/filters.svg.h:754 +msgid "Deep Chrome" +msgstr "暗色鉻" + +#: ../share/filters/filters.svg.h:756 +msgid "Dark chrome effect" +msgstr "暗色金屬鉻效果" + +#: ../share/filters/filters.svg.h:758 +msgid "Emboss Shader" +msgstr "浮雕材質" + +#: ../share/filters/filters.svg.h:760 +msgid "Combination of satiny and emboss effect" +msgstr "光滑柔和與浮雕兩者結合的效果" + +#: ../share/filters/filters.svg.h:762 +msgid "Sharp Metal" +msgstr "耀眼金屬" + +#: ../share/filters/filters.svg.h:764 +msgid "Chrome effect with darkened edges" +msgstr "暗色邊緣的鉻金屬效果" + +#: ../share/filters/filters.svg.h:766 +msgid "Brush Draw" +msgstr "筆刷繪畫" + +#: ../share/filters/filters.svg.h:770 +msgid "Chrome Emboss" +msgstr "鉻金屬浮雕" + +#: ../share/filters/filters.svg.h:772 +msgid "Embossed chrome effect" +msgstr "浮雕式鉻金屬效果" + +#: ../share/filters/filters.svg.h:774 +msgid "Contour Emboss" +msgstr "輪廓浮雕" + +#: ../share/filters/filters.svg.h:776 +msgid "Satiny and embossed contour effect" +msgstr "輪廓變成光滑柔和的浮雕效果" + +#: ../share/filters/filters.svg.h:778 +msgid "Sharp Deco" +msgstr "耀眼 Deco 風格" + +#: ../share/filters/filters.svg.h:780 +msgid "Unrealistic reflections with sharp edges" +msgstr "帶有銳利邊緣的不真實反射" + +#: ../share/filters/filters.svg.h:782 +msgid "Deep Metal" +msgstr "深色金屬" + +#: ../share/filters/filters.svg.h:784 +msgid "Deep and dark metal shading" +msgstr "深暗色金屬材質" + +#: ../share/filters/filters.svg.h:786 +msgid "Aluminium Emboss" +msgstr "鋁金屬浮雕" + +#: ../share/filters/filters.svg.h:788 +msgid "Satiny aluminium effect with embossing" +msgstr "帶有浮雕的光滑柔和鋁金屬效果" + +#: ../share/filters/filters.svg.h:790 +msgid "Refractive Glass" +msgstr "折射玻璃" + +#: ../share/filters/filters.svg.h:792 +msgid "Double reflection through glass with some refraction" +msgstr "經過玻璃帶有些許折射的兩次反射效果" + +#: ../share/filters/filters.svg.h:794 +msgid "Frosted Glass" +msgstr "磨砂玻璃" + +#: ../share/filters/filters.svg.h:796 +msgid "Satiny glass effect" +msgstr "光滑柔和的玻璃效果" + +#: ../share/filters/filters.svg.h:798 +msgid "Bump Engraving" +msgstr "凹凸雕刻" + +#: ../share/filters/filters.svg.h:800 +msgid "Carving emboss effect" +msgstr "雕刻壓印效果" + +#: ../share/filters/filters.svg.h:802 +msgid "Chromolitho Alternate" +msgstr "交替式多彩雜訊" + +#: ../share/filters/filters.svg.h:804 +msgid "Old chromolithographic effect" +msgstr "舊的多彩雜訊效果" + +#: ../share/filters/filters.svg.h:806 +msgid "Convoluted Bump" +msgstr "旋繞凹凸" + +#: ../share/filters/filters.svg.h:808 +msgid "Convoluted emboss effect" +msgstr "旋繞浮雕效果" + +#: ../share/filters/filters.svg.h:810 +msgid "Emergence" +msgstr "浮現" + +#: ../share/filters/filters.svg.h:812 +msgid "Cut out, add inner shadow and colorize some parts of an image" +msgstr "剪切、加入內陰影和著色影像的某些部分" + +#: ../share/filters/filters.svg.h:814 +msgid "Litho" +msgstr "平版印刷" + +#: ../share/filters/filters.svg.h:816 +msgid "Create a two colors lithographic effect" +msgstr "製作雙色平版印刷效果" + +#: ../share/filters/filters.svg.h:818 +msgid "Paint Channels" +msgstr "塗繪色版" + +#: ../share/filters/filters.svg.h:820 +msgid "Colorize separately the three color channels" +msgstr "將三種色版個別著色" + +#: ../share/filters/filters.svg.h:822 +msgid "Posterized Light Eraser" +msgstr "海報風格明亮橡皮擦" + +#: ../share/filters/filters.svg.h:824 +msgid "Create a semi transparent posterized image" +msgstr "建立半透明的海報風格影像" + +#: ../share/filters/filters.svg.h:826 +msgid "Trichrome" +msgstr "三色" + +#: ../share/filters/filters.svg.h:828 +msgid "Like Duochrome but with three colors" +msgstr "很像雙色,但使用三種顏色" + +#: ../share/filters/filters.svg.h:830 +msgid "Simulate CMY" +msgstr "模擬 CMY" + +#: ../share/filters/filters.svg.h:832 +msgid "Render Cyan, Magenta and Yellow channels with a colorizable background" +msgstr "繪算含有可著色背景的青、黃、洋紅色版" + +#: ../share/filters/filters.svg.h:834 +msgid "Contouring table" +msgstr "嵌合輪廓" + +#: ../share/filters/filters.svg.h:836 +msgid "Blurred multiple contours for objects" +msgstr "物件產生模糊的多重輪廓" + +#: ../share/filters/filters.svg.h:838 +msgid "Posterized Blur" +msgstr "海報風格模糊" + +#: ../share/filters/filters.svg.h:840 +msgid "Converts blurred contour to posterized steps" +msgstr "將模糊的輪廓轉變成海報層次感" + +#: ../share/filters/filters.svg.h:842 +msgid "Contouring discrete" +msgstr "離散輪廓" + +#: ../share/filters/filters.svg.h:844 +msgid "Sharp multiple contour for objects" +msgstr "物件產生銳利的多重輪廓" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:2 +msgctxt "Palette" +msgid "Black" +msgstr "黑色" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:3 +#, no-c-format +msgctxt "Palette" +msgid "90% Gray" +msgstr "90% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:4 +#, no-c-format +msgctxt "Palette" +msgid "80% Gray" +msgstr "80% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:5 +#, no-c-format +msgctxt "Palette" +msgid "70% Gray" +msgstr "70% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:6 +#, no-c-format +msgctxt "Palette" +msgid "60% Gray" +msgstr "60% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:7 +#, no-c-format +msgctxt "Palette" +msgid "50% Gray" +msgstr "50% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:8 +#, no-c-format +msgctxt "Palette" +msgid "40% Gray" +msgstr "40% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:9 +#, no-c-format +msgctxt "Palette" +msgid "30% Gray" +msgstr "30% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:10 +#, no-c-format +msgctxt "Palette" +msgid "20% Gray" +msgstr "20% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:11 +#, no-c-format +msgctxt "Palette" +msgid "10% Gray" +msgstr "10% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:12 +#, no-c-format +msgctxt "Palette" +msgid "7.5% Gray" +msgstr "7.5% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:13 +#, no-c-format +msgctxt "Palette" +msgid "5% Gray" +msgstr "5% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:14 +#, no-c-format +msgctxt "Palette" +msgid "2.5% Gray" +msgstr "2.5% 灰" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:15 +msgctxt "Palette" +msgid "White" +msgstr "白色" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:16 +msgctxt "Palette" +msgid "Maroon (#800000)" +msgstr "紫藍 (#800000)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:17 +msgctxt "Palette" +msgid "Red (#FF0000)" +msgstr "紅色 (#FF0000)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:18 +msgctxt "Palette" +msgid "Olive (#808000)" +msgstr "橄欖綠 (#808000)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:19 +msgctxt "Palette" +msgid "Yellow (#FFFF00)" +msgstr "黃色 (#FFFF00)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:20 +msgctxt "Palette" +msgid "Green (#008000)" +msgstr "綠色 (#008000)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:21 +msgctxt "Palette" +msgid "Lime (#00FF00)" +msgstr "萊姆 (#00FF00)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:22 +msgctxt "Palette" +msgid "Teal (#008080)" +msgstr "水鴨綠 (#008080)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:23 +msgctxt "Palette" +msgid "Aqua (#00FFFF)" +msgstr "水藍 (#00FFFF)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:24 +msgctxt "Palette" +msgid "Navy (#000080)" +msgstr "海軍藍 (#000080)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:25 +msgctxt "Palette" +msgid "Blue (#0000FF)" +msgstr "藍色 (#0000FF)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:26 +msgctxt "Palette" +msgid "Purple (#800080)" +msgstr "紫色 (#800080)" + +#. Palette: ./inkscape.gpl +#: ../share/palettes/palettes.h:27 +msgctxt "Palette" +msgid "Fuchsia (#FF00FF)" +msgstr "桃紅 (#FF00FF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:28 +msgctxt "Palette" +msgid "black (#000000)" +msgstr "黑色 (#000000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:29 +msgctxt "Palette" +msgid "dimgray (#696969)" +msgstr "暗灰 (#696969)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:30 +msgctxt "Palette" +msgid "gray (#808080)" +msgstr "灰色 (#808080)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:31 +msgctxt "Palette" +msgid "darkgray (#A9A9A9)" +msgstr "深灰 (#A9A9A9)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:32 +msgctxt "Palette" +msgid "silver (#C0C0C0)" +msgstr "銀色 (#C0C0C0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:33 +msgctxt "Palette" +msgid "lightgray (#D3D3D3)" +msgstr "淺灰 (#D3D3D3)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:34 +msgctxt "Palette" +msgid "gainsboro (#DCDCDC)" +msgstr "亮灰 (#DCDCDC)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:35 +msgctxt "Palette" +msgid "whitesmoke (#F5F5F5)" +msgstr "煙白 (#F5F5F5)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:36 +msgctxt "Palette" +msgid "white (#FFFFFF)" +msgstr "白色 (#FFFFFF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:37 +msgctxt "Palette" +msgid "rosybrown (#BC8F8F)" +msgstr "玫瑰棕 (#BC8F8F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:38 +msgctxt "Palette" +msgid "indianred (#CD5C5C)" +msgstr "淺粉紅 (#CD5C5C)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:39 +msgctxt "Palette" +msgid "brown (#A52A2A)" +msgstr "棕色 (#A52A2A)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:40 +msgctxt "Palette" +msgid "firebrick (#B22222)" +msgstr "磚紅 (#B22222)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:41 +msgctxt "Palette" +msgid "lightcoral (#F08080)" +msgstr "淺珊瑚 (#F08080)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:42 +msgctxt "Palette" +msgid "maroon (#800000)" +msgstr "紫藍 (#800000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:43 +msgctxt "Palette" +msgid "darkred (#8B0000)" +msgstr "暗紅 (#8B0000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:44 +msgctxt "Palette" +msgid "red (#FF0000)" +msgstr "紅色 (#FF0000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:45 +msgctxt "Palette" +msgid "snow (#FFFAFA)" +msgstr "雪白 (#FFFAFA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:46 +msgctxt "Palette" +msgid "mistyrose (#FFE4E1)" +msgstr "淺玫瑰色 (#FFE4E1)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:47 +msgctxt "Palette" +msgid "salmon (#FA8072)" +msgstr "鮭紅 (#FA8072)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:48 +msgctxt "Palette" +msgid "tomato (#FF6347)" +msgstr "番茄紅 (#FF6347)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:49 +msgctxt "Palette" +msgid "darksalmon (#E9967A)" +msgstr "暗鮭紅 (#E9967A)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:50 +msgctxt "Palette" +msgid "coral (#FF7F50)" +msgstr "珊瑚 (#FF7F50)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:51 +msgctxt "Palette" +msgid "orangered (#FF4500)" +msgstr "橘紅 (#FF4500)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:52 +msgctxt "Palette" +msgid "lightsalmon (#FFA07A)" +msgstr "淺鮭紅 (#FFA07A)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:53 +msgctxt "Palette" +msgid "sienna (#A0522D)" +msgstr "黃褐色 (#A0522D)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:54 +msgctxt "Palette" +msgid "seashell (#FFF5EE)" +msgstr "海貝褐 (#FFF5EE)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:55 +msgctxt "Palette" +msgid "chocolate (#D2691E)" +msgstr "巧克力 (#D2691E)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:56 +msgctxt "Palette" +msgid "saddlebrown (#8B4513)" +msgstr "馬鞍褐 (#8B4513)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:57 +msgctxt "Palette" +msgid "sandybrown (#F4A460)" +msgstr "沙褐色 (#F4A460)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:58 +msgctxt "Palette" +msgid "peachpuff (#FFDAB9)" +msgstr "粉桃紅 (#FFDAB9)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:59 +msgctxt "Palette" +msgid "peru (#CD853F)" +msgstr "秘魯色 (#CD853F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:60 +msgctxt "Palette" +msgid "linen (#FAF0E6)" +msgstr "亞麻色 (#FAF0E6)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:61 +msgctxt "Palette" +msgid "bisque (#FFE4C4)" +msgstr "淡黃色 (#FFE4C4)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:62 +msgctxt "Palette" +msgid "darkorange (#FF8C00)" +msgstr "深橙色 (#FF8C00)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:63 +msgctxt "Palette" +msgid "burlywood (#DEB887)" +msgstr "實木色 (#DEB887)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:64 +msgctxt "Palette" +msgid "tan (#D2B48C)" +msgstr "曬褐色 (#D2B48C)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:65 +msgctxt "Palette" +msgid "antiquewhite (#FAEBD7)" +msgstr "復古白 (#FAEBD7)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:66 +msgctxt "Palette" +msgid "navajowhite (#FFDEAD)" +msgstr "耐而節白 (#FFDEAD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:67 +msgctxt "Palette" +msgid "blanchedalmond (#FFEBCD)" +msgstr "白杏仁 (#FFEBCD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:68 +msgctxt "Palette" +msgid "papayawhip (#FFEFD5)" +msgstr "木瓜色 (#FFEFD5)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:69 +msgctxt "Palette" +msgid "moccasin (#FFE4B5)" +msgstr "鹿皮色 (#FFE4B5)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:70 +msgctxt "Palette" +msgid "orange (#FFA500)" +msgstr "橙色 (#FFA500)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:71 +msgctxt "Palette" +msgid "wheat (#F5DEB3)" +msgstr "小麥色 (#F5DEB3)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:72 +msgctxt "Palette" +msgid "oldlace (#FDF5E6)" +msgstr "淺米色 (#FDF5E6)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:73 +msgctxt "Palette" +msgid "floralwhite (#FFFAF0)" +msgstr "白花色 (#FFFAF0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:74 +msgctxt "Palette" +msgid "darkgoldenrod (#B8860B)" +msgstr "深秋色 (#B8860B)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:75 +msgctxt "Palette" +msgid "goldenrod (#DAA520)" +msgstr "秋天色 (#DAA520)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:76 +msgctxt "Palette" +msgid "cornsilk (#FFF8DC)" +msgstr "玉米色 (#FFF8DC)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:77 +msgctxt "Palette" +msgid "gold (#FFD700)" +msgstr "金色 (#FFD700)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:78 +msgctxt "Palette" +msgid "khaki (#F0E68C)" +msgstr "卡其色 (#F0E68C)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:79 +msgctxt "Palette" +msgid "lemonchiffon (#FFFACD)" +msgstr "檸檬沙 (#FFFACD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:80 +msgctxt "Palette" +msgid "palegoldenrod (#EEE8AA)" +msgstr "秋天灰 (#EEE8AA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:81 +msgctxt "Palette" +msgid "darkkhaki (#BDB76B)" +msgstr "深卡其色 (#BDB76B)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:82 +msgctxt "Palette" +msgid "beige (#F5F5DC)" +msgstr "米色 (#F5F5DC)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:83 +msgctxt "Palette" +msgid "lightgoldenrodyellow (#FAFAD2)" +msgstr "淺金黃 (#FAFAD2)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:84 +msgctxt "Palette" +msgid "olive (#808000)" +msgstr "橄欖 (#808000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:85 +msgctxt "Palette" +msgid "yellow (#FFFF00)" +msgstr "黃色 (#FFFF00)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:86 +msgctxt "Palette" +msgid "lightyellow (#FFFFE0)" +msgstr "淺黃 (#FFFFE0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:87 +msgctxt "Palette" +msgid "ivory (#FFFFF0)" +msgstr "象牙黃 (#FFFFF0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:88 +msgctxt "Palette" +msgid "olivedrab (#6B8E23)" +msgstr "橄欖黃 (#6B8E23)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:89 +msgctxt "Palette" +msgid "yellowgreen (#9ACD32)" +msgstr "黃綠 (#9ACD32)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:90 +msgctxt "Palette" +msgid "darkolivegreen (#556B2F)" +msgstr "深橄欖綠 (#556B2F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:91 +msgctxt "Palette" +msgid "greenyellow (#ADFF2F)" +msgstr "黃綠 (#ADFF2F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:92 +msgctxt "Palette" +msgid "chartreuse (#7FFF00)" +msgstr "查特酒綠 (#7FFF00)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:93 +msgctxt "Palette" +msgid "lawngreen (#7CFC00)" +msgstr "草坪綠 (#7CFC00)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:94 +msgctxt "Palette" +msgid "darkseagreen (#8FBC8F)" +msgstr "深海綠 (#8FBC8F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:95 +msgctxt "Palette" +msgid "forestgreen (#228B22)" +msgstr "森林綠 (#228B22)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:96 +msgctxt "Palette" +msgid "limegreen (#32CD32)" +msgstr "萊姆綠 (#32CD32)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:97 +msgctxt "Palette" +msgid "lightgreen (#90EE90)" +msgstr "淺綠 (#90EE90)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:98 +msgctxt "Palette" +msgid "palegreen (#98FB98)" +msgstr "蒼綠 (#98FB98)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:99 +msgctxt "Palette" +msgid "darkgreen (#006400)" +msgstr "暗綠 (#006400)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:100 +msgctxt "Palette" +msgid "green (#008000)" +msgstr "綠色 (#008000)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:101 +msgctxt "Palette" +msgid "lime (#00FF00)" +msgstr "萊姆 (#00FF00)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:102 +msgctxt "Palette" +msgid "honeydew (#F0FFF0)" +msgstr "淺粉綠 (#F0FFF0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:103 +msgctxt "Palette" +msgid "seagreen (#2E8B57)" +msgstr "海綠 (#2E8B57)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:104 +msgctxt "Palette" +msgid "mediumseagreen (#3CB371)" +msgstr "中海綠 (#3CB371)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:105 +msgctxt "Palette" +msgid "springgreen (#00FF7F)" +msgstr "中亮綠 (#00FF7F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:106 +msgctxt "Palette" +msgid "mintcream (#F5FFFA)" +msgstr "薄荷 (#F5FFFA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:107 +msgctxt "Palette" +msgid "mediumspringgreen (#00FA9A)" +msgstr "中春綠 (#00FA9A)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:108 +msgctxt "Palette" +msgid "mediumaquamarine (#66CDAA)" +msgstr "中藍綠 (#66CDAA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:109 +msgctxt "Palette" +msgid "aquamarine (#7FFFD4)" +msgstr "藍綠 (#7FFFD4)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:110 +msgctxt "Palette" +msgid "turquoise (#40E0D0)" +msgstr "寶石綠 (#40E0D0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:111 +msgctxt "Palette" +msgid "lightseagreen (#20B2AA)" +msgstr "淺海綠 (#20B2AA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:112 +msgctxt "Palette" +msgid "mediumturquoise (#48D1CC)" +msgstr "中寶石綠 (#48D1CC)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:113 +msgctxt "Palette" +msgid "darkslategray (#2F4F4F)" +msgstr "深板岩灰 (#2F4F4F)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:114 +msgctxt "Palette" +msgid "paleturquoise (#AFEEEE)" +msgstr "蒼寶石綠 (#AFEEEE)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:115 +msgctxt "Palette" +msgid "teal (#008080)" +msgstr "鴨綠 (#008080)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:116 +msgctxt "Palette" +msgid "darkcyan (#008B8B)" +msgstr "暗青色 (#008B8B)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:117 +msgctxt "Palette" +msgid "cyan (#00FFFF)" +msgstr "青色 (#00FFFF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:118 +msgctxt "Palette" +msgid "lightcyan (#E0FFFF)" +msgstr "淺青色 (#E0FFFF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:119 +msgctxt "Palette" +msgid "azure (#F0FFFF)" +msgstr "天青 (#F0FFFF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:120 +msgctxt "Palette" +msgid "darkturquoise (#00CED1)" +msgstr "深寶石綠 (#00CED1)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:121 +msgctxt "Palette" +msgid "cadetblue (#5F9EA0)" +msgstr "軍校藍 (#5F9EA0)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:122 +msgctxt "Palette" +msgid "powderblue (#B0E0E6)" +msgstr "粉藍 (#B0E0E6)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:123 +msgctxt "Palette" +msgid "lightblue (#ADD8E6)" +msgstr "淺藍 (#ADD8E6)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:124 +msgctxt "Palette" +msgid "deepskyblue (#00BFFF)" +msgstr "深天空藍 (#00BFFF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:125 +msgctxt "Palette" +msgid "skyblue (#87CEEB)" +msgstr "天空藍 (#87CEEB)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:126 +msgctxt "Palette" +msgid "lightskyblue (#87CEFA)" +msgstr "淺天空藍 (#87CEFA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:127 +msgctxt "Palette" +msgid "steelblue (#4682B4)" +msgstr "鐵藍 (#4682B4)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:128 +msgctxt "Palette" +msgid "aliceblue (#F0F8FF)" +msgstr "誠實藍 (#F0F8FF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:129 +msgctxt "Palette" +msgid "dodgerblue (#1E90FF)" +msgstr "柔和藍 (#1E90FF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:130 +msgctxt "Palette" +msgid "slategray (#708090)" +msgstr "板岩灰 (#708090)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:131 +msgctxt "Palette" +msgid "lightslategray (#778899)" +msgstr "淺板岩灰 (#778899)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:132 +msgctxt "Palette" +msgid "lightsteelblue (#B0C4DE)" +msgstr "淺鐵藍 (#B0C4DE)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:133 +msgctxt "Palette" +msgid "cornflowerblue (#6495ED)" +msgstr "矢車菊藍 (#6495ED)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:134 +msgctxt "Palette" +msgid "royalblue (#4169E1)" +msgstr "皇家藍 (#4169E1)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:135 +msgctxt "Palette" +msgid "midnightblue (#191970)" +msgstr "深夜藍 (#191970)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:136 +msgctxt "Palette" +msgid "lavender (#E6E6FA)" +msgstr "淺紫 (#E6E6FA)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:137 +msgctxt "Palette" +msgid "navy (#000080)" +msgstr "海軍藍 (#000080)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:138 +msgctxt "Palette" +msgid "darkblue (#00008B)" +msgstr "深藍 (#00008B)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:139 +msgctxt "Palette" +msgid "mediumblue (#0000CD)" +msgstr "中藍 (#0000CD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:140 +msgctxt "Palette" +msgid "blue (#0000FF)" +msgstr "藍色 (#0000FF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:141 +msgctxt "Palette" +msgid "ghostwhite (#F8F8FF)" +msgstr "幽靈白 (#F8F8FF)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:142 +msgctxt "Palette" +msgid "slateblue (#6A5ACD)" +msgstr "板岩藍 (#6A5ACD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:143 +msgctxt "Palette" +msgid "darkslateblue (#483D8B)" +msgstr "暗板岩藍 (#483D8B)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:144 +msgctxt "Palette" +msgid "mediumslateblue (#7B68EE)" +msgstr "中板岩藍" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:145 +msgctxt "Palette" +msgid "mediumpurple (#9370DB)" +msgstr "中紫色 (#9370DB)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:146 +msgctxt "Palette" +msgid "blueviolet (#8A2BE2)" +msgstr "藍紫色 (#8A2BE2)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:147 +msgctxt "Palette" +msgid "indigo (#4B0082)" +msgstr "靛青 (#4B0082)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:148 +msgctxt "Palette" +msgid "darkorchid (#9932CC)" +msgstr "暗淡紫 (#9932CC)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:149 +msgctxt "Palette" +msgid "darkviolet (#9400D3)" +msgstr "暗紫羅蘭 (#9400D3)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:150 +msgctxt "Palette" +msgid "mediumorchid (#BA55D3)" +msgstr "中淡紫 (#BA55D3)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:151 +msgctxt "Palette" +msgid "thistle (#D8BFD8)" +msgstr "薊色 (#D8BFD8)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:152 +msgctxt "Palette" +msgid "plum (#DDA0DD)" +msgstr "梅紅 (#DDA0DD)" + +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:153 +msgctxt "Palette" +msgid "violet (#EE82EE)" +msgstr "紫羅蘭 (#EE82EE)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:145 -#, fuzzy -msgctxt "Symbol" -msgid "Document" -msgstr "文件" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:154 +msgctxt "Palette" +msgid "purple (#800080)" +msgstr "紫色 (#800080)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:146 -#, fuzzy -msgctxt "Symbol" -msgid "Manual Operation" -msgstr "數學運算符號" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:155 +msgctxt "Palette" +msgid "darkmagenta (#8B008B)" +msgstr "暗洋紅 (#8B008B)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:147 -#, fuzzy -msgctxt "Symbol" -msgid "Preparation" -msgstr "處理前飽和度:" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:156 +msgctxt "Palette" +msgid "magenta (#FF00FF)" +msgstr "洋紅 (#FF00FF)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:148 -#, fuzzy -msgctxt "Symbol" -msgid "Merge" -msgstr "融合" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:157 +msgctxt "Palette" +msgid "orchid (#DA70D6)" +msgstr "淡紫 (#DA70D6)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:149 -#, fuzzy -msgctxt "Symbol" -msgid "Decision" -msgstr "精確度:" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:158 +msgctxt "Palette" +msgid "mediumvioletred (#C71585)" +msgstr "中紫羅蘭 (#C71585)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:150 -msgctxt "Symbol" -msgid "Magnetic Tape" -msgstr "" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:159 +msgctxt "Palette" +msgid "deeppink (#FF1493)" +msgstr "深粉紅 (#FF1493)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:151 -#, fuzzy -msgctxt "Symbol" -msgid "Display" -msgstr "顯示模式(_D)" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:160 +msgctxt "Palette" +msgid "hotpink (#FF69B4)" +msgstr "亮粉紅 (#FF69B4)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:152 -msgctxt "Symbol" -msgid "Auxiliary Operation" -msgstr "" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:161 +msgctxt "Palette" +msgid "lavenderblush (#FFF0F5)" +msgstr "淡紫紅 (#FFF0F5)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:153 -#, fuzzy -msgctxt "Symbol" -msgid "Manual Input" -msgstr "EMF 輸入" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:162 +msgctxt "Palette" +msgid "palevioletred (#DB7093)" +msgstr "蒼紫羅蘭 (#DB7093)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:154 -#, fuzzy -msgctxt "Symbol" -msgid "Extract" -msgstr "摘取" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:163 +msgctxt "Palette" +msgid "crimson (#DC143C)" +msgstr "緋紅 (#DC143C)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:155 -msgctxt "Symbol" -msgid "Terminal/Interrupt" -msgstr "" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:164 +msgctxt "Palette" +msgid "pink (#FFC0CB)" +msgstr "粉紅 (#FFC0CB)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:156 -msgctxt "Symbol" -msgid "Punched Card" -msgstr "" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:165 +msgctxt "Palette" +msgid "lightpink (#FFB6C1)" +msgstr "淡粉紅 (#FFB6C1)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:157 -#, fuzzy -msgctxt "Symbol" -msgid "Punch Tape" -msgstr "鑿洞" +#. Palette: ./svg.gpl +#: ../share/palettes/palettes.h:166 +msgctxt "Palette" +msgid "rebeccapurple (#663399)" +msgstr "瑞貝卡紫 (#663399)" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:158 -msgctxt "Symbol" -msgid "Online Storage" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:167 +msgctxt "Palette" +msgid "Butter 1" +msgstr "奶油 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:159 -msgctxt "Symbol" -msgid "Keying" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:168 +msgctxt "Palette" +msgid "Butter 2" +msgstr "奶油 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:160 -msgctxt "Symbol" -msgid "Sort" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:169 +msgctxt "Palette" +msgid "Butter 3" +msgstr "奶油 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:161 -#, fuzzy -msgctxt "Symbol" -msgid "Connector" -msgstr "連接線" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:170 +msgctxt "Palette" +msgid "Chameleon 1" +msgstr "變色龍 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:162 -#, fuzzy -msgctxt "Symbol" -msgid "Off-Page Connector" -msgstr "連接線" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:171 +msgctxt "Palette" +msgid "Chameleon 2" +msgstr "變色龍 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:163 -msgctxt "Symbol" -msgid "Transmittal Tape" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:172 +msgctxt "Palette" +msgid "Chameleon 3" +msgstr "變色龍 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:164 -msgctxt "Symbol" -msgid "Communication Link" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:173 +msgctxt "Palette" +msgid "Orange 1" +msgstr "橙橘 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:165 -#, fuzzy -msgctxt "Symbol" -msgid "Collate" -msgstr "巧克力色 1" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:174 +msgctxt "Palette" +msgid "Orange 2" +msgstr "橙橘 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:166 -msgctxt "Symbol" -msgid "Comment/Annotation" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:175 +msgctxt "Palette" +msgid "Orange 3" +msgstr "橙橘 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:167 -msgctxt "Symbol" -msgid "Core" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:176 +msgctxt "Palette" +msgid "Sky Blue 1" +msgstr "天空藍 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:168 -msgctxt "Symbol" -msgid "Predefined Process" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:177 +msgctxt "Palette" +msgid "Sky Blue 2" +msgstr "天空藍 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:169 -msgctxt "Symbol" -msgid "Magnetic Disk (Database)" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:178 +msgctxt "Palette" +msgid "Sky Blue 3" +msgstr "天空藍 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:170 -msgctxt "Symbol" -msgid "Magnetic Drum (Direct Access)" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:179 +msgctxt "Palette" +msgid "Plum 1" +msgstr "梅紅 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:171 -msgctxt "Symbol" -msgid "Offline Storage" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:180 +msgctxt "Palette" +msgid "Plum 2" +msgstr "梅紅 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:172 -msgctxt "Symbol" -msgid "Logical Or" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:181 +msgctxt "Palette" +msgid "Plum 3" +msgstr "梅紅 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:173 -msgctxt "Symbol" -msgid "Logical And" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:182 +msgctxt "Palette" +msgid "Chocolate 1" +msgstr "巧克力色 1" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:174 -msgctxt "Symbol" -msgid "Delay" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:183 +msgctxt "Palette" +msgid "Chocolate 2" +msgstr "巧克力色 2" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:175 -msgctxt "Symbol" -msgid "Loop Limit Begin" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:184 +msgctxt "Palette" +msgid "Chocolate 3" +msgstr "巧克力色 3" -#. Symbols: ./FlowSymbols.svg -#: ../share/symbols/symbols.h:176 -msgctxt "Symbol" -msgid "Loop Limit End" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:185 +msgctxt "Palette" +msgid "Scarlet Red 1" +msgstr "鮮紅 1" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:177 -#, fuzzy -msgctxt "Symbol" -msgid "Logic Symbols" -msgstr "似字母符號" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:186 +msgctxt "Palette" +msgid "Scarlet Red 2" +msgstr "鮮紅 2" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:178 -msgctxt "Symbol" -msgid "Xnor Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:187 +msgctxt "Palette" +msgid "Scarlet Red 3" +msgstr "鮮紅 3" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:179 -msgctxt "Symbol" -msgid "Xor Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:188 +msgctxt "Palette" +msgid "Snowy White" +msgstr "雪白" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:180 -msgctxt "Symbol" -msgid "Nor Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:189 +msgctxt "Palette" +msgid "Aluminium 1" +msgstr "鋁 1" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:181 -msgctxt "Symbol" -msgid "Or Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:190 +msgctxt "Palette" +msgid "Aluminium 2" +msgstr "鋁 2" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:182 -msgctxt "Symbol" -msgid "Nand Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:191 +msgctxt "Palette" +msgid "Aluminium 3" +msgstr "鋁 3" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:183 -msgctxt "Symbol" -msgid "And Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:192 +msgctxt "Palette" +msgid "Aluminium 4" +msgstr "鋁 4" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:184 -msgctxt "Symbol" -msgid "Buffer" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:193 +msgctxt "Palette" +msgid "Aluminium 5" +msgstr "鋁 5" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:185 -msgctxt "Symbol" -msgid "Not Gate" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:194 +msgctxt "Palette" +msgid "Aluminium 6" +msgstr "鋁 6" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:186 -msgctxt "Symbol" -msgid "Buffer Small" -msgstr "" +#. Palette: ./Tango-Palette.gpl +#: ../share/palettes/palettes.h:195 +msgctxt "Palette" +msgid "Jet Black" +msgstr "深黑" -#. Symbols: ./LogicSymbols.svg -#: ../share/symbols/symbols.h:187 -msgctxt "Symbol" -msgid "Not Gate Small" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:1" +msgstr "條紋 1:1" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:188 -#, fuzzy -msgctxt "Symbol" -msgid "Map Symbols" -msgstr "高棉符號" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:1 white" +msgstr "條紋 1:1 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:189 -#, fuzzy -msgctxt "Symbol" -msgid "Bed and Breakfast" -msgstr "紅和綠" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:1.5" +msgstr "條紋 1:1.5" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:190 -msgctxt "Symbol" -msgid "Youth Hostel" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:1.5 white" +msgstr "條紋 1:1.5 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:191 -#, fuzzy -msgctxt "Symbol" -msgid "Shelter" -msgstr "濾鏡" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:2" +msgstr "條紋 1:2" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:192 -msgctxt "Symbol" -msgid "Motel" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:2 white" +msgstr "條紋 1:2 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:193 -msgctxt "Symbol" -msgid "Hotel" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:3" +msgstr "條紋 1:3" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:194 -#, fuzzy -msgctxt "Symbol" -msgid "Hostel" -msgstr "主機" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:3 white" +msgstr "條紋 1:3 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:195 -#, fuzzy -msgctxt "Symbol" -msgid "Chalet" -msgstr "調色盤" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:4" +msgstr "條紋 1:4" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:196 -msgctxt "Symbol" -msgid "Caravan Park" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:4 white" +msgstr "條紋 1:4 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:197 -#, fuzzy -msgctxt "Symbol" -msgid "Camping" -msgstr "研磨" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:5" +msgstr "條紋 1:5" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:198 -msgctxt "Symbol" -msgid "Alpine Hut" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:5 white" +msgstr "條紋 1:5 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:199 -msgctxt "Symbol" -msgid "Bench or Park" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:8" +msgstr "條紋 1:8" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:200 -#, fuzzy -msgctxt "Symbol" -msgid "Playground" -msgstr "背景" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:8 white" +msgstr "條紋 1:8 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:201 -msgctxt "Symbol" -msgid "Fountain" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:10" +msgstr "條紋 1:10" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:202 -#, fuzzy -msgctxt "Symbol" -msgid "Library" -msgstr "刀具庫" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:10 white" +msgstr "條紋 1:10 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:203 -msgctxt "Symbol" -msgid "Town Hall" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:16" +msgstr "條紋 1:16" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:204 -msgctxt "Symbol" -msgid "Court" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:16 white" +msgstr "條紋 1:16 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:205 -msgctxt "Symbol" -msgid "Fire Station / House" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:32" +msgstr "條紋 1:32" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:206 -#, fuzzy -msgctxt "Symbol" -msgid "Police Station" -msgstr "增加飽和度" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:32 white" +msgstr "條紋 1:32 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:207 -msgctxt "Symbol" -msgid "Prison" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 1:64" +msgstr "條紋 1:64" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:208 -msgctxt "Symbol" -msgid "Post Office" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 2:1" +msgstr "條紋 2:1" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:209 -#, fuzzy -msgctxt "Symbol" -msgid "Public Building" -msgstr "公共領域" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 2:1 white" +msgstr "條紋 2:1 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:210 -msgctxt "Symbol" -msgid "Recycling" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 4:1" +msgstr "條紋 4:1" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:211 -#, fuzzy -msgctxt "Symbol" -msgid "Survey Point" -msgstr "葛爾剛點 (Gergonne Point)" +#: ../share/patterns/patterns.svg.h:1 +msgid "Stripes 4:1 white" +msgstr "條紋 4:1 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:212 -msgctxt "Symbol" -msgid "Toll Booth" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Checkerboard" +msgstr "棋盤格紋" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:213 -msgctxt "Symbol" -msgid "Lift Gate" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Checkerboard white" +msgstr "棋盤格紋 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:214 -#, fuzzy -msgctxt "Symbol" -msgid "Steps" -msgstr "階層數" +#: ../share/patterns/patterns.svg.h:1 +msgid "Packed circles" +msgstr "塞滿圓圈" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, small" +msgstr "圓點, 小" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, small white" +msgstr "圓點, 小 (白色)" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, medium" +msgstr "圓點, 中" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, medium white" +msgstr "圓點, 中 (白色)" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, large" +msgstr "圓點, 大" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Polka dots, large white" +msgstr "圓點, 大 (白色)" + +#: ../share/patterns/patterns.svg.h:1 +msgid "Wavy" +msgstr "波浪" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:215 -msgctxt "Symbol" -msgid "Stile" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Wavy white" +msgstr "波浪 (白色)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:216 -#, fuzzy -msgctxt "Symbol" -msgid "Kissing Gate" -msgstr "遺失的字形:" +#: ../share/patterns/patterns.svg.h:1 +msgid "Camouflage" +msgstr "迷彩" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:217 -msgctxt "Symbol" -msgid "Gate" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Ermine" +msgstr "貂皮" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:219 -#, fuzzy -msgctxt "Symbol" -msgid "Entrance" -msgstr "加強" +#: ../share/patterns/patterns.svg.h:1 +msgid "Sand (bitmap)" +msgstr "沙 (點陣圖)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:220 -msgctxt "Symbol" -msgid "Cycle Barrier" -msgstr "" +#: ../share/patterns/patterns.svg.h:1 +msgid "Cloth (bitmap)" +msgstr "布料 (點陣圖)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:221 -#, fuzzy -msgctxt "Symbol" -msgid "Cattle Grid" -msgstr "笛卡兒格線" +#: ../share/patterns/patterns.svg.h:1 +msgid "Old paint (bitmap)" +msgstr "老舊油漆 (點陣圖)" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:222 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:2 msgctxt "Symbol" -msgid "Bollard" -msgstr "" +msgid "AIGA Symbol Signs" +msgstr "AIGA 符號標誌" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:223 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4 +#: ../share/symbols/symbols.h:277 ../share/symbols/symbols.h:278 msgctxt "Symbol" -msgid "University" -msgstr "強度:" +msgid "Telephone" +msgstr "電話" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:224 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:5 ../share/symbols/symbols.h:6 msgctxt "Symbol" -msgid "High/Secondary School" -msgstr "" +msgid "Mail" +msgstr "郵件" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:225 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:7 ../share/symbols/symbols.h:8 msgctxt "Symbol" -msgid "School" -msgstr "" +msgid "Currency Exchange" +msgstr "換幣" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:226 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:9 ../share/symbols/symbols.h:10 msgctxt "Symbol" -msgid "Kindergarten" -msgstr "" +msgid "Currency Exchange - Euro" +msgstr "換幣 - 歐洲" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:229 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:11 ../share/symbols/symbols.h:12 msgctxt "Symbol" -msgid "Pub" -msgstr "" +msgid "Cashier" +msgstr "出納" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:230 +#. Symbols: ./AigaSymbols.svg +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:13 ../share/symbols/symbols.h:14 +#: ../share/symbols/symbols.h:213 ../share/symbols/symbols.h:214 msgctxt "Symbol" -msgid "Desserts/Cakes Shop" -msgstr "" +msgid "First Aid" +msgstr "急救" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:231 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:15 ../share/symbols/symbols.h:16 msgctxt "Symbol" -msgid "Fast Food" -msgstr "" +msgid "Lost and Found" +msgstr "失物招領" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:232 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:17 ../share/symbols/symbols.h:18 msgctxt "Symbol" -msgid "Public Tap/Water" -msgstr "" +msgid "Coat Check" +msgstr "衣帽間" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:233 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:19 ../share/symbols/symbols.h:20 msgctxt "Symbol" -msgid "Cafe" -msgstr "" +msgid "Baggage Lockers" +msgstr "行李保管櫃" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:234 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:21 ../share/symbols/symbols.h:22 msgctxt "Symbol" -msgid "Beer Garden" -msgstr "" +msgid "Escalator" +msgstr "電扶梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:235 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:23 ../share/symbols/symbols.h:24 msgctxt "Symbol" -msgid "Wine Bar" -msgstr "" +msgid "Escalator Down" +msgstr "向下電扶梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:236 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:25 ../share/symbols/symbols.h:26 msgctxt "Symbol" -msgid "Opticians/Eye Doctors" -msgstr "" +msgid "Escalator Up" +msgstr "向上電扶梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:237 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:27 ../share/symbols/symbols.h:28 msgctxt "Symbol" -msgid "Dentist" -msgstr "識別" +msgid "Stairs" +msgstr "樓梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:238 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:29 ../share/symbols/symbols.h:30 msgctxt "Symbol" -msgid "Veterinarian" -msgstr "" +msgid "Stairs Down" +msgstr "向下樓梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:239 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:31 ../share/symbols/symbols.h:32 msgctxt "Symbol" -msgid "Drugs Dispensary" -msgstr "" +msgid "Stairs Up" +msgstr "向上樓梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:240 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:33 ../share/symbols/symbols.h:34 msgctxt "Symbol" -msgid "Pharmacy" -msgstr "" +msgid "Elevator" +msgstr "電梯" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:241 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:35 ../share/symbols/symbols.h:36 msgctxt "Symbol" -msgid "Accident & Emergency" -msgstr "" +msgid "Toilets - Men" +msgstr "廁所 - 男" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:242 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:37 ../share/symbols/symbols.h:38 msgctxt "Symbol" -msgid "Hospital" -msgstr "" +msgid "Toilets - Women" +msgstr "廁所 - 女" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:243 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:39 ../share/symbols/symbols.h:40 msgctxt "Symbol" -msgid "Doctors" -msgstr "連接線" +msgid "Toilets" +msgstr "廁所" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:244 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:41 ../share/symbols/symbols.h:42 msgctxt "Symbol" -msgid "Scrub Land" -msgstr "" +msgid "Nursery" +msgstr "保育室" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:245 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:43 ../share/symbols/symbols.h:44 msgctxt "Symbol" -msgid "Swamp" -msgstr "" +msgid "Drinking Fountain" +msgstr "飲水機" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:246 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:45 ../share/symbols/symbols.h:46 msgctxt "Symbol" -msgid "Hills" -msgstr "" +msgid "Waiting Room" +msgstr "等候室" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:247 +#. Symbols: ./AigaSymbols.svg +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:47 ../share/symbols/symbols.h:48 +#: ../share/symbols/symbols.h:231 ../share/symbols/symbols.h:232 msgctxt "Symbol" -msgid "Grass Land" -msgstr "" +msgid "Information" +msgstr "資訊" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:248 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:49 ../share/symbols/symbols.h:50 msgctxt "Symbol" -msgid "Deciduous Forest" -msgstr "" +msgid "Hotel Information" +msgstr "旅館資訊" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:249 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:51 ../share/symbols/symbols.h:52 msgctxt "Symbol" -msgid "Mixed Forest" -msgstr "" +msgid "Air Transportation" +msgstr "空運" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:250 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:53 ../share/symbols/symbols.h:54 msgctxt "Symbol" -msgid "Coniferous Forest" -msgstr "" +msgid "Heliport" +msgstr "直升機機場" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:251 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:55 ../share/symbols/symbols.h:56 msgctxt "Symbol" -msgid "Church or Place of Worship" -msgstr "" +msgid "Taxi" +msgstr "計程車" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:252 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:57 ../share/symbols/symbols.h:58 msgctxt "Symbol" -msgid "Bank" -msgstr "" +msgid "Bus" +msgstr "公車" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:253 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:59 ../share/symbols/symbols.h:60 msgctxt "Symbol" -msgid "Power Lines" -msgstr "節點直線" +msgid "Ground Transportation" +msgstr "陸運" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:254 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:61 ../share/symbols/symbols.h:62 msgctxt "Symbol" -msgid "Watch Tower" -msgstr "" +msgid "Rail Transportation" +msgstr "鐵路運輸" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:255 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:63 ../share/symbols/symbols.h:64 msgctxt "Symbol" -msgid "Transmitter" -msgstr "圖樣變形" +msgid "Water Transportation" +msgstr "海運" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:256 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:65 ../share/symbols/symbols.h:66 msgctxt "Symbol" -msgid "Village" -msgstr "" +msgid "Car Rental" +msgstr "租車" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:257 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:67 ../share/symbols/symbols.h:68 msgctxt "Symbol" -msgid "Town" -msgstr "" +msgid "Restaurant" +msgstr "餐廳" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:258 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:69 ../share/symbols/symbols.h:70 msgctxt "Symbol" -msgid "Hamlet" -msgstr "" +msgid "Coffeeshop" +msgstr "咖啡館" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:259 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:71 ../share/symbols/symbols.h:72 msgctxt "Symbol" -msgid "City" -msgstr "" +msgid "Bar" +msgstr "酒吧" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:260 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:73 ../share/symbols/symbols.h:74 msgctxt "Symbol" -msgid "Peak" -msgstr "" +msgid "Shops" +msgstr "商店" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:261 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:75 ../share/symbols/symbols.h:76 msgctxt "Symbol" -msgid "Mountain Pass" -msgstr "彩色玻璃" +msgid "Barber Shop - Beauty Salon" +msgstr "理髮店 - 美髮沙龍" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:262 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:77 ../share/symbols/symbols.h:78 msgctxt "Symbol" -msgid "Mine" -msgstr "" +msgid "Barber Shop" +msgstr "理髮店" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:263 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:79 ../share/symbols/symbols.h:80 msgctxt "Symbol" -msgid "Military Complex" -msgstr "" +msgid "Beauty Salon" +msgstr "美髮沙龍" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:264 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:81 ../share/symbols/symbols.h:82 msgctxt "Symbol" -msgid "Embassy" -msgstr "" +msgid "Ticket Purchase" +msgstr "購票處" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:265 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:83 ../share/symbols/symbols.h:84 msgctxt "Symbol" -msgid "Toy Shop" -msgstr "" +msgid "Baggage Check In" +msgstr "行李托運" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:266 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:85 ../share/symbols/symbols.h:86 msgctxt "Symbol" -msgid "Supermarket" -msgstr "設定標記" +msgid "Baggage Claim" +msgstr "行李提領" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:267 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:87 ../share/symbols/symbols.h:88 msgctxt "Symbol" -msgid "Jewlers" -msgstr "" +msgid "Customs" +msgstr "海關" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:268 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:89 ../share/symbols/symbols.h:90 msgctxt "Symbol" -msgid "Hairdressers" -msgstr "" +msgid "Immigration" +msgstr "入境" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:269 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:91 ../share/symbols/symbols.h:92 msgctxt "Symbol" -msgid "Greengrocer" -msgstr "綠" +msgid "Departing Flights" +msgstr "出發班機" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:270 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:93 ../share/symbols/symbols.h:94 msgctxt "Symbol" -msgid "Gift Shop" -msgstr "" +msgid "Arriving Flights" +msgstr "抵達班機" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:271 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:95 ../share/symbols/symbols.h:96 msgctxt "Symbol" -msgid "Garden Center" -msgstr "中點和中心" +msgid "Smoking" +msgstr "吸菸" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:272 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:97 ../share/symbols/symbols.h:98 msgctxt "Symbol" -msgid "Florist" -msgstr "" +msgid "No Smoking" +msgstr "禁止吸菸" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:273 +#. Symbols: ./AigaSymbols.svg +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:99 ../share/symbols/symbols.h:100 +#: ../share/symbols/symbols.h:241 ../share/symbols/symbols.h:242 msgctxt "Symbol" -msgid "Fish Monger" -msgstr "" +msgid "Parking" +msgstr "停車" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:274 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:101 ../share/symbols/symbols.h:102 msgctxt "Symbol" -msgid "Real Estate" -msgstr "" +msgid "No Parking" +msgstr "禁止停車" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:275 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:103 ../share/symbols/symbols.h:104 msgctxt "Symbol" -msgid "Hardware / DIY" -msgstr "硬體" +msgid "No Dogs" +msgstr "禁止攜狗" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:276 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:105 ../share/symbols/symbols.h:106 msgctxt "Symbol" -msgid "Shop" -msgstr "" +msgid "No Entry" +msgstr "禁止進入" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:277 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:107 ../share/symbols/symbols.h:108 msgctxt "Symbol" -msgid "Confectioner" -msgstr "連接關係" +msgid "Exit" +msgstr "出口" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:278 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:109 ../share/symbols/symbols.h:110 msgctxt "Symbol" -msgid "Computer Shop" -msgstr "" +msgid "Fire Extinguisher" +msgstr "滅火器" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:279 -#, fuzzy +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:111 ../share/symbols/symbols.h:112 msgctxt "Symbol" -msgid "Clothing" -msgstr "平滑:" +msgid "Right Arrow" +msgstr "右箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:280 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:113 ../share/symbols/symbols.h:114 msgctxt "Symbol" -msgid "Mechanic" -msgstr "" +msgid "Forward and Right Arrow" +msgstr "向前和往右箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:281 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:115 ../share/symbols/symbols.h:116 msgctxt "Symbol" -msgid "Car Dealer" -msgstr "" +msgid "Up Arrow" +msgstr "上箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:282 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:117 ../share/symbols/symbols.h:118 msgctxt "Symbol" -msgid "Butcher" -msgstr "" +msgid "Forward and Left Arrow" +msgstr "向前或往左箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:283 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:119 ../share/symbols/symbols.h:120 msgctxt "Symbol" -msgid "Meat Shop" -msgstr "" +msgid "Left Arrow" +msgstr "左箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:284 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:121 ../share/symbols/symbols.h:122 msgctxt "Symbol" -msgid "Bicycle Shop" -msgstr "" +msgid "Left and Down Arrow" +msgstr "往左和向下箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:285 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:123 ../share/symbols/symbols.h:124 msgctxt "Symbol" -msgid "Baker" -msgstr "" +msgid "Down Arrow" +msgstr "下箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:286 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:125 ../share/symbols/symbols.h:126 msgctxt "Symbol" -msgid "Off License / Liquor Store" -msgstr "" +msgid "Right and Down Arrow" +msgstr "往右和向下箭頭" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:287 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:127 ../share/symbols/symbols.h:128 msgctxt "Symbol" -msgid "Wind Surfing" -msgstr "" +msgid "NPS Wheelchair Accessible - 1996" +msgstr "NPS 無障礙通道 - 1996" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:288 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:129 ../share/symbols/symbols.h:130 msgctxt "Symbol" -msgid "Tennis" -msgstr "" +msgid "NPS Wheelchair Accessible" +msgstr "NPS 無障礙通道" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:289 +#. Symbols: ./AigaSymbols.svg +#: ../share/symbols/symbols.h:131 ../share/symbols/symbols.h:132 msgctxt "Symbol" -msgid "Outdoor Pool" -msgstr "" +msgid "New Wheelchair Accessible" +msgstr "新無障礙通道" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:290 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:133 msgctxt "Symbol" -msgid "Indoor Pool" -msgstr "" +msgid "Word Balloons" +msgstr "對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:291 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:134 msgctxt "Symbol" -msgid "Skiing" -msgstr "" +msgid "Thought Balloon" +msgstr "內心對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:292 -#, fuzzy +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:135 msgctxt "Symbol" -msgid "Sailing" -msgstr "捲動" +msgid "Dream Speaking" +msgstr "夢話" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:293 -#, fuzzy +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:136 msgctxt "Symbol" -msgid "Leisure Center" -msgstr "重設中心點" +msgid "Rounded Balloon" +msgstr "圓角矩形對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:294 -#, fuzzy +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:137 msgctxt "Symbol" -msgid "Ice Skating" -msgstr "綢緞" +msgid "Squared Balloon" +msgstr "矩形對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:295 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:138 msgctxt "Symbol" -msgid "Equine Sports" -msgstr "" +msgid "Over the Phone" +msgstr "電話中交談" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:296 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:139 msgctxt "Symbol" -msgid "Rock Climbing" -msgstr "" +msgid "Hip Balloon" +msgstr "朵形對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:297 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:140 msgctxt "Symbol" -msgid "Gym" -msgstr "" +msgid "Circle Balloon" +msgstr "圓形對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:298 +#. Symbols: ./BalloonSymbols.svg +#: ../share/symbols/symbols.h:141 msgctxt "Symbol" -msgid "Golf" -msgstr "" +msgid "Exclaim Balloon" +msgstr "呼喊對話框" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:299 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:142 msgctxt "Symbol" -msgid "Diving" -msgstr "分割" +msgid "Flow Chart Shapes" +msgstr "流程圖表形狀" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:300 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:143 msgctxt "Symbol" -msgid "Archery" -msgstr "" +msgid "Process" +msgstr "流程" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:301 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:144 msgctxt "Symbol" -msgid "Zoo" -msgstr "縮放" +msgid "Input/Output" +msgstr "輸入/輸出" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:302 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:145 msgctxt "Symbol" -msgid "Wreck" -msgstr "" +msgid "Document" +msgstr "文件" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:303 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:146 msgctxt "Symbol" -msgid "Water Wheel" -msgstr "色環" +msgid "Manual Operation" +msgstr "手動操作" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:304 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:147 msgctxt "Symbol" -msgid "Point of Interest" -msgstr "" +msgid "Preparation" +msgstr "準備" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:305 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:148 msgctxt "Symbol" -msgid "Theater" -msgstr "建立" +msgid "Merge" +msgstr "合併" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:306 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:149 msgctxt "Symbol" -msgid "Park / Picnic Area" -msgstr "" +msgid "Decision" +msgstr "判定" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:307 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:150 msgctxt "Symbol" -msgid "Monument" -msgstr "文件" +msgid "Magnetic Tape" +msgstr "磁帶" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:309 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:151 msgctxt "Symbol" -msgid "Beach" -msgstr "" +msgid "Display" +msgstr "顯示" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:310 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:152 msgctxt "Symbol" -msgid "Battle Location" -msgstr "位置:" +msgid "Auxiliary Operation" +msgstr "輔助操作" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:311 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:153 msgctxt "Symbol" -msgid "Archaeology / Ruins" -msgstr "" +msgid "Manual Input" +msgstr "手動輸入" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:312 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:154 msgctxt "Symbol" -msgid "Walking" -msgstr "" +msgid "Extract" +msgstr "提取" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:313 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:155 msgctxt "Symbol" -msgid "Train" -msgstr "顆粒" +msgid "Terminal/Interrupt" +msgstr "終端/中斷" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:315 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:156 msgctxt "Symbol" -msgid "Underground Rail" -msgstr "" +msgid "Punched Card" +msgstr "打孔卡" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:317 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:157 msgctxt "Symbol" -msgid "Bike Rental" -msgstr "" +msgid "Punch Tape" +msgstr "打孔帶" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:319 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:158 msgctxt "Symbol" -msgid "Carpool" -msgstr "" +msgid "Online Storage" +msgstr "線上儲存" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:320 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:159 msgctxt "Symbol" -msgid "Flood Gate" -msgstr "填滿" +msgid "Keying" +msgstr "鍵入" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:321 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:160 msgctxt "Symbol" -msgid "Shipping" -msgstr "淋濕" +msgid "Sort" +msgstr "排序" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:322 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:161 msgctxt "Symbol" -msgid "Disabled Parking" -msgstr "停用" +msgid "Connector" +msgstr "連接線" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:323 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:162 msgctxt "Symbol" -msgid "Paid Parking" -msgstr "" +msgid "Off-Page Connector" +msgstr "翻頁連接線" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:324 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:163 msgctxt "Symbol" -msgid "Bike Parking" -msgstr "" +msgid "Transmittal Tape" +msgstr "傳輸磁帶" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:326 +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:164 msgctxt "Symbol" -msgid "Marina" -msgstr "" +msgid "Communication Link" +msgstr "通訊鏈" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:327 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:165 msgctxt "Symbol" -msgid "Fuel Station" -msgstr "相關性:" +msgid "Collate" +msgstr "整理" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:328 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:166 msgctxt "Symbol" -msgid "Bus Stop" -msgstr "停止(_S)" +msgid "Comment/Annotation" +msgstr "評論/備註" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:329 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:167 msgctxt "Symbol" -msgid "Bus Station" -msgstr "減少飽和度" +msgid "Core" +msgstr "核心" -#. Symbols: ./MapSymbols.svg -#: ../share/symbols/symbols.h:330 -#, fuzzy +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:168 msgctxt "Symbol" -msgid "Airport" -msgstr "匯入" - -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "A4 Landscape Page" -msgstr "橫向(_L)" - -#: ../share/templates/templates.h:1 -msgid "Empty A4 landscape sheet" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "A4 paper sheet empty landscape" -msgstr "" - -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "A4 Page" -msgstr "頁面" - -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Empty A4 sheet" -msgstr "空的選取區" - -#: ../share/templates/templates.h:1 -msgid "A4 paper sheet empty" -msgstr "" - -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Black Opaque" -msgstr "黑色色版" - -#: ../share/templates/templates.h:1 -msgid "Empty black page" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "black opaque empty" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "White Opaque" -msgstr "" - -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Empty white page" -msgstr "匯出繪圖部份,而非整個頁面" - -#: ../share/templates/templates.h:1 -msgid "white opaque empty" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Business Card 85x54mm" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Empty business card template." -msgstr "" +msgid "Predefined Process" +msgstr "前設流程" -#: ../share/templates/templates.h:1 -msgid "business card empty 85x54" -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:169 +msgctxt "Symbol" +msgid "Magnetic Disk (Database)" +msgstr "磁碟 (資料庫)" -#: ../share/templates/templates.h:1 -msgid "Business Card 90x50mm" -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:170 +msgctxt "Symbol" +msgid "Magnetic Drum (Direct Access)" +msgstr "磁鼓 (直接存取)" -#: ../share/templates/templates.h:1 -msgid "business card empty 90x50" -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:171 +msgctxt "Symbol" +msgid "Offline Storage" +msgstr "離線儲存" -#: ../share/templates/templates.h:1 -msgid "CD Cover 300dpi" -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:172 +msgctxt "Symbol" +msgid "Logical Or" +msgstr "邏輯 - 或" -#: ../share/templates/templates.h:1 -msgid "Empty CD box cover." -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:173 +msgctxt "Symbol" +msgid "Logical And" +msgstr "邏輯 - 且" -#: ../share/templates/templates.h:1 -msgid "CD cover disc disk 300dpi box" -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:174 +msgctxt "Symbol" +msgid "Delay" +msgstr "延遲" -#: ../share/templates/templates.h:1 -msgid "CD Label 120x120 " -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:175 +msgctxt "Symbol" +msgid "Loop Limit Begin" +msgstr "迴圈限制起始" -#: ../share/templates/templates.h:1 -msgid "Simple CD Label template with disc's pattern." -msgstr "" +#. Symbols: ./FlowSymbols.svg +#: ../share/symbols/symbols.h:176 +msgctxt "Symbol" +msgid "Loop Limit End" +msgstr "迴圈限制結束" -#: ../share/templates/templates.h:1 -msgid "CD label 120x120 disc disk" -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:177 +msgctxt "Symbol" +msgid "Logic Symbols" +msgstr "邏輯符號" -#: ../share/templates/templates.h:1 -msgid "DVD Cover Regular 300dpi " -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:178 +msgctxt "Symbol" +msgid "Xnor Gate" +msgstr "反互斥或閘 (Xnor 閘)" -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD covers." -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:179 +msgctxt "Symbol" +msgid "Xor Gate" +msgstr "互斥或閘 (Xor 閘)" -#: ../share/templates/templates.h:1 -msgid "DVD cover regular 300dpi" -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:180 +msgctxt "Symbol" +msgid "Nor Gate" +msgstr "反或閘 (Nor 閘)" -#: ../share/templates/templates.h:1 -msgid "DVD Cover Slim 300dpi " -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:181 +msgctxt "Symbol" +msgid "Or Gate" +msgstr "或閘 (Or 閘)" -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD slim covers." -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:182 +msgctxt "Symbol" +msgid "Nand Gate" +msgstr "反及閘 (Nand 閘)" -#: ../share/templates/templates.h:1 -msgid "DVD cover slim 300dpi" -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:183 +msgctxt "Symbol" +msgid "And Gate" +msgstr "及閘 (And 閘)" -#: ../share/templates/templates.h:1 -msgid "DVD Cover Superslim 300dpi " -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:184 +msgctxt "Symbol" +msgid "Buffer" +msgstr "緩衝區" -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD superslim covers." -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:185 +msgctxt "Symbol" +msgid "Not Gate" +msgstr "反閘 (Not 閘)" -#: ../share/templates/templates.h:1 -msgid "DVD cover superslim 300dpi" -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:186 +msgctxt "Symbol" +msgid "Buffer Small" +msgstr "小型緩衝區" -#: ../share/templates/templates.h:1 -msgid "DVD Cover Ultraslim 300dpi " -msgstr "" +#. Symbols: ./LogicSymbols.svg +#: ../share/symbols/symbols.h:187 +msgctxt "Symbol" +msgid "Not Gate Small" +msgstr "小型反閘" -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD ultraslim covers." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:188 +msgctxt "Symbol" +msgid "United States National Park Service Map Symbols" +msgstr "美國國家公園服務地圖符號" -#: ../share/templates/templates.h:1 -msgid "DVD cover ultraslim 300dpi" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:189 ../share/symbols/symbols.h:190 +msgctxt "Symbol" +msgid "Airport" +msgstr "機場" -#: ../share/templates/templates.h:1 -msgid "Desktop 1024x768" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:191 ../share/symbols/symbols.h:192 +msgctxt "Symbol" +msgid "Amphitheatre" +msgstr "圓形戶外劇場" -#: ../share/templates/templates.h:1 -msgid "Empty desktop size sheet" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:193 ../share/symbols/symbols.h:194 +msgctxt "Symbol" +msgid "Bicycle Trail" +msgstr "自行車道" -#: ../share/templates/templates.h:1 -msgid "desktop 1024x768 wallpaper" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:195 ../share/symbols/symbols.h:196 +msgctxt "Symbol" +msgid "Boat Launch" +msgstr "船隻下水埠" -#: ../share/templates/templates.h:1 -msgid "Desktop 1600x1200" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:197 ../share/symbols/symbols.h:198 +msgctxt "Symbol" +msgid "Boat Tour" +msgstr "觀光船" -#: ../share/templates/templates.h:1 -msgid "desktop 1600x1200 wallpaper" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:199 ../share/symbols/symbols.h:200 +msgctxt "Symbol" +msgid "Bus Stop" +msgstr "公車停靠站" -#: ../share/templates/templates.h:1 -msgid "Desktop 640x480" -msgstr "" +# 封端、帽緣、線段末端 +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:201 ../share/symbols/symbols.h:202 +msgctxt "Symbol" +msgid "Campfire" +msgstr "營火" -#: ../share/templates/templates.h:1 -msgid "desktop 640x480 wallpaper" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:203 ../share/symbols/symbols.h:204 +msgctxt "Symbol" +msgid "Campground" +msgstr "露營區" -#: ../share/templates/templates.h:1 -msgid "Desktop 800x600" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:205 ../share/symbols/symbols.h:206 +msgctxt "Symbol" +msgid "CanoeAccess" +msgstr "無法存取" -#: ../share/templates/templates.h:1 -msgid "desktop 800x600 wallpaper" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:207 ../share/symbols/symbols.h:208 +msgctxt "Symbol" +msgid "Crosscountry Ski Trail" +msgstr "越野滑雪道" -#: ../share/templates/templates.h:1 -msgid "Fontforge Glyph" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:209 ../share/symbols/symbols.h:210 +msgctxt "Symbol" +msgid "Downhill Skiing" +msgstr "阿爾卑斯式滑雪" -#: ../share/templates/templates.h:1 -msgid "font fontforge glyph 1000x1000" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:211 ../share/symbols/symbols.h:212 +msgctxt "Symbol" +msgid "Drinking Water" +msgstr "飲用水" -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Icon 16x16" -msgstr "16x16" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:215 ../share/symbols/symbols.h:216 +msgctxt "Symbol" +msgid "Fishing" +msgstr "釣魚" -#: ../share/templates/templates.h:1 -msgid "Small 16x16 icon template." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:217 ../share/symbols/symbols.h:218 +msgctxt "Symbol" +msgid "Food Service" +msgstr "飲食服務" -#: ../share/templates/templates.h:1 -msgid "icon 16x16 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:219 ../share/symbols/symbols.h:220 +msgctxt "Symbol" +msgid "Four Wheel Drive Road" +msgstr "四輪驅動車道" -#: ../share/templates/templates.h:1 -msgid "Icon 32x32" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:221 ../share/symbols/symbols.h:222 +msgctxt "Symbol" +msgid "Gas Station" +msgstr "加氣站" -#: ../share/templates/templates.h:1 -msgid "32x32 icon template." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:223 ../share/symbols/symbols.h:224 +msgctxt "Symbol" +msgid "Golfing" +msgstr "高爾夫球" -#: ../share/templates/templates.h:1 -msgid "icon 32x32 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:225 ../share/symbols/symbols.h:226 +msgctxt "Symbol" +msgid "Horseback Riding" +msgstr "騎馬活動" -#: ../share/templates/templates.h:1 -msgid "Icon 48x48" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:227 ../share/symbols/symbols.h:228 +msgctxt "Symbol" +msgid "Hospital" +msgstr "醫院" -#: ../share/templates/templates.h:1 -msgid "48x48 icon template." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:229 ../share/symbols/symbols.h:230 +msgctxt "Symbol" +msgid "Ice Skating" +msgstr "溜冰" -#: ../share/templates/templates.h:1 -msgid "icon 48x48 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:233 ../share/symbols/symbols.h:234 +msgctxt "Symbol" +msgid "Litter Receptacle" +msgstr "垃圾桶" -#: ../share/templates/templates.h:1 -msgid "Icon 64x64" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:235 ../share/symbols/symbols.h:236 +msgctxt "Symbol" +msgid "Lodging" +msgstr "寄宿" -#: ../share/templates/templates.h:1 -msgid "64x64 icon template." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:237 ../share/symbols/symbols.h:238 +msgctxt "Symbol" +msgid "Marina" +msgstr "碼頭" -#: ../share/templates/templates.h:1 -msgid "icon 64x64 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:239 ../share/symbols/symbols.h:240 +msgctxt "Symbol" +msgid "Recycling" +msgstr "回收" -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Letter Landscape" -msgstr "橫向(_L)" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:243 ../share/symbols/symbols.h:244 +msgctxt "Symbol" +msgid "Pets On Leash" +msgstr "抱著寵物或上鍊" -#: ../share/templates/templates.h:1 -msgid "Standard letter landscape sheet - 792x612" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:245 ../share/symbols/symbols.h:246 +msgctxt "Symbol" +msgid "Picnic Area" +msgstr "野餐區" -#: ../share/templates/templates.h:1 -msgid "letter landscape 792x612 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:247 ../share/symbols/symbols.h:248 +msgctxt "Symbol" +msgid "Post Office" +msgstr "郵局" -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "Letter" -msgstr "字母:" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:249 ../share/symbols/symbols.h:250 +msgctxt "Symbol" +msgid "Ranger Station" +msgstr "林業站" -#: ../share/templates/templates.h:1 -msgid "Standard letter sheet - 612x792" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:251 ../share/symbols/symbols.h:252 +msgctxt "Symbol" +msgid "RV Campground" +msgstr "RV 露營區" -#: ../share/templates/templates.h:1 -msgid "letter 612x792 empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:253 ../share/symbols/symbols.h:254 +msgctxt "Symbol" +msgid "Restrooms" +msgstr "洗手間" -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "No Borders" -msgstr "順序" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:255 ../share/symbols/symbols.h:256 +msgctxt "Symbol" +msgid "Sailing" +msgstr "航行" -#: ../share/templates/templates.h:1 -msgid "Empty sheet with no borders" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:257 ../share/symbols/symbols.h:258 +msgctxt "Symbol" +msgid "Sanitary Disposal Station" +msgstr "衛生處理站" -#: ../share/templates/templates.h:1 -msgid "no borders empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:259 ../share/symbols/symbols.h:260 +msgctxt "Symbol" +msgid "Scuba Diving" +msgstr "水肺潛水" -#: ../share/templates/templates.h:1 -#, fuzzy -msgid "No Layers" -msgstr "圖層" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:261 ../share/symbols/symbols.h:262 +msgctxt "Symbol" +msgid "Self Guided Trail" +msgstr "自導式步道" -#: ../share/templates/templates.h:1 -msgid "Empty sheet with no layers" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:263 ../share/symbols/symbols.h:264 +msgctxt "Symbol" +msgid "Shelter" +msgstr "避難所" -#: ../share/templates/templates.h:1 -msgid "no layers empty" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:265 ../share/symbols/symbols.h:266 +msgctxt "Symbol" +msgid "Showers" +msgstr "淋浴" -#: ../share/templates/templates.h:1 -msgid "Video HDTV 1920x1080" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:267 ../share/symbols/symbols.h:268 +msgctxt "Symbol" +msgid "Sledding" +msgstr "滑雪" -#: ../share/templates/templates.h:1 -msgid "HDTV video template for 1920x1080 resolution." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:269 ../share/symbols/symbols.h:270 +msgctxt "Symbol" +msgid "SnowmobileTrail" +msgstr "雪車道" -#: ../share/templates/templates.h:1 -msgid "HDTV video empty 1920x1080" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:271 ../share/symbols/symbols.h:272 +msgctxt "Symbol" +msgid "Stable" +msgstr "馬廄" -#: ../share/templates/templates.h:1 -msgid "Video NTSC 720x486" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:273 ../share/symbols/symbols.h:274 +msgctxt "Symbol" +msgid "Store" +msgstr "商店" -#: ../share/templates/templates.h:1 -msgid "NTSC video template for 720x486 resolution." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:275 ../share/symbols/symbols.h:276 +msgctxt "Symbol" +msgid "Swimming" +msgstr "游泳" -#: ../share/templates/templates.h:1 -msgid "NTSC video empty 720x486" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:279 ../share/symbols/symbols.h:280 +msgctxt "Symbol" +msgid "Emergency Telephone" +msgstr "緊急電話" -#: ../share/templates/templates.h:1 -msgid "Video PAL 728x576" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:281 ../share/symbols/symbols.h:282 +msgctxt "Symbol" +msgid "Trailhead" +msgstr "登山口" -#: ../share/templates/templates.h:1 -msgid "PAL video template for 728x576 resolution." -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:283 ../share/symbols/symbols.h:284 +msgctxt "Symbol" +msgid "Wheelchair Accessible" +msgstr "無障礙通道" -#: ../share/templates/templates.h:1 -msgid "PAL video empty 728x576" -msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:285 ../share/symbols/symbols.h:286 +msgctxt "Symbol" +msgid "Wind Surfing" +msgstr "衝浪" #: ../share/templates/templates.h:1 -msgid "Web Banner 468x60" -msgstr "" +msgid "CD Label 120mmx120mm " +msgstr "CD 標籤 120公釐x120公釐" #: ../share/templates/templates.h:1 -msgid "Empty 468x60 web banner template." -msgstr "" +msgid "Simple CD Label template with disc's pattern." +msgstr "有光碟圖案的簡單 CD 標籤範本。" #: ../share/templates/templates.h:1 -msgid "web banner 468x60 empty" -msgstr "" +msgid "CD label 120x120 disc disk" +msgstr "CD 光碟標籤 120x120" #: ../share/templates/templates.h:1 -msgid "Web Banner 728x90" -msgstr "" +msgid "No Layers" +msgstr "無圖層" #: ../share/templates/templates.h:1 -msgid "Empty 728x90 web banner template." -msgstr "" +msgid "Empty sheet with no layers" +msgstr "無圖層的空白紙張" #: ../share/templates/templates.h:1 -msgid "web banner 728x90 empty" -msgstr "" +msgid "no layers empty" +msgstr "無圖層的空白頁" #: ../share/templates/templates.h:1 -#, fuzzy msgid "LaTeX Beamer" -msgstr "LaTeX 列印" +msgstr "LaTeX Beamer" #: ../share/templates/templates.h:1 msgid "LaTeX beamer template with helping grid." -msgstr "" +msgstr "含輔助格線的 LaTeX beamer 範本" #: ../share/templates/templates.h:1 msgid "LaTex LaTeX latex grid beamer" -msgstr "" +msgstr "LaTex LaTeX latex 格線 beamer" #: ../share/templates/templates.h:1 -#, fuzzy msgid "Typography Canvas" -msgstr "1 - 設定印刷畫布" +msgstr "印刷畫布" #: ../share/templates/templates.h:1 msgid "Empty typography canvas with helping guidelines." -msgstr "" +msgstr "含有輔助參考線的空白印刷畫布。" #: ../share/templates/templates.h:1 -#, fuzzy msgid "guidelines typography canvas" -msgstr "1 - 設定印刷畫布" +msgstr "參考線印刷畫布" #. 3D box -#: ../src/box3d.cpp:259 ../src/box3d.cpp:1310 -#: ../src/ui/dialog/inkscape-preferences.cpp:398 +#: ../src/box3d.cpp:260 ../src/box3d.cpp:1312 +#: ../src/ui/dialog/inkscape-preferences.cpp:400 msgid "3D Box" msgstr "立方體" -#: ../src/color-profile.cpp:852 +#: ../src/color-profile.cpp:853 #, c-format msgid "Color profiles directory (%s) is unavailable." msgstr "色彩描述檔目錄 (%s) 無法使用。" -#: ../src/color-profile.cpp:911 ../src/color-profile.cpp:928 +#: ../src/color-profile.cpp:912 ../src/color-profile.cpp:929 msgid "(invalid UTF-8 string)" msgstr "(不正確的 UTF-8 字串)" -#: ../src/color-profile.cpp:913 ../src/filter-enums.cpp:121 -#: ../src/live_effects/lpe-ruler.cpp:32 -#: ../src/ui/dialog/filter-effects-dialog.cpp:549 -#: ../src/ui/dialog/inkscape-preferences.cpp:332 -#: ../src/ui/dialog/inkscape-preferences.cpp:643 -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 -#: ../src/ui/dialog/inkscape-preferences.cpp:1837 -#: ../src/ui/dialog/input.cpp:742 ../src/ui/dialog/input.cpp:743 -#: ../src/ui/dialog/input.cpp:1571 ../src/ui/dialog/input.cpp:1625 -#: ../src/verbs.cpp:2349 ../src/widgets/gradient-toolbar.cpp:1112 -#: ../src/widgets/pencil-toolbar.cpp:155 -#: ../src/widgets/stroke-marker-selector.cpp:388 -#: ../share/extensions/gcodetools_area.inx.h:48 -#: ../share/extensions/gcodetools_dxf_points.inx.h:20 -#: ../share/extensions/gcodetools_engraving.inx.h:26 -#: ../share/extensions/gcodetools_graffiti.inx.h:37 -#: ../share/extensions/gcodetools_lathe.inx.h:41 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 -#: ../share/extensions/grid_polar.inx.h:4 -#: ../share/extensions/guides_creator.inx.h:24 -#: ../share/extensions/plotter.inx.h:15 ../share/extensions/scour.inx.h:18 +#: ../src/color-profile.cpp:914 +msgctxt "Profile name" msgid "None" msgstr "無" -#: ../src/context-fns.cpp:36 ../src/context-fns.cpp:65 +#: ../src/context-fns.cpp:33 ../src/context-fns.cpp:62 msgid "Current layer is hidden. Unhide it to be able to draw on it." msgstr "目前圖層已隱藏。取消隱藏才可以在此圖層上繪圖。" -#: ../src/context-fns.cpp:42 ../src/context-fns.cpp:71 +#: ../src/context-fns.cpp:39 ../src/context-fns.cpp:68 msgid "Current layer is locked. Unlock it to be able to draw on it." msgstr "目前圖層已鎖定。解除鎖定才可以在此圖層上繪圖。" @@ -3283,16 +4399,16 @@ msgstr "目前圖層已鎖定。解除鎖定才可以在此圖層上繪 msgid "Create guide" msgstr "建立參考線" -#: ../src/desktop-events.cpp:471 +#: ../src/desktop-events.cpp:481 msgid "Move guide" msgstr "移動參考線" -#: ../src/desktop-events.cpp:478 ../src/desktop-events.cpp:536 +#: ../src/desktop-events.cpp:488 ../src/desktop-events.cpp:546 #: ../src/ui/dialog/guides.cpp:138 msgid "Delete guide" msgstr "刪除參考線" -#: ../src/desktop-events.cpp:516 +#: ../src/desktop-events.cpp:526 #, c-format msgid "Guideline: %s" msgstr "參考線:%s" @@ -3305,95 +4421,92 @@ msgstr "無上一個畫面縮放。" msgid "No next zoom." msgstr "無下一個畫面縮放。" -#: ../src/display/canvas-axonomgrid.cpp:317 ../src/display/canvas-grid.cpp:693 +#: ../src/display/canvas-axonomgrid.cpp:317 ../src/display/canvas-grid.cpp:667 msgid "Grid _units:" msgstr "格線單位(_U):" -#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:695 +#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:669 msgid "_Origin X:" msgstr "X 原點(_O):" -#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:695 -#: ../src/ui/dialog/inkscape-preferences.cpp:737 -#: ../src/ui/dialog/inkscape-preferences.cpp:762 +#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:669 +#: ../src/ui/dialog/inkscape-preferences.cpp:739 +#: ../src/ui/dialog/inkscape-preferences.cpp:764 msgid "X coordinate of grid origin" msgstr "格線 X 坐標的原點" -#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:697 +#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:671 msgid "O_rigin Y:" msgstr "Y 原點(_R):" -#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:697 -#: ../src/ui/dialog/inkscape-preferences.cpp:738 -#: ../src/ui/dialog/inkscape-preferences.cpp:763 +#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:671 +#: ../src/ui/dialog/inkscape-preferences.cpp:740 +#: ../src/ui/dialog/inkscape-preferences.cpp:765 msgid "Y coordinate of grid origin" msgstr "格線 Y 坐標的原點" -#: ../src/display/canvas-axonomgrid.cpp:323 ../src/display/canvas-grid.cpp:701 +#: ../src/display/canvas-axonomgrid.cpp:323 ../src/display/canvas-grid.cpp:675 msgid "Spacing _Y:" msgstr "_Y 間距:" #: ../src/display/canvas-axonomgrid.cpp:323 -#: ../src/ui/dialog/inkscape-preferences.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Base length of z-axis" msgstr "Z 軸的基本長度" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:769 -#: ../src/widgets/box3d-toolbar.cpp:299 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 +#: ../src/widgets/box3d-toolbar.cpp:302 msgid "Angle X:" msgstr "X 角度:" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:769 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Angle of x-axis" msgstr "X 軸的角度" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:770 -#: ../src/widgets/box3d-toolbar.cpp:378 +#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/widgets/box3d-toolbar.cpp:381 msgid "Angle Z:" msgstr "Z 角度:" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:770 +#: ../src/ui/dialog/inkscape-preferences.cpp:772 msgid "Angle of z-axis" msgstr "Z 軸的角度" -#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:705 -#, fuzzy +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 msgid "Minor grid line _color:" -msgstr "主要格線顏色:" +msgstr "次要格線顏色(_C):" -#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:705 -#: ../src/ui/dialog/inkscape-preferences.cpp:721 -#, fuzzy +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 +#: ../src/ui/dialog/inkscape-preferences.cpp:723 msgid "Minor grid line color" -msgstr "主要格線顏色" +msgstr "次要格線顏色" -#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:705 -#, fuzzy +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 msgid "Color of the minor grid lines" -msgstr "格線的顏色" +msgstr "次要格線的顏色" -#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:710 +#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:684 msgid "Ma_jor grid line color:" msgstr "主要格線顏色(_J):" -#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:710 -#: ../src/ui/dialog/inkscape-preferences.cpp:723 +#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:725 msgid "Major grid line color" msgstr "主要格線顏色" -#: ../src/display/canvas-axonomgrid.cpp:337 ../src/display/canvas-grid.cpp:711 +#: ../src/display/canvas-axonomgrid.cpp:337 ../src/display/canvas-grid.cpp:685 msgid "Color of the major (highlighted) grid lines" msgstr "主要格線 (高亮度顯示) 的顏色" -#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:715 +#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:689 msgid "_Major grid line every:" msgstr "主要格線的間隔數(_M):" -#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:715 +#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:689 msgid "lines" msgstr "線" @@ -3405,59 +4518,59 @@ msgstr "矩形格線" msgid "Axonometric grid" msgstr "立體格線" -#: ../src/display/canvas-grid.cpp:275 +#: ../src/display/canvas-grid.cpp:249 msgid "Create new grid" msgstr "建立新格線" -#: ../src/display/canvas-grid.cpp:341 +#: ../src/display/canvas-grid.cpp:315 msgid "_Enabled" msgstr "啟用(_E)" -#: ../src/display/canvas-grid.cpp:342 +#: ../src/display/canvas-grid.cpp:316 msgid "" "Determines whether to snap to this grid or not. Can be 'on' for invisible " "grids." msgstr "決定是否要貼齊到這個格線。可選「是」來貼齊到隱形的格線。" -#: ../src/display/canvas-grid.cpp:346 +#: ../src/display/canvas-grid.cpp:320 msgid "Snap to visible _grid lines only" msgstr "只貼齊到可見的格線(_G)" -#: ../src/display/canvas-grid.cpp:347 +#: ../src/display/canvas-grid.cpp:321 msgid "" "When zoomed out, not all grid lines will be displayed. Only the visible ones " "will be snapped to" msgstr "當畫面放大時,不會顯示所有的格線。只有可見的格線會貼齊到" -#: ../src/display/canvas-grid.cpp:351 +#: ../src/display/canvas-grid.cpp:325 msgid "_Visible" msgstr "可見的格線(_V)" -#: ../src/display/canvas-grid.cpp:352 +#: ../src/display/canvas-grid.cpp:326 msgid "" "Determines whether the grid is displayed or not. Objects are still snapped " "to invisible grids." msgstr "決定是否要顯示格線。物件仍然會被貼齊到隱形的格線。" -#: ../src/display/canvas-grid.cpp:699 +#: ../src/display/canvas-grid.cpp:673 msgid "Spacing _X:" msgstr "_X 間距:" -#: ../src/display/canvas-grid.cpp:699 -#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/display/canvas-grid.cpp:673 +#: ../src/ui/dialog/inkscape-preferences.cpp:745 msgid "Distance between vertical grid lines" msgstr "垂直格線之間的距離" -#: ../src/display/canvas-grid.cpp:701 -#: ../src/ui/dialog/inkscape-preferences.cpp:744 +#: ../src/display/canvas-grid.cpp:675 +#: ../src/ui/dialog/inkscape-preferences.cpp:746 msgid "Distance between horizontal grid lines" msgstr "水平格線之間的距離" -#: ../src/display/canvas-grid.cpp:732 +#: ../src/display/canvas-grid.cpp:706 msgid "_Show dots instead of lines" msgstr "顯示格點而非格線(_S)" -#: ../src/display/canvas-grid.cpp:733 +#: ../src/display/canvas-grid.cpp:707 msgid "If set, displays dots at gridpoints instead of gridlines" msgstr "如果勾選,將會在格線交點上顯示點而不是直線" @@ -3607,11 +4720,11 @@ msgstr "邊界框中心點" msgid "Bounding box side midpoint" msgstr "邊界框邊緣中點" -#: ../src/display/snap-indicator.cpp:196 ../src/ui/tool/node.cpp:1319 +#: ../src/display/snap-indicator.cpp:196 ../src/ui/tool/node.cpp:1505 msgid "Smooth node" msgstr "平滑節點" -#: ../src/display/snap-indicator.cpp:199 ../src/ui/tool/node.cpp:1318 +#: ../src/display/snap-indicator.cpp:199 ../src/ui/tool/node.cpp:1504 msgid "Cusp node" msgstr "尖端節點" @@ -3667,21 +4780,21 @@ msgstr "格線間距的倍數" msgid " to " msgstr " 至" -#: ../src/document.cpp:542 +#: ../src/document.cpp:541 #, c-format msgid "New document %d" msgstr "新文件 %d" -#: ../src/document.cpp:547 -#, fuzzy, c-format +#: ../src/document.cpp:546 +#, c-format msgid "Memory document %d" -msgstr "記憶文件 %1" +msgstr "記憶文件 %d" -#: ../src/document.cpp:576 +#: ../src/document.cpp:575 msgid "Memory document %1" msgstr "記憶文件 %1" -#: ../src/document.cpp:788 +#: ../src/document.cpp:792 #, c-format msgid "Unnamed document %d" msgstr "未命名文件 %d" @@ -3691,11 +4804,11 @@ msgid "[Unchanged]" msgstr "[未變更]" #. Edit -#: ../src/event-log.cpp:371 ../src/event-log.cpp:374 ../src/verbs.cpp:2386 +#: ../src/event-log.cpp:371 ../src/event-log.cpp:374 ../src/verbs.cpp:2469 msgid "_Undo" msgstr "復原(_U)" -#: ../src/event-log.cpp:381 ../src/event-log.cpp:385 ../src/verbs.cpp:2388 +#: ../src/event-log.cpp:381 ../src/event-log.cpp:385 ../src/verbs.cpp:2471 msgid "_Redo" msgstr "取消復原(_R)" @@ -3723,10 +4836,9 @@ msgstr " 描述:" msgid " (No preferences)" msgstr " (無偏好設定)" -#: ../src/extension/effect.h:70 ../src/verbs.cpp:2160 -#, fuzzy +#: ../src/extension/effect.h:70 ../src/verbs.cpp:2243 msgid "Extensions" -msgstr "擴充功能(_N)" +msgstr "擴充功能" #. This is some filler text, needs to change before relase #: ../src/extension/error-file.cpp:52 @@ -3754,7 +4866,7 @@ msgstr "「%s」處理中, 請稍候..." #. static int i = 0; #. std::cout << "Checking module[" << i++ << "]: " << name << std::endl; -#: ../src/extension/extension.cpp:266 +#: ../src/extension/extension.cpp:271 msgid "" " This is caused by an improper .inx file for this extension. An improper ." "inx file could have been caused by a faulty installation of Inkscape." @@ -3762,70 +4874,70 @@ msgstr "" " 這是因為這個擴充功能的某個錯誤 .inx 檔案所造成。錯誤的 .inx 檔案可能是因為 " "Inkscape 安裝不正常所造成。" -#: ../src/extension/extension.cpp:276 +#: ../src/extension/extension.cpp:281 msgid "the extension is designed for Windows only." -msgstr "" +msgstr "此擴充功能只針對 Windows 設計。" -#: ../src/extension/extension.cpp:281 +#: ../src/extension/extension.cpp:286 msgid "an ID was not defined for it." msgstr "沒有為其定義的識別號。" -#: ../src/extension/extension.cpp:285 +#: ../src/extension/extension.cpp:290 msgid "there was no name defined for it." msgstr "沒有為其定義的名稱。" -#: ../src/extension/extension.cpp:289 +#: ../src/extension/extension.cpp:294 msgid "the XML description of it got lost." msgstr "其 XML 描述已經遺失。" -#: ../src/extension/extension.cpp:293 +#: ../src/extension/extension.cpp:298 msgid "no implementation was defined for the extension." msgstr "此擴充功能並沒有定義實現。" #. std::cout << "Failed: " << *(_deps[i]) << std::endl; -#: ../src/extension/extension.cpp:300 +#: ../src/extension/extension.cpp:305 msgid "a dependency was not met." msgstr "未符合某個相依性。" -#: ../src/extension/extension.cpp:320 +#: ../src/extension/extension.cpp:325 msgid "Extension \"" msgstr "擴充功能 \"" -#: ../src/extension/extension.cpp:320 +#: ../src/extension/extension.cpp:325 msgid "\" failed to load because " msgstr "\" 載入失敗,因為" -#: ../src/extension/extension.cpp:669 +#: ../src/extension/extension.cpp:674 #, c-format msgid "Could not create extension error log file '%s'" msgstr "無法建立擴充功能的錯誤日誌檔「%s」" -#: ../src/extension/extension.cpp:777 +#: ../src/extension/extension.cpp:782 #: ../share/extensions/webslicer_create_rect.inx.h:2 msgid "Name:" msgstr "名稱:" -#: ../src/extension/extension.cpp:778 +#: ../src/extension/extension.cpp:783 msgid "ID:" msgstr "ID:" -#: ../src/extension/extension.cpp:779 +#: ../src/extension/extension.cpp:784 msgid "State:" msgstr "狀態:" -#: ../src/extension/extension.cpp:779 +#: ../src/extension/extension.cpp:784 msgid "Loaded" msgstr "已載入" -#: ../src/extension/extension.cpp:779 +#: ../src/extension/extension.cpp:784 msgid "Unloaded" msgstr "已取消載入" -#: ../src/extension/extension.cpp:779 +#: ../src/extension/extension.cpp:784 msgid "Deactivated" msgstr "無作用" -#: ../src/extension/extension.cpp:819 +#: ../src/extension/extension.cpp:824 msgid "" "Currently there is no help available for this Extension. Please look on the " "Inkscape website or ask on the mailing lists if you have questions regarding " @@ -3834,7 +4946,7 @@ msgstr "" "目前沒有關於這個擴充功能的說明。如果你有關於這個擴充功能的問題請詳見 " "Inkscape 網站或在郵件論壇上詢問。" -#: ../src/extension/implementation/script.cpp:1037 +#: ../src/extension/implementation/script.cpp:1057 msgid "" "Inkscape has received additional data from the script executed. The script " "did not return an error, but this may indicate the results will not be as " @@ -3863,6 +4975,7 @@ msgstr "可調整臨界值" #: ../src/extension/internal/bitmap/raise.cpp:42 #: ../src/extension/internal/bitmap/sample.cpp:41 #: ../src/extension/internal/bluredge.cpp:138 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:63 #: ../src/ui/dialog/object-attributes.cpp:68 #: ../src/ui/dialog/object-attributes.cpp:77 #: ../src/widgets/calligraphy-toolbar.cpp:430 @@ -4079,64 +5192,6 @@ msgstr "套用碳筆風格化到選擇的點陣圖" msgid "Colorize" msgstr "著色" -#: ../src/extension/internal/bitmap/colorize.cpp:52 -#: ../src/extension/internal/filter/bumps.h:101 -#: ../src/extension/internal/filter/bumps.h:321 -#: ../src/extension/internal/filter/bumps.h:328 -#: ../src/extension/internal/filter/color.h:82 -#: ../src/extension/internal/filter/color.h:164 -#: ../src/extension/internal/filter/color.h:171 -#: ../src/extension/internal/filter/color.h:262 -#: ../src/extension/internal/filter/color.h:340 -#: ../src/extension/internal/filter/color.h:347 -#: ../src/extension/internal/filter/color.h:437 -#: ../src/extension/internal/filter/color.h:532 -#: ../src/extension/internal/filter/color.h:654 -#: ../src/extension/internal/filter/color.h:751 -#: ../src/extension/internal/filter/color.h:830 -#: ../src/extension/internal/filter/color.h:921 -#: ../src/extension/internal/filter/color.h:1049 -#: ../src/extension/internal/filter/color.h:1119 -#: ../src/extension/internal/filter/color.h:1212 -#: ../src/extension/internal/filter/color.h:1324 -#: ../src/extension/internal/filter/color.h:1429 -#: ../src/extension/internal/filter/color.h:1505 -#: ../src/extension/internal/filter/color.h:1609 -#: ../src/extension/internal/filter/color.h:1616 -#: ../src/extension/internal/filter/morphology.h:194 -#: ../src/extension/internal/filter/overlays.h:73 -#: ../src/extension/internal/filter/paint.h:99 -#: ../src/extension/internal/filter/paint.h:713 -#: ../src/extension/internal/filter/paint.h:717 -#: ../src/extension/internal/filter/shadows.h:73 -#: ../src/extension/internal/filter/transparency.h:345 -#: ../src/filter-enums.cpp:66 ../src/ui/dialog/clonetiler.cpp:832 -#: ../src/ui/dialog/clonetiler.cpp:983 -#: ../src/ui/dialog/document-properties.cpp:157 -#: ../share/extensions/color_HSL_adjust.inx.h:20 -#: ../share/extensions/color_blackandwhite.inx.h:3 -#: ../share/extensions/color_brighter.inx.h:2 -#: ../share/extensions/color_custom.inx.h:15 -#: ../share/extensions/color_darker.inx.h:2 -#: ../share/extensions/color_desaturate.inx.h:2 -#: ../share/extensions/color_grayscale.inx.h:2 -#: ../share/extensions/color_lesshue.inx.h:2 -#: ../share/extensions/color_lesslight.inx.h:2 -#: ../share/extensions/color_lesssaturation.inx.h:2 -#: ../share/extensions/color_morehue.inx.h:2 -#: ../share/extensions/color_morelight.inx.h:2 -#: ../share/extensions/color_moresaturation.inx.h:2 -#: ../share/extensions/color_negative.inx.h:2 -#: ../share/extensions/color_randomize.inx.h:8 -#: ../share/extensions/color_removeblue.inx.h:2 -#: ../share/extensions/color_removegreen.inx.h:2 -#: ../share/extensions/color_removered.inx.h:2 -#: ../share/extensions/color_replace.inx.h:6 -#: ../share/extensions/color_rgbbarrel.inx.h:2 -#: ../share/extensions/interp_att_g.inx.h:19 -msgid "Color" -msgstr "顏色" - #: ../src/extension/internal/bitmap/colorize.cpp:58 msgid "Colorize selected bitmap(s) with specified color, using given opacity" msgstr "用指定的顏色和給定的不透明度將選擇的點陣圖著上色彩" @@ -4177,8 +5232,8 @@ msgid "Right (px):" msgstr "右邊 (px):" #: ../src/extension/internal/bitmap/crop.cpp:77 -msgid "Crop selected bitmap(s)." -msgstr "裁剪選取的點陣圖。" +msgid "Crop selected bitmap(s)" +msgstr "裁剪選取的點陣圖" #: ../src/extension/internal/bitmap/cycleColormap.cpp:37 msgid "Cycle Colormap" @@ -4236,7 +5291,7 @@ msgid "Equalize selected bitmap(s); histogram equalization" msgstr "等化點陣圖;等化分佈圖" #: ../src/extension/internal/bitmap/gaussianBlur.cpp:38 -#: ../src/filter-enums.cpp:28 +#: ../src/filter-enums.cpp:29 msgid "Gaussian Blur" msgstr "高斯模糊" @@ -4369,13 +5424,13 @@ msgstr "不透明度" #: ../src/extension/internal/bitmap/opacity.cpp:40 #: ../src/ui/dialog/filter-effects-dialog.cpp:2884 -#: ../src/widgets/dropper-toolbar.cpp:83 +#: ../src/ui/dialog/objects.cpp:1621 ../src/widgets/dropper-toolbar.cpp:83 msgid "Opacity:" msgstr "不透明度:" #: ../src/extension/internal/bitmap/opacity.cpp:46 -msgid "Modify opacity channel(s) of selected bitmap(s)." -msgstr "修正點陣圖的不透明色版" +msgid "Modify opacity channel(s) of selected bitmap(s)" +msgstr "修改選取的點陣圖不透明色版" #: ../src/extension/internal/bitmap/raise.cpp:40 msgid "Raise" @@ -4435,10 +5490,6 @@ msgstr "有色陰暗" msgid "Shade selected bitmap(s) simulating distant light source" msgstr "讓選擇的點陣圖變暗以模擬遠燈光效果" -#: ../src/extension/internal/bitmap/sharpen.cpp:38 -msgid "Sharpen" -msgstr "銳利化" - #: ../src/extension/internal/bitmap/sharpen.cpp:47 msgid "Sharpen selected bitmap(s)" msgstr "讓選擇的點陣圖變銳利" @@ -4463,10 +5514,6 @@ msgid "" "the original position" msgstr "在點陣圖原本位置給定的半徑範圍內隨機散佈像素" -#: ../src/extension/internal/bitmap/swirl.cpp:37 -msgid "Swirl" -msgstr "螺旋" - #: ../src/extension/internal/bitmap/swirl.cpp:39 msgid "Degrees:" msgstr "度:" @@ -4482,7 +5529,7 @@ msgstr "高反差" #: ../src/extension/internal/bitmap/threshold.cpp:40 #: ../src/extension/internal/bitmap/unsharpmask.cpp:46 -#: ../src/widgets/paintbucket-toolbar.cpp:146 +#: ../src/widgets/paintbucket-toolbar.cpp:148 msgid "Threshold:" msgstr "臨界值:" @@ -4563,8 +5610,8 @@ msgstr "Postscript 等級 2" #: ../src/extension/internal/cairo-ps-out.cpp:333 #: ../src/extension/internal/cairo-ps-out.cpp:372 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:250 -#: ../src/extension/internal/emf-inout.cpp:3550 -#: ../src/extension/internal/wmf-inout.cpp:3141 +#: ../src/extension/internal/emf-inout.cpp:3569 +#: ../src/extension/internal/wmf-inout.cpp:3144 msgid "Convert texts to paths" msgstr "將文字轉成路徑" @@ -4586,28 +5633,25 @@ msgstr "點陣化的解析度 (dpi):" #: ../src/extension/internal/cairo-ps-out.cpp:337 #: ../src/extension/internal/cairo-ps-out.cpp:376 -#, fuzzy msgid "Output page size" -msgstr "設定頁面尺寸" +msgstr "輸出頁面尺寸" #: ../src/extension/internal/cairo-ps-out.cpp:338 #: ../src/extension/internal/cairo-ps-out.cpp:377 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:255 -#, fuzzy msgid "Use document's page size" -msgstr "設定頁面尺寸" +msgstr "使用文件的頁面尺寸" #: ../src/extension/internal/cairo-ps-out.cpp:339 #: ../src/extension/internal/cairo-ps-out.cpp:378 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:256 msgid "Use exported object's size" -msgstr "" +msgstr "使用匯出物件的尺寸" #: ../src/extension/internal/cairo-ps-out.cpp:341 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:258 -#, fuzzy msgid "Bleed/margin (mm):" -msgstr "出血邊距" +msgstr "出血/邊距 (公釐):" #: ../src/extension/internal/cairo-ps-out.cpp:342 #: ../src/extension/internal/cairo-ps-out.cpp:381 @@ -4634,9 +5678,8 @@ msgid "EPS+LaTeX: Omit text in EPS, and create LaTeX file" msgstr "EPS+LaTeX:省略 EPS 裡的文字,並建立 LaTeX 檔" #: ../src/extension/internal/cairo-ps-out.cpp:380 -#, fuzzy msgid "Bleed/margin (mm)" -msgstr "出血邊距" +msgstr "出血/邊距 (公釐)" #: ../src/extension/internal/cairo-ps-out.cpp:385 #: ../share/extensions/eps_input.inx.h:2 @@ -4664,152 +5707,144 @@ msgid "PDF+LaTeX: Omit text in PDF, and create LaTeX file" msgstr "PDF+LaTeX:省略 PDF 裡的文字,並建立 LaTeX 檔" #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:254 -#, fuzzy msgid "Output page size:" -msgstr "設定頁面尺寸" +msgstr "輸出頁面尺寸:" -#: ../src/extension/internal/cdr-input.cpp:102 +#: ../src/extension/internal/cdr-input.cpp:116 #: ../src/extension/internal/pdfinput/pdf-input.cpp:87 -#: ../src/extension/internal/vsd-input.cpp:101 +#: ../src/extension/internal/vsd-input.cpp:116 msgid "Select page:" msgstr "選擇頁面:" #. Display total number of pages -#: ../src/extension/internal/cdr-input.cpp:114 +#: ../src/extension/internal/cdr-input.cpp:128 #: ../src/extension/internal/pdfinput/pdf-input.cpp:106 -#: ../src/extension/internal/vsd-input.cpp:113 +#: ../src/extension/internal/vsd-input.cpp:128 #, c-format msgid "out of %i" msgstr "超過 %i" -#: ../src/extension/internal/cdr-input.cpp:145 -#: ../src/extension/internal/vsd-input.cpp:144 -#, fuzzy +#: ../src/extension/internal/cdr-input.cpp:165 +#: ../src/extension/internal/vsd-input.cpp:165 msgid "Page Selector" -msgstr "選取器" +msgstr "頁面選擇器" -#: ../src/extension/internal/cdr-input.cpp:274 +#: ../src/extension/internal/cdr-input.cpp:300 msgid "Corel DRAW Input" msgstr "Corel DRAW 輸入" -#: ../src/extension/internal/cdr-input.cpp:279 +#: ../src/extension/internal/cdr-input.cpp:305 msgid "Corel DRAW 7-X4 files (*.cdr)" msgstr "Corel DRAW 7-X4 檔 (*.cdr)" -#: ../src/extension/internal/cdr-input.cpp:280 +#: ../src/extension/internal/cdr-input.cpp:306 msgid "Open files saved in Corel DRAW 7-X4" msgstr "開啟用 Corel DRAW 7-X4 儲存的檔案" -#: ../src/extension/internal/cdr-input.cpp:287 +#: ../src/extension/internal/cdr-input.cpp:313 msgid "Corel DRAW templates input" msgstr "Corel DRAW 範本輸入" -#: ../src/extension/internal/cdr-input.cpp:292 -#, fuzzy +#: ../src/extension/internal/cdr-input.cpp:318 msgid "Corel DRAW 7-13 template files (*.cdt)" -msgstr "Corel DRAW 7-13 範本檔 (.cdt)" +msgstr "Corel DRAW 7-13 範本檔 (*.cdt)" -#: ../src/extension/internal/cdr-input.cpp:293 +#: ../src/extension/internal/cdr-input.cpp:319 msgid "Open files saved in Corel DRAW 7-13" msgstr "開啟用 Corel DRAW 7-13 儲存的檔案" -#: ../src/extension/internal/cdr-input.cpp:300 +#: ../src/extension/internal/cdr-input.cpp:326 msgid "Corel DRAW Compressed Exchange files input" msgstr "Corel DRAW 壓縮的交換格式檔輸入" -#: ../src/extension/internal/cdr-input.cpp:305 -#, fuzzy +#: ../src/extension/internal/cdr-input.cpp:331 msgid "Corel DRAW Compressed Exchange files (*.ccx)" -msgstr "Corel DRAW 壓縮的交換格式檔 (.ccx)" +msgstr "Corel DRAW 壓縮的交換格式檔 (*.ccx)" -#: ../src/extension/internal/cdr-input.cpp:306 +#: ../src/extension/internal/cdr-input.cpp:332 msgid "Open compressed exchange files saved in Corel DRAW" msgstr "開啟用 Corel DRAW 儲存的壓縮交換格式檔" -#: ../src/extension/internal/cdr-input.cpp:313 +#: ../src/extension/internal/cdr-input.cpp:339 msgid "Corel DRAW Presentation Exchange files input" msgstr "Corel DRAW 簡報交換格式檔輸入" -#: ../src/extension/internal/cdr-input.cpp:318 -#, fuzzy +#: ../src/extension/internal/cdr-input.cpp:344 msgid "Corel DRAW Presentation Exchange files (*.cmx)" -msgstr "Corel DRAW 簡報交換格式檔 (.cmx)" +msgstr "Corel DRAW 簡報交換格式檔 (*.cmx)" -#: ../src/extension/internal/cdr-input.cpp:319 +#: ../src/extension/internal/cdr-input.cpp:345 msgid "Open presentation exchange files saved in Corel DRAW" msgstr "開啟用 Corel DRAW 儲存的簡報交換格式檔" -#: ../src/extension/internal/emf-inout.cpp:3534 +#: ../src/extension/internal/emf-inout.cpp:3553 msgid "EMF Input" msgstr "EMF 輸入" -#: ../src/extension/internal/emf-inout.cpp:3539 +#: ../src/extension/internal/emf-inout.cpp:3558 msgid "Enhanced Metafiles (*.emf)" msgstr "加強型中繼檔 (*.emf)" -#: ../src/extension/internal/emf-inout.cpp:3540 +#: ../src/extension/internal/emf-inout.cpp:3559 msgid "Enhanced Metafiles" msgstr "加強型中繼檔" -#: ../src/extension/internal/emf-inout.cpp:3548 +#: ../src/extension/internal/emf-inout.cpp:3567 msgid "EMF Output" msgstr "EMF 輸出" -#: ../src/extension/internal/emf-inout.cpp:3551 -#: ../src/extension/internal/wmf-inout.cpp:3142 +#: ../src/extension/internal/emf-inout.cpp:3570 +#: ../src/extension/internal/wmf-inout.cpp:3145 msgid "Map Unicode to Symbol font" -msgstr "" +msgstr "將萬國碼對應到符號字型" -#: ../src/extension/internal/emf-inout.cpp:3552 -#: ../src/extension/internal/wmf-inout.cpp:3143 +#: ../src/extension/internal/emf-inout.cpp:3571 +#: ../src/extension/internal/wmf-inout.cpp:3146 msgid "Map Unicode to Wingdings" -msgstr "" +msgstr "將萬國碼對應到 Wingdings 字型" -#: ../src/extension/internal/emf-inout.cpp:3553 -#: ../src/extension/internal/wmf-inout.cpp:3144 +#: ../src/extension/internal/emf-inout.cpp:3572 +#: ../src/extension/internal/wmf-inout.cpp:3147 msgid "Map Unicode to Zapf Dingbats" -msgstr "" +msgstr "將萬國碼對應到 Zapf Dingbats 字型" -#: ../src/extension/internal/emf-inout.cpp:3554 -#: ../src/extension/internal/wmf-inout.cpp:3145 +#: ../src/extension/internal/emf-inout.cpp:3573 +#: ../src/extension/internal/wmf-inout.cpp:3148 msgid "Use MS Unicode PUA (0xF020-0xF0FF) for converted characters" -msgstr "" +msgstr "轉換的字元使用微軟萬國碼 PUA (0xF020-0xF0FF)" -#: ../src/extension/internal/emf-inout.cpp:3555 -#: ../src/extension/internal/wmf-inout.cpp:3146 +#: ../src/extension/internal/emf-inout.cpp:3574 +#: ../src/extension/internal/wmf-inout.cpp:3149 msgid "Compensate for PPT font bug" -msgstr "" +msgstr "PPT 字型錯誤補償" -#: ../src/extension/internal/emf-inout.cpp:3556 -#: ../src/extension/internal/wmf-inout.cpp:3147 +#: ../src/extension/internal/emf-inout.cpp:3575 +#: ../src/extension/internal/wmf-inout.cpp:3150 msgid "Convert dashed/dotted lines to single lines" -msgstr "" +msgstr "將虛線/點線6轉換成實線" -#: ../src/extension/internal/emf-inout.cpp:3557 -#: ../src/extension/internal/wmf-inout.cpp:3148 -#, fuzzy +#: ../src/extension/internal/emf-inout.cpp:3576 +#: ../src/extension/internal/wmf-inout.cpp:3151 msgid "Convert gradients to colored polygon series" -msgstr "變更漸層停止點顏色" +msgstr "將漸層顏色轉換成一系列的彩色多邊形" -#: ../src/extension/internal/emf-inout.cpp:3558 -#, fuzzy +#: ../src/extension/internal/emf-inout.cpp:3577 msgid "Use native rectangular linear gradients" -msgstr "建立線性漸層" +msgstr "使用本機矩形線性漸層" -#: ../src/extension/internal/emf-inout.cpp:3559 +#: ../src/extension/internal/emf-inout.cpp:3578 msgid "Map all fill patterns to standard EMF hatches" -msgstr "" +msgstr "將全部填充圖樣對應到標準 EMF 剖面線" -#: ../src/extension/internal/emf-inout.cpp:3560 -#, fuzzy +#: ../src/extension/internal/emf-inout.cpp:3579 msgid "Ignore image rotations" -msgstr "旋轉原點" +msgstr "忽略圖片旋轉" -#: ../src/extension/internal/emf-inout.cpp:3564 +#: ../src/extension/internal/emf-inout.cpp:3583 msgid "Enhanced Metafile (*.emf)" msgstr "加強型中繼檔 (*.emf)" -#: ../src/extension/internal/emf-inout.cpp:3565 +#: ../src/extension/internal/emf-inout.cpp:3584 msgid "Enhanced Metafile" msgstr "加強型中繼檔" @@ -4828,16 +5863,14 @@ msgstr "平滑度" #: ../src/extension/internal/filter/bevels.h:56 #: ../src/extension/internal/filter/bevels.h:137 #: ../src/extension/internal/filter/bevels.h:221 -#, fuzzy msgid "Elevation (°)" -msgstr "仰角 (°):" +msgstr "仰角 (°)" #: ../src/extension/internal/filter/bevels.h:57 #: ../src/extension/internal/filter/bevels.h:138 #: ../src/extension/internal/filter/bevels.h:222 -#, fuzzy msgid "Azimuth (°)" -msgstr "方位角 (°):" +msgstr "方位角 (°)" #: ../src/extension/internal/filter/bevels.h:58 #: ../src/extension/internal/filter/bevels.h:139 @@ -4899,12 +5932,6 @@ msgstr "光照顏色" msgid "Filters" msgstr "濾鏡" -#: ../src/extension/internal/filter/bevels.h:63 -#: ../src/extension/internal/filter/bevels.h:144 -#: ../src/extension/internal/filter/bevels.h:228 -msgid "Bevels" -msgstr "斜角" - #: ../src/extension/internal/filter/bevels.h:66 msgid "Basic diffuse bevel to use for building textures" msgstr "基本的擴散斜角用於建築物紋理" @@ -4917,9 +5944,8 @@ msgstr "霧面果凍 " #: ../src/extension/internal/filter/bevels.h:220 #: ../src/extension/internal/filter/blurs.h:187 #: ../src/extension/internal/filter/color.h:74 -#, fuzzy msgid "Brightness" -msgstr "亮度:" +msgstr "亮度" #: ../src/extension/internal/filter/bevels.h:147 msgid "Bulging, matte jelly covering" @@ -4929,38 +5955,24 @@ msgstr "凸出、霧面果凍表面" msgid "Specular Light" msgstr "反射光" -#: ../src/extension/internal/filter/bevels.h:231 -msgid "Basic specular bevel to use for building textures" -msgstr "基本的鏡面斜角用於建築物紋理" - #: ../src/extension/internal/filter/blurs.h:56 #: ../src/extension/internal/filter/blurs.h:189 #: ../src/extension/internal/filter/blurs.h:329 #: ../src/extension/internal/filter/distort.h:73 -#, fuzzy msgid "Horizontal blur" -msgstr "水平模糊:" +msgstr "水平模糊" #: ../src/extension/internal/filter/blurs.h:57 #: ../src/extension/internal/filter/blurs.h:190 #: ../src/extension/internal/filter/blurs.h:330 #: ../src/extension/internal/filter/distort.h:74 -#, fuzzy msgid "Vertical blur" -msgstr "垂直模糊:" +msgstr "垂直模糊" #: ../src/extension/internal/filter/blurs.h:58 msgid "Blur content only" msgstr "只模糊內容" -#: ../src/extension/internal/filter/blurs.h:63 -#: ../src/extension/internal/filter/blurs.h:132 -#: ../src/extension/internal/filter/blurs.h:201 -#: ../src/extension/internal/filter/blurs.h:267 -#: ../src/extension/internal/filter/blurs.h:351 -msgid "Blurs" -msgstr "模糊" - #: ../src/extension/internal/filter/blurs.h:66 msgid "Simple vertical and horizontal blur effect" msgstr "簡單的垂直及水平模糊效果" @@ -4974,9 +5986,8 @@ msgstr "清晰邊緣" #: ../src/extension/internal/filter/paint.h:237 #: ../src/extension/internal/filter/paint.h:336 #: ../src/extension/internal/filter/paint.h:341 -#, fuzzy msgid "Strength" -msgstr "強度:" +msgstr "強度" #: ../src/extension/internal/filter/blurs.h:135 msgid "" @@ -4989,9 +6000,8 @@ msgid "Cross Blur" msgstr "交疊模糊" #: ../src/extension/internal/filter/blurs.h:188 -#, fuzzy msgid "Fading" -msgstr "淡化:" +msgstr "淡化" #: ../src/extension/internal/filter/blurs.h:191 #: ../src/extension/internal/filter/textures.h:74 @@ -5010,7 +6020,7 @@ msgstr "混合:" #: ../src/extension/internal/filter/color.h:1602 #: ../src/extension/internal/filter/paint.h:705 #: ../src/extension/internal/filter/transparency.h:63 -#: ../src/filter-enums.cpp:54 +#: ../src/filter-enums.cpp:55 msgid "Darken" msgstr "變暗" @@ -5027,7 +6037,7 @@ msgstr "變暗" #: ../src/extension/internal/filter/color.h:1594 #: ../src/extension/internal/filter/paint.h:703 #: ../src/extension/internal/filter/transparency.h:62 -#: ../src/filter-enums.cpp:53 ../src/ui/dialog/input.cpp:382 +#: ../src/filter-enums.cpp:54 ../src/ui/dialog/input.cpp:382 msgid "Screen" msgstr "濾色" @@ -5045,7 +6055,7 @@ msgstr "濾色" #: ../src/extension/internal/filter/color.h:1601 #: ../src/extension/internal/filter/paint.h:701 #: ../src/extension/internal/filter/transparency.h:60 -#: ../src/filter-enums.cpp:52 +#: ../src/filter-enums.cpp:53 msgid "Multiply" msgstr "色彩增值" @@ -5060,7 +6070,7 @@ msgstr "色彩增值" #: ../src/extension/internal/filter/color.h:1593 #: ../src/extension/internal/filter/paint.h:704 #: ../src/extension/internal/filter/transparency.h:64 -#: ../src/filter-enums.cpp:55 +#: ../src/filter-enums.cpp:56 msgid "Lighten" msgstr "變亮" @@ -5086,9 +6096,8 @@ msgstr "失焦" #: ../src/extension/internal/filter/paint.h:235 #: ../src/extension/internal/filter/paint.h:342 #: ../src/extension/internal/filter/paint.h:346 -#, fuzzy msgid "Dilatation" -msgstr "擴張:" +msgstr "擴張" #: ../src/extension/internal/filter/blurs.h:332 #: ../src/extension/internal/filter/distort.h:76 @@ -5099,9 +6108,8 @@ msgstr "擴張:" #: ../src/extension/internal/filter/paint.h:347 #: ../src/extension/internal/filter/transparency.h:208 #: ../src/extension/internal/filter/transparency.h:282 -#, fuzzy msgid "Erosion" -msgstr "縮減:" +msgstr "縮減" #: ../src/extension/internal/filter/blurs.h:336 #: ../src/extension/internal/filter/color.h:1205 @@ -5130,7 +6138,7 @@ msgstr "混合類型:" #: ../src/extension/internal/filter/paint.h:702 #: ../src/extension/internal/filter/textures.h:77 #: ../src/extension/internal/filter/transparency.h:61 -#: ../src/filter-enums.cpp:51 ../src/ui/dialog/inkscape-preferences.cpp:644 +#: ../src/filter-enums.cpp:52 ../src/ui/dialog/inkscape-preferences.cpp:646 msgid "Normal" msgstr "標準" @@ -5148,15 +6156,13 @@ msgstr "凹凸" #: ../src/extension/internal/filter/bumps.h:84 #: ../src/extension/internal/filter/bumps.h:313 -#, fuzzy msgid "Image simplification" -msgstr "圖片簡化:" +msgstr "圖片簡化" #: ../src/extension/internal/filter/bumps.h:85 #: ../src/extension/internal/filter/bumps.h:314 -#, fuzzy msgid "Bump simplification" -msgstr "凹凸簡化:" +msgstr "凹凸簡化" #: ../src/extension/internal/filter/bumps.h:87 #: ../src/extension/internal/filter/bumps.h:316 @@ -5169,10 +6175,10 @@ msgstr "凹凸來源" #: ../src/extension/internal/filter/color.h:637 #: ../src/extension/internal/filter/color.h:821 #: ../src/extension/internal/filter/transparency.h:132 -#: ../src/filter-enums.cpp:127 ../src/ui/tools/flood-tool.cpp:193 -#: ../src/widgets/sp-color-icc-selector.cpp:355 -#: ../src/widgets/sp-color-scales.cpp:429 -#: ../src/widgets/sp-color-scales.cpp:430 +#: ../src/filter-enums.cpp:128 ../src/ui/tools/flood-tool.cpp:193 +#: ../src/widgets/sp-color-icc-selector.cpp:330 +#: ../src/widgets/sp-color-scales.cpp:415 +#: ../src/widgets/sp-color-scales.cpp:416 msgid "Red" msgstr "紅" @@ -5182,10 +6188,10 @@ msgstr "紅" #: ../src/extension/internal/filter/color.h:638 #: ../src/extension/internal/filter/color.h:822 #: ../src/extension/internal/filter/transparency.h:133 -#: ../src/filter-enums.cpp:128 ../src/ui/tools/flood-tool.cpp:194 -#: ../src/widgets/sp-color-icc-selector.cpp:356 -#: ../src/widgets/sp-color-scales.cpp:432 -#: ../src/widgets/sp-color-scales.cpp:433 +#: ../src/filter-enums.cpp:129 ../src/ui/tools/flood-tool.cpp:194 +#: ../src/widgets/sp-color-icc-selector.cpp:331 +#: ../src/widgets/sp-color-scales.cpp:418 +#: ../src/widgets/sp-color-scales.cpp:419 msgid "Green" msgstr "綠" @@ -5195,10 +6201,10 @@ msgstr "綠" #: ../src/extension/internal/filter/color.h:639 #: ../src/extension/internal/filter/color.h:823 #: ../src/extension/internal/filter/transparency.h:134 -#: ../src/filter-enums.cpp:129 ../src/ui/tools/flood-tool.cpp:195 -#: ../src/widgets/sp-color-icc-selector.cpp:357 -#: ../src/widgets/sp-color-scales.cpp:435 -#: ../src/widgets/sp-color-scales.cpp:436 +#: ../src/filter-enums.cpp:130 ../src/ui/tools/flood-tool.cpp:195 +#: ../src/widgets/sp-color-icc-selector.cpp:332 +#: ../src/widgets/sp-color-scales.cpp:421 +#: ../src/widgets/sp-color-scales.cpp:422 msgid "Blue" msgstr "藍" @@ -5221,7 +6227,7 @@ msgstr "漫射" #: ../src/extension/internal/filter/bumps.h:98 #: ../src/extension/internal/filter/bumps.h:329 #: ../src/libgdl/gdl-dock-placeholder.c:175 ../src/libgdl/gdl-dock.c:199 -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/widgets/rect-toolbar.cpp:335 #: ../share/extensions/interp_att_g.inx.h:11 msgid "Height" msgstr "高度" @@ -5235,18 +6241,17 @@ msgstr "高度" #: ../src/extension/internal/filter/paint.h:592 #: ../src/extension/internal/filter/paint.h:707 #: ../src/ui/tools/flood-tool.cpp:198 -#: ../src/widgets/sp-color-icc-selector.cpp:366 -#: ../src/widgets/sp-color-scales.cpp:461 -#: ../src/widgets/sp-color-scales.cpp:462 ../src/widgets/tweak-toolbar.cpp:318 +#: ../src/widgets/sp-color-icc-selector.cpp:341 +#: ../src/widgets/sp-color-scales.cpp:447 +#: ../src/widgets/sp-color-scales.cpp:448 ../src/widgets/tweak-toolbar.cpp:318 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "亮度" #: ../src/extension/internal/filter/bumps.h:100 #: ../src/extension/internal/filter/bumps.h:331 -#, fuzzy msgid "Precision" -msgstr "精確度:" +msgstr "精確度" #: ../src/extension/internal/filter/bumps.h:103 msgid "Light source" @@ -5261,7 +6266,7 @@ msgid "Distant" msgstr "遠燈光" #: ../src/extension/internal/filter/bumps.h:106 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Point" msgstr "點光源" @@ -5291,50 +6296,42 @@ msgstr "點光源選項" #: ../src/extension/internal/filter/bumps.h:113 #: ../src/extension/internal/filter/bumps.h:117 -#, fuzzy msgid "X location" -msgstr "X 位置:" +msgstr "X 位置" #: ../src/extension/internal/filter/bumps.h:114 #: ../src/extension/internal/filter/bumps.h:118 -#, fuzzy msgid "Y location" -msgstr "Y 位置:" +msgstr "Y 位置" #: ../src/extension/internal/filter/bumps.h:115 #: ../src/extension/internal/filter/bumps.h:119 -#, fuzzy msgid "Z location" -msgstr "Z 位置:" +msgstr "Z 位置" #: ../src/extension/internal/filter/bumps.h:116 msgid "Spot light options" msgstr "聚光燈選項" #: ../src/extension/internal/filter/bumps.h:120 -#, fuzzy msgid "X target" -msgstr "X 目標:" +msgstr "X 目標" #: ../src/extension/internal/filter/bumps.h:121 -#, fuzzy msgid "Y target" -msgstr "Y 目標:" +msgstr "Y 目標" #: ../src/extension/internal/filter/bumps.h:122 -#, fuzzy msgid "Z target" -msgstr "Z 目標:" +msgstr "Z 目標" #: ../src/extension/internal/filter/bumps.h:123 -#, fuzzy msgid "Specular exponent" -msgstr "反射指數:" +msgstr "反光指數" #: ../src/extension/internal/filter/bumps.h:124 -#, fuzzy msgid "Cone angle" -msgstr "錐度:" +msgstr "圓錐角" #: ../src/extension/internal/filter/bumps.h:127 msgid "Image color" @@ -5344,11 +6341,6 @@ msgstr "圖片色彩" msgid "Color bump" msgstr "色彩凹凸" -#: ../src/extension/internal/filter/bumps.h:142 -#: ../src/extension/internal/filter/bumps.h:362 -msgid "Bumps" -msgstr "凹凸" - #: ../src/extension/internal/filter/bumps.h:145 msgid "All purposes bump filter" msgstr "萬用凹凸濾鏡" @@ -5363,7 +6355,7 @@ msgstr "背景:" #: ../src/extension/internal/filter/bumps.h:322 #: ../src/extension/internal/filter/transparency.h:57 -#: ../src/filter-enums.cpp:29 ../src/sp-image.cpp:517 +#: ../src/filter-enums.cpp:30 ../src/sp-image.cpp:518 msgid "Image" msgstr "圖片" @@ -5372,9 +6364,8 @@ msgid "Blurred image" msgstr "模糊的圖像" #: ../src/extension/internal/filter/bumps.h:325 -#, fuzzy msgid "Background opacity" -msgstr "背景不透明度:" +msgstr "背景不透明度" #: ../src/extension/internal/filter/bumps.h:327 #: ../src/extension/internal/filter/color.h:1040 @@ -5403,14 +6394,14 @@ msgstr "透明類型:" #: ../src/extension/internal/filter/bumps.h:353 #: ../src/extension/internal/filter/morphology.h:176 -#: ../src/filter-enums.cpp:90 +#: ../src/filter-enums.cpp:91 msgid "Atop" msgstr "頂層 (Atop)" #: ../src/extension/internal/filter/bumps.h:354 #: ../src/extension/internal/filter/distort.h:70 #: ../src/extension/internal/filter/morphology.h:174 -#: ../src/filter-enums.cpp:88 +#: ../src/filter-enums.cpp:89 msgid "In" msgstr "內部 (In)" @@ -5424,9 +6415,8 @@ msgstr "光輝度" #: ../src/extension/internal/filter/color.h:75 #: ../src/extension/internal/filter/color.h:1417 -#, fuzzy msgid "Over-saturation" -msgstr "過度飽和度:" +msgstr "過度飽和" #: ../src/extension/internal/filter/color.h:77 #: ../src/extension/internal/filter/color.h:161 @@ -5448,20 +6438,20 @@ msgstr "色版塗繪" #: ../src/extension/internal/filter/color.h:156 #: ../src/extension/internal/filter/color.h:257 -#: ../src/extension/internal/filter/paint.h:87 ../src/filter-enums.cpp:65 -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/extension/internal/filter/paint.h:87 ../src/filter-enums.cpp:66 +#: ../src/ui/dialog/inkscape-preferences.cpp:945 #: ../src/ui/tools/flood-tool.cpp:197 -#: ../src/widgets/sp-color-icc-selector.cpp:362 -#: ../src/widgets/sp-color-icc-selector.cpp:367 -#: ../src/widgets/sp-color-scales.cpp:458 -#: ../src/widgets/sp-color-scales.cpp:459 ../src/widgets/tweak-toolbar.cpp:302 +#: ../src/widgets/sp-color-icc-selector.cpp:337 +#: ../src/widgets/sp-color-icc-selector.cpp:342 +#: ../src/widgets/sp-color-scales.cpp:444 +#: ../src/widgets/sp-color-scales.cpp:445 ../src/widgets/tweak-toolbar.cpp:302 #: ../share/extensions/color_randomize.inx.h:4 msgid "Saturation" msgstr "飽和度" #: ../src/extension/internal/filter/color.h:160 #: ../src/extension/internal/filter/transparency.h:135 -#: ../src/filter-enums.cpp:130 ../src/ui/tools/flood-tool.cpp:199 +#: ../src/filter-enums.cpp:131 ../src/ui/tools/flood-tool.cpp:199 msgid "Alpha" msgstr "透明" @@ -5474,23 +6464,20 @@ msgid "Color Shift" msgstr "色彩位移" #: ../src/extension/internal/filter/color.h:256 -#, fuzzy msgid "Shift (°)" -msgstr "位移 (°):" +msgstr "位移 (°)" #: ../src/extension/internal/filter/color.h:265 msgid "Rotate and desaturate hue" msgstr "將色相旋轉並去飽和" #: ../src/extension/internal/filter/color.h:321 -#, fuzzy msgid "Harsh light" -msgstr "耀眼照明:" +msgstr "耀眼照明" #: ../src/extension/internal/filter/color.h:322 -#, fuzzy msgid "Normal light" -msgstr "標準照明:" +msgstr "標準照明" #: ../src/extension/internal/filter/color.h:323 msgid "Duotone" @@ -5510,32 +6497,33 @@ msgstr "混合 2:" msgid "Blend image or object with a flood color" msgstr "用填滿的顏色來混合圖像或物件" -#: ../src/extension/internal/filter/color.h:424 ../src/filter-enums.cpp:22 +#: ../src/extension/internal/filter/color.h:424 ../src/filter-enums.cpp:23 msgid "Component Transfer" msgstr "組成傳遞" -#: ../src/extension/internal/filter/color.h:427 ../src/filter-enums.cpp:109 +#: ../src/extension/internal/filter/color.h:427 ../src/filter-enums.cpp:110 msgid "Identity" msgstr "識別" #: ../src/extension/internal/filter/color.h:428 -#: ../src/extension/internal/filter/paint.h:498 ../src/filter-enums.cpp:110 +#: ../src/extension/internal/filter/paint.h:498 ../src/filter-enums.cpp:111 #: ../src/ui/dialog/filter-effects-dialog.cpp:1050 msgid "Table" msgstr "表格" #: ../src/extension/internal/filter/color.h:429 -#: ../src/extension/internal/filter/paint.h:499 ../src/filter-enums.cpp:111 +#: ../src/extension/internal/filter/paint.h:499 ../src/filter-enums.cpp:112 #: ../src/ui/dialog/filter-effects-dialog.cpp:1053 msgid "Discrete" msgstr "分散" -#: ../src/extension/internal/filter/color.h:430 ../src/filter-enums.cpp:112 -#: ../src/live_effects/lpe-powerstroke.cpp:188 +#: ../src/extension/internal/filter/color.h:430 ../src/filter-enums.cpp:113 +#: ../src/live_effects/lpe-interpolate_points.cpp:25 +#: ../src/live_effects/lpe-powerstroke.cpp:194 msgid "Linear" msgstr "線性" -#: ../src/extension/internal/filter/color.h:431 ../src/filter-enums.cpp:113 +#: ../src/extension/internal/filter/color.h:431 ../src/filter-enums.cpp:114 msgid "Gamma" msgstr "伽馬" @@ -5548,9 +6536,8 @@ msgid "Duochrome" msgstr "雙色" #: ../src/extension/internal/filter/color.h:513 -#, fuzzy msgid "Fluorescence level" -msgstr "螢光等級:" +msgstr "螢光等級" #: ../src/extension/internal/filter/color.h:514 msgid "Swap:" @@ -5589,26 +6576,26 @@ msgid "Extract Channel" msgstr "提取色版" #: ../src/extension/internal/filter/color.h:640 -#: ../src/widgets/sp-color-icc-selector.cpp:369 -#: ../src/widgets/sp-color-icc-selector.cpp:374 -#: ../src/widgets/sp-color-scales.cpp:483 -#: ../src/widgets/sp-color-scales.cpp:484 +#: ../src/widgets/sp-color-icc-selector.cpp:344 +#: ../src/widgets/sp-color-icc-selector.cpp:349 +#: ../src/widgets/sp-color-scales.cpp:469 +#: ../src/widgets/sp-color-scales.cpp:470 msgid "Cyan" msgstr "青色" #: ../src/extension/internal/filter/color.h:641 -#: ../src/widgets/sp-color-icc-selector.cpp:370 -#: ../src/widgets/sp-color-icc-selector.cpp:375 -#: ../src/widgets/sp-color-scales.cpp:486 -#: ../src/widgets/sp-color-scales.cpp:487 +#: ../src/widgets/sp-color-icc-selector.cpp:345 +#: ../src/widgets/sp-color-icc-selector.cpp:350 +#: ../src/widgets/sp-color-scales.cpp:472 +#: ../src/widgets/sp-color-scales.cpp:473 msgid "Magenta" msgstr "洋紅" #: ../src/extension/internal/filter/color.h:642 -#: ../src/widgets/sp-color-icc-selector.cpp:371 -#: ../src/widgets/sp-color-icc-selector.cpp:376 -#: ../src/widgets/sp-color-scales.cpp:489 -#: ../src/widgets/sp-color-scales.cpp:490 +#: ../src/widgets/sp-color-icc-selector.cpp:346 +#: ../src/widgets/sp-color-icc-selector.cpp:351 +#: ../src/widgets/sp-color-scales.cpp:475 +#: ../src/widgets/sp-color-scales.cpp:476 msgid "Yellow" msgstr "黃色" @@ -5633,15 +6620,15 @@ msgid "Fade to:" msgstr "淡化:" #: ../src/extension/internal/filter/color.h:744 -#: ../src/ui/widget/selected-style.cpp:257 -#: ../src/widgets/sp-color-icc-selector.cpp:372 -#: ../src/widgets/sp-color-scales.cpp:492 -#: ../src/widgets/sp-color-scales.cpp:493 +#: ../src/ui/widget/selected-style.cpp:274 +#: ../src/widgets/sp-color-icc-selector.cpp:347 +#: ../src/widgets/sp-color-scales.cpp:478 +#: ../src/widgets/sp-color-scales.cpp:479 msgid "Black" msgstr "黑色" #: ../src/extension/internal/filter/color.h:745 -#: ../src/ui/widget/selected-style.cpp:253 +#: ../src/ui/widget/selected-style.cpp:270 msgid "White" msgstr "白色" @@ -5664,7 +6651,7 @@ msgid "Customize greyscale components" msgstr "自訂灰階組成" #: ../src/extension/internal/filter/color.h:905 -#: ../src/ui/widget/selected-style.cpp:249 +#: ../src/ui/widget/selected-style.cpp:266 msgid "Invert" msgstr "反相" @@ -5689,9 +6676,8 @@ msgid "Green and blue" msgstr "綠和藍" #: ../src/extension/internal/filter/color.h:913 -#, fuzzy msgid "Light transparency" -msgstr "光照透明度:" +msgstr "光照透明度" #: ../src/extension/internal/filter/color.h:914 msgid "Invert hue" @@ -5710,18 +6696,16 @@ msgid "Manage hue, lightness and transparency inversions" msgstr "控制色相、亮度和透明的反轉" #: ../src/extension/internal/filter/color.h:1042 -#, fuzzy msgid "Lights" -msgstr "光照:" +msgstr "光照" #: ../src/extension/internal/filter/color.h:1043 -#, fuzzy msgid "Shadows" -msgstr "陰影:" +msgstr "陰影" #: ../src/extension/internal/filter/color.h:1044 -#: ../src/extension/internal/filter/paint.h:356 ../src/filter-enums.cpp:32 -#: ../src/live_effects/effect.cpp:95 +#: ../src/extension/internal/filter/paint.h:356 ../src/filter-enums.cpp:33 +#: ../src/live_effects/effect.cpp:110 #: ../src/ui/dialog/filter-effects-dialog.cpp:1047 #: ../src/widgets/gradient-toolbar.cpp:1156 msgid "Offset" @@ -5740,9 +6724,8 @@ msgid "Modify lightness and contrast separately" msgstr "分開修改亮度和對比" #: ../src/extension/internal/filter/color.h:1190 -#, fuzzy msgid "Nudge RGB" -msgstr "細微調整" +msgstr "微調 RGB" #: ../src/extension/internal/filter/color.h:1194 msgid "Red offset" @@ -5765,9 +6748,8 @@ msgstr "X" #: ../src/extension/internal/filter/color.h:1311 #: ../src/extension/internal/filter/color.h:1314 #: ../src/ui/dialog/input.cpp:1616 -#, fuzzy msgid "Y" -msgstr "Y:" +msgstr "Y" #: ../src/extension/internal/filter/color.h:1197 msgid "Green offset" @@ -5778,47 +6760,40 @@ msgid "Blue offset" msgstr "藍色偏移" #: ../src/extension/internal/filter/color.h:1215 -#, fuzzy msgid "" "Nudge RGB channels separately and blend them to different types of " "backgrounds" -msgstr "分開細微調整 RGB 色版並且將色版混合成不同的背景類型" +msgstr "個別微調 RGB 色版並且將色版與不同背景類型混合" #: ../src/extension/internal/filter/color.h:1302 -#, fuzzy msgid "Nudge CMY" -msgstr "細微調整" +msgstr "微調 CMY" #: ../src/extension/internal/filter/color.h:1306 -#, fuzzy msgid "Cyan offset" -msgstr "圖樣偏移" +msgstr "青色偏移" #: ../src/extension/internal/filter/color.h:1309 -#, fuzzy msgid "Magenta offset" -msgstr "正切偏移:" +msgstr "洋紅偏移:" #: ../src/extension/internal/filter/color.h:1312 -#, fuzzy msgid "Yellow offset" -msgstr "紅色偏移" +msgstr "黃色偏移" #: ../src/extension/internal/filter/color.h:1327 -#, fuzzy msgid "" "Nudge CMY channels separately and blend them to different types of " "backgrounds" -msgstr "分開細微調整 RGB 色版並且將色版混合成不同的背景類型" +msgstr "個別微調 CMY 色版並將色版與不同背景類型混合" #: ../src/extension/internal/filter/color.h:1408 msgid "Quadritone fantasy" msgstr "四色調奇幻" #: ../src/extension/internal/filter/color.h:1410 -#, fuzzy msgid "Hue distribution (°)" -msgstr "色相分布 (°):" +msgstr "色相分布 (°)" #: ../src/extension/internal/filter/color.h:1411 #: ../share/extensions/svgcalendar.inx.h:19 @@ -5830,9 +6805,8 @@ msgid "Replace hue by two colors" msgstr "用兩種顏色替代色相" #: ../src/extension/internal/filter/color.h:1496 -#, fuzzy msgid "Hue rotation (°)" -msgstr "色相旋轉 (°):" +msgstr "色相旋轉 (°)" #: ../src/extension/internal/filter/color.h:1499 msgid "Moonarize" @@ -5864,7 +6838,7 @@ msgstr "色相轉成背景" #: ../src/extension/internal/filter/color.h:1592 msgid "Global blend:" -msgstr "整體混合:" +msgstr "總體混合:" #: ../src/extension/internal/filter/color.h:1598 msgid "Glow" @@ -5875,14 +6849,12 @@ msgid "Glow blend:" msgstr "光暈混合:" #: ../src/extension/internal/filter/color.h:1604 -#, fuzzy msgid "Local light" -msgstr "局部照明:" +msgstr "局部照明" #: ../src/extension/internal/filter/color.h:1605 -#, fuzzy msgid "Global light" -msgstr "整體照明:" +msgstr "總體照明" #: ../src/extension/internal/filter/color.h:1608 msgid "Hue distribution (°):" @@ -5900,13 +6872,13 @@ msgstr "氈毛羽化" #: ../src/extension/internal/filter/distort.h:71 #: ../src/extension/internal/filter/morphology.h:175 -#: ../src/filter-enums.cpp:89 +#: ../src/filter-enums.cpp:90 msgid "Out" msgstr "外部 (Out)" #: ../src/extension/internal/filter/distort.h:77 #: ../src/extension/internal/filter/textures.h:75 -#: ../src/ui/widget/selected-style.cpp:131 +#: ../src/ui/widget/selected-style.cpp:132 #: ../src/ui/widget/style-swatch.cpp:128 msgid "Stroke:" msgstr "邊框:" @@ -5939,8 +6911,8 @@ msgstr "碎形雜訊" #: ../src/extension/internal/filter/distort.h:85 #: ../src/extension/internal/filter/distort.h:194 #: ../src/extension/internal/filter/overlays.h:62 -#: ../src/extension/internal/filter/paint.h:693 ../src/filter-enums.cpp:35 -#: ../src/filter-enums.cpp:144 +#: ../src/extension/internal/filter/paint.h:693 ../src/filter-enums.cpp:36 +#: ../src/filter-enums.cpp:145 msgid "Turbulence" msgstr "紊亂" @@ -5948,50 +6920,41 @@ msgstr "紊亂" #: ../src/extension/internal/filter/distort.h:196 #: ../src/extension/internal/filter/paint.h:93 #: ../src/extension/internal/filter/paint.h:695 -#, fuzzy msgid "Horizontal frequency" -msgstr "水平頻率:" +msgstr "水平頻率" #: ../src/extension/internal/filter/distort.h:88 #: ../src/extension/internal/filter/distort.h:197 #: ../src/extension/internal/filter/paint.h:94 #: ../src/extension/internal/filter/paint.h:696 -#, fuzzy msgid "Vertical frequency" -msgstr "垂直頻率:" +msgstr "垂直頻率" #: ../src/extension/internal/filter/distort.h:89 #: ../src/extension/internal/filter/distort.h:198 #: ../src/extension/internal/filter/paint.h:95 #: ../src/extension/internal/filter/paint.h:697 -#, fuzzy msgid "Complexity" -msgstr "複雜度:" +msgstr "複雜度" #: ../src/extension/internal/filter/distort.h:90 #: ../src/extension/internal/filter/distort.h:199 #: ../src/extension/internal/filter/paint.h:96 #: ../src/extension/internal/filter/paint.h:698 -#, fuzzy msgid "Variation" -msgstr "變化量:" +msgstr "變化量" #: ../src/extension/internal/filter/distort.h:91 #: ../src/extension/internal/filter/distort.h:200 -#, fuzzy msgid "Intensity" -msgstr "強度:" - -#: ../src/extension/internal/filter/distort.h:96 -#: ../src/extension/internal/filter/distort.h:205 -msgid "Distort" -msgstr "扭曲" +msgstr "強度" #: ../src/extension/internal/filter/distort.h:99 msgid "Blur and displace edges of shapes and pictures" msgstr "模糊並位移形狀和圖像的邊緣" #: ../src/extension/internal/filter/distort.h:190 +#: ../src/live_effects/effect.cpp:140 msgid "Roughen" msgstr "粗糙化" @@ -6044,10 +7007,6 @@ msgstr "水平線" msgid "Invert colors" msgstr "反轉顏色" -#: ../src/extension/internal/filter/image.h:62 -msgid "Image Effects" -msgstr "影像特效" - #: ../src/extension/internal/filter/image.h:65 msgid "Detect color edges in object" msgstr "偵測物件的顏色邊緣" @@ -6072,7 +7031,7 @@ msgstr "開啟" #: ../src/extension/internal/filter/morphology.h:65 #: ../src/libgdl/gdl-dock-placeholder.c:167 ../src/libgdl/gdl-dock.c:191 -#: ../src/widgets/rect-toolbar.cpp:314 ../src/widgets/spray-toolbar.cpp:116 +#: ../src/widgets/rect-toolbar.cpp:318 ../src/widgets/spray-toolbar.cpp:116 #: ../src/widgets/tweak-toolbar.cpp:128 #: ../share/extensions/interp_att_g.inx.h:10 msgid "Width" @@ -6080,20 +7039,13 @@ msgstr "寬度" #: ../src/extension/internal/filter/morphology.h:69 #: ../src/extension/internal/filter/morphology.h:190 -#, fuzzy msgid "Antialiasing" -msgstr "反鋸齒:" +msgstr "反鋸齒" #: ../src/extension/internal/filter/morphology.h:70 msgid "Blur content" msgstr "模糊內容" -#: ../src/extension/internal/filter/morphology.h:76 -#: ../src/extension/internal/filter/morphology.h:203 -#: ../src/filter-enums.cpp:31 -msgid "Morphology" -msgstr "形態" - #: ../src/extension/internal/filter/morphology.h:79 msgid "Smooth edges and angles of shapes" msgstr "平滑形狀的邊緣和角度" @@ -6115,17 +7067,18 @@ msgid "Composite type:" msgstr "合成類型:" #: ../src/extension/internal/filter/morphology.h:173 -#: ../src/filter-enums.cpp:87 +#: ../src/filter-enums.cpp:88 msgid "Over" msgstr "覆蓋 (Over)" #: ../src/extension/internal/filter/morphology.h:177 -#: ../src/filter-enums.cpp:91 +#: ../src/filter-enums.cpp:92 msgid "XOR" msgstr "互斥 (XOR)" #: ../src/extension/internal/filter/morphology.h:179 #: ../src/ui/dialog/layer-properties.cpp:185 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:59 msgid "Position:" msgstr "位置:" @@ -6142,34 +7095,28 @@ msgid "Overlayed" msgstr "覆蓋" #: ../src/extension/internal/filter/morphology.h:184 -#, fuzzy msgid "Width 1" -msgstr "寬度 1:" +msgstr "寬度 1" #: ../src/extension/internal/filter/morphology.h:185 -#, fuzzy msgid "Dilatation 1" -msgstr "擴張 1:" +msgstr "擴張 1" #: ../src/extension/internal/filter/morphology.h:186 -#, fuzzy msgid "Erosion 1" -msgstr "縮減 1:" +msgstr "縮減 1" #: ../src/extension/internal/filter/morphology.h:187 -#, fuzzy msgid "Width 2" -msgstr "寬度 2:" +msgstr "寬度 2" #: ../src/extension/internal/filter/morphology.h:188 -#, fuzzy msgid "Dilatation 2" -msgstr "擴張 2:" +msgstr "擴張 2" #: ../src/extension/internal/filter/morphology.h:189 -#, fuzzy msgid "Erosion 2" -msgstr "縮減 2:" +msgstr "縮減 2" #: ../src/extension/internal/filter/morphology.h:191 msgid "Smooth" @@ -6251,10 +7198,6 @@ msgstr "縮減:" msgid "Noise color" msgstr "雜訊顏色" -#: ../src/extension/internal/filter/overlays.h:80 -msgid "Overlays" -msgstr "覆蓋" - #: ../src/extension/internal/filter/overlays.h:83 msgid "Basic noise fill and transparency texture" msgstr "基本的雜訊填充和透明紋理" @@ -6278,9 +7221,8 @@ msgstr "塌陷" #: ../src/extension/internal/filter/paint.h:88 #: ../src/extension/internal/filter/paint.h:699 -#, fuzzy msgid "Noise reduction" -msgstr "減少雜訊:" +msgstr "減少雜訊" #: ../src/extension/internal/filter/paint.h:91 msgid "Grain" @@ -6293,25 +7235,13 @@ msgstr "顆粒模式" #: ../src/extension/internal/filter/paint.h:97 #: ../src/extension/internal/filter/transparency.h:207 #: ../src/extension/internal/filter/transparency.h:281 -#, fuzzy msgid "Expansion" -msgstr "擴張:" +msgstr "擴張" #: ../src/extension/internal/filter/paint.h:100 msgid "Grain blend:" msgstr "顆粒混合:" -#: ../src/extension/internal/filter/paint.h:113 -#: ../src/extension/internal/filter/paint.h:244 -#: ../src/extension/internal/filter/paint.h:363 -#: ../src/extension/internal/filter/paint.h:507 -#: ../src/extension/internal/filter/paint.h:602 -#: ../src/extension/internal/filter/paint.h:725 -#: ../src/extension/internal/filter/paint.h:877 -#: ../src/extension/internal/filter/paint.h:981 -msgid "Image Paint and Draw" -msgstr "影像繪畫" - #: ../src/extension/internal/filter/paint.h:116 msgid "Chromo effect with customizable edge drawing and graininess" msgstr "含自訂邊緣繪製及顆粒性的色彩效果" @@ -6322,9 +7252,8 @@ msgstr "交疊版畫" #: ../src/extension/internal/filter/paint.h:234 #: ../src/extension/internal/filter/paint.h:337 -#, fuzzy msgid "Clean-up" -msgstr "清理:" +msgstr "清理" #: ../src/extension/internal/filter/paint.h:238 #: ../share/extensions/measure.inx.h:11 @@ -6341,22 +7270,19 @@ msgstr "將圖像轉換成用垂直線及水平線產生的版畫效果" msgid "Drawing" msgstr "繪畫" +#. 0.91 #: ../src/extension/internal/filter/paint.h:335 #: ../src/extension/internal/filter/paint.h:496 #: ../src/extension/internal/filter/paint.h:590 -#: ../src/extension/internal/filter/paint.h:976 ../src/splivarot.cpp:2212 +#: ../src/extension/internal/filter/paint.h:976 +#: ../src/live_effects/effect.cpp:151 ../src/splivarot.cpp:2212 msgid "Simplify" msgstr "簡化" #: ../src/extension/internal/filter/paint.h:338 #: ../src/extension/internal/filter/paint.h:709 -#, fuzzy msgid "Erase" -msgstr "擦除:" - -#: ../src/extension/internal/filter/paint.h:339 -msgid "Translucent" -msgstr "半透明" +msgstr "擦除" #: ../src/extension/internal/filter/paint.h:344 msgid "Melt" @@ -6396,9 +7322,8 @@ msgstr "特效類型:" #: ../src/extension/internal/filter/paint.h:501 #: ../src/extension/internal/filter/paint.h:860 #: ../src/extension/internal/filter/paint.h:975 -#, fuzzy msgid "Levels" -msgstr "等級:" +msgstr "等級" #: ../src/extension/internal/filter/paint.h:510 msgid "Electro solarization effects" @@ -6421,9 +7346,9 @@ msgid "Contrasted" msgstr "對比" #: ../src/extension/internal/filter/paint.h:591 -#, fuzzy +#: ../src/live_effects/lpe-jointype.cpp:51 msgid "Line width" -msgstr "線寬:" +msgstr "線寬" #: ../src/extension/internal/filter/paint.h:593 #: ../src/extension/internal/filter/paint.h:861 @@ -6444,9 +7369,8 @@ msgid "Noise blend:" msgstr "雜訊混合:" #: ../src/extension/internal/filter/paint.h:708 -#, fuzzy msgid "Grain lightness" -msgstr "顆粒亮度:" +msgstr "顆粒亮度" #: ../src/extension/internal/filter/paint.h:716 msgid "Points color" @@ -6477,24 +7401,20 @@ msgid "Painting" msgstr "油畫" #: ../src/extension/internal/filter/paint.h:868 -#, fuzzy msgid "Simplify (primary)" -msgstr "簡化 (主要):" +msgstr "簡化 (主要)" #: ../src/extension/internal/filter/paint.h:869 -#, fuzzy msgid "Simplify (secondary)" -msgstr "簡化 (次要):" +msgstr "簡化 (次要)" #: ../src/extension/internal/filter/paint.h:870 -#, fuzzy msgid "Pre-saturation" -msgstr "處理前飽和度:" +msgstr "處理前飽和度" #: ../src/extension/internal/filter/paint.h:871 -#, fuzzy msgid "Post-saturation" -msgstr "處理後飽和度:" +msgstr "處理後飽和度" #: ../src/extension/internal/filter/paint.h:872 msgid "Simulate antialiasing" @@ -6517,9 +7437,8 @@ msgid "Snow crest" msgstr "積雪頂飾" #: ../src/extension/internal/filter/protrusions.h:50 -#, fuzzy msgid "Drift Size" -msgstr "漂移大小:" +msgstr "漂移大小" #: ../src/extension/internal/filter/protrusions.h:58 msgid "Snow has fallen on object" @@ -6530,24 +7449,20 @@ msgid "Drop Shadow" msgstr "下落式陰影" #: ../src/extension/internal/filter/shadows.h:61 -#, fuzzy msgid "Blur radius (px)" -msgstr "模糊半徑 (px):" +msgstr "模糊半徑 (px)" #: ../src/extension/internal/filter/shadows.h:62 -#, fuzzy msgid "Horizontal offset (px)" -msgstr "水平偏移 (px):" +msgstr "水平偏移 (px)" #: ../src/extension/internal/filter/shadows.h:63 -#, fuzzy msgid "Vertical offset (px)" -msgstr "垂直偏移 (px):" +msgstr "垂直偏移 (px)" #: ../src/extension/internal/filter/shadows.h:64 -#, fuzzy msgid "Shadow type:" -msgstr "陰影:" +msgstr "陰影類型:" #: ../src/extension/internal/filter/shadows.h:67 msgid "Outer cutout" @@ -6558,9 +7473,8 @@ msgid "Inner cutout" msgstr "內剪影" #: ../src/extension/internal/filter/shadows.h:69 -#, fuzzy msgid "Shadow only" -msgstr "只有透明" +msgstr "只有陰影" #: ../src/extension/internal/filter/shadows.h:72 msgid "Blur color" @@ -6570,10 +7484,6 @@ msgstr "模糊色彩" msgid "Use object's color" msgstr "使用物件的顏色" -#: ../src/extension/internal/filter/shadows.h:81 -msgid "Shadows and Glows" -msgstr "陰影與光暈" - #: ../src/extension/internal/filter/shadows.h:84 msgid "Colorizable Drop shadow" msgstr "彩色下落式陰影" @@ -6632,7 +7542,7 @@ msgid "Inkblot on tissue or rough paper" msgstr "棉紙或草稿紙上的墨跡" #: ../src/extension/internal/filter/transparency.h:53 -#: ../src/filter-enums.cpp:20 +#: ../src/filter-enums.cpp:21 msgid "Blend" msgstr "混合" @@ -6641,27 +7551,19 @@ msgid "Source:" msgstr "來源:" #: ../src/extension/internal/filter/transparency.h:56 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1551 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1590 msgid "Background" msgstr "背景" #: ../src/extension/internal/filter/transparency.h:59 #: ../src/ui/dialog/filter-effects-dialog.cpp:2839 #: ../src/ui/dialog/input.cpp:1088 ../src/widgets/eraser-toolbar.cpp:106 -#: ../src/widgets/pencil-toolbar.cpp:127 ../src/widgets/spray-toolbar.cpp:186 +#: ../src/widgets/pencil-toolbar.cpp:132 ../src/widgets/spray-toolbar.cpp:186 #: ../src/widgets/tweak-toolbar.cpp:254 ../share/extensions/extrude.inx.h:2 #: ../share/extensions/triangle.inx.h:8 msgid "Mode:" msgstr "模式:" -#: ../src/extension/internal/filter/transparency.h:70 -#: ../src/extension/internal/filter/transparency.h:141 -#: ../src/extension/internal/filter/transparency.h:215 -#: ../src/extension/internal/filter/transparency.h:288 -#: ../src/extension/internal/filter/transparency.h:350 -msgid "Fill and Transparency" -msgstr "填充和透明度" - #: ../src/extension/internal/filter/transparency.h:73 msgid "Blend objects with background images or with themselves" msgstr "用背景圖像或自己本身來混合物件" @@ -6676,13 +7578,12 @@ msgstr "用透明度取代 RGB" #: ../src/extension/internal/filter/transparency.h:205 msgid "Light Eraser" -msgstr "亮部橡皮擦" +msgstr "明亮橡皮擦" #: ../src/extension/internal/filter/transparency.h:209 #: ../src/extension/internal/filter/transparency.h:283 -#, fuzzy msgid "Global opacity" -msgstr "整體不透明度:" +msgstr "總體不透明度" #: ../src/extension/internal/filter/transparency.h:218 msgid "Make the lightest parts of the object progressively transparent" @@ -6704,16 +7605,16 @@ msgstr "挖剪" msgid "Repaint anything visible monochrome" msgstr "重繪任何物件的可見單色" -#: ../src/extension/internal/gdkpixbuf-input.cpp:184 +#: ../src/extension/internal/gdkpixbuf-input.cpp:183 #, c-format msgid "%s bitmap image import" msgstr "匯入 %s 點陣圖影像" -#: ../src/extension/internal/gdkpixbuf-input.cpp:191 +#: ../src/extension/internal/gdkpixbuf-input.cpp:190 msgid "Image Import Type:" -msgstr "" +msgstr "圖片匯入類型:" -#: ../src/extension/internal/gdkpixbuf-input.cpp:191 +#: ../src/extension/internal/gdkpixbuf-input.cpp:190 msgid "" "Embed results in stand-alone, larger SVG files. Link references a file " "outside this SVG document and all files must be moved together." @@ -6721,70 +7622,64 @@ msgstr "" "用獨立的內嵌方式 SVG 檔案體積會比較大。連結則會參考此 SVG 文件外部的檔案而且" "全部檔案必須放在一起。" -#: ../src/extension/internal/gdkpixbuf-input.cpp:192 -#: ../src/ui/dialog/inkscape-preferences.cpp:1447 +#: ../src/extension/internal/gdkpixbuf-input.cpp:191 +#: ../src/ui/dialog/inkscape-preferences.cpp:1449 msgid "Embed" msgstr "內嵌" -#: ../src/extension/internal/gdkpixbuf-input.cpp:193 ../src/sp-anchor.cpp:119 -#: ../src/ui/dialog/inkscape-preferences.cpp:1447 +#: ../src/extension/internal/gdkpixbuf-input.cpp:192 ../src/sp-anchor.cpp:119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1449 msgid "Link" msgstr "連結" -#: ../src/extension/internal/gdkpixbuf-input.cpp:196 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:195 msgid "Image DPI:" -msgstr "圖片" +msgstr "圖片 DPI:" -#: ../src/extension/internal/gdkpixbuf-input.cpp:196 +#: ../src/extension/internal/gdkpixbuf-input.cpp:195 msgid "" "Take information from file or use default bitmap import resolution as " "defined in the preferences." -msgstr "" +msgstr "從檔案取得資訊惑使用預設點陣圖匯入解析度作為偏好設定中定義的解析度。" -#: ../src/extension/internal/gdkpixbuf-input.cpp:197 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:196 msgid "From file" msgstr "從檔案載入" -#: ../src/extension/internal/gdkpixbuf-input.cpp:198 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:197 msgid "Default import resolution" -msgstr "預設匯出解析度:" +msgstr "預設匯入解析度" -#: ../src/extension/internal/gdkpixbuf-input.cpp:201 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:200 msgid "Image Rendering Mode:" -msgstr "圖形潤算" +msgstr "圖形繪算模式:" -#: ../src/extension/internal/gdkpixbuf-input.cpp:201 +#: ../src/extension/internal/gdkpixbuf-input.cpp:200 msgid "" "When an image is upscaled, apply smoothing or keep blocky (pixelated). (Will " "not work in all browsers.)" -msgstr "" +msgstr "當圖片放大時,套用平滑或維持塊狀 (像素)。(並不適用所有的瀏覽器。)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:1454 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1456 msgid "None (auto)" -msgstr "無 (預設)" +msgstr "無 (自動)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:203 -#: ../src/ui/dialog/inkscape-preferences.cpp:1454 +#: ../src/extension/internal/gdkpixbuf-input.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1456 msgid "Smooth (optimizeQuality)" -msgstr "" +msgstr "平滑 (最佳畫質)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:204 -#: ../src/ui/dialog/inkscape-preferences.cpp:1454 +#: ../src/extension/internal/gdkpixbuf-input.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:1456 msgid "Blocky (optimizeSpeed)" -msgstr "" +msgstr "塊狀 (最快速度)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:207 -#, fuzzy +#: ../src/extension/internal/gdkpixbuf-input.cpp:206 msgid "Hide the dialog next time and always apply the same actions." -msgstr "下次隱藏對話窗並且都套用相同動作。" +msgstr "下次隱藏對話窗並都套用相同動作。" -#: ../src/extension/internal/gdkpixbuf-input.cpp:207 +#: ../src/extension/internal/gdkpixbuf-input.cpp:206 msgid "Don't ask again" msgstr "不再詢問" @@ -6825,7 +7720,7 @@ msgid "Vertical Offset:" msgstr "垂直偏移:" #: ../src/extension/internal/grid.cpp:220 -#: ../src/ui/dialog/inkscape-preferences.cpp:1468 +#: ../src/ui/dialog/inkscape-preferences.cpp:1470 #: ../share/extensions/draw_from_triangle.inx.h:58 #: ../share/extensions/eqtexsvg.inx.h:4 #: ../share/extensions/foldablebox.inx.h:9 @@ -6847,16 +7742,17 @@ msgstr "垂直偏移:" #: ../share/extensions/render_barcode_qrcode.inx.h:18 #: ../share/extensions/render_gear_rack.inx.h:5 #: ../share/extensions/render_gears.inx.h:11 ../share/extensions/rtree.inx.h:4 +#: ../share/extensions/seamless_pattern.inx.h:5 #: ../share/extensions/spirograph.inx.h:10 #: ../share/extensions/svgcalendar.inx.h:38 #: ../share/extensions/triangle.inx.h:14 #: ../share/extensions/wireframe_sphere.inx.h:8 msgid "Render" -msgstr "圖形潤算" +msgstr "圖形繪算" #: ../src/extension/internal/grid.cpp:221 #: ../src/ui/dialog/document-properties.cpp:155 -#: ../src/ui/dialog/inkscape-preferences.cpp:778 +#: ../src/ui/dialog/inkscape-preferences.cpp:780 #: ../src/widgets/toolbox.cpp:1826 msgid "Grids" msgstr "格線" @@ -6948,7 +7844,7 @@ msgstr "備註:若精確度設定太高可能會使 SVG 檔的體積變 #: ../src/extension/internal/pdfinput/pdf-input.cpp:128 msgid "import via Poppler" -msgstr "" +msgstr "用 Poppler 匯入" #: ../src/extension/internal/pdfinput/pdf-input.cpp:138 msgid "rough" @@ -7000,27 +7896,27 @@ msgctxt "PDF input precision" msgid "very fine" msgstr "非常精細" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:877 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:901 msgid "PDF Input" msgstr "PDF 輸入" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:882 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:906 msgid "Adobe PDF (*.pdf)" msgstr "Adobe PDF (*.pdf)" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:883 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:907 msgid "Adobe Portable Document Format" msgstr "Adobe 可攜式文件格式" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:890 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:914 msgid "AI Input" msgstr "AI 輸入" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:895 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:919 msgid "Adobe Illustrator 9.0 and above (*.ai)" msgstr "Adobe Illustrator 9.0 及以上 (*.ai)" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:896 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:920 msgid "Open files saved in Adobe Illustrator 9.0 and newer versions" msgstr "開啟用 Adobe Illustrator 8.0 或更新版本儲存的檔案" @@ -7100,106 +7996,98 @@ msgstr "壓縮的普通 SVG (*.svgz)" msgid "Scalable Vector Graphics format compressed with GZip" msgstr "使用 GZip 壓縮的可縮放向量圖形格式" -#: ../src/extension/internal/vsd-input.cpp:274 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:301 msgid "VSD Input" -msgstr "PDF 輸入" +msgstr "VSD 輸入" -#: ../src/extension/internal/vsd-input.cpp:279 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:306 msgid "Microsoft Visio Diagram (*.vsd)" -msgstr "Dia 圖表 (*.dia)" +msgstr "微軟 Visio 圖表 (*.vsd)" -#: ../src/extension/internal/vsd-input.cpp:280 +#: ../src/extension/internal/vsd-input.cpp:307 msgid "File format used by Microsoft Visio 6 and later" -msgstr "" +msgstr "微軟 Visio 6 以及更新版本使用的檔案格式" -#: ../src/extension/internal/vsd-input.cpp:287 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:314 msgid "VDX Input" -msgstr "DXF 輸入" +msgstr "VDX 輸入" -#: ../src/extension/internal/vsd-input.cpp:292 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:319 msgid "Microsoft Visio XML Diagram (*.vdx)" -msgstr "微軟 XAML (*.xaml)" +msgstr "微軟 Visio XML 圖表 (*.vdx)" -#: ../src/extension/internal/vsd-input.cpp:293 +#: ../src/extension/internal/vsd-input.cpp:320 msgid "File format used by Microsoft Visio 2010 and later" -msgstr "" +msgstr "微軟 Visio 2010 以及更新版本使用的檔案格式" -#: ../src/extension/internal/vsd-input.cpp:300 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:327 msgid "VSDM Input" -msgstr "EMF 輸入" +msgstr "VSDM 輸入" -#: ../src/extension/internal/vsd-input.cpp:305 +#: ../src/extension/internal/vsd-input.cpp:332 msgid "Microsoft Visio 2013 drawing (*.vsdm)" -msgstr "" +msgstr "微軟 Visio 2013 繪圖檔 (*.vsdm)" -#: ../src/extension/internal/vsd-input.cpp:306 -#: ../src/extension/internal/vsd-input.cpp:319 +#: ../src/extension/internal/vsd-input.cpp:333 +#: ../src/extension/internal/vsd-input.cpp:346 msgid "File format used by Microsoft Visio 2013 and later" -msgstr "" +msgstr "微軟 Visio 2013 以及更新版本使用的檔案格式" -#: ../src/extension/internal/vsd-input.cpp:313 -#, fuzzy +#: ../src/extension/internal/vsd-input.cpp:340 msgid "VSDX Input" -msgstr "DXF 輸入" +msgstr "VSDX 輸入" -#: ../src/extension/internal/vsd-input.cpp:318 +#: ../src/extension/internal/vsd-input.cpp:345 msgid "Microsoft Visio 2013 drawing (*.vsdx)" -msgstr "" +msgstr "微軟 Visio 2013 繪圖檔 (*.vsdx)" -#: ../src/extension/internal/wmf-inout.cpp:3125 +#: ../src/extension/internal/wmf-inout.cpp:3128 msgid "WMF Input" msgstr "WMF 輸入" -#: ../src/extension/internal/wmf-inout.cpp:3130 +#: ../src/extension/internal/wmf-inout.cpp:3133 msgid "Windows Metafiles (*.wmf)" msgstr "Windows 中繼檔案 (*.wmf)" -#: ../src/extension/internal/wmf-inout.cpp:3131 +#: ../src/extension/internal/wmf-inout.cpp:3134 msgid "Windows Metafiles" msgstr "Windows 中繼檔案" -#: ../src/extension/internal/wmf-inout.cpp:3139 -#, fuzzy +#: ../src/extension/internal/wmf-inout.cpp:3142 msgid "WMF Output" -msgstr "EMF 輸出" +msgstr "WMF 輸出" -#: ../src/extension/internal/wmf-inout.cpp:3149 +#: ../src/extension/internal/wmf-inout.cpp:3152 msgid "Map all fill patterns to standard WMF hatches" -msgstr "" +msgstr "將全部填充圖樣對應到標準 WMF 剖面線" -#: ../src/extension/internal/wmf-inout.cpp:3153 +#: ../src/extension/internal/wmf-inout.cpp:3156 #: ../share/extensions/wmf_input.inx.h:2 #: ../share/extensions/wmf_output.inx.h:2 msgid "Windows Metafile (*.wmf)" -msgstr "Windows 後設檔案 (*.wmf)" +msgstr "Windows 中繼檔案 (*.wmf)" -#: ../src/extension/internal/wmf-inout.cpp:3154 -#, fuzzy +#: ../src/extension/internal/wmf-inout.cpp:3157 msgid "Windows Metafile" msgstr "Windows 中繼檔案" -#: ../src/extension/internal/wpg-input.cpp:129 +#: ../src/extension/internal/wpg-input.cpp:144 msgid "WPG Input" msgstr "WPG 輸入" -#: ../src/extension/internal/wpg-input.cpp:134 +#: ../src/extension/internal/wpg-input.cpp:149 msgid "WordPerfect Graphics (*.wpg)" msgstr "WordPerfect 圖形 (*.wpg)" -#: ../src/extension/internal/wpg-input.cpp:135 +#: ../src/extension/internal/wpg-input.cpp:150 msgid "Vector graphics format used by Corel WordPerfect" msgstr "Corel WordPerfect 所使用的向量圖形格式" -#: ../src/extension/prefdialog.cpp:272 +#: ../src/extension/prefdialog.cpp:276 msgid "Live preview" msgstr "即時預覽" -#: ../src/extension/prefdialog.cpp:272 +#: ../src/extension/prefdialog.cpp:276 msgid "Is the effect previewed live on canvas?" msgstr "是否在畫布上即時預覽此特效?" @@ -7207,348 +8095,333 @@ msgstr "是否在畫布上即時預覽此特效?" msgid "Format autodetect failed. The file is being opened as SVG." msgstr "自動偵測格式失敗。該檔案將視為 SVG 開啟。" -#: ../src/file.cpp:181 +#: ../src/file.cpp:183 msgid "default.svg" msgstr "default.zh_TW.svg" -#: ../src/file.cpp:320 +#: ../src/file.cpp:322 msgid "Broken links have been changed to point to existing files." msgstr "無效的連結已變成指向現有檔案。" -#: ../src/file.cpp:331 ../src/file.cpp:1247 +#: ../src/file.cpp:333 ../src/file.cpp:1249 #, c-format msgid "Failed to load the requested file %s" msgstr "載入所要求的檔案 %s 失敗" -#: ../src/file.cpp:357 +#: ../src/file.cpp:359 msgid "Document not saved yet. Cannot revert." msgstr "檔案尚未儲存,無法回復。" -#: ../src/file.cpp:363 -#, fuzzy +#: ../src/file.cpp:365 msgid "Changes will be lost! Are you sure you want to reload document %1?" -msgstr "變更將會遺失!是否確定要重新載入檔案 %s?" +msgstr "變更將會遺失!你確定要重新載入檔案 %1?" -#: ../src/file.cpp:389 +#: ../src/file.cpp:391 msgid "Document reverted." msgstr "檔案已回復。" -#: ../src/file.cpp:391 +#: ../src/file.cpp:393 msgid "Document not reverted." msgstr "檔案尚未回復。" -#: ../src/file.cpp:541 +#: ../src/file.cpp:543 msgid "Select file to open" msgstr "選擇要開啟的檔案" -#: ../src/file.cpp:623 -#, fuzzy +#: ../src/file.cpp:625 msgid "Clean up document" -msgstr "儲存文件" +msgstr "清理文件" -#: ../src/file.cpp:630 +#: ../src/file.cpp:632 #, c-format msgid "Removed %i unused definition in <defs>." msgid_plural "Removed %i unused definitions in <defs>." msgstr[0] "已從 <defs> 移除 %i 項未使用的定義。" msgstr[1] "已從 <defs> 移除 %i 項未使用的定義。" -#: ../src/file.cpp:635 +#: ../src/file.cpp:637 msgid "No unused definitions in <defs>." msgstr "在 <defs> 沒有未使用的定義。" -#: ../src/file.cpp:667 +#: ../src/file.cpp:669 #, c-format msgid "" "No Inkscape extension found to save document (%s). This may have been " "caused by an unknown filename extension." -msgstr "" -"找不到 Inkscape 擴充功能來儲存檔案 (%s) 。這可能是因不明的副檔名所導致。" +msgstr "找不到 Inkscape 擴充功能來儲存檔案 (%s) 。這可能是因不明的副檔名所導致。" -#: ../src/file.cpp:668 ../src/file.cpp:676 ../src/file.cpp:684 -#: ../src/file.cpp:690 ../src/file.cpp:695 +#: ../src/file.cpp:670 ../src/file.cpp:678 ../src/file.cpp:686 +#: ../src/file.cpp:692 ../src/file.cpp:697 msgid "Document not saved." msgstr "檔案未儲存。" -#: ../src/file.cpp:675 +#: ../src/file.cpp:677 #, c-format msgid "" "File %s is write protected. Please remove write protection and try again." msgstr "檔案 %s 具有寫入保護。請移除寫入保護後再試一次。" -#: ../src/file.cpp:683 +#: ../src/file.cpp:685 #, c-format msgid "File %s could not be saved." msgstr "無法儲存檔案 %s。" -#: ../src/file.cpp:713 ../src/file.cpp:715 +#: ../src/file.cpp:715 ../src/file.cpp:717 msgid "Document saved." msgstr "檔案已儲存" #. We are saving for the first time; create a unique default filename -#: ../src/file.cpp:858 ../src/file.cpp:1406 -#, fuzzy +#: ../src/file.cpp:860 ../src/file.cpp:1408 msgid "drawing" -msgstr "繪圖%s" +msgstr "圖畫" -#: ../src/file.cpp:863 -#, fuzzy +#: ../src/file.cpp:865 msgid "drawing-%1" -msgstr "繪圖%s" +msgstr "圖畫-%1" -#: ../src/file.cpp:880 +#: ../src/file.cpp:882 msgid "Select file to save a copy to" msgstr "選擇要儲存副本的檔案" -#: ../src/file.cpp:882 +#: ../src/file.cpp:884 msgid "Select file to save to" msgstr "選擇要儲存的檔案" -#: ../src/file.cpp:987 ../src/file.cpp:989 +#: ../src/file.cpp:989 ../src/file.cpp:991 msgid "No changes need to be saved." msgstr "沒有任何改變需要儲存。" -#: ../src/file.cpp:1008 +#: ../src/file.cpp:1010 msgid "Saving document..." msgstr "儲存檔案中..." -#: ../src/file.cpp:1244 ../src/ui/dialog/inkscape-preferences.cpp:1441 +#: ../src/file.cpp:1246 ../src/ui/dialog/inkscape-preferences.cpp:1443 #: ../src/ui/dialog/ocaldialogs.cpp:1244 msgid "Import" msgstr "匯入" -#: ../src/file.cpp:1294 +#: ../src/file.cpp:1296 msgid "Select file to import" msgstr "選擇要匯入的檔案" -#: ../src/file.cpp:1427 +#: ../src/file.cpp:1429 msgid "Select file to export to" msgstr "選擇要匯出的檔案" -#: ../src/file.cpp:1680 +#: ../src/file.cpp:1682 msgid "Import Clip Art" msgstr "匯入美工圖" -#: ../src/filter-enums.cpp:21 +#: ../src/filter-enums.cpp:22 msgid "Color Matrix" msgstr "顏色矩陣" -#: ../src/filter-enums.cpp:23 +#: ../src/filter-enums.cpp:24 msgid "Composite" msgstr "合成" -#: ../src/filter-enums.cpp:24 +#: ../src/filter-enums.cpp:25 msgid "Convolve Matrix" msgstr "迴旋矩陣" -#: ../src/filter-enums.cpp:25 +#: ../src/filter-enums.cpp:26 msgid "Diffuse Lighting" msgstr "擴散光" -#: ../src/filter-enums.cpp:26 +#: ../src/filter-enums.cpp:27 msgid "Displacement Map" msgstr "位移圖" -#: ../src/filter-enums.cpp:27 +#: ../src/filter-enums.cpp:28 msgid "Flood" msgstr "填滿" -#: ../src/filter-enums.cpp:30 ../share/extensions/text_merge.inx.h:1 +#: ../src/filter-enums.cpp:31 ../share/extensions/text_merge.inx.h:1 msgid "Merge" msgstr "融合" -#: ../src/filter-enums.cpp:33 +#: ../src/filter-enums.cpp:34 msgid "Specular Lighting" msgstr "反射光" -#: ../src/filter-enums.cpp:34 +#: ../src/filter-enums.cpp:35 msgid "Tile" msgstr "鋪排" -#: ../src/filter-enums.cpp:40 +#: ../src/filter-enums.cpp:41 msgid "Source Graphic" msgstr "來源圖形" -#: ../src/filter-enums.cpp:41 +#: ../src/filter-enums.cpp:42 msgid "Source Alpha" msgstr "來源透明" -#: ../src/filter-enums.cpp:42 +#: ../src/filter-enums.cpp:43 msgid "Background Image" msgstr "背景圖片" -#: ../src/filter-enums.cpp:43 +#: ../src/filter-enums.cpp:44 msgid "Background Alpha" msgstr "背景透明" -#: ../src/filter-enums.cpp:44 +#: ../src/filter-enums.cpp:45 msgid "Fill Paint" msgstr "填色" -#: ../src/filter-enums.cpp:45 +#: ../src/filter-enums.cpp:46 msgid "Stroke Paint" msgstr "邊框顏色" #. New in Compositing and Blending Level 1 -#: ../src/filter-enums.cpp:57 -#, fuzzy +#: ../src/filter-enums.cpp:58 msgid "Overlay" msgstr "覆蓋" -#: ../src/filter-enums.cpp:58 -#, fuzzy +#: ../src/filter-enums.cpp:59 msgid "Color Dodge" -msgstr "只有色彩" +msgstr "加亮顏色" -#: ../src/filter-enums.cpp:59 -#, fuzzy +#: ../src/filter-enums.cpp:60 msgid "Color Burn" -msgstr "色彩條" +msgstr "加深顏色" -#: ../src/filter-enums.cpp:60 -#, fuzzy +#: ../src/filter-enums.cpp:61 msgid "Hard Light" -msgstr "耀眼照明:" +msgstr "實光" -#: ../src/filter-enums.cpp:61 -#, fuzzy +#: ../src/filter-enums.cpp:62 msgid "Soft Light" -msgstr "聚光燈" +msgstr "柔光" -#: ../src/filter-enums.cpp:62 ../src/splivarot.cpp:88 ../src/splivarot.cpp:94 +#: ../src/filter-enums.cpp:63 ../src/splivarot.cpp:88 ../src/splivarot.cpp:94 msgid "Difference" msgstr "差集" -#: ../src/filter-enums.cpp:63 ../src/splivarot.cpp:100 +#: ../src/filter-enums.cpp:64 ../src/splivarot.cpp:100 msgid "Exclusion" msgstr "排除" -#: ../src/filter-enums.cpp:64 ../src/ui/tools/flood-tool.cpp:196 -#: ../src/widgets/sp-color-icc-selector.cpp:361 -#: ../src/widgets/sp-color-icc-selector.cpp:365 -#: ../src/widgets/sp-color-scales.cpp:455 -#: ../src/widgets/sp-color-scales.cpp:456 ../src/widgets/tweak-toolbar.cpp:286 +#: ../src/filter-enums.cpp:65 ../src/ui/tools/flood-tool.cpp:196 +#: ../src/widgets/sp-color-icc-selector.cpp:336 +#: ../src/widgets/sp-color-icc-selector.cpp:340 +#: ../src/widgets/sp-color-scales.cpp:441 +#: ../src/widgets/sp-color-scales.cpp:442 ../src/widgets/tweak-toolbar.cpp:286 #: ../share/extensions/color_randomize.inx.h:3 msgid "Hue" msgstr "色相" -#: ../src/filter-enums.cpp:67 +#: ../src/filter-enums.cpp:68 msgid "Luminosity" -msgstr "" +msgstr "明度" -#: ../src/filter-enums.cpp:77 +#: ../src/filter-enums.cpp:78 msgid "Matrix" msgstr "矩陣" -#: ../src/filter-enums.cpp:78 +#: ../src/filter-enums.cpp:79 msgid "Saturate" msgstr "飽和度" -#: ../src/filter-enums.cpp:79 +#: ../src/filter-enums.cpp:80 msgid "Hue Rotate" msgstr "旋轉色相" -#: ../src/filter-enums.cpp:80 +#: ../src/filter-enums.cpp:81 msgid "Luminance to Alpha" msgstr "明度轉成透明" #. File -#: ../src/filter-enums.cpp:86 ../src/verbs.cpp:2352 +#: ../src/filter-enums.cpp:87 ../src/verbs.cpp:2435 #: ../share/extensions/jessyInk_mouseHandler.inx.h:3 #: ../share/extensions/jessyInk_transitions.inx.h:7 msgid "Default" msgstr "預設" #. New CSS -#: ../src/filter-enums.cpp:94 -#, fuzzy +#: ../src/filter-enums.cpp:95 msgid "Clear" -msgstr "清除(_C)" +msgstr "清除" -#: ../src/filter-enums.cpp:95 -#, fuzzy +#: ../src/filter-enums.cpp:96 msgid "Copy" -msgstr "複製(_C)" +msgstr "複製" -#: ../src/filter-enums.cpp:96 ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1571 +#: ../src/filter-enums.cpp:97 ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1610 msgid "Destination" msgstr "目的地" -#: ../src/filter-enums.cpp:97 -#, fuzzy +#: ../src/filter-enums.cpp:98 msgid "Destination Over" -msgstr "目的地" +msgstr "目的地從頭到尾" -#: ../src/filter-enums.cpp:98 -#, fuzzy +#: ../src/filter-enums.cpp:99 msgid "Destination In" -msgstr "目的地" +msgstr "目的地內" -#: ../src/filter-enums.cpp:99 -#, fuzzy +#: ../src/filter-enums.cpp:100 msgid "Destination Out" -msgstr "目的地" +msgstr "目的地外" -#: ../src/filter-enums.cpp:100 -#, fuzzy +#: ../src/filter-enums.cpp:101 msgid "Destination Atop" -msgstr "目的地" +msgstr "目的地正上方" -#: ../src/filter-enums.cpp:101 -#, fuzzy +#: ../src/filter-enums.cpp:102 msgid "Lighter" msgstr "變亮" -#: ../src/filter-enums.cpp:103 +#: ../src/filter-enums.cpp:104 msgid "Arithmetic" msgstr "算數 (Arithmetic)" -#: ../src/filter-enums.cpp:119 ../src/selection-chemistry.cpp:535 +#: ../src/filter-enums.cpp:120 ../src/selection-chemistry.cpp:550 msgid "Duplicate" msgstr "再製" -#: ../src/filter-enums.cpp:120 +#: ../src/filter-enums.cpp:121 msgid "Wrap" msgstr "盤繞" -#: ../src/filter-enums.cpp:136 +#: ../src/filter-enums.cpp:122 +msgctxt "Convolve matrix, edge mode" +msgid "None" +msgstr "無" + +#: ../src/filter-enums.cpp:137 msgid "Erode" msgstr "侵蝕" -#: ../src/filter-enums.cpp:137 +#: ../src/filter-enums.cpp:138 msgid "Dilate" msgstr "膨脹" -#: ../src/filter-enums.cpp:143 +#: ../src/filter-enums.cpp:144 msgid "Fractal Noise" msgstr "碎形雜訊" -#: ../src/filter-enums.cpp:150 +#: ../src/filter-enums.cpp:151 msgid "Distant Light" msgstr "遠燈光" -#: ../src/filter-enums.cpp:151 +#: ../src/filter-enums.cpp:152 msgid "Point Light" msgstr "點光源" -#: ../src/filter-enums.cpp:152 +#: ../src/filter-enums.cpp:153 msgid "Spot Light" msgstr "聚光燈" #: ../src/gradient-chemistry.cpp:1580 -#, fuzzy msgid "Invert gradient colors" -msgstr "反轉漸層" +msgstr "反轉漸層顏色" #: ../src/gradient-chemistry.cpp:1606 -#, fuzzy msgid "Reverse gradient" msgstr "反轉漸層" -#: ../src/gradient-chemistry.cpp:1620 ../src/widgets/gradient-selector.cpp:245 -#, fuzzy +#: ../src/gradient-chemistry.cpp:1620 ../src/widgets/gradient-selector.cpp:227 msgid "Delete swatch" -msgstr "刪除停止點" +msgstr "刪除色票" #: ../src/gradient-drag.cpp:97 ../src/ui/tools/gradient-tool.cpp:100 msgid "Linear gradient start" @@ -7583,23 +8456,20 @@ msgid "Radial gradient mid stop" msgstr "放射狀漸層中間停止點" #: ../src/gradient-drag.cpp:106 ../src/ui/tools/mesh-tool.cpp:103 -#, fuzzy msgid "Mesh gradient corner" -msgstr "放射狀漸層中心" +msgstr "網面漸層邊角" #: ../src/gradient-drag.cpp:107 ../src/ui/tools/mesh-tool.cpp:104 -#, fuzzy msgid "Mesh gradient handle" -msgstr "移動漸層控制點" +msgstr "網面漸層控制點" #: ../src/gradient-drag.cpp:108 ../src/ui/tools/mesh-tool.cpp:105 -#, fuzzy msgid "Mesh gradient tensor" -msgstr "線性漸層結束" +msgstr "網面漸層張量" #: ../src/gradient-drag.cpp:567 msgid "Added patch row or column" -msgstr "" +msgstr "加入的網面區塊列或欄" #: ../src/gradient-drag.cpp:797 msgid "Merge gradient handles" @@ -7609,7 +8479,7 @@ msgstr "合併漸層控制點" msgid "Move gradient handle" msgstr "移動漸層控制點" -#: ../src/gradient-drag.cpp:1163 ../src/widgets/gradient-vector.cpp:847 +#: ../src/gradient-drag.cpp:1163 ../src/widgets/gradient-vector.cpp:827 msgid "Delete gradient stop" msgstr "刪除漸層停止點" @@ -7664,328 +8534,72 @@ msgstr "移動漸層中間停止點" msgid "Delete gradient stop(s)" msgstr "刪除漸層停止點" -#: ../src/inkscape.cpp:344 -#, fuzzy +#: ../src/inkscape.cpp:310 msgid "Autosave failed! Cannot create directory %1." -msgstr "無法建立描述檔目錄 %s。" +msgstr "自動儲存失敗!無法建立目錄 %1。" -#: ../src/inkscape.cpp:353 -#, fuzzy +#: ../src/inkscape.cpp:319 msgid "Autosave failed! Cannot open directory %1." -msgstr "無法建立描述檔目錄 %s。" +msgstr "自動儲存失敗!無法開啟目錄 %1。" -#: ../src/inkscape.cpp:369 +#: ../src/inkscape.cpp:335 msgid "Autosaving documents..." msgstr "正在自動儲存檔案..." -#: ../src/inkscape.cpp:442 +#: ../src/inkscape.cpp:408 msgid "Autosave failed! Could not find inkscape extension to save document." msgstr "自動儲存失敗!無法找到 inkscape 擴充功能來儲存檔案。" -#: ../src/inkscape.cpp:445 ../src/inkscape.cpp:452 +#: ../src/inkscape.cpp:411 ../src/inkscape.cpp:418 #, c-format msgid "Autosave failed! File %s could not be saved." msgstr "自動儲存失敗!檔案 %s 無法儲存。" -#: ../src/inkscape.cpp:467 +#: ../src/inkscape.cpp:433 msgid "Autosave complete." msgstr "自動儲存完成。" -#: ../src/inkscape.cpp:715 +#: ../src/inkscape.cpp:681 msgid "Untitled document" msgstr "無標題文件" #. Show nice dialog box -#: ../src/inkscape.cpp:747 +#: ../src/inkscape.cpp:713 msgid "Inkscape encountered an internal error and will close now.\n" msgstr "Inkscape 發生內部錯誤,將立即結束。\n" -#: ../src/inkscape.cpp:748 +#: ../src/inkscape.cpp:714 msgid "" "Automatic backups of unsaved documents were done to the following " "locations:\n" msgstr "已自動備份未儲存的檔案於下列的位置:\n" -#: ../src/inkscape.cpp:749 +#: ../src/inkscape.cpp:715 msgid "Automatic backup of the following documents failed:\n" msgstr "自動備份下列檔案時失敗:\n" -#: ../src/interface.cpp:748 -msgctxt "Interface setup" -msgid "Default" -msgstr "預設" - -#: ../src/interface.cpp:748 -msgid "Default interface setup" -msgstr "預設的介面設定" - -#: ../src/interface.cpp:749 -msgctxt "Interface setup" -msgid "Custom" -msgstr "自訂" - -#: ../src/interface.cpp:749 -#, fuzzy -msgid "Setup for custom task" -msgstr "設定自訂任務" - -#: ../src/interface.cpp:750 -msgctxt "Interface setup" -msgid "Wide" -msgstr "寬螢幕" - -#: ../src/interface.cpp:750 -msgid "Setup for widescreen work" -msgstr "寬螢幕工作設定" - -#: ../src/interface.cpp:862 -#, c-format -msgid "Verb \"%s\" Unknown" -msgstr "動詞「%s」不明" - -#: ../src/interface.cpp:901 -msgid "Open _Recent" -msgstr "最近開啟(_R)" - -#: ../src/interface.cpp:1009 ../src/interface.cpp:1095 -#: ../src/interface.cpp:1198 ../src/ui/widget/selected-style.cpp:528 -msgid "Drop color" -msgstr "丟棄顏色" - -#: ../src/interface.cpp:1048 ../src/interface.cpp:1158 -msgid "Drop color on gradient" -msgstr "丟棄漸層上的顏色" - -#: ../src/interface.cpp:1211 -msgid "Could not parse SVG data" -msgstr "無法解析 SVG 資料" - -#: ../src/interface.cpp:1250 -msgid "Drop SVG" -msgstr "丟棄 SVG" - -#: ../src/interface.cpp:1263 -#, fuzzy -msgid "Drop Symbol" -msgstr "高棉符號" - -#: ../src/interface.cpp:1294 -msgid "Drop bitmap image" -msgstr "丟棄點陣圖影像" - -#: ../src/interface.cpp:1386 -#, c-format -msgid "" -"A file named \"%s\" already exists. Do " -"you want to replace it?\n" -"\n" -"The file already exists in \"%s\". Replacing it will overwrite its contents." -msgstr "" -"檔案「%s」已經存在。要取代此檔案嗎?\n" -"\n" -"檔案已存在\"%s\"。 取代將會覆寫檔案的內容。" - -#: ../src/interface.cpp:1392 ../src/ui/dialog/export.cpp:1302 -#: ../src/widgets/desktop-widget.cpp:1122 -#: ../src/widgets/desktop-widget.cpp:1184 -msgid "_Cancel" -msgstr "取消(_C)" - -#: ../src/interface.cpp:1393 ../share/extensions/web-set-att.inx.h:21 -#: ../share/extensions/web-transmit-att.inx.h:19 -msgid "Replace" -msgstr "取代" - -#: ../src/interface.cpp:1464 -msgid "Go to parent" -msgstr "前往上一層" - -#. TRANSLATORS: #%1 is the id of the group e.g. , not a number. -#: ../src/interface.cpp:1505 -msgid "Enter group #%1" -msgstr "進入群組 #%1" - -#. Item dialog -#: ../src/interface.cpp:1641 ../src/verbs.cpp:2849 -msgid "_Object Properties..." -msgstr "物件屬性(_O)..." - -#: ../src/interface.cpp:1650 -msgid "_Select This" -msgstr "選擇這個(_S)" - -#: ../src/interface.cpp:1661 -#, fuzzy -msgid "Select Same" -msgstr "選取相同物件(_T)" - -#. Select same fill and stroke -#: ../src/interface.cpp:1671 -#, fuzzy -msgid "Fill and Stroke" -msgstr "填充和邊框(_A)" - -#. Select same fill color -#: ../src/interface.cpp:1678 -#, fuzzy -msgid "Fill Color" -msgstr "填充(_F)" - -#. Select same stroke color -#: ../src/interface.cpp:1685 -#, fuzzy -msgid "Stroke Color" -msgstr "邊框顏色(_S)" - -#. Select same stroke style -#: ../src/interface.cpp:1692 -#, fuzzy -msgid "Stroke Style" -msgstr "邊框樣式(_Y)" - -#. Select same stroke style -#: ../src/interface.cpp:1699 -#, fuzzy -msgid "Object type" -msgstr "物件類型" - -#. Move to layer -#: ../src/interface.cpp:1706 -#, fuzzy -msgid "_Move to layer ..." -msgstr "降低圖層" - -#. Create link -#: ../src/interface.cpp:1716 -#, fuzzy -msgid "Create _Link" -msgstr "建立連結(_C)" - -#. Set mask -#: ../src/interface.cpp:1739 -msgid "Set Mask" -msgstr "設定遮罩" - -#. Release mask -#: ../src/interface.cpp:1750 -msgid "Release Mask" -msgstr "解除遮罩" - -#. Set Clip -#: ../src/interface.cpp:1761 -#, fuzzy -msgid "Set Cl_ip" -msgstr "設定裁剪(_C)" - -#. Release Clip -#: ../src/interface.cpp:1772 -msgid "Release C_lip" -msgstr "解除裁剪(_L)" - -#. Group -#: ../src/interface.cpp:1783 ../src/verbs.cpp:2486 -msgid "_Group" -msgstr "群組(_G)" - -#: ../src/interface.cpp:1854 -msgid "Create link" -msgstr "建立連結" - -#. Ungroup -#: ../src/interface.cpp:1885 ../src/verbs.cpp:2488 -msgid "_Ungroup" -msgstr "解散群組(_U)" - -#. Link dialog -#: ../src/interface.cpp:1910 -msgid "Link _Properties..." -msgstr "連結屬性(_P)..." - -#. Select item -#: ../src/interface.cpp:1916 -msgid "_Follow Link" -msgstr "跟隨連結(_F)" - -#. Reset transformations -#: ../src/interface.cpp:1922 -msgid "_Remove Link" -msgstr "移除連結(_R)" - -#: ../src/interface.cpp:1953 -#, fuzzy -msgid "Remove link" -msgstr "移除連結(_R)" - -#. Image properties -#: ../src/interface.cpp:1964 -msgid "Image _Properties..." -msgstr "圖片屬性(_P)..." - -#. Edit externally -#: ../src/interface.cpp:1970 -msgid "Edit Externally..." -msgstr "外部編輯..." - -#. Trace Bitmap -#. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/interface.cpp:1979 ../src/verbs.cpp:2549 -msgid "_Trace Bitmap..." -msgstr "描繪點陣圖(_T)..." - -#. Trace Pixel Art -#: ../src/interface.cpp:1988 -msgid "Trace Pixel Art" -msgstr "" - -#: ../src/interface.cpp:1998 -msgctxt "Context menu" -msgid "Embed Image" -msgstr "嵌入圖片" - -#: ../src/interface.cpp:2009 -msgctxt "Context menu" -msgid "Extract Image..." -msgstr "提取圖片..." - -#. Item dialog -#. Fill and Stroke dialog -#: ../src/interface.cpp:2154 ../src/interface.cpp:2174 ../src/verbs.cpp:2812 -msgid "_Fill and Stroke..." -msgstr "填充與邊框(_F)..." - -#. Edit Text dialog -#: ../src/interface.cpp:2180 ../src/verbs.cpp:2831 -msgid "_Text and Font..." -msgstr "文字與字型(_T)..." - -#. Spellcheck dialog -#: ../src/interface.cpp:2186 ../src/verbs.cpp:2839 -msgid "Check Spellin_g..." -msgstr "檢查拼寫(_G)..." - -#: ../src/knot.cpp:332 +#: ../src/knot.cpp:346 msgid "Node or handle drag canceled." msgstr "已取消拖曳節點或控制點。" -#: ../src/knotholder.cpp:158 +#: ../src/knotholder.cpp:170 msgid "Change handle" msgstr "變更控制點" -#: ../src/knotholder.cpp:237 +#: ../src/knotholder.cpp:257 msgid "Move handle" msgstr "移動控制點" #. TRANSLATORS: This refers to the pattern that's inside the object -#: ../src/knotholder.cpp:256 ../src/knotholder.cpp:278 +#: ../src/knotholder.cpp:276 ../src/knotholder.cpp:298 msgid "Move the pattern fill inside the object" msgstr "移動物件內部的圖樣填充" -#: ../src/knotholder.cpp:260 ../src/knotholder.cpp:282 +#: ../src/knotholder.cpp:280 ../src/knotholder.cpp:302 msgid "Scale the pattern fill; uniformly if with Ctrl" msgstr "縮放圖樣填充;若按 Ctrl 可均勻縮放" -#: ../src/knotholder.cpp:264 ../src/knotholder.cpp:286 +#: ../src/knotholder.cpp:284 ../src/knotholder.cpp:306 msgid "Rotate the pattern fill; with Ctrl to snap angle" msgstr "旋轉圖樣填充;按著 Ctrl 可貼齊角度" @@ -7995,8 +8609,7 @@ msgstr "管理器" #: ../src/libgdl/gdl-dock-bar.c:106 msgid "GdlDockMaster object which the dockbar widget is attached to" -msgstr "" -"工具欄列介面元件被放到圖形裝置介面 (GDI) 工具欄管理器 (GdlDockMaster) 物件" +msgstr "工具欄列介面元件被放到圖形裝置介面 (GDI) 工具欄管理器 (GdlDockMaster) 物件" #: ../src/libgdl/gdl-dock-bar.c:113 msgid "Dockbar style" @@ -8025,7 +8638,7 @@ msgstr "工具欄項目「擁有」這個掣點" #. Name #: ../src/libgdl/gdl-dock-item.c:298 ../src/widgets/ruler.cpp:191 -#: ../src/widgets/text-toolbar.cpp:1416 +#: ../src/widgets/text-toolbar.cpp:1418 #: ../share/extensions/gcodetools_graffiti.inx.h:9 #: ../share/extensions/gcodetools_orientation_points.inx.h:2 msgid "Orientation" @@ -8150,8 +8763,7 @@ msgstr "切換按鈕樣式" msgid "" "master %p: unable to add object %p[%s] to the hash. There already is an " "item with that name (%p)." -msgstr "" -"管理器 %p:無法加入物件 %p[%s] 到此信息。已有一個相同名稱 (%p) 的項目。" +msgstr "管理器 %p:無法加入物件 %p[%s] 到此信息。已有一個相同名稱 (%p) 的項目。" #: ../src/libgdl/gdl-dock-master.c:955 #, c-format @@ -8163,8 +8775,9 @@ msgstr "此新工具欄控制器 %p 是自動的。只有手動工具欄物件 #: ../src/libgdl/gdl-dock-notebook.c:132 #: ../src/ui/dialog/align-and-distribute.cpp:1003 #: ../src/ui/dialog/document-properties.cpp:153 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1497 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1536 #: ../src/widgets/desktop-widget.cpp:1992 +#: ../share/extensions/empty_page.inx.h:1 #: ../share/extensions/voronoi2svg.inx.h:9 msgid "Page" msgstr "頁面" @@ -8174,10 +8787,11 @@ msgid "The index of the current page" msgstr "目前頁面的索引" #: ../src/libgdl/gdl-dock-object.c:125 -#: ../src/ui/dialog/inkscape-preferences.cpp:1502 +#: ../src/live_effects/parameter/originalpatharray.cpp:86 +#: ../src/ui/dialog/inkscape-preferences.cpp:1504 #: ../src/ui/widget/page-sizer.cpp:258 -#: ../src/widgets/gradient-selector.cpp:158 -#: ../src/widgets/sp-xmlview-attr-list.cpp:54 +#: ../src/widgets/gradient-selector.cpp:140 +#: ../src/widgets/sp-xmlview-attr-list.cpp:49 msgid "Name" msgstr "名稱" @@ -8332,8 +8946,8 @@ msgstr "從母體放置 %p 取得 %p 子體放置時發生某些異常情形" msgid "Dockitem which 'owns' this tablabel" msgstr "工具欄項目「擁有」這個分頁標籤" -#: ../src/libgdl/gdl-dock.c:176 ../src/ui/dialog/inkscape-preferences.cpp:633 -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/libgdl/gdl-dock.c:176 ../src/ui/dialog/inkscape-preferences.cpp:635 +#: ../src/ui/dialog/inkscape-preferences.cpp:678 msgid "Floating" msgstr "浮動式" @@ -8374,176 +8988,292 @@ msgstr "浮動式工具欄的 Y 坐標" msgid "Dock #%d" msgstr "工具欄 #%d" -#: ../src/libnrtype/FontFactory.cpp:767 +#: ../src/libnrtype/FontFactory.cpp:618 msgid "Ignoring font without family that will crash Pango" msgstr "忽略會造成 Pango 不正常關閉的沒有字族之字型" -#: ../src/live_effects/effect.cpp:84 +#: ../src/live_effects/effect.cpp:99 msgid "doEffect stack test" msgstr "doEffect 堆疊測試" -#: ../src/live_effects/effect.cpp:85 +#: ../src/live_effects/effect.cpp:100 msgid "Angle bisector" msgstr "角平分線" #. TRANSLATORS: boolean operations -#: ../src/live_effects/effect.cpp:87 +#: ../src/live_effects/effect.cpp:102 msgid "Boolops" msgstr "布林運算" -#: ../src/live_effects/effect.cpp:88 +#: ../src/live_effects/effect.cpp:103 msgid "Circle (by center and radius)" msgstr "圓形 (依照圓心與半徑)" -#: ../src/live_effects/effect.cpp:89 +#: ../src/live_effects/effect.cpp:104 msgid "Circle by 3 points" msgstr "3 點畫圓" -#: ../src/live_effects/effect.cpp:90 +#: ../src/live_effects/effect.cpp:105 msgid "Dynamic stroke" msgstr "動態邊框" -#: ../src/live_effects/effect.cpp:91 ../share/extensions/extrude.inx.h:1 +#: ../src/live_effects/effect.cpp:106 ../share/extensions/extrude.inx.h:1 msgid "Extrude" msgstr "擠壓" -#: ../src/live_effects/effect.cpp:92 +#: ../src/live_effects/effect.cpp:107 msgid "Lattice Deformation" msgstr "晶格變形" -#: ../src/live_effects/effect.cpp:93 +#: ../src/live_effects/effect.cpp:108 msgid "Line Segment" msgstr "直線線段" -#: ../src/live_effects/effect.cpp:94 +#: ../src/live_effects/effect.cpp:109 msgid "Mirror symmetry" msgstr "鏡像對稱" -#: ../src/live_effects/effect.cpp:96 +#: ../src/live_effects/effect.cpp:111 msgid "Parallel" msgstr "平行" -#: ../src/live_effects/effect.cpp:97 +#: ../src/live_effects/effect.cpp:112 msgid "Path length" msgstr "路徑長度" -#: ../src/live_effects/effect.cpp:98 +#: ../src/live_effects/effect.cpp:113 msgid "Perpendicular bisector" msgstr "中垂線" -#: ../src/live_effects/effect.cpp:99 +#: ../src/live_effects/effect.cpp:114 msgid "Perspective path" msgstr "透視路徑" -#: ../src/live_effects/effect.cpp:100 +#: ../src/live_effects/effect.cpp:115 msgid "Rotate copies" msgstr "旋轉複製物件" -#: ../src/live_effects/effect.cpp:101 +#: ../src/live_effects/effect.cpp:116 msgid "Recursive skeleton" msgstr "遞迴骨架" -#: ../src/live_effects/effect.cpp:102 +#: ../src/live_effects/effect.cpp:117 msgid "Tangent to curve" msgstr "正切曲線" -#: ../src/live_effects/effect.cpp:103 +#: ../src/live_effects/effect.cpp:118 msgid "Text label" msgstr "文字標籤" #. 0.46 -#: ../src/live_effects/effect.cpp:106 +#: ../src/live_effects/effect.cpp:121 msgid "Bend" msgstr "彎曲" -#: ../src/live_effects/effect.cpp:107 +#: ../src/live_effects/effect.cpp:122 msgid "Gears" msgstr "齒輪" -#: ../src/live_effects/effect.cpp:108 +#: ../src/live_effects/effect.cpp:123 msgid "Pattern Along Path" msgstr "圖樣沿置路徑" #. for historic reasons, this effect is called skeletal(strokes) in Inkscape:SVG -#: ../src/live_effects/effect.cpp:109 +#: ../src/live_effects/effect.cpp:124 msgid "Stitch Sub-Paths" msgstr "縫合子路徑" #. 0.47 -#: ../src/live_effects/effect.cpp:111 +#: ../src/live_effects/effect.cpp:126 msgid "VonKoch" msgstr "科赫" -#: ../src/live_effects/effect.cpp:112 +#: ../src/live_effects/effect.cpp:127 msgid "Knot" msgstr "環結" -#: ../src/live_effects/effect.cpp:113 +#: ../src/live_effects/effect.cpp:128 msgid "Construct grid" msgstr "結構格線" -#: ../src/live_effects/effect.cpp:114 +#: ../src/live_effects/effect.cpp:129 msgid "Spiro spline" msgstr "螺旋雲形線" -#: ../src/live_effects/effect.cpp:115 +#: ../src/live_effects/effect.cpp:130 msgid "Envelope Deformation" msgstr "封套變形" -#: ../src/live_effects/effect.cpp:116 +#: ../src/live_effects/effect.cpp:131 msgid "Interpolate Sub-Paths" msgstr "插入子路徑" -#: ../src/live_effects/effect.cpp:117 +#: ../src/live_effects/effect.cpp:132 msgid "Hatches (rough)" msgstr "手繪影線 (粗糙)" -#: ../src/live_effects/effect.cpp:118 +#: ../src/live_effects/effect.cpp:133 msgid "Sketch" msgstr "草圖" -#: ../src/live_effects/effect.cpp:119 +#: ../src/live_effects/effect.cpp:134 msgid "Ruler" msgstr "尺標" -#. 0.49 -#: ../src/live_effects/effect.cpp:121 -#, fuzzy +#. 0.91 +#: ../src/live_effects/effect.cpp:136 msgid "Power stroke" -msgstr "圖樣邊框" +msgstr "神奇邊框" -#: ../src/live_effects/effect.cpp:122 ../src/selection-chemistry.cpp:2835 +#: ../src/live_effects/effect.cpp:137 msgid "Clone original path" msgstr "複製原本路徑" -#: ../src/live_effects/effect.cpp:284 +#. EXPERIMENTAL +#: ../src/live_effects/effect.cpp:139 +#: ../src/live_effects/lpe-show_handles.cpp:26 +msgid "Show handles" +msgstr "顯示控制柄" + +#: ../src/live_effects/effect.cpp:141 ../src/widgets/pencil-toolbar.cpp:109 +msgid "BSpline" +msgstr "貝氏雲形線" + +#: ../src/live_effects/effect.cpp:142 +#: ../src/live_effects/lpe-taperstroke.cpp:78 +msgid "Join type" +msgstr "接合類型" + +#: ../src/live_effects/effect.cpp:143 +msgid "Taper stroke" +msgstr "邊框錐化" + +#. Ponyscape +#: ../src/live_effects/effect.cpp:145 +msgid "Attach path" +msgstr "貼附路徑" + +#: ../src/live_effects/effect.cpp:146 +msgid "Fill between strokes" +msgstr "填入邊框間隙" + +#: ../src/live_effects/effect.cpp:147 ../src/selection-chemistry.cpp:2926 +msgid "Fill between many" +msgstr "填入多物件間隙" + +#: ../src/live_effects/effect.cpp:148 +msgid "Ellipse by 5 points" +msgstr "以 5 個點畫橢圓" + +#: ../src/live_effects/effect.cpp:149 +msgid "Bounding Box" +msgstr "邊界框" + +#: ../src/live_effects/effect.cpp:152 +msgid "Lattice Deformation 2" +msgstr "晶格變形 2" + +#: ../src/live_effects/effect.cpp:153 +msgid "Perspective/Envelope" +msgstr "透視/封套" + +#: ../src/live_effects/effect.cpp:154 +msgid "Fillet/Chamfer" +msgstr "圓角/倒角" + +#: ../src/live_effects/effect.cpp:155 +msgid "Interpolate points" +msgstr "插入點" + +#: ../src/live_effects/effect.cpp:362 msgid "Is visible?" msgstr "是否可見?" -#: ../src/live_effects/effect.cpp:284 +#: ../src/live_effects/effect.cpp:362 msgid "" "If unchecked, the effect remains applied to the object but is temporarily " "disabled on canvas" msgstr "如果取消勾選,此特效仍會套用到物件但畫布上暫時停用" -#: ../src/live_effects/effect.cpp:305 +#: ../src/live_effects/effect.cpp:384 msgid "No effect" msgstr "無特效" -#: ../src/live_effects/effect.cpp:352 +#: ../src/live_effects/effect.cpp:490 #, c-format msgid "Please specify a parameter path for the LPE '%s' with %d mouse clicks" msgstr "請指定此即時路徑特效「%s」的參數路徑 (用 %d 滑鼠點擊)" -#: ../src/live_effects/effect.cpp:624 +#: ../src/live_effects/effect.cpp:757 #, c-format msgid "Editing parameter %s." msgstr "正在編輯參數 %s。" -#: ../src/live_effects/effect.cpp:629 +#: ../src/live_effects/effect.cpp:762 msgid "None of the applied path effect's parameters can be edited on-canvas." msgstr "沒有已套用路徑特效的參數可在畫布上編輯。" +#: ../src/live_effects/lpe-attach-path.cpp:29 +msgid "Start path:" +msgstr "起始路徑:" + +#: ../src/live_effects/lpe-attach-path.cpp:29 +msgid "Path to attach to the start of this path" +msgstr "將路徑放置到該路徑的起點" + +#: ../src/live_effects/lpe-attach-path.cpp:30 +msgid "Start path position:" +msgstr "起始路徑位置:" + +#: ../src/live_effects/lpe-attach-path.cpp:30 +msgid "Position to attach path start to" +msgstr "貼附路徑的起始位置" + +#: ../src/live_effects/lpe-attach-path.cpp:31 +msgid "Start path curve start:" +msgstr "起始路徑曲線起點:" + +#: ../src/live_effects/lpe-attach-path.cpp:31 +#: ../src/live_effects/lpe-attach-path.cpp:35 +msgid "Starting curve" +msgstr "曲線起始" + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:32 +msgid "Start path curve end:" +msgstr "起始路徑曲線末端:" + +#: ../src/live_effects/lpe-attach-path.cpp:32 +#: ../src/live_effects/lpe-attach-path.cpp:36 +msgid "Ending curve" +msgstr "曲線結束" + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:33 +msgid "End path:" +msgstr "結束路徑:" + +#: ../src/live_effects/lpe-attach-path.cpp:33 +msgid "Path to attach to the end of this path" +msgstr "將路徑放置到該路徑的末端" + +#: ../src/live_effects/lpe-attach-path.cpp:34 +msgid "End path position:" +msgstr "結束路徑位置:" + +#: ../src/live_effects/lpe-attach-path.cpp:34 +msgid "Position to attach path end to" +msgstr "貼附路徑的末端位置" + +#: ../src/live_effects/lpe-attach-path.cpp:35 +msgid "End path curve start:" +msgstr "結束路徑曲線起點:" + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:36 +msgid "End path curve end:" +msgstr "結束路徑曲線末端:" + #: ../src/live_effects/lpe-bendpath.cpp:53 msgid "Bend path:" msgstr "彎曲路徑:" @@ -8579,15 +9309,70 @@ msgstr "原始路徑為垂直方向(_O)" msgid "Rotates the original 90 degrees, before bending it along the bend path" msgstr "在沿著彎曲路徑彎曲之前,將原本的旋轉 90 度" +#: ../src/live_effects/lpe-bounding-box.cpp:24 #: ../src/live_effects/lpe-clone-original.cpp:18 -#, fuzzy +#: ../src/live_effects/lpe-fill-between-many.cpp:25 +#: ../src/live_effects/lpe-fill-between-strokes.cpp:23 msgid "Linked path:" -msgstr "連結到路徑" +msgstr "連結的路徑:" +#: ../src/live_effects/lpe-bounding-box.cpp:24 #: ../src/live_effects/lpe-clone-original.cpp:18 -#, fuzzy +#: ../src/live_effects/lpe-fill-between-strokes.cpp:23 msgid "Path from which to take the original path data" -msgstr "路徑沿著原路徑彎曲" +msgstr "取得原本路徑資料的路徑" + +#: ../src/live_effects/lpe-bounding-box.cpp:25 +msgid "Visual Bounds" +msgstr "視覺邊界" + +#: ../src/live_effects/lpe-bounding-box.cpp:25 +msgid "Uses the visual bounding box" +msgstr "使用視覺邊界框" + +#. initialise your parameters here: +#. testpointA(_("Test Point A"), _("Test A"), "ptA", &wr, this, +#. Geom::Point(100,100)), +#: ../src/live_effects/lpe-bspline.cpp:60 +msgid "Steps with CTRL:" +msgstr "按著 CTRL 變更階數:" + +#: ../src/live_effects/lpe-bspline.cpp:60 +msgid "Change number of steps with CTRL pressed" +msgstr "按著 CTRL 可變更階數" + +#: ../src/live_effects/lpe-bspline.cpp:61 +msgid "Ignore cusp nodes" +msgstr "忽略尖銳節點" + +#: ../src/live_effects/lpe-bspline.cpp:61 +msgid "Change ignoring cusp nodes" +msgstr "改變忽略的尖銳節點" + +#: ../src/live_effects/lpe-bspline.cpp:62 +#: ../src/live_effects/lpe-fillet-chamfer.cpp:57 +msgid "Change only selected nodes" +msgstr "只改變選取的節點" + +#: ../src/live_effects/lpe-bspline.cpp:63 +msgid "Show helper paths" +msgstr "顯示輔助路徑" + +#: ../src/live_effects/lpe-bspline.cpp:64 +msgid "Change weight:" +msgstr "變更權重:" + +#: ../src/live_effects/lpe-bspline.cpp:64 +msgid "Change weight of the effect" +msgstr "變更特效權重" + +#: ../src/live_effects/lpe-bspline.cpp:304 +msgid "Default weight" +msgstr "預設權重" + +#: ../src/live_effects/lpe-bspline.cpp:309 +msgid "Make cusp" +msgstr "變成尖角" #: ../src/live_effects/lpe-constructgrid.cpp:27 msgid "Size _X:" @@ -8677,6 +9462,14 @@ msgstr "相對於長度縮放寬度" msgid "Scale the width of the stitch path relative to its length" msgstr "縮放相對於縫合路徑長度的寬度" +#: ../src/live_effects/lpe-ellipse_5pts.cpp:77 +msgid "Five points required for constructing an ellipse" +msgstr "需要 5 個點來建構一個橢圓形" + +#: ../src/live_effects/lpe-ellipse_5pts.cpp:162 +msgid "No ellipse found for specified points" +msgstr "指定的點找不到橢圓形" + #: ../src/live_effects/lpe-envelope.cpp:31 msgid "Top bend path:" msgstr "頂端彎曲路徑:" @@ -8710,8 +9503,8 @@ msgid "Left path along which to bend the original path" msgstr "沿著左邊路徑彎曲原路徑" #: ../src/live_effects/lpe-envelope.cpp:35 -msgid "E_nable left & right paths" -msgstr "啟用左邊和右邊路徑(_N)" +msgid "_Enable left & right paths" +msgstr "啟用左邊和右邊路徑(_E)" #: ../src/live_effects/lpe-envelope.cpp:35 msgid "Enable the left and right deformation paths" @@ -8733,6 +9526,106 @@ msgstr "方向" msgid "Defines the direction and magnitude of the extrusion" msgstr "定義擠壓的方向和幅度" +#: ../src/live_effects/lpe-fill-between-many.cpp:25 +msgid "Paths from which to take the original path data" +msgstr "取得原本路徑資料的路徑" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:24 +msgid "Second path:" +msgstr "第二條路徑:" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:24 +msgid "Second path from which to take the original path data" +msgstr "取得原本路徑資料的第二條路徑" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:25 +msgid "Reverse Second" +msgstr "反轉第二條路徑" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:25 +msgid "Reverses the second path order" +msgstr "反轉第二條路徑順序" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:42 +#: ../share/extensions/render_barcode_qrcode.inx.h:5 +msgid "Auto" +msgstr "自動" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:43 +msgid "Force arc" +msgstr "強制弧形" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:44 +msgid "Force bezier" +msgstr "強制貝茲曲線" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:54 +msgid "Fillet point" +msgstr "圓角點" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:55 +msgid "Hide knots" +msgstr "隱藏環結" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:56 +msgid "Ignore 0 radius knots" +msgstr "忽略 0 個半徑環結" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:58 +msgid "Flexible radius size (%)" +msgstr "調整式半徑大小 (%)" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:59 +msgid "Use knots distance instead radius" +msgstr "改用環結距離而非半徑" + +#. initialise your parameters here: +#: ../src/live_effects/lpe-fillet-chamfer.cpp:60 +#: ../src/live_effects/lpe-roughen.cpp:39 ../src/live_effects/lpe-ruler.cpp:42 +#: ../src/widgets/ruler.cpp:201 +msgid "Unit" +msgstr "單位" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:61 +#: ../src/live_effects/lpe-roughen.cpp:40 +msgid "Method" +msgstr "方式" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:61 +msgid "Fillets methods" +msgstr "圓角方式" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:62 +msgid "Radius (unit or %)" +msgstr "半徑 (單位或 %)" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:62 +msgid "Radius, in unit or %" +msgstr "半徑,單位或 %" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:63 +msgid "Chamfer steps" +msgstr "倒角階數" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:65 +msgid "Helper size with direction" +msgstr "方向性輔助標示尺寸" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:158 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:76 +msgid "Fillet" +msgstr "圓角" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:162 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:78 +msgid "Inverse fillet" +msgstr "反向圓角" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:166 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:80 +msgid "Chamfer" +msgstr "倒角" + #: ../src/live_effects/lpe-gears.cpp:214 msgid "_Teeth:" msgstr "輪齒(_T):" @@ -8780,64 +9673,403 @@ msgstr "" "如果是,沿著路徑長度中間彼此的間距為固定值。如果否,間距由軌道路徑的節點位置" "而定。" +#: ../src/live_effects/lpe-interpolate_points.cpp:26 +#: ../src/live_effects/lpe-powerstroke.cpp:195 +msgid "CubicBezierFit" +msgstr "立方貝茲填充" + +#: ../src/live_effects/lpe-interpolate_points.cpp:27 +#: ../src/live_effects/lpe-powerstroke.cpp:196 +msgid "CubicBezierJohan" +msgstr "立方貝茲約翰" + +#: ../src/live_effects/lpe-interpolate_points.cpp:28 +#: ../src/live_effects/lpe-powerstroke.cpp:197 +msgid "SpiroInterpolator" +msgstr "螺旋內插法" + +#: ../src/live_effects/lpe-interpolate_points.cpp:29 +#: ../src/live_effects/lpe-powerstroke.cpp:198 +msgid "Centripetal Catmull-Rom" +msgstr "向心 Catmull-Rom" + +#: ../src/live_effects/lpe-interpolate_points.cpp:37 +#: ../src/live_effects/lpe-powerstroke.cpp:240 +msgid "Interpolator type:" +msgstr "內插法類型:" + +#: ../src/live_effects/lpe-interpolate_points.cpp:38 +#: ../src/live_effects/lpe-powerstroke.cpp:240 +msgid "" +"Determines which kind of interpolator will be used to interpolate between " +"stroke width along the path" +msgstr "決定邊框寬度之間沿著路徑內插要使用哪一種內插法" + +#: ../src/live_effects/lpe-jointype.cpp:31 +#: ../src/live_effects/lpe-powerstroke.cpp:227 +#: ../src/live_effects/lpe-taperstroke.cpp:63 +msgid "Beveled" +msgstr "斜角" + +#: ../src/live_effects/lpe-jointype.cpp:32 +#: ../src/live_effects/lpe-jointype.cpp:40 +#: ../src/live_effects/lpe-powerstroke.cpp:228 +#: ../src/live_effects/lpe-taperstroke.cpp:64 +#: ../src/widgets/star-toolbar.cpp:536 +msgid "Rounded" +msgstr "圓角" + +#: ../src/live_effects/lpe-jointype.cpp:33 +#: ../src/live_effects/lpe-powerstroke.cpp:231 +#: ../src/live_effects/lpe-taperstroke.cpp:66 +msgid "Miter" +msgstr "斜切" + +#: ../src/live_effects/lpe-jointype.cpp:34 +#: ../src/live_effects/lpe-taperstroke.cpp:65 +#: ../src/widgets/gradient-toolbar.cpp:1115 +msgid "Reflected" +msgstr "逆向" + +#. {LINEJOIN_EXTRP_MITER, N_("Extrapolated"), "extrapolated"}, // disabled because doesn't work well +#: ../src/live_effects/lpe-jointype.cpp:35 +#: ../src/live_effects/lpe-powerstroke.cpp:230 +msgid "Extrapolated arc" +msgstr "外推弧" + +#: ../src/live_effects/lpe-jointype.cpp:39 +#: ../src/live_effects/lpe-powerstroke.cpp:210 +msgid "Butt" +msgstr "平端" + +#: ../src/live_effects/lpe-jointype.cpp:41 +#: ../src/live_effects/lpe-powerstroke.cpp:211 +msgid "Square" +msgstr "方端" + +#: ../src/live_effects/lpe-jointype.cpp:42 +#: ../src/live_effects/lpe-powerstroke.cpp:213 +msgid "Peak" +msgstr "尖端" + +#: ../src/live_effects/lpe-jointype.cpp:43 +msgid "Leaned" +msgstr "傾斜" + +#: ../src/live_effects/lpe-jointype.cpp:51 +msgid "Thickness of the stroke" +msgstr "邊框粗細" + +#: ../src/live_effects/lpe-jointype.cpp:52 +msgid "Line cap" +msgstr "線端" + +#: ../src/live_effects/lpe-jointype.cpp:52 +msgid "The end shape of the stroke" +msgstr "邊框端點形狀" + +#. Join type +#. TRANSLATORS: The line join style specifies the shape to be used at the +#. corners of paths. It can be "miter", "round" or "bevel". +#: ../src/live_effects/lpe-jointype.cpp:53 +#: ../src/live_effects/lpe-powerstroke.cpp:243 +#: ../src/widgets/stroke-style.cpp:227 +msgid "Join:" +msgstr "接合:" + +#: ../src/live_effects/lpe-jointype.cpp:53 +#: ../src/live_effects/lpe-powerstroke.cpp:243 +msgid "Determines the shape of the path's corners" +msgstr "決定路徑轉角的形狀" + +#: ../src/live_effects/lpe-jointype.cpp:54 +msgid "Start path lean" +msgstr "起始路徑傾斜" + +#: ../src/live_effects/lpe-jointype.cpp:55 +msgid "End path lean" +msgstr "結束路徑傾斜" + +#: ../src/live_effects/lpe-jointype.cpp:56 +#: ../src/live_effects/lpe-powerstroke.cpp:244 +msgid "Miter limit:" +msgstr "斜切限制:" + +#: ../src/live_effects/lpe-jointype.cpp:56 +msgid "Maximum length of the miter join (in units of stroke width)" +msgstr "斜切接合的最大長度 (單位為邊框寬度單位)" + +#: ../src/live_effects/lpe-jointype.cpp:57 +msgid "Force miter" +msgstr "強制斜切" + +#: ../src/live_effects/lpe-jointype.cpp:57 +msgid "Overrides the miter limit and forces a join." +msgstr "覆蓋斜切限制並強制接合。" + #. initialise your parameters here: -#: ../src/live_effects/lpe-knot.cpp:350 +#: ../src/live_effects/lpe-knot.cpp:351 msgid "Fi_xed width:" msgstr "固定寬度(_X):" -#: ../src/live_effects/lpe-knot.cpp:350 +#: ../src/live_effects/lpe-knot.cpp:351 msgid "Size of hidden region of lower string" msgstr "小寫字串的隱藏區域大小" -#: ../src/live_effects/lpe-knot.cpp:351 +#: ../src/live_effects/lpe-knot.cpp:352 msgid "_In units of stroke width" msgstr "使用邊框寬度的單位(_I)" -#: ../src/live_effects/lpe-knot.cpp:351 +#: ../src/live_effects/lpe-knot.cpp:352 msgid "Consider 'Interruption width' as a ratio of stroke width" msgstr "將「中斷寬度」視為邊框寬度的比例" -#: ../src/live_effects/lpe-knot.cpp:352 +#: ../src/live_effects/lpe-knot.cpp:353 msgid "St_roke width" msgstr "邊框寬度(_R)" -#: ../src/live_effects/lpe-knot.cpp:352 +#: ../src/live_effects/lpe-knot.cpp:353 msgid "Add the stroke width to the interruption size" msgstr "將此邊框寬度加入到中斷大小" -#: ../src/live_effects/lpe-knot.cpp:353 +#: ../src/live_effects/lpe-knot.cpp:354 msgid "_Crossing path stroke width" msgstr "交叉路徑的邊框寬度(_C)" -#: ../src/live_effects/lpe-knot.cpp:353 +#: ../src/live_effects/lpe-knot.cpp:354 msgid "Add crossed stroke width to the interruption size" msgstr "將交叉的邊框寬度加入到中斷大小" -#: ../src/live_effects/lpe-knot.cpp:354 +#: ../src/live_effects/lpe-knot.cpp:355 msgid "S_witcher size:" msgstr "切換開關尺寸(_W):" -#: ../src/live_effects/lpe-knot.cpp:354 +#: ../src/live_effects/lpe-knot.cpp:355 msgid "Orientation indicator/switcher size" msgstr "方向標示/切換開關尺寸" -#: ../src/live_effects/lpe-knot.cpp:355 +#: ../src/live_effects/lpe-knot.cpp:356 msgid "Crossing Signs" msgstr "交叉點符號" -#: ../src/live_effects/lpe-knot.cpp:355 +#: ../src/live_effects/lpe-knot.cpp:356 msgid "Crossings signs" msgstr "交叉點符號" -#: ../src/live_effects/lpe-knot.cpp:622 +#: ../src/live_effects/lpe-knot.cpp:627 msgid "Drag to select a crossing, click to flip it" msgstr "拖曳可選取交叉點,點擊可翻轉交叉點" #. / @todo Is this the right verb? -#: ../src/live_effects/lpe-knot.cpp:660 +#: ../src/live_effects/lpe-knot.cpp:665 msgid "Change knot crossing" msgstr "變更環結交叉點" +#. initialise your parameters here: +#: ../src/live_effects/lpe-lattice2.cpp:47 +msgid "Control handle 0:" +msgstr "控制柄 0:" + +#: ../src/live_effects/lpe-lattice2.cpp:47 +msgid "Control handle 0 - Ctrl+Alt+Click to reset" +msgstr "控制柄 0 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:48 +msgid "Control handle 1:" +msgstr "控制柄 1:" + +#: ../src/live_effects/lpe-lattice2.cpp:48 +msgid "Control handle 1 - Ctrl+Alt+Click to reset" +msgstr "控制柄 1 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:49 +msgid "Control handle 2:" +msgstr "控制柄 2:" + +#: ../src/live_effects/lpe-lattice2.cpp:49 +msgid "Control handle 2 - Ctrl+Alt+Click to reset" +msgstr "控制柄 2 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:50 +msgid "Control handle 3:" +msgstr "控制柄 3:" + +#: ../src/live_effects/lpe-lattice2.cpp:50 +msgid "Control handle 3 - Ctrl+Alt+Click to reset" +msgstr "控制柄 3 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:51 +msgid "Control handle 4:" +msgstr "控制柄 4:" + +#: ../src/live_effects/lpe-lattice2.cpp:51 +msgid "Control handle 4 - Ctrl+Alt+Click to reset" +msgstr "控制柄 4 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:52 +msgid "Control handle 5:" +msgstr "控制柄 5:" + +#: ../src/live_effects/lpe-lattice2.cpp:52 +msgid "Control handle 5 - Ctrl+Alt+Click to reset" +msgstr "控制柄 5 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:53 +msgid "Control handle 6:" +msgstr "控制柄 6:" + +#: ../src/live_effects/lpe-lattice2.cpp:53 +msgid "Control handle 6 - Ctrl+Alt+Click to reset" +msgstr "控制柄 6 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:54 +msgid "Control handle 7:" +msgstr "控制柄 7:" + +#: ../src/live_effects/lpe-lattice2.cpp:54 +msgid "Control handle 7 - Ctrl+Alt+Click to reset" +msgstr "控制柄 7 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:55 +msgid "Control handle 8x9:" +msgstr "控制柄 8x9:" + +#: ../src/live_effects/lpe-lattice2.cpp:55 +msgid "Control handle 8x9 - Ctrl+Alt+Click to reset" +msgstr "控制柄 8x9 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:56 +msgid "Control handle 10x11:" +msgstr "控制柄 10x11:" + +#: ../src/live_effects/lpe-lattice2.cpp:56 +msgid "Control handle 10x11 - Ctrl+Alt+Click to reset" +msgstr "控制柄 10x11 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:57 +msgid "Control handle 12:" +msgstr "控制柄 12:" + +#: ../src/live_effects/lpe-lattice2.cpp:57 +msgid "Control handle 12 - Ctrl+Alt+Click to reset" +msgstr "控制柄 12 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:58 +msgid "Control handle 13:" +msgstr "控制柄 12" + +#: ../src/live_effects/lpe-lattice2.cpp:58 +msgid "Control handle 13 - Ctrl+Alt+Click to reset" +msgstr "控制柄 13 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:59 +msgid "Control handle 14:" +msgstr "控制柄 14:" + +#: ../src/live_effects/lpe-lattice2.cpp:59 +msgid "Control handle 14 - Ctrl+Alt+Click to reset" +msgstr "控制柄 14 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:60 +msgid "Control handle 15:" +msgstr "控制柄 14" + +#: ../src/live_effects/lpe-lattice2.cpp:60 +msgid "Control handle 15 - Ctrl+Alt+Click to reset" +msgstr "控制柄 15 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:61 +msgid "Control handle 16:" +msgstr "控制柄 16:" + +#: ../src/live_effects/lpe-lattice2.cpp:61 +msgid "Control handle 16 - Ctrl+Alt+Click to reset" +msgstr "控制柄 16 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:62 +msgid "Control handle 17:" +msgstr "控制柄 17:" + +#: ../src/live_effects/lpe-lattice2.cpp:62 +msgid "Control handle 17 - Ctrl+Alt+Click to reset" +msgstr "控制柄 16 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:63 +msgid "Control handle 18:" +msgstr "控制柄 18:" + +#: ../src/live_effects/lpe-lattice2.cpp:63 +msgid "Control handle 18 - Ctrl+Alt+Click to reset" +msgstr "控制柄 16 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:64 +msgid "Control handle 19:" +msgstr "控制柄 19:" + +#: ../src/live_effects/lpe-lattice2.cpp:64 +msgid "Control handle 19 - Ctrl+Alt+Click to reset" +msgstr "控制柄 16 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:65 +msgid "Control handle 20x21:" +msgstr "控制柄 20x21:" + +#: ../src/live_effects/lpe-lattice2.cpp:65 +msgid "Control handle 20x21 - Ctrl+Alt+Click to reset" +msgstr "控制柄 20x21 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:66 +msgid "Control handle 22x23:" +msgstr "控制柄 22x23:" + +#: ../src/live_effects/lpe-lattice2.cpp:66 +msgid "Control handle 22x23 - Ctrl+Alt+Click to reset" +msgstr "控制柄 22x23 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:67 +msgid "Control handle 24x26:" +msgstr "控制柄 24x26:" + +#: ../src/live_effects/lpe-lattice2.cpp:67 +msgid "Control handle 24x26 - Ctrl+Alt+Click to reset" +msgstr "控制柄 24x26 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:68 +msgid "Control handle 25x27:" +msgstr "控制柄 25x27:" + +#: ../src/live_effects/lpe-lattice2.cpp:68 +msgid "Control handle 25x27 - Ctrl+Alt+Click to reset" +msgstr "控制柄 25x27 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:69 +msgid "Control handle 28x30:" +msgstr "控制柄 28x30:" + +#: ../src/live_effects/lpe-lattice2.cpp:69 +msgid "Control handle 28x30 - Ctrl+Alt+Click to reset" +msgstr "控制柄 28x30 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:70 +msgid "Control handle 29x31:" +msgstr "控制柄 29x31:" + +#: ../src/live_effects/lpe-lattice2.cpp:70 +msgid "Control handle 29x31 - Ctrl+Alt+Click to reset" +msgstr "控制柄 29x31 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:71 +msgid "Control handle 32x33x34x35:" +msgstr "控制柄 32x33x34x35:" + +#: ../src/live_effects/lpe-lattice2.cpp:71 +msgid "Control handle 32x33x34x35 - Ctrl+Alt+Click to reset" +msgstr "控制柄 32x33x34x35 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-lattice2.cpp:221 +msgid "Reset grid" +msgstr "重設格線" + #: ../src/live_effects/lpe-patternalongpath.cpp:50 #: ../share/extensions/pathalongpath.inx.h:10 msgid "Single" @@ -8931,151 +10163,121 @@ msgstr "結合端點附近(_F):" msgid "Fuse ends closer than this number. 0 means don't fuse." msgstr "結合靠近該數字的終點。0 表示不結合。" -#: ../src/live_effects/lpe-powerstroke.cpp:189 -#, fuzzy -msgid "CubicBezierFit" -msgstr "貝茲" +#: ../src/live_effects/lpe-perspective-envelope.cpp:37 +#: ../share/extensions/perspective.inx.h:1 +msgid "Perspective" +msgstr "透視" -#: ../src/live_effects/lpe-powerstroke.cpp:190 -msgid "CubicBezierJohan" -msgstr "" +#: ../src/live_effects/lpe-perspective-envelope.cpp:38 +msgid "Envelope deformation" +msgstr "封套變形" -#: ../src/live_effects/lpe-powerstroke.cpp:191 -#, fuzzy -msgid "SpiroInterpolator" -msgstr "內插" +#. initialise your parameters here: +#: ../src/live_effects/lpe-perspective-envelope.cpp:46 +msgid "Type" +msgstr "類型" -#: ../src/live_effects/lpe-powerstroke.cpp:203 -#, fuzzy -msgid "Butt" -msgstr "按鈕" +#: ../src/live_effects/lpe-perspective-envelope.cpp:46 +msgid "Select the type of deformation" +msgstr "選擇變形類型" -#: ../src/live_effects/lpe-powerstroke.cpp:204 -#, fuzzy -msgid "Square" -msgstr "方端點" +#: ../src/live_effects/lpe-perspective-envelope.cpp:47 +msgid "Top Left" +msgstr "左上" -#: ../src/live_effects/lpe-powerstroke.cpp:205 -#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 -msgid "Round" -msgstr "圓角" +#: ../src/live_effects/lpe-perspective-envelope.cpp:47 +msgid "Top Left - Ctrl+Alt+Click to reset" +msgstr "左上 - Ctrl+Alt+滑鼠點擊可重設" -#: ../src/live_effects/lpe-powerstroke.cpp:206 -msgid "Peak" -msgstr "" +#: ../src/live_effects/lpe-perspective-envelope.cpp:48 +msgid "Top Right" +msgstr "右上" -#: ../src/live_effects/lpe-powerstroke.cpp:207 -#, fuzzy -msgid "Zero width" -msgstr "筆寬" +#: ../src/live_effects/lpe-perspective-envelope.cpp:48 +msgid "Top Right - Ctrl+Alt+Click to reset" +msgstr "右上 - Ctrl+Alt+滑鼠點擊可重設" -#: ../src/live_effects/lpe-powerstroke.cpp:220 -#, fuzzy -msgid "Beveled" -msgstr "斜角" +#: ../src/live_effects/lpe-perspective-envelope.cpp:49 +msgid "Down Left" +msgstr "左下" -#: ../src/live_effects/lpe-powerstroke.cpp:221 -#: ../src/widgets/star-toolbar.cpp:534 -msgid "Rounded" -msgstr "圓角" +#: ../src/live_effects/lpe-perspective-envelope.cpp:49 +msgid "Down Left - Ctrl+Alt+Click to reset" +msgstr "左下 - Ctrl+Alt+滑鼠點擊可重設" -#: ../src/live_effects/lpe-powerstroke.cpp:222 -#, fuzzy -msgid "Extrapolated" -msgstr "內插" +#: ../src/live_effects/lpe-perspective-envelope.cpp:50 +msgid "Down Right" +msgstr "右下" -#: ../src/live_effects/lpe-powerstroke.cpp:223 -#, fuzzy -msgid "Miter" -msgstr "斜切接合" +#: ../src/live_effects/lpe-perspective-envelope.cpp:50 +msgid "Down Right - Ctrl+Alt+Click to reset" +msgstr "右下 - Ctrl+Alt+滑鼠點擊可重設" + +#: ../src/live_effects/lpe-perspective-envelope.cpp:257 +msgid "Handles:" +msgstr "控制點:" + +#: ../src/live_effects/lpe-powerstroke.cpp:193 +msgid "CubicBezierSmooth" +msgstr "立方貝茲平滑" + +#: ../src/live_effects/lpe-powerstroke.cpp:212 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 +msgid "Round" +msgstr "圓端" + +#: ../src/live_effects/lpe-powerstroke.cpp:214 +msgid "Zero width" +msgstr "凹端" -#: ../src/live_effects/lpe-powerstroke.cpp:224 +#: ../src/live_effects/lpe-powerstroke.cpp:232 #: ../src/widgets/pencil-toolbar.cpp:103 msgid "Spiro" msgstr "螺旋" -#: ../src/live_effects/lpe-powerstroke.cpp:226 -msgid "Extrapolated arc" -msgstr "" - -#: ../src/live_effects/lpe-powerstroke.cpp:233 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:238 msgid "Offset points" -msgstr "偏移路徑" +msgstr "偏移點" -#: ../src/live_effects/lpe-powerstroke.cpp:234 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:239 msgid "Sort points" -msgstr "塗鴉點" +msgstr "排序偏移點" -#: ../src/live_effects/lpe-powerstroke.cpp:234 +#: ../src/live_effects/lpe-powerstroke.cpp:239 msgid "Sort offset points according to their time value along the curve" -msgstr "" - -#: ../src/live_effects/lpe-powerstroke.cpp:235 -#, fuzzy -msgid "Interpolator type:" -msgstr "內插樣式" +msgstr "根據時間數值沿著曲線排序偏移點" -#: ../src/live_effects/lpe-powerstroke.cpp:235 -msgid "" -"Determines which kind of interpolator will be used to interpolate between " -"stroke width along the path" -msgstr "" - -#: ../src/live_effects/lpe-powerstroke.cpp:236 +#: ../src/live_effects/lpe-powerstroke.cpp:241 #: ../share/extensions/fractalize.inx.h:3 msgid "Smoothness:" msgstr "平滑度:" -#: ../src/live_effects/lpe-powerstroke.cpp:236 +#: ../src/live_effects/lpe-powerstroke.cpp:241 msgid "" "Sets the smoothness for the CubicBezierJohan interpolator; 0 = linear " "interpolation, 1 = smooth" -msgstr "" +msgstr "設定立方貝茲約翰內插法的平滑度;0 = 線性內插,1 = 平滑" -#: ../src/live_effects/lpe-powerstroke.cpp:237 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:242 msgid "Start cap:" -msgstr "起點:" +msgstr "開端:" -#: ../src/live_effects/lpe-powerstroke.cpp:237 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:242 msgid "Determines the shape of the path's start" -msgstr "決定從開始到結束路徑的階層數" +msgstr "決定路徑起始的形狀" -#. Join type -#. TRANSLATORS: The line join style specifies the shape to be used at the -#. corners of paths. It can be "miter", "round" or "bevel". -#: ../src/live_effects/lpe-powerstroke.cpp:238 -#: ../src/widgets/stroke-style.cpp:227 -msgid "Join:" -msgstr "接合:" - -#: ../src/live_effects/lpe-powerstroke.cpp:238 -#, fuzzy -msgid "Determines the shape of the path's corners" -msgstr "決定從開始到結束路徑的階層數" - -#: ../src/live_effects/lpe-powerstroke.cpp:239 -#, fuzzy -msgid "Miter limit:" -msgstr "斜切限制:" - -#: ../src/live_effects/lpe-powerstroke.cpp:239 +#: ../src/live_effects/lpe-powerstroke.cpp:244 #: ../src/widgets/stroke-style.cpp:278 msgid "Maximum length of the miter (in units of stroke width)" msgstr "斜切的最大長度 (單位為邊框寬度的單位)" -#: ../src/live_effects/lpe-powerstroke.cpp:240 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:245 msgid "End cap:" -msgstr "圓端點" +msgstr "末端:" -#: ../src/live_effects/lpe-powerstroke.cpp:240 -#, fuzzy +#: ../src/live_effects/lpe-powerstroke.cpp:245 msgid "Determines the shape of the path's end" -msgstr "決定從開始到結束路徑的階層數" +msgstr "決定路徑末端的形狀" #: ../src/live_effects/lpe-rough-hatches.cpp:225 msgid "Frequency randomness:" @@ -9195,7 +10397,7 @@ msgstr "彎曲手繪影線" #: ../src/live_effects/lpe-rough-hatches.cpp:240 msgid "Add a global bend to the hatches (slower)" -msgstr "加入整體彎曲到手繪影線 (較慢)" +msgstr "加入總體彎曲到手繪影線 (較慢)" #: ../src/live_effects/lpe-rough-hatches.cpp:241 msgid "Thickness: at 1st side:" @@ -9206,9 +10408,8 @@ msgid "Width at 'bottom' half-turns" msgstr "於「底端」半轉的寬度" #: ../src/live_effects/lpe-rough-hatches.cpp:242 -#, fuzzy msgid "At 2nd side:" -msgstr "於第二側邊上:" +msgstr "於第二個邊上:" #: ../src/live_effects/lpe-rough-hatches.cpp:242 msgid "Width at 'top' half-turns" @@ -9216,7 +10417,6 @@ msgstr "於「頂端」半轉的寬度" #. #: ../src/live_effects/lpe-rough-hatches.cpp:244 -#, fuzzy msgid "From 2nd to 1st side:" msgstr "從第二個邊到第一個邊:" @@ -9225,7 +10425,6 @@ msgid "Width from 'top' to 'bottom'" msgstr "從「頂端」到「底端」的寬度" #: ../src/live_effects/lpe-rough-hatches.cpp:245 -#, fuzzy msgid "From 1st to 2nd side:" msgstr "從第一個邊到第二個邊:" @@ -9244,13 +10443,71 @@ msgstr "定義手繪影線的頻率和方向" #. #: ../src/live_effects/lpe-rough-hatches.cpp:249 msgid "Global bending" -msgstr "整體彎曲" +msgstr "總體彎曲" #: ../src/live_effects/lpe-rough-hatches.cpp:249 msgid "" "Relative position to a reference point defines global bending direction and " "amount" -msgstr "由參考點的相對位置定義整體彎曲程度和方向" +msgstr "由參考點的相對位置定義總體彎曲程度和方向" + +#: ../src/live_effects/lpe-roughen.cpp:30 ../share/extensions/addnodes.inx.h:4 +msgid "By number of segments" +msgstr "依照線段數量" + +#: ../src/live_effects/lpe-roughen.cpp:31 +msgid "By max. segment size" +msgstr "依照最大線段長度" + +#: ../src/live_effects/lpe-roughen.cpp:40 +msgid "Division method" +msgstr "分割方式" + +#: ../src/live_effects/lpe-roughen.cpp:42 +msgid "Max. segment size" +msgstr "最大線段長度" + +#: ../src/live_effects/lpe-roughen.cpp:44 +msgid "Number of segments" +msgstr "線段數量" + +#: ../src/live_effects/lpe-roughen.cpp:46 +msgid "Max. displacement in X" +msgstr "X 方向最大位移" + +#: ../src/live_effects/lpe-roughen.cpp:48 +msgid "Max. displacement in Y" +msgstr "Y 方向最大位移" + +#: ../src/live_effects/lpe-roughen.cpp:50 +msgid "Global randomize" +msgstr "總體隨機化" + +#: ../src/live_effects/lpe-roughen.cpp:52 +#: ../share/extensions/radiusrand.inx.h:5 +msgid "Shift nodes" +msgstr "移動節點" + +#: ../src/live_effects/lpe-roughen.cpp:54 +#: ../share/extensions/radiusrand.inx.h:6 +msgid "Shift node handles" +msgstr "移動節點控柄" + +#: ../src/live_effects/lpe-roughen.cpp:103 +msgid "Roughen unit" +msgstr "粗糙化單位" + +#: ../src/live_effects/lpe-roughen.cpp:111 +msgid "Add nodes Subdivide each segment" +msgstr "加入節點會細分每個線段" + +#: ../src/live_effects/lpe-roughen.cpp:120 +msgid "Jitter nodes Move nodes/handles" +msgstr "抖動節點會移動節點/控制柄" + +#: ../src/live_effects/lpe-roughen.cpp:129 +msgid "Extra roughen Add a extra layer of rough" +msgstr "加強型粗糙化會加入額外的粗糙圖層" #: ../src/live_effects/lpe-ruler.cpp:25 ../share/extensions/restack.inx.h:12 #: ../share/extensions/text_extract.inx.h:8 @@ -9268,11 +10525,16 @@ msgstr "右邊" msgid "Both" msgstr "左右兩邊" -#: ../src/live_effects/lpe-ruler.cpp:33 ../src/widgets/arc-toolbar.cpp:326 +#: ../src/live_effects/lpe-ruler.cpp:32 +msgctxt "Border mark" +msgid "None" +msgstr "無" + +#: ../src/live_effects/lpe-ruler.cpp:33 ../src/widgets/arc-toolbar.cpp:328 msgid "Start" msgstr "開始" -#: ../src/live_effects/lpe-ruler.cpp:34 ../src/widgets/arc-toolbar.cpp:339 +#: ../src/live_effects/lpe-ruler.cpp:34 ../src/widgets/arc-toolbar.cpp:341 msgid "End" msgstr "結束" @@ -9292,10 +10554,6 @@ msgstr "尺標連續刻度之間的距離" msgid "Unit:" msgstr "單位:" -#: ../src/live_effects/lpe-ruler.cpp:42 ../src/widgets/ruler.cpp:201 -msgid "Unit" -msgstr "單位" - #: ../src/live_effects/lpe-ruler.cpp:43 msgid "Ma_jor length:" msgstr "主要長度(_J):" @@ -9352,6 +10610,78 @@ msgstr "邊界刻度:" msgid "Choose whether to draw marks at the beginning and end of the path" msgstr "選擇是否在路徑的起點和終點上繪製刻度" +#: ../src/live_effects/lpe-show_handles.cpp:25 +msgid "Show nodes" +msgstr "顯示節點" + +#: ../src/live_effects/lpe-show_handles.cpp:27 +msgid "Show path" +msgstr "顯示路徑" + +#: ../src/live_effects/lpe-show_handles.cpp:28 +msgid "Scale nodes and handles" +msgstr "縮放節點及控制柄" + +#: ../src/live_effects/lpe-show_handles.cpp:50 +msgid "" +"The \"show handles\" path effect will remove any custom style on the object " +"you are applying it to. If this is not what you want, click Cancel." +msgstr "" +"「顯示控制柄」路徑特效會移除你套用在物件上所有自訂樣式。" +"若這個效果不是你想要的,請點擊取消。" + +#: ../src/live_effects/lpe-simplify.cpp:29 +msgid "Steps:" +msgstr "階層數:" + +#: ../src/live_effects/lpe-simplify.cpp:29 +msgid "Change number of simplify steps " +msgstr "變更簡化的階層數" + +#: ../src/live_effects/lpe-simplify.cpp:30 +msgid "Roughly threshold:" +msgstr "粗略臨界值:" + +#: ../src/live_effects/lpe-simplify.cpp:31 +msgid "Helper size:" +msgstr "輔助標示尺寸:" + +#: ../src/live_effects/lpe-simplify.cpp:31 +msgid "Helper size" +msgstr "輔助標示尺寸" + +#: ../src/live_effects/lpe-simplify.cpp:32 +msgid "Helper nodes" +msgstr "輔助標示節點" + +#: ../src/live_effects/lpe-simplify.cpp:32 +msgid "Show helper nodes" +msgstr "顯示輔助標示節點" + +#: ../src/live_effects/lpe-simplify.cpp:34 +msgid "Helper handles" +msgstr "輔助標示控制點" + +#: ../src/live_effects/lpe-simplify.cpp:34 +msgid "Show helper handles" +msgstr "顯示輔助標示控制點" + +#: ../src/live_effects/lpe-simplify.cpp:36 +msgid "Paths separately" +msgstr "個別路徑" + +#: ../src/live_effects/lpe-simplify.cpp:36 +msgid "Simplifying paths (separately)" +msgstr "簡化路徑 (個別)" + +#: ../src/live_effects/lpe-simplify.cpp:38 +msgid "Just coalesce" +msgstr "僅合併" + +#: ../src/live_effects/lpe-simplify.cpp:38 +msgid "Simplify just coalesce" +msgstr "簡化僅合併" + #. initialise your parameters here: #. testpointA(_("Test Point A"), _("Test A"), "ptA", &wr, this, Geom::Point(100,100)), #: ../src/live_effects/lpe-sketch.cpp:38 @@ -9488,6 +10818,63 @@ msgstr "k 最大值(_M):" msgid "max curvature" msgstr "最大曲率" +#: ../src/live_effects/lpe-taperstroke.cpp:67 +msgid "Extrapolated" +msgstr "外推" + +#: ../src/live_effects/lpe-taperstroke.cpp:74 +#: ../src/widgets/stroke-style.cpp:192 +msgid "Stroke width" +msgstr "邊框寬度" + +#: ../src/live_effects/lpe-taperstroke.cpp:74 +msgid "The (non-tapered) width of the path" +msgstr "該路徑的寬度 (非錐化的寬度)" + +#: ../src/live_effects/lpe-taperstroke.cpp:75 +msgid "Start offset" +msgstr "開始偏移" + +#: ../src/live_effects/lpe-taperstroke.cpp:75 +msgid "Taper distance from path start" +msgstr "路徑起點的錐化距離" + +#: ../src/live_effects/lpe-taperstroke.cpp:76 +msgid "End offset" +msgstr "結束偏移" + +#: ../src/live_effects/lpe-taperstroke.cpp:76 +msgid "The ending position of the taper" +msgstr "錐化的結束位置" + +#: ../src/live_effects/lpe-taperstroke.cpp:77 +msgid "Taper smoothing" +msgstr "錐化平滑" + +#: ../src/live_effects/lpe-taperstroke.cpp:77 +msgid "Amount of smoothing to apply to the tapers" +msgstr "套用到錐化的平滑程度" + +#: ../src/live_effects/lpe-taperstroke.cpp:78 +msgid "Join type for non-smooth nodes" +msgstr "非平滑節點的接合類型" + +#: ../src/live_effects/lpe-taperstroke.cpp:79 +msgid "Miter limit" +msgstr "斜切限制" + +#: ../src/live_effects/lpe-taperstroke.cpp:79 +msgid "Limit for miter joins" +msgstr "斜切接合的限制" + +#: ../src/live_effects/lpe-taperstroke.cpp:536 +msgid "Start point of the taper" +msgstr "錐化的起點" + +#: ../src/live_effects/lpe-taperstroke.cpp:540 +msgid "End point of the taper" +msgstr "錐化的末端" + #: ../src/live_effects/lpe-vonkoch.cpp:46 msgid "N_r of generations:" msgstr "繁殖世代數(_R):" @@ -9550,16 +10937,80 @@ msgstr "變更邏輯參數" msgid "Change enumeration parameter" msgstr "變更計算參數" +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:792 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:849 +msgid "" +"Chamfer: Ctrl+Click toogle type, Shift+Click open " +"dialog, Ctrl+Alt+Click reset" +msgstr "" +"倒角Ctrl+滑鼠點擊可以開啟/關閉類型," +"Shift+滑鼠點擊可以開啟對話窗,Ctrl+Alt+滑鼠點擊可以重設" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:796 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:853 +msgid "" +"Inverse Fillet: Ctrl+Click toogle type, Shift+Click " +"open dialog, Ctrl+Alt+Click reset" +msgstr "" +"反向圓角Ctrl+滑鼠點擊可以開啟/關閉類型," +"Shift+滑鼠點擊可以開啟對話窗,Ctrl+Alt+滑鼠點擊可以重設" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:800 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:857 +msgid "" +"Fillet: Ctrl+Click toogle type, Shift+Click open " +"dialog, Ctrl+Alt+Click reset" +msgstr "" +"圓角Ctrl+滑鼠點擊可以開啟/關閉類型," +"Shift+滑鼠點擊可以開啟對話窗,Ctrl+Alt+滑鼠點擊可以重設" + #: ../src/live_effects/parameter/originalpath.cpp:71 +#: ../src/live_effects/parameter/originalpatharray.cpp:159 msgid "Link to path" msgstr "連結到路徑" #: ../src/live_effects/parameter/originalpath.cpp:83 -#, fuzzy msgid "Select original" -msgstr "選擇原物件(_O)" +msgstr "選擇原物件" + +#: ../src/live_effects/parameter/originalpatharray.cpp:94 +#: ../src/widgets/gradient-toolbar.cpp:1202 +msgid "Reverse" +msgstr "反轉" -#: ../src/live_effects/parameter/parameter.cpp:141 +#: ../src/live_effects/parameter/originalpatharray.cpp:134 +#: ../src/live_effects/parameter/originalpatharray.cpp:319 +#: ../src/live_effects/parameter/path.cpp:475 +msgid "Link path parameter to path" +msgstr "連結路徑參數到路徑" + +#: ../src/live_effects/parameter/originalpatharray.cpp:171 +msgid "Remove Path" +msgstr "移除路徑" + +#: ../src/live_effects/parameter/originalpatharray.cpp:183 +#: ../src/ui/dialog/objects.cpp:1847 +msgid "Move Down" +msgstr "向下移" + +#: ../src/live_effects/parameter/originalpatharray.cpp:195 +#: ../src/ui/dialog/objects.cpp:1862 +msgid "Move Up" +msgstr "向上移" + +#: ../src/live_effects/parameter/originalpatharray.cpp:235 +msgid "Move path up" +msgstr "路徑向上移" + +#: ../src/live_effects/parameter/originalpatharray.cpp:265 +msgid "Move path down" +msgstr "路徑向下移" + +#: ../src/live_effects/parameter/originalpatharray.cpp:283 +msgid "Remove path" +msgstr "移除路徑" + +#: ../src/live_effects/parameter/parameter.cpp:168 msgid "Change scalar parameter" msgstr "變更參數純量" @@ -9576,28 +11027,27 @@ msgid "Paste path" msgstr "貼上路徑" #: ../src/live_effects/parameter/path.cpp:200 -#, fuzzy msgid "Link to path on clipboard" -msgstr "剪貼簿裡沒有任何東西。" +msgstr "連結到剪貼簿的路徑" #: ../src/live_effects/parameter/path.cpp:443 msgid "Paste path parameter" msgstr "貼上路徑參數" -#: ../src/live_effects/parameter/path.cpp:475 -msgid "Link path parameter to path" -msgstr "連結路徑參數到路徑" - #: ../src/live_effects/parameter/point.cpp:89 +#: ../src/live_effects/parameter/pointreseteable.cpp:103 msgid "Change point parameter" msgstr "變更點的參數" -#: ../src/live_effects/parameter/powerstrokepointarray.cpp:229 -#: ../src/live_effects/parameter/powerstrokepointarray.cpp:241 +#: ../src/live_effects/parameter/powerstrokepointarray.cpp:239 +#: ../src/live_effects/parameter/powerstrokepointarray.cpp:256 msgid "" "Stroke width control point: drag to alter the stroke width. Ctrl" -"+click adds a control point, Ctrl+Alt+click deletes it." +"+click adds a control point, Ctrl+Alt+click deletes it, Shift" +"+click launches width dialog." msgstr "" +"邊框寬度控制點:拖曳控制點可以改變筆劃寬度。Ctrl+點擊 可以加入" +"控制點,Ctrl+Alt+點擊 可以刪除控制點。" #: ../src/live_effects/parameter/random.cpp:134 msgid "Change random parameter" @@ -9607,14 +11057,19 @@ msgstr "變更隨機參數" msgid "Change text parameter" msgstr "變更文字參數" -#: ../src/live_effects/parameter/unit.cpp:80 -msgid "Change unit parameter" -msgstr "變更單位參數" +#: ../src/live_effects/parameter/togglebutton.cpp:112 +msgid "Change togglebutton parameter" +msgstr "變更開關按鈕參數" +#: ../src/live_effects/parameter/transformedpoint.cpp:98 #: ../src/live_effects/parameter/vector.cpp:99 msgid "Change vector parameter" msgstr "變更向量參數" +#: ../src/live_effects/parameter/unit.cpp:80 +msgid "Change unit parameter" +msgstr "變更單位參數" + #: ../src/main-cmdlineact.cpp:50 #, c-format msgid "Unable to find verb ID '%s' specified on the command line.\n" @@ -9658,8 +11113,8 @@ msgstr "將文件匯出成 PNG 檔案" #: ../src/main.cpp:325 msgid "" "Resolution for exporting to bitmap and for rasterization of filters in PS/" -"EPS/PDF (default 90)" -msgstr "PS/EPS/PDF 格式中匯出點陣圖和濾鏡點陣化的解析度 (預設 90)" +"EPS/PDF (default 96)" +msgstr "PS/EPS/PDF 格式中匯出點陣圖和濾鏡點陣化的解析度 (預設 96)" #: ../src/main.cpp:326 ../src/ui/widget/rendering-options.cpp:37 msgid "DPI" @@ -9685,7 +11140,7 @@ msgstr "匯出範圍為整個頁面" #: ../src/main.cpp:345 msgid "Only for PS/EPS/PDF, sets margin in mm around exported area (default 0)" -msgstr "" +msgstr "只適用於 PS/EPS/PDF,設定匯出區域周圍的邊距 (預設為 0,單位為公釐)" #: ../src/main.cpp:346 ../src/main.cpp:388 msgid "VALUE" @@ -9699,7 +11154,7 @@ msgstr "擷取點陣圖匯出範圍時,外插為靠近的整數值 (單位為 #: ../src/main.cpp:355 msgid "The width of exported bitmap in pixels (overrides export-dpi)" -msgstr "匯出點陣圖的寬度,單位為像素 (覆蓋 export-dpi)" +msgstr "匯出點陣圖的寬度,單位為像素 (無視 export-dpi)" #: ../src/main.cpp:356 msgid "WIDTH" @@ -9707,7 +11162,7 @@ msgstr "寬度" #: ../src/main.cpp:360 msgid "The height of exported bitmap in pixels (overrides export-dpi)" -msgstr "匯出點陣圖的高度,單位為像素 (覆蓋 export-dpi)" +msgstr "匯出點陣圖的高度,單位為像素 (無視 export-dpi)" #: ../src/main.cpp:361 msgid "HEIGHT" @@ -9718,7 +11173,7 @@ msgid "The ID of the object to export" msgstr "要匯出的物件 ID" #: ../src/main.cpp:366 ../src/main.cpp:479 -#: ../src/ui/dialog/inkscape-preferences.cpp:1505 +#: ../src/ui/dialog/inkscape-preferences.cpp:1507 msgid "ID" msgstr "ID" @@ -9761,12 +11216,11 @@ msgstr "將文件匯出成 EPS 檔" msgid "" "Choose the PostScript Level used to export. Possible choices are 2 (the " "default) and 3" -msgstr "" +msgstr "選擇匯出要使用的 PostScript 等級。正常選擇 2 (預設值) 和 3" #: ../src/main.cpp:409 -#, fuzzy msgid "PS Level" -msgstr "色階" +msgstr "PS 等級" #: ../src/main.cpp:413 msgid "Export document to a PDF file" @@ -9778,10 +11232,12 @@ msgid "" "Export PDF to given version. (hint: make sure to input the exact string " "found in the PDF export dialog, e.g. \"PDF 1.4\" which is PDF-a conformant)" msgstr "" +"匯出成給定版本的 PDF。(提示:確認匯入的精確字串可在 PDF 匯出對話窗裡找到,例" +"如「PDF 1.4」為 PDF 相容版本)" #: ../src/main.cpp:420 msgid "PDF_VERSION" -msgstr "" +msgstr "PDF 版本" #: ../src/main.cpp:424 msgid "" @@ -9794,23 +11250,21 @@ msgstr "" #: ../src/main.cpp:429 msgid "Export document to an Enhanced Metafile (EMF) File" -msgstr "將文件匯出成 Enhanced Metafile (EMF) 檔" +msgstr "將文件匯出成加強式中繼資料檔 (EMF)" #: ../src/main.cpp:434 -#, fuzzy msgid "Export document to a Windows Metafile (WMF) File" -msgstr "將文件匯出成 Enhanced Metafile (EMF) 檔" +msgstr "將文件匯出成 Windows 中繼資料檔 (WMF)" #: ../src/main.cpp:439 -#, fuzzy msgid "Convert text object to paths on export (PS, EPS, PDF, SVG)" -msgstr "匯出時將文字物件轉成路徑 (PS, EPS, PDF)" +msgstr "匯出時將文字物件轉成路徑 (PS, EPS, PDF, SVG)" #: ../src/main.cpp:444 msgid "" "Render filtered objects without filters, instead of rasterizing (PS, EPS, " "PDF)" -msgstr "不潤算套用濾鏡物件的濾鏡效果,而不是將物件點陣化 (PS, EPS, PDF)" +msgstr "不繪算套用濾鏡物件的濾鏡效果,而不是將物件點陣化 (PS, EPS, PDF)" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:450 @@ -9859,17 +11313,17 @@ msgstr "從文件的 defs 段落裡移除沒用到的定義" #: ../src/main.cpp:495 msgid "Enter a listening loop for D-Bus messages in console mode" -msgstr "" +msgstr "輸入終端機模式的 D-Bus 訊息監聽迴圈" #: ../src/main.cpp:500 msgid "" "Specify the D-Bus bus name to listen for messages on (default is org." "inkscape)" -msgstr "" +msgstr "指定訊息監聽的 D-Bus bus 名稱 (預設為 org.inkscape)" #: ../src/main.cpp:501 msgid "BUS-NAME" -msgstr "" +msgstr "BUS 名稱" #: ../src/main.cpp:506 msgid "List the IDs of all the verbs in Inkscape" @@ -9910,17 +11364,18 @@ msgstr "" msgid "_File" msgstr "檔案(_F)" -#: ../src/menus-skeleton.h:17 +#. Tag +#: ../src/menus-skeleton.h:17 ../src/verbs.cpp:2730 msgid "_New" msgstr "新增(_N)" #. " \n" #. " \n" -#: ../src/menus-skeleton.h:43 ../src/verbs.cpp:2634 ../src/verbs.cpp:2640 +#: ../src/menus-skeleton.h:43 ../src/verbs.cpp:2717 ../src/verbs.cpp:2725 msgid "_Edit" msgstr "編輯(_E)" -#: ../src/menus-skeleton.h:53 ../src/verbs.cpp:2398 +#: ../src/menus-skeleton.h:53 ../src/verbs.cpp:2481 msgid "Paste Si_ze" msgstr "貼上尺寸(_Z)" @@ -9929,9 +11384,8 @@ msgid "Clo_ne" msgstr "仿製(_N)" #: ../src/menus-skeleton.h:79 -#, fuzzy msgid "Select Sa_me" -msgstr "選取相同物件(_T)" +msgstr "選取相同物件(_M)" #: ../src/menus-skeleton.h:97 msgid "_View" @@ -9969,213 +11423,104 @@ msgstr "圖層(_L)" msgid "_Object" msgstr "物件(_O)" -#: ../src/menus-skeleton.h:188 +#: ../src/menus-skeleton.h:191 msgid "Cli_p" msgstr "剪裁(_P)" -#: ../src/menus-skeleton.h:192 +#: ../src/menus-skeleton.h:195 msgid "Mas_k" msgstr "遮罩(_K)" -#: ../src/menus-skeleton.h:196 +#: ../src/menus-skeleton.h:199 msgid "Patter_n" msgstr "圖樣(_N)" -#: ../src/menus-skeleton.h:220 +#: ../src/menus-skeleton.h:223 msgid "_Path" msgstr "路徑(_P)" -#: ../src/menus-skeleton.h:248 ../src/ui/dialog/find.cpp:77 -#: ../src/ui/dialog/text-edit.cpp:72 +#: ../src/menus-skeleton.h:251 ../src/ui/dialog/find.cpp:77 +#: ../src/ui/dialog/text-edit.cpp:71 msgid "_Text" msgstr "文字(_T)" -#: ../src/menus-skeleton.h:266 +#: ../src/menus-skeleton.h:269 msgid "Filter_s" msgstr "濾鏡(_S)" -#: ../src/menus-skeleton.h:272 +#: ../src/menus-skeleton.h:275 msgid "Exte_nsions" msgstr "擴充功能(_N)" -#: ../src/menus-skeleton.h:278 +#: ../src/menus-skeleton.h:281 msgid "_Help" msgstr "說明(_H)" -#: ../src/menus-skeleton.h:282 +#: ../src/menus-skeleton.h:285 msgid "Tutorials" msgstr "指導手冊" -#: ../src/object-edit.cpp:439 -msgid "" -"Adjust the horizontal rounding radius; with Ctrl to make the " -"vertical radius the same" -msgstr "調整水平圓角半徑;按著 Ctrl 可讓垂直半徑相同" - -#: ../src/object-edit.cpp:444 -msgid "" -"Adjust the vertical rounding radius; with Ctrl to make the " -"horizontal radius the same" -msgstr "調整垂直圓角半徑;按著 Ctrl 可讓水平半徑相同" - -#: ../src/object-edit.cpp:449 ../src/object-edit.cpp:454 -msgid "" -"Adjust the width and height of the rectangle; with Ctrl to " -"lock ratio or stretch in one dimension only" -msgstr "" -"調整矩形的寬度和高度;按著 Ctrl 可鎖定比例或只伸展單一尺寸" - -#: ../src/object-edit.cpp:689 ../src/object-edit.cpp:693 -#: ../src/object-edit.cpp:697 ../src/object-edit.cpp:701 -msgid "" -"Resize box in X/Y direction; with Shift along the Z axis; with " -"Ctrl to constrain to the directions of edges or diagonals" -msgstr "" -"以 X / Y 方向調整立方體大小;按著 Shift 沿著 Z 軸; 按著 Ctrl 可" -"限定邊或對角線方向" - -#: ../src/object-edit.cpp:705 ../src/object-edit.cpp:709 -#: ../src/object-edit.cpp:713 ../src/object-edit.cpp:717 -msgid "" -"Resize box along the Z axis; with Shift in X/Y direction; with " -"Ctrl to constrain to the directions of edges or diagonals" -msgstr "" -"沿著 Z 軸調整立方體大小;按著 Shift 可以 X/Y 方向調整大小;按 " -"Ctrl 可限定邊或對角線方向" - -#: ../src/object-edit.cpp:721 -msgid "Move the box in perspective" -msgstr "用透視角度移動立方體" - -#: ../src/object-edit.cpp:948 -msgid "Adjust ellipse width, with Ctrl to make circle" -msgstr "調整橢圓形寬度,按著 Ctrl 可繪製圓形" - -#: ../src/object-edit.cpp:952 -msgid "Adjust ellipse height, with Ctrl to make circle" -msgstr "調整橢圓形高度,按著 Ctrl 可繪製圓形" - -#: ../src/object-edit.cpp:956 -msgid "" -"Position the start point of the arc or segment; with Ctrl to " -"snap angle; drag inside the ellipse for arc, outside for " -"segment" -msgstr "" -"設定弧形或線段的起點位置;按著 Ctrl 可貼齊角度;拖曳橢圓形內" -"部可成為弧形,而外部可成為扇形" - -#: ../src/object-edit.cpp:961 -msgid "" -"Position the end point of the arc or segment; with Ctrl to " -"snap angle; drag inside the ellipse for arc, outside for " -"segment" -msgstr "" -"設定弧形或線段的終點位置;按著 Ctrl 可貼齊角度;拖曳橢圓形內" -"部可成為弧形,而外部可成為扇形。" - -#: ../src/object-edit.cpp:1101 -msgid "" -"Adjust the tip radius of the star or polygon; with Shift to " -"round; with Alt to randomize" -msgstr "" -"調整星形或多邊形的尖端半徑;按著 Shift 可變為圓角;按著 " -"Alt 可隨機變化" - -#: ../src/object-edit.cpp:1109 -msgid "" -"Adjust the base radius of the star; with Ctrl to keep star " -"rays radial (no skew); with Shift to round; with Alt to " -"randomize" -msgstr "" -"調整星形的基本半徑;按著 Ctrl 可維持星形光芒為放射狀 (無傾斜);" -"按著 Shift 可變為圓角;按著 Alt 可隨機變化" - -#: ../src/object-edit.cpp:1299 -msgid "" -"Roll/unroll the spiral from inside; with Ctrl to snap angle; " -"with Alt to converge/diverge" -msgstr "" -"從內部捲起 / 展開螺旋形;按 Ctrl 可貼齊角度;按 Alt 可變" -"成收斂 / 發散" - -#: ../src/object-edit.cpp:1303 -#, fuzzy -msgid "" -"Roll/unroll the spiral from outside; with Ctrl to snap angle; " -"with Shift to scale/rotate; with Alt to lock radius" -msgstr "" -"從外部捲起 / 展開螺旋形;按 Ctrl 可貼齊角度;按 Shift 可" -"縮放 / 旋轉" - -#: ../src/object-edit.cpp:1348 -msgid "Adjust the offset distance" -msgstr "調整偏移距離" - -#: ../src/object-edit.cpp:1384 -msgid "Drag to resize the flowed text frame" -msgstr "拖曳來調整流動文字框的大小" - -#: ../src/path-chemistry.cpp:53 +#: ../src/path-chemistry.cpp:54 msgid "Select object(s) to combine." msgstr "選擇要合併的物件。" -#: ../src/path-chemistry.cpp:57 +#: ../src/path-chemistry.cpp:58 msgid "Combining paths..." msgstr "正在合併路徑..." -#: ../src/path-chemistry.cpp:170 +#: ../src/path-chemistry.cpp:174 msgid "Combine" msgstr "合併" -#: ../src/path-chemistry.cpp:177 +#: ../src/path-chemistry.cpp:181 msgid "No path(s) to combine in the selection." msgstr "選取區中沒有路徑可以合併。" -#: ../src/path-chemistry.cpp:189 +#: ../src/path-chemistry.cpp:193 msgid "Select path(s) to break apart." msgstr "選擇要打散的路徑。" -#: ../src/path-chemistry.cpp:193 +#: ../src/path-chemistry.cpp:197 msgid "Breaking apart paths..." msgstr "打散路徑..." -#: ../src/path-chemistry.cpp:284 +#: ../src/path-chemistry.cpp:287 msgid "Break apart" msgstr "打散" -#: ../src/path-chemistry.cpp:286 +#: ../src/path-chemistry.cpp:289 msgid "No path(s) to break apart in the selection." msgstr "選取區中沒有路徑可以打散。" -#: ../src/path-chemistry.cpp:296 +#: ../src/path-chemistry.cpp:299 msgid "Select object(s) to convert to path." msgstr "選擇要轉成路徑的物件。" -#: ../src/path-chemistry.cpp:302 +#: ../src/path-chemistry.cpp:305 msgid "Converting objects to paths..." msgstr "正在將物件轉成路徑..." -#: ../src/path-chemistry.cpp:324 +#: ../src/path-chemistry.cpp:327 msgid "Object to path" msgstr "物件轉成路徑" -#: ../src/path-chemistry.cpp:326 +#: ../src/path-chemistry.cpp:329 msgid "No objects to convert to path in the selection." msgstr "選取區中沒有物件可以轉成路徑。" -#: ../src/path-chemistry.cpp:603 +#: ../src/path-chemistry.cpp:620 msgid "Select path(s) to reverse." msgstr "選擇要反轉的路徑。" -#: ../src/path-chemistry.cpp:612 +#: ../src/path-chemistry.cpp:629 msgid "Reversing paths..." msgstr "正在反轉路徑..." -#: ../src/path-chemistry.cpp:647 +#: ../src/path-chemistry.cpp:664 msgid "Reverse path" msgstr "反轉路徑" -#: ../src/path-chemistry.cpp:649 +#: ../src/path-chemistry.cpp:666 msgid "No paths to reverse in the selection." msgstr "選取區中沒有路徑可以反轉。" @@ -10187,27 +11532,27 @@ msgstr "切換消逝點" msgid "Toggle multiple vanishing points" msgstr "切換多個消逝點" -#: ../src/preferences-skeleton.h:101 +#: ../src/preferences-skeleton.h:102 msgid "Dip pen" msgstr "沾水筆" -#: ../src/preferences-skeleton.h:102 +#: ../src/preferences-skeleton.h:103 msgid "Marker" msgstr "麥克筆" -#: ../src/preferences-skeleton.h:103 +#: ../src/preferences-skeleton.h:104 msgid "Brush" msgstr "筆刷" -#: ../src/preferences-skeleton.h:104 +#: ../src/preferences-skeleton.h:105 msgid "Wiggly" msgstr "波浪" -#: ../src/preferences-skeleton.h:105 +#: ../src/preferences-skeleton.h:106 msgid "Splotchy" msgstr "弄髒" -#: ../src/preferences-skeleton.h:106 +#: ../src/preferences-skeleton.h:107 msgid "Tracing" msgstr "描繪" @@ -10285,9 +11630,8 @@ msgid "CC Attribution-NonCommercial-NoDerivs" msgstr "創用 CC 姓名標示 - 非商業性 - 禁止改作" #: ../src/rdf.cpp:205 -#, fuzzy msgid "CC0 Public Domain Dedication" -msgstr "公共領域" +msgstr "CC0 通用公共領域貢獻" #: ../src/rdf.cpp:210 msgid "FreeArt" @@ -10304,7 +11648,7 @@ msgstr "標題:" #: ../src/rdf.cpp:236 msgid "A name given to the resource" -msgstr "" +msgstr "給此資源一個名稱" #: ../src/rdf.cpp:238 msgid "Date:" @@ -10314,7 +11658,7 @@ msgstr "日期:" msgid "" "A point or period of time associated with an event in the lifecycle of the " "resource" -msgstr "" +msgstr "資源生命週期中事件發生的時間點或某段時間" #: ../src/rdf.cpp:241 ../share/extensions/webslicer_create_rect.inx.h:3 msgid "Format:" @@ -10322,21 +11666,19 @@ msgstr "格式:" #: ../src/rdf.cpp:242 msgid "The file format, physical medium, or dimensions of the resource" -msgstr "" +msgstr "檔案格式,實體媒介或資源維度" #: ../src/rdf.cpp:245 -#, fuzzy msgid "The nature or genre of the resource" -msgstr "用於測量的單位" +msgstr "資源的性質或類型" #: ../src/rdf.cpp:248 msgid "Creator:" msgstr "創作者:" #: ../src/rdf.cpp:249 -#, fuzzy msgid "An entity primarily responsible for making the resource" -msgstr "實體名稱主要用於製作此文件的內容" +msgstr "為製作此資源承擔法律負責的個體" #: ../src/rdf.cpp:251 msgid "Rights:" @@ -10344,16 +11686,15 @@ msgstr "著作權:" #: ../src/rdf.cpp:252 msgid "Information about rights held in and over the resource" -msgstr "" +msgstr "此資源著作權所有與延續的資訊" #: ../src/rdf.cpp:254 msgid "Publisher:" msgstr "出版者:" #: ../src/rdf.cpp:255 -#, fuzzy msgid "An entity responsible for making the resource available" -msgstr "用來標示這份文件可用性的代表名稱" +msgstr "為發佈此資源承擔法律負責的個體" #: ../src/rdf.cpp:258 msgid "Identifier:" @@ -10361,38 +11702,35 @@ msgstr "識別碼:" #: ../src/rdf.cpp:259 msgid "An unambiguous reference to the resource within a given context" -msgstr "" +msgstr "已知內容內資源明確的參考資料" #: ../src/rdf.cpp:262 msgid "A related resource from which the described resource is derived" -msgstr "" +msgstr "從資源描述取得的相關資源" #: ../src/rdf.cpp:264 msgid "Relation:" -msgstr "相關性:" +msgstr "相關:" #: ../src/rdf.cpp:265 -#, fuzzy msgid "A related resource" -msgstr "混合來源:" +msgstr "相關資源" -#: ../src/rdf.cpp:267 ../src/ui/dialog/inkscape-preferences.cpp:1857 +#: ../src/rdf.cpp:267 ../src/ui/dialog/inkscape-preferences.cpp:1859 msgid "Language:" msgstr "語言:" #: ../src/rdf.cpp:268 -#, fuzzy msgid "A language of the resource" -msgstr "第一個複本的角度" +msgstr "資源的語言" #: ../src/rdf.cpp:270 msgid "Keywords:" msgstr "關鍵字:" #: ../src/rdf.cpp:271 -#, fuzzy msgid "The topic of the resource" -msgstr "來源的頂邊" +msgstr "資源的標題" #. TRANSLATORS: "Coverage": the spatial or temporal characteristics of the content. #. For info, see Appendix D of http://www.w3.org/TR/1998/WD-rdf-schema-19980409/ @@ -10404,16 +11742,15 @@ msgstr "涵蓋範圍:" msgid "" "The spatial or temporal topic of the resource, the spatial applicability of " "the resource, or the jurisdiction under which the resource is relevant" -msgstr "" +msgstr "此資源的時間或空間主題、空間適用性,或者資源的相關法律管轄權" #: ../src/rdf.cpp:279 msgid "Description:" msgstr "描述:" #: ../src/rdf.cpp:280 -#, fuzzy msgid "An account of the resource" -msgstr "這份文件內容的簡短說明" +msgstr "此資源的說明" #. FIXME: need to handle 1 agent per line of input #: ../src/rdf.cpp:284 @@ -10421,9 +11758,8 @@ msgid "Contributors:" msgstr "貢獻者:" #: ../src/rdf.cpp:285 -#, fuzzy msgid "An entity responsible for making contributions to the resource" -msgstr "用來標示這份文件內容貢獻者的代表名稱" +msgstr "為貢獻此資源承擔法律負責的個體" #. TRANSLATORS: URL to a page that defines the license for the document #: ../src/rdf.cpp:289 @@ -10446,17 +11782,17 @@ msgstr "RDF「授權」段落的 XML 片段" #: ../src/resource-manager.cpp:332 msgid "Fixup broken links" -msgstr "" +msgstr "修復損壞的連結" -#: ../src/selection-chemistry.cpp:396 +#: ../src/selection-chemistry.cpp:406 msgid "Delete text" msgstr "刪除文字" -#: ../src/selection-chemistry.cpp:404 +#: ../src/selection-chemistry.cpp:414 msgid "Nothing was deleted." msgstr "沒有刪除物件。" -#: ../src/selection-chemistry.cpp:423 +#: ../src/selection-chemistry.cpp:433 #: ../src/ui/dialog/calligraphic-profile-rename.cpp:75 #: ../src/ui/dialog/swatches.cpp:278 ../src/ui/tools/text-tool.cpp:974 #: ../src/widgets/eraser-toolbar.cpp:93 @@ -10467,258 +11803,254 @@ msgstr "沒有刪除物件。" msgid "Delete" msgstr "刪除" -#: ../src/selection-chemistry.cpp:451 +#: ../src/selection-chemistry.cpp:461 msgid "Select object(s) to duplicate." msgstr "選擇要再製的物件。" -#: ../src/selection-chemistry.cpp:560 +#: ../src/selection-chemistry.cpp:576 msgid "Delete all" msgstr "全部刪除" -#: ../src/selection-chemistry.cpp:750 +#: ../src/selection-chemistry.cpp:767 msgid "Select some objects to group." msgstr "選擇要群組的幾個物件。" -#: ../src/selection-chemistry.cpp:765 ../src/sp-item-group.cpp:329 +#: ../src/selection-chemistry.cpp:782 +msgctxt "Verb" msgid "Group" msgstr "群組" -#: ../src/selection-chemistry.cpp:788 +#: ../src/selection-chemistry.cpp:805 msgid "Select a group to ungroup." msgstr "選擇要解散的群組。" -#: ../src/selection-chemistry.cpp:803 +#: ../src/selection-chemistry.cpp:820 msgid "No groups to ungroup in the selection." msgstr "選取區中沒有群組可以解散。" -#: ../src/selection-chemistry.cpp:861 ../src/sp-item-group.cpp:562 +#: ../src/selection-chemistry.cpp:878 ../src/sp-item-group.cpp:563 msgid "Ungroup" msgstr "解散群組" -#: ../src/selection-chemistry.cpp:942 +#: ../src/selection-chemistry.cpp:960 msgid "Select object(s) to raise." msgstr "選擇要提升的物件。" -#: ../src/selection-chemistry.cpp:948 ../src/selection-chemistry.cpp:1004 -#: ../src/selection-chemistry.cpp:1032 ../src/selection-chemistry.cpp:1093 +#: ../src/selection-chemistry.cpp:966 ../src/selection-chemistry.cpp:1023 +#: ../src/selection-chemistry.cpp:1051 ../src/selection-chemistry.cpp:1113 msgid "" "You cannot raise/lower objects from different groups or layers." msgstr "你無法從不同群組圖層裡提升 / 降低物件。" #. TRANSLATORS: "Raise" means "to raise an object" in the undo history -#: ../src/selection-chemistry.cpp:988 +#: ../src/selection-chemistry.cpp:1007 msgctxt "Undo action" msgid "Raise" msgstr "提升" -#: ../src/selection-chemistry.cpp:996 +#: ../src/selection-chemistry.cpp:1015 msgid "Select object(s) to raise to top." msgstr "選擇要提到最上層的物件。" -#: ../src/selection-chemistry.cpp:1019 +#: ../src/selection-chemistry.cpp:1038 msgid "Raise to top" msgstr "提到最上層" -#: ../src/selection-chemistry.cpp:1026 +#: ../src/selection-chemistry.cpp:1045 msgid "Select object(s) to lower." msgstr "選擇要降低的物件。" #. TRANSLATORS: "Lower" means "to lower an object" in the undo history -#: ../src/selection-chemistry.cpp:1077 -#, fuzzy +#: ../src/selection-chemistry.cpp:1097 msgctxt "Undo action" msgid "Lower" msgstr "降低" -#: ../src/selection-chemistry.cpp:1085 +#: ../src/selection-chemistry.cpp:1105 msgid "Select object(s) to lower to bottom." msgstr "選擇要降到最下層的物件。" -#: ../src/selection-chemistry.cpp:1120 +#: ../src/selection-chemistry.cpp:1140 msgid "Lower to bottom" msgstr "降到最下層" -#: ../src/selection-chemistry.cpp:1130 +#: ../src/selection-chemistry.cpp:1150 msgid "Nothing to undo." msgstr "沒有可以復原的步驟。" -#: ../src/selection-chemistry.cpp:1141 +#: ../src/selection-chemistry.cpp:1161 msgid "Nothing to redo." msgstr "沒有可以取消復原的步驟。" -#: ../src/selection-chemistry.cpp:1208 +#: ../src/selection-chemistry.cpp:1230 msgid "Paste" msgstr "貼上" -#: ../src/selection-chemistry.cpp:1216 +#: ../src/selection-chemistry.cpp:1238 msgid "Paste style" msgstr "貼上樣式" -#: ../src/selection-chemistry.cpp:1226 +#: ../src/selection-chemistry.cpp:1248 msgid "Paste live path effect" msgstr "貼上即時路徑特效" -#: ../src/selection-chemistry.cpp:1248 +#: ../src/selection-chemistry.cpp:1270 msgid "Select object(s) to remove live path effects from." msgstr "選擇要移除即時路徑特效的物件。" -#: ../src/selection-chemistry.cpp:1260 +#: ../src/selection-chemistry.cpp:1282 msgid "Remove live path effect" msgstr "移除即時路徑特效" -#: ../src/selection-chemistry.cpp:1271 +#: ../src/selection-chemistry.cpp:1293 msgid "Select object(s) to remove filters from." msgstr "選擇要移除濾鏡的物件。" -#: ../src/selection-chemistry.cpp:1281 +#: ../src/selection-chemistry.cpp:1303 #: ../src/ui/dialog/filter-effects-dialog.cpp:1678 msgid "Remove filter" msgstr "移除濾鏡" -#: ../src/selection-chemistry.cpp:1290 +#: ../src/selection-chemistry.cpp:1312 msgid "Paste size" msgstr "貼上尺寸" -#: ../src/selection-chemistry.cpp:1299 +#: ../src/selection-chemistry.cpp:1321 msgid "Paste size separately" msgstr "個別貼上尺寸" -#: ../src/selection-chemistry.cpp:1309 +#: ../src/selection-chemistry.cpp:1331 msgid "Select object(s) to move to the layer above." msgstr "選擇要移動到上層圖層的物件。" -#: ../src/selection-chemistry.cpp:1335 +#: ../src/selection-chemistry.cpp:1357 msgid "Raise to next layer" msgstr "提升到下一個圖層" -#: ../src/selection-chemistry.cpp:1342 +#: ../src/selection-chemistry.cpp:1364 msgid "No more layers above." msgstr "沒有更上層的圖層。" -#: ../src/selection-chemistry.cpp:1354 +#: ../src/selection-chemistry.cpp:1376 msgid "Select object(s) to move to the layer below." msgstr "選擇要移動到下層圖層的物件。" -#: ../src/selection-chemistry.cpp:1380 +#: ../src/selection-chemistry.cpp:1402 msgid "Lower to previous layer" msgstr "降到前一個圖層" -#: ../src/selection-chemistry.cpp:1387 +#: ../src/selection-chemistry.cpp:1409 msgid "No more layers below." msgstr "沒有更下層的圖層。" -#: ../src/selection-chemistry.cpp:1399 -#, fuzzy +#: ../src/selection-chemistry.cpp:1421 msgid "Select object(s) to move." -msgstr "選擇要降低的物件。" +msgstr "選擇要移動的物件。" -#: ../src/selection-chemistry.cpp:1416 ../src/verbs.cpp:2577 -#, fuzzy +#: ../src/selection-chemistry.cpp:1438 ../src/verbs.cpp:2660 msgid "Move selection to layer" -msgstr "移動選取到上方圖層(_V)" +msgstr "將選取物件移到圖層" #. An SVG element cannot have a transform. We could change 'x' and 'y' in response #. to a translation... but leave that for another day. -#: ../src/selection-chemistry.cpp:1503 ../src/seltrans.cpp:388 +#: ../src/selection-chemistry.cpp:1528 ../src/seltrans.cpp:388 msgid "Cannot transform an embedded SVG." -msgstr "" +msgstr "無法變形內嵌的 SVG。" -#: ../src/selection-chemistry.cpp:1647 +#: ../src/selection-chemistry.cpp:1699 msgid "Remove transform" msgstr "移除變形" -#: ../src/selection-chemistry.cpp:1750 -#, fuzzy +#: ../src/selection-chemistry.cpp:1806 msgid "Rotate 90° CCW" -msgstr "旋轉 90° 逆時鐘" +msgstr "旋轉 90° 逆時鐘" -#: ../src/selection-chemistry.cpp:1750 -#, fuzzy +#: ../src/selection-chemistry.cpp:1806 msgid "Rotate 90° CW" -msgstr "旋轉 90° 順時鐘" +msgstr "旋轉 90° 順時鐘" -#: ../src/selection-chemistry.cpp:1771 ../src/seltrans.cpp:483 +#: ../src/selection-chemistry.cpp:1827 ../src/seltrans.cpp:483 #: ../src/ui/dialog/transformation.cpp:894 msgid "Rotate" msgstr "旋轉" -#: ../src/selection-chemistry.cpp:2142 +#: ../src/selection-chemistry.cpp:2214 msgid "Rotate by pixels" msgstr "依照像素旋轉" -#: ../src/selection-chemistry.cpp:2172 ../src/seltrans.cpp:480 +#: ../src/selection-chemistry.cpp:2244 ../src/seltrans.cpp:480 #: ../src/ui/dialog/transformation.cpp:869 #: ../share/extensions/interp_att_g.inx.h:12 msgid "Scale" msgstr "比例" -#: ../src/selection-chemistry.cpp:2197 +#: ../src/selection-chemistry.cpp:2269 msgid "Scale by whole factor" msgstr "依照整體係數縮放" -#: ../src/selection-chemistry.cpp:2212 +#: ../src/selection-chemistry.cpp:2284 msgid "Move vertically" msgstr "垂直移動" -#: ../src/selection-chemistry.cpp:2215 +#: ../src/selection-chemistry.cpp:2287 msgid "Move horizontally" msgstr "水平移動" -#: ../src/selection-chemistry.cpp:2218 ../src/selection-chemistry.cpp:2244 +#: ../src/selection-chemistry.cpp:2290 ../src/selection-chemistry.cpp:2316 #: ../src/seltrans.cpp:477 ../src/ui/dialog/transformation.cpp:807 msgid "Move" msgstr "移動" -#: ../src/selection-chemistry.cpp:2238 +#: ../src/selection-chemistry.cpp:2310 msgid "Move vertically by pixels" msgstr "垂直移動,單位為像素" -#: ../src/selection-chemistry.cpp:2241 +#: ../src/selection-chemistry.cpp:2313 msgid "Move horizontally by pixels" msgstr "水平移動,單位為像素" -#: ../src/selection-chemistry.cpp:2373 +#: ../src/selection-chemistry.cpp:2445 msgid "The selection has no applied path effect." msgstr "此選取區無套用的路徑特效。" -#: ../src/selection-chemistry.cpp:2542 ../src/ui/dialog/clonetiler.cpp:2218 +#: ../src/selection-chemistry.cpp:2617 ../src/ui/dialog/clonetiler.cpp:2218 msgid "Select an object to clone." msgstr "請選擇物件來進行仿製。" -#: ../src/selection-chemistry.cpp:2578 +#: ../src/selection-chemistry.cpp:2653 msgctxt "Action" msgid "Clone" msgstr "仿製" -#: ../src/selection-chemistry.cpp:2594 +#: ../src/selection-chemistry.cpp:2669 msgid "Select clones to relink." msgstr "選擇要重新連結的仿製物件。" -#: ../src/selection-chemistry.cpp:2601 +#: ../src/selection-chemistry.cpp:2676 msgid "Copy an object to clipboard to relink clones to." msgstr "複製要重新連結仿製物件的物件到剪貼簿裡。" -#: ../src/selection-chemistry.cpp:2625 +#: ../src/selection-chemistry.cpp:2699 msgid "No clones to relink in the selection." msgstr "選取區中沒有可重新連結的仿製物件。" -#: ../src/selection-chemistry.cpp:2628 +#: ../src/selection-chemistry.cpp:2702 msgid "Relink clone" msgstr "重新連結仿製物件" -#: ../src/selection-chemistry.cpp:2642 +#: ../src/selection-chemistry.cpp:2716 msgid "Select clones to unlink." msgstr "選擇要取消連結的仿製物件。" -#: ../src/selection-chemistry.cpp:2696 +#: ../src/selection-chemistry.cpp:2772 msgid "No clones to unlink in the selection." msgstr "選取區中沒有可取消連結的仿製物件。" -#: ../src/selection-chemistry.cpp:2700 +#: ../src/selection-chemistry.cpp:2776 msgid "Unlink clone" msgstr "取消連結仿製物件" -#: ../src/selection-chemistry.cpp:2713 +#: ../src/selection-chemistry.cpp:2789 msgid "" "Select a clone to go to its original. Select a linked offset " "to go to its source. Select a text on path to go to the path. Select " @@ -10727,7 +12059,7 @@ msgstr "" "選擇要前往其原物件的仿製物件。選擇要前往其來源的連結偏移。選擇" "要前往該路徑的路徑文字。選擇要前往其文字框的流動文字。" -#: ../src/selection-chemistry.cpp:2746 +#: ../src/selection-chemistry.cpp:2837 msgid "" "Cannot find the object to select (orphaned clone, offset, textpath, " "flowed text?)" @@ -10735,132 +12067,130 @@ msgstr "" "無法找到選擇的物件 (可能是被遺棄的仿製物件﹑偏移﹑文字路徑﹑流動文" "字?)" -#: ../src/selection-chemistry.cpp:2752 +#: ../src/selection-chemistry.cpp:2843 msgid "" "The object you're trying to select is not visible (it is in <" "defs>)" msgstr "你正試著選取隱形的物件 (其位於 <defs> 中)" -#: ../src/selection-chemistry.cpp:2797 -msgid "Select one path to clone." -msgstr "請選取一個路徑進行仿製。" +#: ../src/selection-chemistry.cpp:2928 +msgid "Select path(s) to fill." +msgstr "選取要填入的路徑。" -#: ../src/selection-chemistry.cpp:2801 -msgid "Select one path to clone." -msgstr "請選取路徑來進行仿製。" - -#: ../src/selection-chemistry.cpp:2857 +#: ../src/selection-chemistry.cpp:2946 msgid "Select object(s) to convert to marker." msgstr "選擇要轉成標記的物件。" -#: ../src/selection-chemistry.cpp:2924 +#: ../src/selection-chemistry.cpp:3021 msgid "Objects to marker" msgstr "物件轉成標記" -#: ../src/selection-chemistry.cpp:2948 +#: ../src/selection-chemistry.cpp:3046 msgid "Select object(s) to convert to guides." msgstr "選擇要轉成參考線的物件。" -#: ../src/selection-chemistry.cpp:2971 +#: ../src/selection-chemistry.cpp:3069 msgid "Objects to guides" msgstr "物件轉成參考線" -#: ../src/selection-chemistry.cpp:3007 -#, fuzzy +#: ../src/selection-chemistry.cpp:3105 msgid "Select objects to convert to symbol." -msgstr "選擇要轉成標記的物件。" +msgstr "選取要轉換成符號的物件。" -#: ../src/selection-chemistry.cpp:3113 +#: ../src/selection-chemistry.cpp:3211 msgid "Group to symbol" -msgstr "" +msgstr "群組轉成符號" -#: ../src/selection-chemistry.cpp:3132 -#, fuzzy +#: ../src/selection-chemistry.cpp:3230 msgid "Select a symbol to extract objects from." -msgstr "選擇要從其中提取物件的圖樣填充物件。" +msgstr "選取一個符號從裡面提取物件。" -#: ../src/selection-chemistry.cpp:3141 +#: ../src/selection-chemistry.cpp:3239 msgid "Select only one symbol in Symbol dialog to convert to group." -msgstr "" +msgstr "只在符號對話窗中選取一個要轉換成群組的符號。" -#: ../src/selection-chemistry.cpp:3199 +#: ../src/selection-chemistry.cpp:3297 msgid "Group from symbol" -msgstr "" +msgstr "從符號轉成群組" -#: ../src/selection-chemistry.cpp:3217 +#: ../src/selection-chemistry.cpp:3315 msgid "Select object(s) to convert to pattern." msgstr "選擇要轉成圖樣的物件。" -#: ../src/selection-chemistry.cpp:3307 +#: ../src/selection-chemistry.cpp:3414 msgid "Objects to pattern" msgstr "物件轉成圖樣" -#: ../src/selection-chemistry.cpp:3323 +#: ../src/selection-chemistry.cpp:3430 msgid "Select an object with pattern fill to extract objects from." msgstr "選擇要從其中提取物件的圖樣填充物件。" -#: ../src/selection-chemistry.cpp:3378 +#: ../src/selection-chemistry.cpp:3491 msgid "No pattern fills in the selection." msgstr "選取區中沒有圖樣填充。" -#: ../src/selection-chemistry.cpp:3381 +#: ../src/selection-chemistry.cpp:3494 msgid "Pattern to objects" msgstr "圖樣轉成物件" -#: ../src/selection-chemistry.cpp:3472 +#: ../src/selection-chemistry.cpp:3585 msgid "Select object(s) to make a bitmap copy." msgstr "選擇要建立點陣圖複製物件的物件。" -#: ../src/selection-chemistry.cpp:3476 +#: ../src/selection-chemistry.cpp:3589 msgid "Rendering bitmap..." -msgstr "正在潤算點陣圖..." +msgstr "繪算點陣圖中..." -#: ../src/selection-chemistry.cpp:3655 +#: ../src/selection-chemistry.cpp:3776 msgid "Create bitmap" msgstr "建立點陣圖" -#: ../src/selection-chemistry.cpp:3687 +#: ../src/selection-chemistry.cpp:3801 ../src/selection-chemistry.cpp:3920 msgid "Select object(s) to create clippath or mask from." msgstr "選擇要從其中建立剪裁路徑或遮罩的物件。" -#: ../src/selection-chemistry.cpp:3690 +#: ../src/selection-chemistry.cpp:3894 +msgid "Create Clip Group" +msgstr "建立裁剪群組" + +#: ../src/selection-chemistry.cpp:3923 msgid "Select mask object and object(s) to apply clippath or mask to." msgstr "選擇遮罩物件和要套用剪裁路徑或遮罩的物件。" -#: ../src/selection-chemistry.cpp:3873 +#: ../src/selection-chemistry.cpp:4106 msgid "Set clipping path" msgstr "設定裁剪路徑" -#: ../src/selection-chemistry.cpp:3875 +#: ../src/selection-chemistry.cpp:4108 msgid "Set mask" msgstr "設定遮罩" -#: ../src/selection-chemistry.cpp:3890 +#: ../src/selection-chemistry.cpp:4123 msgid "Select object(s) to remove clippath or mask from." msgstr "選擇要移除剪裁路徑或遮罩的物件。" -#: ../src/selection-chemistry.cpp:4001 +#: ../src/selection-chemistry.cpp:4243 msgid "Release clipping path" msgstr "解除裁剪路徑" -#: ../src/selection-chemistry.cpp:4003 +#: ../src/selection-chemistry.cpp:4245 msgid "Release mask" msgstr "解除遮罩" -#: ../src/selection-chemistry.cpp:4022 +#: ../src/selection-chemistry.cpp:4264 msgid "Select object(s) to fit canvas to." msgstr "選擇要縮放成畫布大小的物件。" #. Fit Page -#: ../src/selection-chemistry.cpp:4042 ../src/verbs.cpp:2905 +#: ../src/selection-chemistry.cpp:4284 ../src/verbs.cpp:2996 msgid "Fit Page to Selection" msgstr "將頁面調整成選取區大小" -#: ../src/selection-chemistry.cpp:4071 ../src/verbs.cpp:2907 +#: ../src/selection-chemistry.cpp:4313 ../src/verbs.cpp:2998 msgid "Fit Page to Drawing" msgstr "將頁面調整成繪圖大小" -#: ../src/selection-chemistry.cpp:4092 ../src/verbs.cpp:2909 +#: ../src/selection-chemistry.cpp:4334 ../src/verbs.cpp:3000 msgid "Fit Page to Selection or Drawing" msgstr "將頁面調整成選取區或繪圖大小" @@ -10894,9 +12224,8 @@ msgid " in %s" msgstr " 在 %s" #: ../src/selection-describer.cpp:167 -#, fuzzy msgid " hidden in definitions" -msgstr "避免漸層定義的共用" +msgstr " 在定義中隱藏" #: ../src/selection-describer.cpp:169 #, c-format @@ -10904,32 +12233,31 @@ msgid " in group %s (%s)" msgstr " 在群組 %s (%s)" #: ../src/selection-describer.cpp:171 -#, fuzzy, c-format +#, c-format msgid " in unnamed group (%s)" -msgstr " 在群組 %s (%s)" +msgstr " 在未命名的群組 (%s)" #: ../src/selection-describer.cpp:173 -#, fuzzy, c-format +#, c-format msgid " in %i parent (%s)" msgid_plural " in %i parents (%s)" -msgstr[0] " 在%i 上層 (%s)" -msgstr[1] " 在%i 上層 (%s)" +msgstr[0] " 在%i 上一層 (%s)" +msgstr[1] " 在%i 上一層 (%s)" #: ../src/selection-describer.cpp:176 -#, fuzzy, c-format +#, c-format msgid " in %i layer" msgid_plural " in %i layers" msgstr[0] " 在%i 圖層" msgstr[1] " 在%i 圖層" #: ../src/selection-describer.cpp:187 -#, fuzzy msgid "Convert symbol to group to edit" -msgstr "將邊框轉成路徑" +msgstr "將符號轉換成群組進行編輯" #: ../src/selection-describer.cpp:191 msgid "Remove from symbols tray to edit symbol" -msgstr "" +msgstr "從符號系統匣中移除以編輯符號" #: ../src/selection-describer.cpp:195 msgid "Use Shift+D to look up original" @@ -10944,18 +12272,18 @@ msgid "Use Shift+D to look up frame" msgstr "使用 Shift+D 找尋訊框" #: ../src/selection-describer.cpp:215 -#, fuzzy, c-format +#, c-format msgid "%i objects selected of type %s" msgid_plural "%i objects selected of types %s" -msgstr[0] "已選擇 %i 個物件" -msgstr[1] "已選擇 %i 個物件" +msgstr[0] "已選擇類型 %s 的 %i 個物件" +msgstr[1] "已選擇類型 %s 的 %i 個物件" #: ../src/selection-describer.cpp:225 -#, fuzzy, c-format +#, c-format msgid "; %d filtered object " msgid_plural "; %d filtered objects " -msgstr[0] "%s; 已套用濾鏡" -msgstr[1] "%s; 已套用濾鏡" +msgstr[0] "; %d 個套用濾鏡的物件 " +msgstr[1] "; %d 個套用濾鏡的物件 " #: ../src/seltrans-handles.cpp:9 msgid "" @@ -11020,24 +12348,24 @@ msgstr "縮放:%0.2f%% x %0.2f%%; 按著 Ctrl 可鎖定比例" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) -#: ../src/seltrans.cpp:1192 +#: ../src/seltrans.cpp:1199 #, c-format msgid "Skew: %0.2f°; with Ctrl to snap angle" msgstr "傾斜:%0.2f°;按著 Ctrl 可貼齊角度" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) -#: ../src/seltrans.cpp:1267 +#: ../src/seltrans.cpp:1274 #, c-format msgid "Rotate: %0.2f°; with Ctrl to snap angle" msgstr "旋轉:%0.2f°;按著 Ctrl 可貼齊角度" -#: ../src/seltrans.cpp:1304 +#: ../src/seltrans.cpp:1311 #, c-format msgid "Move center to %s, %s" msgstr "將中心點移動到 %s, %s" -#: ../src/seltrans.cpp:1458 +#: ../src/seltrans.cpp:1465 #, c-format msgid "" "Move by %s, %s; with Ctrl to restrict to horizontal/vertical; " @@ -11047,9 +12375,9 @@ msgstr "" "Shift 可停用貼齊" #: ../src/shortcuts.cpp:226 -#, fuzzy, c-format +#, c-format msgid "Keyboard directory (%s) is unavailable." -msgstr "調色盤目錄 (%s) 無法使用。" +msgstr "鍵盤目錄 (%s) 無法使用。" #: ../src/shortcuts.cpp:337 ../src/ui/dialog/export.cpp:1299 #: ../src/ui/dialog/export.cpp:1333 @@ -11057,44 +12385,39 @@ msgid "Select a filename for exporting" msgstr "選擇要匯出的檔名" #: ../src/shortcuts.cpp:370 -#, fuzzy msgid "Select a file to import" msgstr "選擇要匯入的檔案" #: ../src/sp-anchor.cpp:125 #, c-format msgid "to %s" -msgstr "" +msgstr "到 %s" #: ../src/sp-anchor.cpp:129 -#, fuzzy msgid "without URI" -msgstr "連結不含 URI" +msgstr "不含 URI" -#: ../src/sp-ellipse.cpp:374 -#, fuzzy +#: ../src/sp-ellipse.cpp:373 msgid "Segment" -msgstr "直線線段" +msgstr "線段" -#: ../src/sp-ellipse.cpp:376 -#, fuzzy +#: ../src/sp-ellipse.cpp:375 msgid "Arc" -msgstr "阿拉伯文" +msgstr "弧" #. Ellipse -#: ../src/sp-ellipse.cpp:379 ../src/sp-ellipse.cpp:386 -#: ../src/ui/dialog/inkscape-preferences.cpp:403 -#: ../src/widgets/pencil-toolbar.cpp:158 +#: ../src/sp-ellipse.cpp:378 ../src/sp-ellipse.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:405 +#: ../src/widgets/pencil-toolbar.cpp:163 msgid "Ellipse" msgstr "橢圓形" -#: ../src/sp-ellipse.cpp:383 +#: ../src/sp-ellipse.cpp:382 msgid "Circle" msgstr "圓形" #. TRANSLATORS: "Flow region" is an area where text is allowed to flow #: ../src/sp-flowregion.cpp:192 -#, fuzzy msgid "Flow Region" msgstr "流動區域" @@ -11103,110 +12426,111 @@ msgstr "流動區域" #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegion-elem and #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegionExclude-elem. #: ../src/sp-flowregion.cpp:342 -#, fuzzy msgid "Flow Excluded Region" msgstr "流動排除區域" #: ../src/sp-flowtext.cpp:289 -#, fuzzy msgid "Flowed Text" msgstr "流動文字" #: ../src/sp-flowtext.cpp:291 -#, fuzzy msgid "Linked Flowed Text" -msgstr "流動文字" +msgstr "連結式流動文字" -#: ../src/sp-flowtext.cpp:298 ../src/sp-text.cpp:353 +#: ../src/sp-flowtext.cpp:298 ../src/sp-text.cpp:371 #: ../src/ui/tools/text-tool.cpp:1566 msgid " [truncated]" msgstr " [已截斷]" #: ../src/sp-flowtext.cpp:300 -#, fuzzy, c-format +#, c-format msgid "(%d character%s)" msgid_plural "(%d characters%s)" -msgstr[0] "萬國碼字元:" -msgstr[1] "萬國碼字元:" +msgstr[0] "(%d 個字元%s)" +msgstr[1] "(%d 個字元%s)" -#: ../src/sp-guide.cpp:303 +#: ../src/sp-guide.cpp:225 msgid "Create Guides Around the Page" msgstr "在頁面周圍建立參考線" -#: ../src/sp-guide.cpp:315 ../src/verbs.cpp:2470 +#: ../src/sp-guide.cpp:237 ../src/verbs.cpp:2553 msgid "Delete All Guides" msgstr "刪除全部參考線" #. Guide has probably been deleted and no longer has an attached namedview. -#: ../src/sp-guide.cpp:475 +#: ../src/sp-guide.cpp:407 msgid "Deleted" msgstr "已刪除" -#: ../src/sp-guide.cpp:484 +#: ../src/sp-guide.cpp:416 msgid "" "Shift+drag to rotate, Ctrl+drag to move origin, Del to " "delete" msgstr "Shift+拖曳可旋轉,Ctrl+拖曳可移動原點,Del 可刪除" -#: ../src/sp-guide.cpp:488 +#: ../src/sp-guide.cpp:420 #, c-format msgid "vertical, at %s" msgstr "垂直,位於 %s" -#: ../src/sp-guide.cpp:491 +#: ../src/sp-guide.cpp:423 #, c-format msgid "horizontal, at %s" msgstr "水平,位於 %s" -#: ../src/sp-guide.cpp:496 +#: ../src/sp-guide.cpp:428 #, c-format msgid "at %d degrees, through (%s,%s)" msgstr "於 %d 度,經過 (%s,%s)" -#: ../src/sp-image.cpp:525 +#: ../src/sp-image.cpp:526 msgid "embedded" msgstr "內嵌" -#: ../src/sp-image.cpp:533 -#, fuzzy, c-format +#: ../src/sp-image.cpp:534 +#, c-format msgid "[bad reference]: %s" -msgstr "星形偏好設定" +msgstr "[不良的參考]: %s" -#: ../src/sp-image.cpp:534 -#, fuzzy, c-format +#: ../src/sp-image.cpp:535 +#, c-format msgid "%d × %d: %s" -msgstr "圖片 %d × %d: %s" +msgstr "%d × %d: %s" -#: ../src/sp-item-group.cpp:335 ../src/sp-switch.cpp:82 -#, fuzzy, c-format +#: ../src/sp-item-group.cpp:327 +msgid "Group" +msgstr "群組" + +#: ../src/sp-item-group.cpp:333 ../src/sp-switch.cpp:82 +#, c-format msgid "of %d object" -msgstr "%d 個物件的群組" +msgstr "屬於 %d 個物件" -#: ../src/sp-item-group.cpp:335 ../src/sp-switch.cpp:82 -#, fuzzy, c-format +#: ../src/sp-item-group.cpp:333 ../src/sp-switch.cpp:82 +#, c-format msgid "of %d objects" -msgstr "%d 個物件的群組" +msgstr "屬於 %d 個物件" -#: ../src/sp-item.cpp:961 ../src/verbs.cpp:213 +#: ../src/sp-item.cpp:1075 ../src/verbs.cpp:214 msgid "Object" msgstr "物件" -#: ../src/sp-item.cpp:978 +#: ../src/sp-item.cpp:1092 #, c-format msgid "%s; clipped" msgstr "%s; 已套用裁剪" -#: ../src/sp-item.cpp:984 +#: ../src/sp-item.cpp:1098 #, c-format msgid "%s; masked" msgstr "%s; 已套用遮罩" -#: ../src/sp-item.cpp:994 +#: ../src/sp-item.cpp:1108 #, c-format msgid "%s; filtered (%s)" msgstr "%s; 已套用濾鏡 (%s)" -#: ../src/sp-item.cpp:996 +#: ../src/sp-item.cpp:1110 #, c-format msgid "%s; filtered" msgstr "%s; 已套用濾鏡" @@ -11215,25 +12539,23 @@ msgstr "%s; 已套用濾鏡" msgid "Line" msgstr "線" -#: ../src/sp-lpe-item.cpp:262 +#: ../src/sp-lpe-item.cpp:261 msgid "An exception occurred during execution of the Path Effect." msgstr "執行路徑特效期間發生異常。" #: ../src/sp-offset.cpp:339 -#, fuzzy msgid "Linked Offset" -msgstr "連結偏移(_L)" +msgstr "連結偏移" #: ../src/sp-offset.cpp:341 -#, fuzzy msgid "Dynamic Offset" -msgstr "動態偏移(_Y)" +msgstr "動態偏移" #. TRANSLATORS COMMENT: %s is either "outset" or "inset" depending on sign #: ../src/sp-offset.cpp:347 #, c-format msgid "%s by %f pt" -msgstr "" +msgstr "以 %f pt %s" #: ../src/sp-offset.cpp:348 msgid "outset" @@ -11248,19 +12570,19 @@ msgid "Path" msgstr "路徑" #: ../src/sp-path.cpp:95 -#, fuzzy, c-format +#, c-format msgid ", path effect: %s" -msgstr "加入路徑特效" +msgstr ",路徑特效:%s" #: ../src/sp-path.cpp:98 -#, fuzzy, c-format +#, c-format msgid "%i node%s" -msgstr "合併節點" +msgstr "%i 節點%s" #: ../src/sp-path.cpp:98 -#, fuzzy, c-format +#, c-format msgid "%i nodes%s" -msgstr "合併節點" +msgstr "%i 節點%s" #: ../src/sp-polygon.cpp:185 msgid "Polygon" @@ -11271,12 +12593,12 @@ msgid "Polyline" msgstr "折線" #. Rectangle -#: ../src/sp-rect.cpp:163 ../src/ui/dialog/inkscape-preferences.cpp:393 +#: ../src/sp-rect.cpp:163 ../src/ui/dialog/inkscape-preferences.cpp:395 msgid "Rectangle" msgstr "矩形" #. Spiral -#: ../src/sp-spiral.cpp:230 ../src/ui/dialog/inkscape-preferences.cpp:411 +#: ../src/sp-spiral.cpp:230 ../src/ui/dialog/inkscape-preferences.cpp:413 #: ../share/extensions/gcodetools_area.inx.h:11 msgid "Spiral" msgstr "螺旋" @@ -11284,17 +12606,17 @@ msgstr "螺旋" #. TRANSLATORS: since turn count isn't an integer, please adjust the #. string as needed to deal with an localized plural forms. #: ../src/sp-spiral.cpp:236 -#, fuzzy, c-format +#, c-format msgid "with %3f turns" -msgstr "螺旋形有 %3f 個圈" +msgstr "有 %3f 個圈" #. Star -#: ../src/sp-star.cpp:256 ../src/ui/dialog/inkscape-preferences.cpp:407 -#: ../src/widgets/star-toolbar.cpp:469 +#: ../src/sp-star.cpp:256 ../src/ui/dialog/inkscape-preferences.cpp:409 +#: ../src/widgets/star-toolbar.cpp:471 msgid "Star" msgstr "星形" -#: ../src/sp-star.cpp:257 ../src/widgets/star-toolbar.cpp:462 +#: ../src/sp-star.cpp:257 ../src/widgets/star-toolbar.cpp:464 msgid "Polygon" msgstr "多邊形" @@ -11302,20 +12624,20 @@ msgstr "多邊形" #. make calls to ngettext because the pluralization may be different #. for various numbers >=3. The singular form is used as the index. #: ../src/sp-star.cpp:264 -#, fuzzy, c-format +#, c-format msgid "with %d vertex" -msgstr "星形具備 %d 個頂點" +msgstr "具備 %d 個頂點" #: ../src/sp-star.cpp:264 -#, fuzzy, c-format +#, c-format msgid "with %d vertices" -msgstr "星形具備 %d 個頂點" +msgstr "具備 %d 個頂點" #: ../src/sp-switch.cpp:76 msgid "Conditional Group" -msgstr "" +msgstr "條件群組" -#: ../src/sp-text.cpp:326 ../src/verbs.cpp:328 +#: ../src/sp-text.cpp:355 ../src/verbs.cpp:348 #: ../share/extensions/lorem_ipsum.inx.h:8 #: ../share/extensions/replace_font.inx.h:11 #: ../share/extensions/split.inx.h:10 ../share/extensions/text_braille.inx.h:2 @@ -11330,25 +12652,19 @@ msgstr "" msgid "Text" msgstr "文字" -#. TRANSLATORS: For description of font with no name. -#: ../src/sp-text.cpp:343 -msgid "<no name found>" -msgstr "<找不到名稱>" - -#: ../src/sp-text.cpp:357 -#, fuzzy, c-format +#: ../src/sp-text.cpp:375 +#, c-format msgid "on path%s (%s, %s)" -msgstr "路徑文字%s (%s, %s)" +msgstr "文字路徑%s (%s, %s)" -#: ../src/sp-text.cpp:358 -#, fuzzy, c-format +#: ../src/sp-text.cpp:376 +#, c-format msgid "%s (%s, %s)" -msgstr "文字%s (%s, %s)" +msgstr "%s (%s, %s)" #: ../src/sp-tref.cpp:230 -#, fuzzy msgid "Cloned Character Data" -msgstr "仿製的字元資料%s%s" +msgstr "仿製的字元資料" #: ../src/sp-tref.cpp:246 msgid " from " @@ -11356,32 +12672,28 @@ msgstr " 來自 " #: ../src/sp-tref.cpp:252 ../src/sp-use.cpp:262 msgid "[orphaned]" -msgstr "" +msgstr "[被遺棄]" #: ../src/sp-tspan.cpp:217 -#, fuzzy msgid "Text Span" -msgstr "文字錨點" +msgstr "文字不換行區塊" #: ../src/sp-use.cpp:227 -#, fuzzy msgid "Symbol" -msgstr "高棉符號" +msgstr "符號" #: ../src/sp-use.cpp:230 -#, fuzzy msgid "Clone" msgstr "仿製" #: ../src/sp-use.cpp:237 ../src/sp-use.cpp:239 #, c-format msgid "called %s" -msgstr "" +msgstr "名稱為 %s" #: ../src/sp-use.cpp:239 -#, fuzzy msgid "Unnamed Symbol" -msgstr "高棉符號" +msgstr "未命名的符號" #. TRANSLATORS: Used for statusbar description for long chains: #. * "Clone of: Clone of: ... in Layer 1". @@ -11390,9 +12702,9 @@ msgid "..." msgstr "..." #: ../src/sp-use.cpp:257 -#, fuzzy, c-format +#, c-format msgid "of: %s" -msgstr "錯誤:%s" +msgstr "屬於:%s" #: ../src/splivarot.cpp:70 ../src/splivarot.cpp:76 msgid "Union" @@ -11427,8 +12739,7 @@ msgstr "請選擇剛好兩條路徑來執行差集﹑分割或剪切路 msgid "" "Unable to determine the z-order of the objects selected for " "difference, XOR, division, or path cut." -msgstr "" -"無法決定選取物件的排列順序來進行差集﹑互斥 (XOR)﹑分割或剪切路徑。" +msgstr "無法決定選取物件的排列順序來進行差集﹑互斥 (XOR)﹑分割或剪切路徑。" #: ../src/splivarot.cpp:407 msgid "" @@ -11525,7 +12836,7 @@ msgstr "你無法在這個版本中將文字填入矩形。請先將矩形轉換 msgid "The flowed text(s) must be visible in order to be put on a path." msgstr "流動文字必須是可見的以便填入路徑。" -#: ../src/text-chemistry.cpp:185 ../src/verbs.cpp:2492 +#: ../src/text-chemistry.cpp:185 ../src/verbs.cpp:2575 msgid "Put text on path" msgstr "文字填入路徑" @@ -11537,7 +12848,7 @@ msgstr "選擇要從路徑移除的文字與路徑。" msgid "No texts-on-paths in the selection." msgstr "選取區中沒有路徑文字。" -#: ../src/text-chemistry.cpp:221 ../src/verbs.cpp:2494 +#: ../src/text-chemistry.cpp:221 ../src/verbs.cpp:2577 msgid "Remove text from path" msgstr "從路徑移除文字" @@ -11587,158 +12898,6 @@ msgstr "選取區中沒有可轉換的流動文字。" msgid "You cannot edit cloned character data." msgstr "你無法編輯仿製的字元資料。" -#: ../src/tools-switch.cpp:91 -#, fuzzy -msgid "" -"Click to Select and Transform objects, Drag to select many " -"objects." -msgstr "點擊可選取節點,拖曳可重新排列。" - -#: ../src/tools-switch.cpp:92 -#, fuzzy -msgid "Modify selected path points (nodes) directly." -msgstr "簡化選取的路徑 (移除多餘節點)" - -#: ../src/tools-switch.cpp:93 -msgid "To tweak a path by pushing, select it and drag over it." -msgstr "用推壓方式微調路徑,選取路徑並在上方拖曳。" - -#: ../src/tools-switch.cpp:94 -#, fuzzy -msgid "" -"Drag, click or click and scroll to spray the selected " -"objects." -msgstr "拖曳點擊滾動滑鼠滾輪來噴灑選取的物件。" - -#: ../src/tools-switch.cpp:95 -msgid "" -"Drag to create a rectangle. Drag controls to round corners and " -"resize. Click to select." -msgstr "" -"拖曳可建立矩形。拖曳控制點可調整圓角及大小。點擊可選取。" - -#: ../src/tools-switch.cpp:96 -msgid "" -"Drag to create a 3D box. Drag controls to resize in " -"perspective. Click to select (with Ctrl+Alt for single faces)." -msgstr "" -"拖曳可建立立方體。拖曳控制點可用透視角度來調整大小。點擊" -"可選取 (按著 Ctrl+Alt 可選取單一個面)。" - -#: ../src/tools-switch.cpp:97 -msgid "" -"Drag to create an ellipse. Drag controls to make an arc or " -"segment. Click to select." -msgstr "" -"拖曳可建立橢圓形。拖曳控制點可建立弧形或線段。點擊可選" -"取。" - -#: ../src/tools-switch.cpp:98 -msgid "" -"Drag to create a star. Drag controls to edit the star shape. " -"Click to select." -msgstr "" -"拖曳可建立星形。拖曳控制點可編輯星形的形狀。點擊可選取。" - -#: ../src/tools-switch.cpp:99 -msgid "" -"Drag to create a spiral. Drag controls to edit the spiral " -"shape. Click to select." -msgstr "" -"拖曳可建立螺旋形。拖曳控制點可編輯螺旋的形狀。點擊可選" -"取。" - -#: ../src/tools-switch.cpp:100 -msgid "" -"Drag to create a freehand line. Shift appends to selected " -"path, Alt activates sketch mode." -msgstr "" -"拖曳可建立手繪線。按 Shift 可添加到選擇的路徑,按 Alt 可" -"啟動草圖模式。" - -#: ../src/tools-switch.cpp:101 -msgid "" -"Click or click and drag to start a path; with Shift to " -"append to selected path. Ctrl+click to create single dots (straight " -"line modes only)." -msgstr "" -"點擊點擊並拖曳可開始一條路徑;按著 Shift 可添加到所選" -"取的路徑。Ctrl + 點擊 可建立單一個點 (只限直線模式)。" - -#: ../src/tools-switch.cpp:102 -msgid "" -"Drag to draw a calligraphic stroke; with Ctrl to track a guide " -"path. Arrow keys adjust width (left/right) and angle (up/down)." -msgstr "" -"拖曳可畫出書法筆畫;按著 Ctrl 可描繪參考線路徑。方向鍵可" -"調整寬度 (左/右) 和角度 (上/下)。" - -#: ../src/tools-switch.cpp:103 ../src/ui/tools/text-tool.cpp:1593 -msgid "" -"Click to select or create text, drag to create flowed text; " -"then type." -msgstr "點擊可選取或建立文字,拖曳可建立流動文字;然後輸入文字。" - -#: ../src/tools-switch.cpp:104 -msgid "" -"Drag or double click to create a gradient on selected objects, " -"drag handles to adjust gradients." -msgstr "" -"拖曳點擊兩下可在選擇的物件上建立漸層,拖曳控制點可調整" -"漸層。" - -#: ../src/tools-switch.cpp:105 -#, fuzzy -msgid "" -"Drag or double click to create a mesh on selected objects, " -"drag handles to adjust meshes." -msgstr "" -"拖曳點擊兩下可在選擇的物件上建立漸層,拖曳控制點可調整" -"漸層。" - -#: ../src/tools-switch.cpp:106 -msgid "" -"Click or drag around an area to zoom in, Shift+click to " -"zoom out." -msgstr "" -"點擊在區域四周拖曳可放大畫面, Shift+點擊 可以縮小畫" -"面。" - -#: ../src/tools-switch.cpp:107 -msgid "Drag to measure the dimensions of objects." -msgstr "拖曳來測量物件的尺寸。" - -#: ../src/tools-switch.cpp:108 ../src/ui/tools/dropper-tool.cpp:285 -msgid "" -"Click to set fill, Shift+click to set stroke; drag to " -"average color in area; with Alt to pick inverse color; Ctrl+C " -"to copy the color under mouse to clipboard" -msgstr "" -"點擊可設定填充,Shift+click 可設定邊框;拖曳可設定區域中" -"的平均顏色;按著 Alt 可點取反相顏色;Ctrl+C 可將滑鼠下方的顏色" -"複製到剪貼簿" - -#: ../src/tools-switch.cpp:109 -msgid "Click and drag between shapes to create a connector." -msgstr "在形狀之間點擊和拖曳可建立連接線。" - -#: ../src/tools-switch.cpp:110 -msgid "" -"Click to paint a bounded area, Shift+click to union the new " -"fill with the current selection, Ctrl+click to change the clicked " -"object's fill and stroke to the current setting." -msgstr "" -"點擊 可塗繪一個封閉區域,Shift+點擊 可將新填塗合併到目前的選取" -"區, Ctrl+點擊 可將被點擊物件的填塗和邊框變為目前的設定值。" - -#: ../src/tools-switch.cpp:111 -msgid "Drag to erase." -msgstr "拖曳可擦除。" - -#: ../src/tools-switch.cpp:112 -msgid "Choose a subtool from the toolbar" -msgstr "從此工具列選擇附屬工具" - #: ../src/trace/potrace/inkscape-potrace.cpp:512 #: ../src/trace/potrace/inkscape-potrace.cpp:575 msgid "Trace: %1. %2 nodes" @@ -11790,41 +12949,41 @@ msgid "Trace: Done. %ld nodes created" msgstr "描繪:完成。已建立 %ld 個節點" #. check whether something is selected -#: ../src/ui/clipboard.cpp:261 +#: ../src/ui/clipboard.cpp:262 msgid "Nothing was copied." msgstr "沒有複製任何東西。" -#: ../src/ui/clipboard.cpp:374 ../src/ui/clipboard.cpp:583 -#: ../src/ui/clipboard.cpp:612 +#: ../src/ui/clipboard.cpp:375 ../src/ui/clipboard.cpp:587 +#: ../src/ui/clipboard.cpp:616 msgid "Nothing on the clipboard." msgstr "剪貼簿裡沒有任何東西。" -#: ../src/ui/clipboard.cpp:432 +#: ../src/ui/clipboard.cpp:433 msgid "Select object(s) to paste style to." msgstr "選擇要貼上樣式的物件。" -#: ../src/ui/clipboard.cpp:443 ../src/ui/clipboard.cpp:460 +#: ../src/ui/clipboard.cpp:444 ../src/ui/clipboard.cpp:461 msgid "No style on the clipboard." msgstr "剪貼簿裡沒有樣式。" -#: ../src/ui/clipboard.cpp:485 +#: ../src/ui/clipboard.cpp:486 msgid "Select object(s) to paste size to." msgstr "選擇要貼上尺寸的物件。" -#: ../src/ui/clipboard.cpp:492 +#: ../src/ui/clipboard.cpp:493 msgid "No size on the clipboard." msgstr "剪貼簿裡沒有尺寸。" -#: ../src/ui/clipboard.cpp:545 +#: ../src/ui/clipboard.cpp:549 msgid "Select object(s) to paste live path effect to." msgstr "選擇要貼上即時路徑特效的物件。" #. no_effect: -#: ../src/ui/clipboard.cpp:570 +#: ../src/ui/clipboard.cpp:574 msgid "No effect on the clipboard." msgstr "剪貼簿裡沒有特效。" -#: ../src/ui/clipboard.cpp:589 ../src/ui/clipboard.cpp:626 +#: ../src/ui/clipboard.cpp:593 ../src/ui/clipboard.cpp:630 msgid "Clipboard does not contain a path." msgstr "剪貼簿沒有路徑。" @@ -11868,7 +13027,7 @@ msgstr "about.svg" #. TRANSLATORS: Put here your name (and other national contributors') #. one per line in the form of: name surname (email). Use \n for newline. -#: ../src/ui/dialog/aboutbox.cpp:416 +#: ../src/ui/dialog/aboutbox.cpp:426 msgid "translator-credits" msgstr "" "趙惟倫 (william.chao@ossii.com.tw)\n" @@ -11955,53 +13114,53 @@ msgid "_Treat selection as group: " msgstr "將選取區視為群組(_T):" #. Align -#: ../src/ui/dialog/align-and-distribute.cpp:877 ../src/verbs.cpp:2937 -#: ../src/verbs.cpp:2938 +#: ../src/ui/dialog/align-and-distribute.cpp:877 ../src/verbs.cpp:3028 +#: ../src/verbs.cpp:3029 msgid "Align right edges of objects to the left edge of the anchor" msgstr "將物件的右邊對齊錨點的左邊" -#: ../src/ui/dialog/align-and-distribute.cpp:880 ../src/verbs.cpp:2939 -#: ../src/verbs.cpp:2940 +#: ../src/ui/dialog/align-and-distribute.cpp:880 ../src/verbs.cpp:3030 +#: ../src/verbs.cpp:3031 msgid "Align left edges" msgstr "對齊左邊" -#: ../src/ui/dialog/align-and-distribute.cpp:883 ../src/verbs.cpp:2941 -#: ../src/verbs.cpp:2942 +#: ../src/ui/dialog/align-and-distribute.cpp:883 ../src/verbs.cpp:3032 +#: ../src/verbs.cpp:3033 msgid "Center on vertical axis" msgstr "縱軸置中" -#: ../src/ui/dialog/align-and-distribute.cpp:886 ../src/verbs.cpp:2943 -#: ../src/verbs.cpp:2944 +#: ../src/ui/dialog/align-and-distribute.cpp:886 ../src/verbs.cpp:3034 +#: ../src/verbs.cpp:3035 msgid "Align right sides" msgstr "對齊右邊" -#: ../src/ui/dialog/align-and-distribute.cpp:889 ../src/verbs.cpp:2945 -#: ../src/verbs.cpp:2946 +#: ../src/ui/dialog/align-and-distribute.cpp:889 ../src/verbs.cpp:3036 +#: ../src/verbs.cpp:3037 msgid "Align left edges of objects to the right edge of the anchor" msgstr "將物件的左邊對齊錨點的右邊" -#: ../src/ui/dialog/align-and-distribute.cpp:892 ../src/verbs.cpp:2947 -#: ../src/verbs.cpp:2948 +#: ../src/ui/dialog/align-and-distribute.cpp:892 ../src/verbs.cpp:3038 +#: ../src/verbs.cpp:3039 msgid "Align bottom edges of objects to the top edge of the anchor" msgstr "將物件的底邊對齊錨點的頂邊" -#: ../src/ui/dialog/align-and-distribute.cpp:895 ../src/verbs.cpp:2949 -#: ../src/verbs.cpp:2950 +#: ../src/ui/dialog/align-and-distribute.cpp:895 ../src/verbs.cpp:3040 +#: ../src/verbs.cpp:3041 msgid "Align top edges" msgstr "對齊頂邊" -#: ../src/ui/dialog/align-and-distribute.cpp:898 ../src/verbs.cpp:2951 -#: ../src/verbs.cpp:2952 +#: ../src/ui/dialog/align-and-distribute.cpp:898 ../src/verbs.cpp:3042 +#: ../src/verbs.cpp:3043 msgid "Center on horizontal axis" msgstr "橫軸置中" -#: ../src/ui/dialog/align-and-distribute.cpp:901 ../src/verbs.cpp:2953 -#: ../src/verbs.cpp:2954 +#: ../src/ui/dialog/align-and-distribute.cpp:901 ../src/verbs.cpp:3044 +#: ../src/verbs.cpp:3045 msgid "Align bottom edges" msgstr "對齊底邊" -#: ../src/ui/dialog/align-and-distribute.cpp:904 ../src/verbs.cpp:2955 -#: ../src/verbs.cpp:2956 +#: ../src/ui/dialog/align-and-distribute.cpp:904 ../src/verbs.cpp:3046 +#: ../src/verbs.cpp:3047 msgid "Align top edges of objects to the bottom edge of the anchor" msgstr "將物件的頂邊對齊錨點的底邊" @@ -12118,15 +13277,13 @@ msgid "Smallest object" msgstr "最小物件" #: ../src/ui/dialog/align-and-distribute.cpp:1005 -#, fuzzy msgid "Selection Area" -msgstr "選擇範圍" +msgstr "選取範圍" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:40 #: ../src/ui/dialog/calligraphic-profile-rename.cpp:138 -#, fuzzy msgid "Edit profile" -msgstr "裝置描述檔:" +msgstr "編輯描述檔" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:53 msgid "Profile name:" @@ -12137,9 +13294,8 @@ msgid "Save" msgstr "儲存" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:134 -#, fuzzy msgid "Add profile" -msgstr "加入濾鏡" +msgstr "加入描述檔" #: ../src/ui/dialog/clonetiler.cpp:112 msgid "_Symmetry" @@ -12497,7 +13653,7 @@ msgstr "鋪排仿製物件的初始顏色" msgid "" "Initial color for clones (works only if the original has unset fill or " "stroke)" -msgstr "仿製物件的初始顏色 (只有原物件解除設定填充或邊框時才有用)" +msgstr "仿製物件的初始顏色 (需將原始物件填充或邊框設定為「取消塗繪」)" #: ../src/ui/dialog/clonetiler.cpp:682 msgid "H:" @@ -12571,15 +13727,15 @@ msgstr "對於每個仿製物件,都從它所在位置的繪圖中取得數值 #: ../src/ui/dialog/clonetiler.cpp:815 msgid "1. Pick from the drawing:" -msgstr "1. 從圖畫中取得:" +msgstr "1. 從圖畫中汲取:" #: ../src/ui/dialog/clonetiler.cpp:833 msgid "Pick the visible color and opacity" -msgstr "取得可見色彩與不透明度" +msgstr "汲取可見色彩與不透明度" #: ../src/ui/dialog/clonetiler.cpp:841 msgid "Pick the total accumulated opacity" -msgstr "取得整體累加的不透明度" +msgstr "汲取整體累加的不透明度" #: ../src/ui/dialog/clonetiler.cpp:848 msgid "R" @@ -12587,7 +13743,7 @@ msgstr "紅" #: ../src/ui/dialog/clonetiler.cpp:849 msgid "Pick the Red component of the color" -msgstr "取得色彩的紅色組成" +msgstr "汲取色彩的紅色組成" #: ../src/ui/dialog/clonetiler.cpp:856 msgid "G" @@ -12595,7 +13751,7 @@ msgstr "綠" #: ../src/ui/dialog/clonetiler.cpp:857 msgid "Pick the Green component of the color" -msgstr "取得色彩的綠色組成" +msgstr "汲取色彩的綠色組成" #: ../src/ui/dialog/clonetiler.cpp:864 msgid "B" @@ -12603,7 +13759,7 @@ msgstr "藍" #: ../src/ui/dialog/clonetiler.cpp:865 msgid "Pick the Blue component of the color" -msgstr "取得色彩的藍色組成" +msgstr "汲取色彩的藍色組成" #: ../src/ui/dialog/clonetiler.cpp:872 msgctxt "Clonetiler color hue" @@ -12612,7 +13768,7 @@ msgstr "色相" #: ../src/ui/dialog/clonetiler.cpp:873 msgid "Pick the hue of the color" -msgstr "取得色相" +msgstr "汲取色相" #: ../src/ui/dialog/clonetiler.cpp:880 msgctxt "Clonetiler color saturation" @@ -12621,7 +13777,7 @@ msgstr "飽和度" #: ../src/ui/dialog/clonetiler.cpp:881 msgid "Pick the saturation of the color" -msgstr "取得顏色飽和度" +msgstr "汲取顏色飽和度" #: ../src/ui/dialog/clonetiler.cpp:888 msgctxt "Clonetiler color lightness" @@ -12630,7 +13786,7 @@ msgstr "明度" #: ../src/ui/dialog/clonetiler.cpp:889 msgid "Pick the lightness of the color" -msgstr "取得顏色亮度" +msgstr "汲取顏色亮度" #: ../src/ui/dialog/clonetiler.cpp:899 msgid "2. Tweak the picked value:" @@ -12732,8 +13888,7 @@ msgstr "使用已儲存的鋪排大小和位置" msgid "" "Pretend that the size and position of the tile are the same as the last time " "you tiled it (if any), instead of using the current size" -msgstr "" -"假定鋪排的大小和位置跟上一次使用鋪排時相同 (如果有的話),而不是使用目前的大小" +msgstr "假定鋪排的大小和位置跟上一次使用鋪排時相同 (如果有的話),而不是使用目前的大小" #: ../src/ui/dialog/clonetiler.cpp:1238 msgid " _Create " @@ -12818,19 +13973,19 @@ msgstr "如果想要仿製多個物件,群組這些物件並仿製 msgid "Creating tiled clones..." msgstr "正在建立鋪排仿製物件..." -#: ../src/ui/dialog/clonetiler.cpp:2640 +#: ../src/ui/dialog/clonetiler.cpp:2645 msgid "Create tiled clones" msgstr "建立鋪排的仿製物件" -#: ../src/ui/dialog/clonetiler.cpp:2873 +#: ../src/ui/dialog/clonetiler.cpp:2878 msgid "Per row:" msgstr "每列:" -#: ../src/ui/dialog/clonetiler.cpp:2891 +#: ../src/ui/dialog/clonetiler.cpp:2896 msgid "Per column:" msgstr "每欄:" -#: ../src/ui/dialog/clonetiler.cpp:2899 +#: ../src/ui/dialog/clonetiler.cpp:2904 msgid "Randomize:" msgstr "隨機:" @@ -12860,11 +14015,11 @@ msgstr "設定為無邊框顏色" msgid "Set fill color to none" msgstr "設定為無填色" -#: ../src/ui/dialog/color-item.cpp:700 +#: ../src/ui/dialog/color-item.cpp:702 msgid "Set stroke color from swatch" msgstr "從色票設定邊框顏色" -#: ../src/ui/dialog/color-item.cpp:700 +#: ../src/ui/dialog/color-item.cpp:702 msgid "Set fill color from swatch" msgstr "從色票設定填色" @@ -12906,14 +14061,12 @@ msgstr "授權" #. --------------------------------------------------------------- #: ../src/ui/dialog/document-properties.cpp:111 -#, fuzzy msgid "Use antialiasing" -msgstr "反鋸齒:" +msgstr "使用反鋸齒" #: ../src/ui/dialog/document-properties.cpp:111 -#, fuzzy msgid "If unset, no antialiasing will be done on the drawing" -msgstr "如果設定,邊界會始終顯示在圖畫的最上層" +msgstr "如果取消設定,則圖形繪製不會使用反鋸齒" #: ../src/ui/dialog/document-properties.cpp:112 msgid "Show page _border" @@ -12940,15 +14093,14 @@ msgid "If set, page border shows a shadow on its right and lower side" msgstr "如果設定,頁面邊界會在右下邊緣顯示陰影" #: ../src/ui/dialog/document-properties.cpp:115 -#, fuzzy msgid "Back_ground color:" -msgstr "背景顏色:" +msgstr "背景顏色(_G):" #: ../src/ui/dialog/document-properties.cpp:115 msgid "" "Color of the page background. Note: transparency setting ignored while " "editing but used when exporting to bitmap." -msgstr "" +msgstr "頁面背景顏色。備註:編輯時會忽略透明度設定值,但匯出成點陣圖時會使用。" #: ../src/ui/dialog/document-properties.cpp:116 msgid "Border _color:" @@ -13132,7 +14284,7 @@ msgstr "移除選擇的格線。" msgid "Guides" msgstr "參考線" -#: ../src/ui/dialog/document-properties.cpp:156 ../src/verbs.cpp:2744 +#: ../src/ui/dialog/document-properties.cpp:156 ../src/verbs.cpp:2831 msgid "Snap" msgstr "貼齊" @@ -13149,9 +14301,8 @@ msgid "Page Size" msgstr "頁面尺寸" #: ../src/ui/dialog/document-properties.cpp:326 -#, fuzzy msgid "Display" -msgstr "平均" +msgstr "顯示" #: ../src/ui/dialog/document-properties.cpp:361 msgid "Guides" @@ -13177,7 +14328,7 @@ msgstr "其他" #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:498 ../src/verbs.cpp:2921 +#: ../src/ui/dialog/document-properties.cpp:498 ../src/verbs.cpp:3012 msgid "Link Color Profile" msgstr "連結色彩描述檔" @@ -13198,9 +14349,8 @@ msgid "Link Profile" msgstr "連結描述檔" #: ../src/ui/dialog/document-properties.cpp:626 -#, fuzzy msgid "Unlink Profile" -msgstr "連結描述檔" +msgstr "取消連結描述檔" #: ../src/ui/dialog/document-properties.cpp:710 msgid "Profile Name" @@ -13220,11 +14370,11 @@ msgstr "外部的腳本檔案:" #: ../src/ui/dialog/document-properties.cpp:754 msgid "Add the current file name or browse for a file" -msgstr "" +msgstr "加入目前檔案名稱或瀏覽檔案" #: ../src/ui/dialog/document-properties.cpp:763 #: ../src/ui/dialog/document-properties.cpp:852 -#: ../src/ui/widget/selected-style.cpp:339 +#: ../src/ui/widget/selected-style.cpp:356 msgid "Remove" msgstr "移除" @@ -13249,22 +14399,20 @@ msgid "Content:" msgstr "內容:" #: ../src/ui/dialog/document-properties.cpp:1045 -#, fuzzy msgid "_Save as default" -msgstr "設為預設(_D)" +msgstr "儲存成預設值(_S)" #: ../src/ui/dialog/document-properties.cpp:1046 msgid "Save this metadata as the default metadata" -msgstr "" +msgstr "將此中繼資料儲存為預設中繼資料" #: ../src/ui/dialog/document-properties.cpp:1047 -#, fuzzy msgid "Use _default" -msgstr "系統預設" +msgstr "使用預設值(_D)" #: ../src/ui/dialog/document-properties.cpp:1048 msgid "Use the previously saved default metadata here" -msgstr "" +msgstr "這裡使用上次儲存的預設中繼資料" #. inform the document, so we can undo #: ../src/ui/dialog/document-properties.cpp:1121 @@ -13272,9 +14420,8 @@ msgid "Add external script..." msgstr "加入外部腳本..." #: ../src/ui/dialog/document-properties.cpp:1160 -#, fuzzy msgid "Select a script to load" -msgstr "選取路徑或形狀" +msgstr "選擇要載入的腳本" #. inform the document, so we can undo #: ../src/ui/dialog/document-properties.cpp:1188 @@ -13309,20 +14456,19 @@ msgstr "定義的格線" msgid "Remove grid" msgstr "移除格線" -#: ../src/ui/dialog/document-properties.cpp:1756 -#, fuzzy +#: ../src/ui/dialog/document-properties.cpp:1761 msgid "Changed document unit" -msgstr "未命名文件 %d" +msgstr "變更的文件單位" -#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2796 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2883 msgid "_Page" msgstr "頁面(_P)" -#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2800 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2887 msgid "_Drawing" msgstr "繪圖部份(_D)" -#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2802 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2889 msgid "_Selection" msgstr "選擇範圍(_S)" @@ -13337,9 +14483,8 @@ msgid "Units:" msgstr "單位:" #: ../src/ui/dialog/export.cpp:172 -#, fuzzy msgid "_Export As..." -msgstr "匯出點陣圖(_E)..." +msgstr "匯出成(_E)..." #: ../src/ui/dialog/export.cpp:175 msgid "B_atch export all selected objects" @@ -13362,22 +14507,20 @@ msgid "In the exported image, hide all objects except those that are selected" msgstr "在已匯出的圖片中,隱藏所有未被選取的物件" #: ../src/ui/dialog/export.cpp:178 -#, fuzzy msgid "Close when complete" -msgstr "自動儲存完成。" +msgstr "完成時關閉" #: ../src/ui/dialog/export.cpp:178 msgid "Once the export completes, close this dialog" -msgstr "" +msgstr "一旦匯出完成,就關閉此對話窗" #: ../src/ui/dialog/export.cpp:180 msgid "_Export" msgstr "匯出(_E)" #: ../src/ui/dialog/export.cpp:198 -#, fuzzy msgid "Export area" -msgstr "匯出範圍" +msgstr "匯出範圍" #: ../src/ui/dialog/export.cpp:237 msgid "_x0:" @@ -13404,9 +14547,8 @@ msgid "Hei_ght:" msgstr "高度(_G):" #: ../src/ui/dialog/export.cpp:272 -#, fuzzy msgid "Image size" -msgstr "頁面尺寸" +msgstr "圖片尺寸" #: ../src/ui/dialog/export.cpp:290 ../src/ui/dialog/export.cpp:301 msgid "pixels at" @@ -13422,16 +14564,15 @@ msgid "_Height:" msgstr "高度(_H):" #: ../src/ui/dialog/export.cpp:309 -#: ../src/ui/dialog/inkscape-preferences.cpp:1434 -#: ../src/ui/dialog/inkscape-preferences.cpp:1438 -#: ../src/ui/dialog/inkscape-preferences.cpp:1462 +#: ../src/ui/dialog/inkscape-preferences.cpp:1436 +#: ../src/ui/dialog/inkscape-preferences.cpp:1440 +#: ../src/ui/dialog/inkscape-preferences.cpp:1464 msgid "dpi" msgstr "dpi" #: ../src/ui/dialog/export.cpp:317 -#, fuzzy msgid "_Filename" -msgstr "檔名(_F)" +msgstr "檔名(_F)" #: ../src/ui/dialog/export.cpp:359 msgid "Export the bitmap file with these settings" @@ -13449,19 +14590,17 @@ msgid "Export in progress" msgstr "匯出中" #: ../src/ui/dialog/export.cpp:1018 -#, fuzzy msgid "No items selected." -msgstr "沒有選取濾鏡" +msgstr "沒有選取項目。" #: ../src/ui/dialog/export.cpp:1022 ../src/ui/dialog/export.cpp:1024 -#, fuzzy msgid "Exporting %1 files" -msgstr "正在匯出 %d 個檔案" +msgstr "正在匯出 %1 個檔案" #: ../src/ui/dialog/export.cpp:1064 ../src/ui/dialog/export.cpp:1066 -#, fuzzy, c-format +#, c-format msgid "Exporting file %s..." -msgstr "正在匯出 %d 個檔案" +msgstr "正在匯出檔案 %s..." #: ../src/ui/dialog/export.cpp:1075 ../src/ui/dialog/export.cpp:1166 #, c-format @@ -13469,28 +14608,26 @@ msgid "Could not export to filename %s.\n" msgstr "無法匯出為檔名 %s。\n" #: ../src/ui/dialog/export.cpp:1078 -#, fuzzy, c-format +#, c-format msgid "Could not export to filename %s." -msgstr "無法匯出為檔名 %s。\n" +msgstr "無法匯出為檔名 %s。" #: ../src/ui/dialog/export.cpp:1093 #, c-format msgid "Successfully exported %d files from %d selected items." -msgstr "" +msgstr "已成功從 %d 個選取項目匯出 %d 個檔案。" #: ../src/ui/dialog/export.cpp:1104 -#, fuzzy msgid "You have to enter a filename." -msgstr "你必須輸入檔名" +msgstr "你必須輸入檔名。" #: ../src/ui/dialog/export.cpp:1105 msgid "You have to enter a filename" msgstr "你必須輸入檔名" #: ../src/ui/dialog/export.cpp:1119 -#, fuzzy msgid "The chosen area to be exported is invalid." -msgstr "將要匯出的選擇範圍無效" +msgstr "將要匯出的選擇範圍無效。" #: ../src/ui/dialog/export.cpp:1120 msgid "The chosen area to be exported is invalid" @@ -13503,22 +14640,26 @@ msgstr "目錄 %s 不存在或者它並不是一個目錄。\n" #. TRANSLATORS: %1 will be the filename, %2 the width, and %3 the height of the image #: ../src/ui/dialog/export.cpp:1149 ../src/ui/dialog/export.cpp:1151 -#, fuzzy msgid "Exporting %1 (%2 x %3)" -msgstr "正在匯出 %s (%lu x %lu)" +msgstr "正在匯出 %1 (%2 x %3)" #: ../src/ui/dialog/export.cpp:1177 -#, fuzzy, c-format +#, c-format msgid "Drawing exported to %s." -msgstr "正在編輯參數 %s。" +msgstr "圖畫已匯出成 %s。" #: ../src/ui/dialog/export.cpp:1181 -#, fuzzy msgid "Export aborted." -msgstr "匯出中" +msgstr "匯出已中止。" + +#: ../src/ui/dialog/export.cpp:1302 ../src/ui/interface.cpp:1392 +#: ../src/widgets/desktop-widget.cpp:1122 +#: ../src/widgets/desktop-widget.cpp:1184 +msgid "_Cancel" +msgstr "取消(_C)" #: ../src/ui/dialog/export.cpp:1303 ../src/ui/dialog/input.cpp:1082 -#: ../src/verbs.cpp:2358 ../src/widgets/desktop-widget.cpp:1123 +#: ../src/verbs.cpp:2441 ../src/widgets/desktop-widget.cpp:1123 msgid "_Save" msgstr "儲存(_S)" @@ -13526,8 +14667,8 @@ msgstr "儲存(_S)" msgid "Information" msgstr "資訊" -#: ../src/ui/dialog/extension-editor.cpp:82 ../src/verbs.cpp:290 -#: ../src/verbs.cpp:309 ../share/extensions/color_HSL_adjust.inx.h:11 +#: ../src/ui/dialog/extension-editor.cpp:82 ../src/verbs.cpp:310 +#: ../src/verbs.cpp:329 ../share/extensions/color_HSL_adjust.inx.h:11 #: ../share/extensions/color_custom.inx.h:7 #: ../share/extensions/color_randomize.inx.h:6 #: ../share/extensions/dots.inx.h:7 @@ -13580,103 +14721,103 @@ msgid "Parameters" msgstr "參數" #. Fill in the template -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:376 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:415 msgid "No preview" msgstr "無預覽" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:480 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:519 msgid "too large for preview" msgstr "對預覽而言太大了" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:565 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:604 msgid "Enable preview" msgstr "啟用預覽" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:715 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:728 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:732 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:735 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:743 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:759 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:754 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:767 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:771 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:774 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:782 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:798 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:813 #: ../src/ui/dialog/filedialogimpl-win32.cpp:282 #: ../src/ui/dialog/filedialogimpl-win32.cpp:413 msgid "All Files" msgstr "所有檔案" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:740 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:756 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:771 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:779 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:795 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:810 #: ../src/ui/dialog/filedialogimpl-win32.cpp:283 msgid "All Inkscape Files" msgstr "所有 Inkscape 檔案" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:747 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:763 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:777 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:786 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:802 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:816 #: ../src/ui/dialog/filedialogimpl-win32.cpp:284 msgid "All Images" msgstr "所有圖片" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:750 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:766 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:780 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:789 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:805 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:819 #: ../src/ui/dialog/filedialogimpl-win32.cpp:285 msgid "All Vectors" msgstr "所有向量圖形" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:753 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:769 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:783 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:792 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:808 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:822 #: ../src/ui/dialog/filedialogimpl-win32.cpp:286 msgid "All Bitmaps" msgstr "所有點陣圖" #. ###### File options #. ###### Do we want the .xxx extension automatically added? -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1002 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1560 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1041 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1599 msgid "Append filename extension automatically" msgstr "自動添加副檔名" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1175 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1428 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1214 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1467 msgid "Guess from extension" msgstr "從副檔名判斷" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1447 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1486 msgid "Left edge of source" msgstr "來源的左邊" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1448 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1487 msgid "Top edge of source" msgstr "來源的頂邊" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1449 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1488 msgid "Right edge of source" msgstr "來源的右邊" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1450 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1489 msgid "Bottom edge of source" msgstr "來源的底邊" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1451 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1490 msgid "Source width" msgstr "來源寬度" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1452 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1491 msgid "Source height" msgstr "來源高度" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1453 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1492 msgid "Destination width" msgstr "目標寬度" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1454 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1493 msgid "Destination height" msgstr "目標高度" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1455 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1494 msgid "Resolution (dots per inch)" msgstr "解析度 (每英寸多少點)" @@ -13684,30 +14825,30 @@ msgstr "解析度 (每英寸多少點)" #. ## EXTRA WIDGET -- SOURCE SIDE #. ######################################### #. ##### Export options buttons/spinners, etc -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1493 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1532 msgid "Document" msgstr "文件" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1501 ../src/verbs.cpp:175 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1540 ../src/verbs.cpp:176 #: ../src/widgets/desktop-widget.cpp:2000 #: ../share/extensions/printing_marks.inx.h:18 msgid "Selection" msgstr "選擇範圍" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1505 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1544 msgctxt "Export dialog" msgid "Custom" msgstr "自訂" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1525 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1564 msgid "Source" msgstr "來源" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1545 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1584 msgid "Cairo" msgstr "Cairo" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1548 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1587 msgid "Antialias" msgstr "反鋸齒" @@ -13747,6 +14888,12 @@ msgstr "" "組成裡多少從輸入通過到輸出。最後一欄不是取決於輸入的顏色,所以可用於調整常數" "組成數值。" +#: ../src/ui/dialog/filter-effects-dialog.cpp:549 +#: ../share/extensions/grid_polar.inx.h:4 +msgctxt "Label" +msgid "None" +msgstr "無" + #: ../src/ui/dialog/filter-effects-dialog.cpp:656 msgid "Image File" msgstr "圖片檔" @@ -13769,28 +14916,24 @@ msgid "This SVG filter effect is not yet implemented in Inkscape." msgstr "此 SVG 濾鏡在 Inkscape 裡尚未實現。" #: ../src/ui/dialog/filter-effects-dialog.cpp:1041 -#, fuzzy msgid "Slope" -msgstr "封套" +msgstr "斜率" #: ../src/ui/dialog/filter-effects-dialog.cpp:1042 -#, fuzzy msgid "Intercept" -msgstr "介面" +msgstr "截距" #: ../src/ui/dialog/filter-effects-dialog.cpp:1045 -#, fuzzy msgid "Amplitude" -msgstr "振幅:" +msgstr "振幅" #: ../src/ui/dialog/filter-effects-dialog.cpp:1046 msgid "Exponent" msgstr "指數" #: ../src/ui/dialog/filter-effects-dialog.cpp:1143 -#, fuzzy msgid "New transfer function type" -msgstr "轉變類型:" +msgstr "新增轉變函數類型" #: ../src/ui/dialog/filter-effects-dialog.cpp:1178 msgid "Light Source:" @@ -13975,25 +15118,21 @@ msgid "Value(s):" msgstr "數值:" #: ../src/ui/dialog/filter-effects-dialog.cpp:2847 -#, fuzzy msgid "R:" -msgstr "X 半徑:" +msgstr "紅:" #: ../src/ui/dialog/filter-effects-dialog.cpp:2848 -#: ../src/widgets/sp-color-icc-selector.cpp:359 -#, fuzzy +#: ../src/widgets/sp-color-icc-selector.cpp:334 msgid "G:" -msgstr "綠(_G):" +msgstr "綠:" #: ../src/ui/dialog/filter-effects-dialog.cpp:2849 -#, fuzzy msgid "B:" -msgstr "藍(_B):" +msgstr "藍:" #: ../src/ui/dialog/filter-effects-dialog.cpp:2850 -#, fuzzy msgid "A:" -msgstr "透明(_A):" +msgstr "透明:" #: ../src/ui/dialog/filter-effects-dialog.cpp:2853 #: ../src/ui/dialog/filter-effects-dialog.cpp:2893 @@ -14279,7 +15418,7 @@ msgid "" "color of each rendered pixel. This allows for effects like turning object to " "grayscale, modifying color saturation and changing color hue." msgstr "" -"此顏色矩陣 (feColorMatrix) 濾鏡基元將矩陣變換套用到每個潤算像素的顏" +"此顏色矩陣 (feColorMatrix) 濾鏡基元將矩陣變換套用到每個繪算像素的顏" "色。該特效可以讓物件變成灰階、修改顏色飽和度和改變顏色色相。" #: ../src/ui/dialog/filter-effects-dialog.cpp:2956 @@ -14360,8 +15499,7 @@ msgstr "" msgid "" "The feImage filter primitive fills the region with an external image " "or another part of the document." -msgstr "" -"此圖片 (feImage) 濾鏡基元會用外部的影像或文件的其他部份來填充該區域。" +msgstr "此圖片 (feImage) 濾鏡基元會用外部的影像或文件的其他部份來填充該區域。" #: ../src/ui/dialog/filter-effects-dialog.cpp:2988 msgid "" @@ -14393,16 +15531,15 @@ msgstr "" "鏡基元對下落式陰影很有用,這種陰影和實際物件的位置些微地不同。" #: ../src/ui/dialog/filter-effects-dialog.cpp:3000 -#, fuzzy msgid "" "The feDiffuseLighting and feSpecularLighting filter primitives " "create \"embossed\" shadings. The input's alpha channel is used to provide " "depth information: higher opacity areas are raised toward the viewer and " "lower opacity areas recede away from the viewer." msgstr "" -"此擴散光 (feDiffuseLighting) 和反射光 (feSpecularLighting) 濾鏡基元用" -"來製作「浮凸的」明暗變化。輸入的透明色版用以提供深度資訊:較高的不透明範圍會" -"加強浮凸的視覺效果,而較低的不透明範圍則會減弱。" +"此擴散光 (feDiffuseLighting) 反射光 (feSpecularLighting) 濾鏡" +"基元用來製作「浮凸的」明暗變化。輸入透明色版用以提供深度資訊:較高的不透明範" +"圍會加強浮凸的視覺效果,而較低的不透明範圍則會減弱。" #: ../src/ui/dialog/filter-effects-dialog.cpp:3004 msgid "" @@ -14415,8 +15552,8 @@ msgid "" "noise is useful in simulating several nature phenomena like clouds, fire and " "smoke and in generating complex textures like marble or granite." msgstr "" -"此紊亂 (feTurbulence) 濾鏡基元可潤算繪製柏林 (Perlin) 雜訊。這種雜訊常" -"用於模擬一些自然現象 (像雲、火和煙) 和生成複雜的組織 (像大理石或花崗岩)。" +"此紊亂 (feTurbulence) 濾鏡基元可繪算柏林 (Perlin) 雜訊。這種雜訊常用於" +"模擬一些自然現象 (像雲、火和煙) 和生成複雜的組織 (像大理石或花崗岩)。" #: ../src/ui/dialog/filter-effects-dialog.cpp:3027 msgid "Duplicate filter primitive" @@ -14431,19 +15568,16 @@ msgid "F_ind:" msgstr "尋找(_F):" #: ../src/ui/dialog/find.cpp:71 -#, fuzzy msgid "Find objects by their content or properties (exact or partial match)" -msgstr "依照物件內容尋找物件 (完全符合或部分符合)" +msgstr "依照內容或屬性尋找物件 (完全符合或部分符合)" #: ../src/ui/dialog/find.cpp:72 -#, fuzzy msgid "R_eplace:" -msgstr "取代:" +msgstr "取代(_E):" #: ../src/ui/dialog/find.cpp:72 -#, fuzzy msgid "Replace match with this value" -msgstr "以該數值取代找到的物件" +msgstr "以此數值取代符合的項目" #: ../src/ui/dialog/find.cpp:74 msgid "_All" @@ -14462,7 +15596,6 @@ msgid "Limit search to the current layer" msgstr "只搜尋目前的圖層" #: ../src/ui/dialog/find.cpp:76 -#, fuzzy msgid "Sele_ction" msgstr "選擇範圍(_C)" @@ -14535,18 +15668,16 @@ msgid "Search id name" msgstr "搜尋識別名稱" #: ../src/ui/dialog/find.cpp:91 -#, fuzzy msgid "Attribute _name" -msgstr "屬性名稱" +msgstr "屬性名稱(_N)" #: ../src/ui/dialog/find.cpp:91 msgid "Search attribute name" msgstr "搜尋屬性名稱" #: ../src/ui/dialog/find.cpp:92 -#, fuzzy msgid "Attri_bute value" -msgstr "屬性值" +msgstr "屬性值(_B)" #: ../src/ui/dialog/find.cpp:92 msgid "Search attribute value" @@ -14562,7 +15693,7 @@ msgstr "搜尋樣式" #: ../src/ui/dialog/find.cpp:94 msgid "F_ont" -msgstr "" +msgstr "字型(_O)" #: ../src/ui/dialog/find.cpp:94 msgid "Search fonts" @@ -14664,7 +15795,6 @@ msgid "Search offset objects" msgstr "搜尋偏移物件" #: ../src/ui/dialog/find.cpp:111 -#, fuzzy msgid "Object types" msgstr "物件類型" @@ -14673,18 +15803,16 @@ msgid "_Find" msgstr "尋找(_F)" #: ../src/ui/dialog/find.cpp:114 -#, fuzzy msgid "Select all objects matching the selection criteria" -msgstr "選擇全部符合搜尋條件的物件" +msgstr "選取全部符合搜尋條件的物件" #: ../src/ui/dialog/find.cpp:115 msgid "_Replace All" msgstr "取代全部(_R)" #: ../src/ui/dialog/find.cpp:115 -#, fuzzy msgid "Replace all matches" -msgstr "取代全部符合的物件" +msgstr "取代所有符合的項目" #: ../src/ui/dialog/find.cpp:775 msgid "Nothing to replace" @@ -14708,38 +15836,33 @@ msgstr "部份符合" #. TRANSLATORS: "%1" is replaced with the number of matches #: ../src/ui/dialog/find.cpp:822 -#, fuzzy msgid "%1 match replaced" msgid_plural "%1 matches replaced" -msgstr[0] "已取代" -msgstr[1] "已取代" +msgstr[0] "已取代 %1 個符合項目" +msgstr[1] "已取代 %1 個符合項目" #. TRANSLATORS: "%1" is replaced with the number of matches #: ../src/ui/dialog/find.cpp:826 -#, fuzzy msgid "%1 object found" msgid_plural "%1 objects found" -msgstr[0] "找不到物件" -msgstr[1] "找不到物件" +msgstr[0] "找到 %1 個物件" +msgstr[1] "找到 %1 個物件" #: ../src/ui/dialog/find.cpp:837 -#, fuzzy msgid "Replace text or property" -msgstr "選擇一種屬性" +msgstr "取代文字或屬性" #: ../src/ui/dialog/find.cpp:841 -#, fuzzy msgid "Nothing found" -msgstr "沒有可以復原的步驟。" +msgstr "找不到" #: ../src/ui/dialog/find.cpp:846 msgid "No objects found" msgstr "找不到物件" #: ../src/ui/dialog/find.cpp:867 -#, fuzzy msgid "Select an object type" -msgstr "選擇一個物件" +msgstr "選擇一種物件類型" #: ../src/ui/dialog/find.cpp:885 msgid "Select a property" @@ -14750,23 +15873,24 @@ msgid "" "\n" "Some fonts are not available and have been substituted." msgstr "" +"\n" +"某些字型無法使用會改用替代字型。" #: ../src/ui/dialog/font-substitution.cpp:90 msgid "Font substitution" -msgstr "" +msgstr "字型替代" #: ../src/ui/dialog/font-substitution.cpp:109 -#, fuzzy msgid "Select all the affected items" -msgstr "選擇一個物件" +msgstr "選擇全部影響的項目" #: ../src/ui/dialog/font-substitution.cpp:114 msgid "Don't show this warning again" -msgstr "" +msgstr "不再顯示這則警告" #: ../src/ui/dialog/font-substitution.cpp:255 msgid "Font '%1' substituted with '%2'" -msgstr "" +msgstr "用字型「%2」替代「%1」" #: ../src/ui/dialog/glyphs.cpp:60 ../src/ui/dialog/glyphs.cpp:152 msgid "all" @@ -15479,7 +16603,7 @@ msgstr "特殊字元" #: ../src/ui/dialog/glyphs.cpp:377 msgid "Script: " -msgstr "腳本:" +msgstr "書寫體:" #: ../src/ui/dialog/glyphs.cpp:414 msgid "Range: " @@ -15554,9 +16678,8 @@ msgstr "如果沒有設定,每欄寬度為其中最寬物件的寬度" #. Anchor selection widget #: ../src/ui/dialog/grid-arrange-tab.cpp:711 -#, fuzzy msgid "Alignment:" -msgstr "對齊" +msgstr "對齊:" #. #### Radio buttons to control spacing manually or to fit selection bbox #### #: ../src/ui/dialog/grid-arrange-tab.cpp:720 @@ -15576,13 +16699,11 @@ msgid "Move and/or rotate the guide relative to current settings" msgstr "以目前的設定值相對地移動和 (或) 旋轉參考線" #: ../src/ui/dialog/guides.cpp:48 -#, fuzzy msgctxt "Guides" msgid "_X:" msgstr "_X:" #: ../src/ui/dialog/guides.cpp:49 -#, fuzzy msgctxt "Guides" msgid "_Y:" msgstr "_Y:" @@ -15607,12 +16728,12 @@ msgstr "設定參考線屬性" msgid "Guideline" msgstr "參考線" -#: ../src/ui/dialog/guides.cpp:310 +#: ../src/ui/dialog/guides.cpp:311 #, c-format msgid "Guideline ID: %s" msgstr "參考線 ID: %s" -#: ../src/ui/dialog/guides.cpp:316 +#: ../src/ui/dialog/guides.cpp:317 #, c-format msgid "Current: %s" msgstr "目前: %s" @@ -15639,28 +16760,28 @@ msgstr "選擇範圍(_C)" msgid "Selection only or whole document" msgstr "只有選取區或整份文件" -#: ../src/ui/dialog/inkscape-preferences.cpp:181 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 msgid "Show selection cue" msgstr "顯示選取區提示" -#: ../src/ui/dialog/inkscape-preferences.cpp:182 +#: ../src/ui/dialog/inkscape-preferences.cpp:184 msgid "" "Whether selected objects display a selection cue (the same as in selector)" msgstr "選取物件是否顯示選取區提示 (如同在選取器之中)" -#: ../src/ui/dialog/inkscape-preferences.cpp:188 +#: ../src/ui/dialog/inkscape-preferences.cpp:190 msgid "Enable gradient editing" msgstr "啟用漸層編輯" -#: ../src/ui/dialog/inkscape-preferences.cpp:189 +#: ../src/ui/dialog/inkscape-preferences.cpp:191 msgid "Whether selected objects display gradient editing controls" msgstr "選取物件是否顯示漸層編輯控制點" -#: ../src/ui/dialog/inkscape-preferences.cpp:194 +#: ../src/ui/dialog/inkscape-preferences.cpp:196 msgid "Conversion to guides uses edges instead of bounding box" msgstr "使用邊緣轉換成參考線而不是邊界框" -#: ../src/ui/dialog/inkscape-preferences.cpp:195 +#: ../src/ui/dialog/inkscape-preferences.cpp:197 msgid "" "Converting an object to guides places these along the object's true edges " "(imitating the object's shape), not along the bounding box" @@ -15668,256 +16789,257 @@ msgstr "" "將物件轉換成參考線並沿著此物件的真實邊緣放置 (模仿該物件的形狀),而不是沿著邊" "界框放置" -#: ../src/ui/dialog/inkscape-preferences.cpp:202 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "Ctrl+click _dot size:" -msgstr "Ctrl+點擊點的大小:" +msgstr "「Ctrl+點擊」點尺寸(_D):" -#: ../src/ui/dialog/inkscape-preferences.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "times current stroke width" msgstr "乘以目前邊框寬度" -#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:205 msgid "Size of dots created with Ctrl+click (relative to current stroke width)" msgstr "用 Ctrl+點擊所建立的點大小 (相對於目前的邊框寬度)" -#: ../src/ui/dialog/inkscape-preferences.cpp:218 +#: ../src/ui/dialog/inkscape-preferences.cpp:220 msgid "No objects selected to take the style from." msgstr "沒有選取任何物件可從其中取得樣式。" -#: ../src/ui/dialog/inkscape-preferences.cpp:227 +#: ../src/ui/dialog/inkscape-preferences.cpp:229 msgid "" "More than one object selected. Cannot take style from multiple " "objects." msgstr "選取多個物件。無法從多個物件取得樣式。" -#: ../src/ui/dialog/inkscape-preferences.cpp:260 +#: ../src/ui/dialog/inkscape-preferences.cpp:262 msgid "Style of new objects" msgstr "新增物件的樣式" -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:264 msgid "Last used style" msgstr "最後使用的樣式" -#: ../src/ui/dialog/inkscape-preferences.cpp:264 +#: ../src/ui/dialog/inkscape-preferences.cpp:266 msgid "Apply the style you last set on an object" msgstr "套用最近設定物件的樣式" -#: ../src/ui/dialog/inkscape-preferences.cpp:269 +#: ../src/ui/dialog/inkscape-preferences.cpp:271 msgid "This tool's own style:" msgstr "此工具的專屬樣式:" -#: ../src/ui/dialog/inkscape-preferences.cpp:273 +#: ../src/ui/dialog/inkscape-preferences.cpp:275 msgid "" "Each tool may store its own style to apply to the newly created objects. Use " "the button below to set it." msgstr "每個工具可以儲存套用到新建物件的專屬樣式。使用下面按鈕進行設定。" #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:279 msgid "Take from selection" msgstr "從選取區取得" -#: ../src/ui/dialog/inkscape-preferences.cpp:282 +#: ../src/ui/dialog/inkscape-preferences.cpp:284 msgid "This tool's style of new objects" msgstr "此工具的新物件樣式" -#: ../src/ui/dialog/inkscape-preferences.cpp:289 +#: ../src/ui/dialog/inkscape-preferences.cpp:291 msgid "Remember the style of the (first) selected object as this tool's style" msgstr "記住 (第一次) 選取物件的樣式作為此工具的樣式" -#: ../src/ui/dialog/inkscape-preferences.cpp:294 +#: ../src/ui/dialog/inkscape-preferences.cpp:296 msgid "Tools" msgstr "工具" -#: ../src/ui/dialog/inkscape-preferences.cpp:297 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "Bounding box to use" msgstr "要使用的邊界框" -#: ../src/ui/dialog/inkscape-preferences.cpp:298 +#: ../src/ui/dialog/inkscape-preferences.cpp:300 msgid "Visual bounding box" msgstr "視覺邊界框" -#: ../src/ui/dialog/inkscape-preferences.cpp:300 +#: ../src/ui/dialog/inkscape-preferences.cpp:302 msgid "This bounding box includes stroke width, markers, filter margins, etc." msgstr "這種邊界框包含邊框寬度、標記、濾鏡邊距等等。" -#: ../src/ui/dialog/inkscape-preferences.cpp:301 +#: ../src/ui/dialog/inkscape-preferences.cpp:303 msgid "Geometric bounding box" msgstr "幾何邊界框" -#: ../src/ui/dialog/inkscape-preferences.cpp:303 +#: ../src/ui/dialog/inkscape-preferences.cpp:305 msgid "This bounding box includes only the bare path" msgstr "這種邊界框只包含最基本的路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:307 msgid "Conversion to guides" msgstr "轉成參考線" -#: ../src/ui/dialog/inkscape-preferences.cpp:306 +#: ../src/ui/dialog/inkscape-preferences.cpp:308 msgid "Keep objects after conversion to guides" msgstr "轉換成參考線之後仍保留物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:308 +#: ../src/ui/dialog/inkscape-preferences.cpp:310 msgid "" "When converting an object to guides, don't delete the object after the " "conversion" msgstr "將物件轉換成參考線時,轉換之後不要刪除物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:309 +#: ../src/ui/dialog/inkscape-preferences.cpp:311 msgid "Treat groups as a single object" msgstr "將群組視為單一物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:311 +#: ../src/ui/dialog/inkscape-preferences.cpp:313 msgid "" "Treat groups as a single object during conversion to guides rather than " "converting each child separately" msgstr "轉換成參考線期間將群組視為單一物件,而不是個別地轉換每個子集合" -#: ../src/ui/dialog/inkscape-preferences.cpp:313 +#: ../src/ui/dialog/inkscape-preferences.cpp:315 msgid "Average all sketches" msgstr "均分所有草圖" -#: ../src/ui/dialog/inkscape-preferences.cpp:314 +#: ../src/ui/dialog/inkscape-preferences.cpp:316 msgid "Width is in absolute units" msgstr "寬度使用絕對單位" -#: ../src/ui/dialog/inkscape-preferences.cpp:315 +#: ../src/ui/dialog/inkscape-preferences.cpp:317 msgid "Select new path" msgstr "選取新路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:316 +#: ../src/ui/dialog/inkscape-preferences.cpp:318 msgid "Don't attach connectors to text objects" msgstr "不要將連接線附加到文字物件" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:319 +#: ../src/ui/dialog/inkscape-preferences.cpp:321 msgid "Selector" msgstr "選取器" -#: ../src/ui/dialog/inkscape-preferences.cpp:324 +#: ../src/ui/dialog/inkscape-preferences.cpp:326 msgid "When transforming, show" msgstr "當變形時,顯示:" -#: ../src/ui/dialog/inkscape-preferences.cpp:325 +#: ../src/ui/dialog/inkscape-preferences.cpp:327 msgid "Objects" msgstr "物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:327 +#: ../src/ui/dialog/inkscape-preferences.cpp:329 msgid "Show the actual objects when moving or transforming" msgstr "移動或變形時顯示實際物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:328 +#: ../src/ui/dialog/inkscape-preferences.cpp:330 msgid "Box outline" msgstr "外框" -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:332 msgid "Show only a box outline of the objects when moving or transforming" msgstr "移動或變形時只顯示物件外框" -#: ../src/ui/dialog/inkscape-preferences.cpp:331 +#: ../src/ui/dialog/inkscape-preferences.cpp:333 msgid "Per-object selection cue" msgstr "每個物件選取提示" #: ../src/ui/dialog/inkscape-preferences.cpp:334 +msgctxt "Selection cue" +msgid "None" +msgstr "無" + +#: ../src/ui/dialog/inkscape-preferences.cpp:336 msgid "No per-object selection indication" msgstr "每個物件沒有選取提示" -#: ../src/ui/dialog/inkscape-preferences.cpp:335 +#: ../src/ui/dialog/inkscape-preferences.cpp:337 msgid "Mark" msgstr "記號" -#: ../src/ui/dialog/inkscape-preferences.cpp:337 +#: ../src/ui/dialog/inkscape-preferences.cpp:339 msgid "Each selected object has a diamond mark in the top left corner" msgstr "每個選取物件都會有一個菱形記號在左上角" -#: ../src/ui/dialog/inkscape-preferences.cpp:338 +#: ../src/ui/dialog/inkscape-preferences.cpp:340 msgid "Box" msgstr "方框" -#: ../src/ui/dialog/inkscape-preferences.cpp:340 +#: ../src/ui/dialog/inkscape-preferences.cpp:342 msgid "Each selected object displays its bounding box" msgstr "每個選取物件都會顯示本身的邊界框" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:343 +#: ../src/ui/dialog/inkscape-preferences.cpp:345 msgid "Node" msgstr "節點" -#: ../src/ui/dialog/inkscape-preferences.cpp:346 +#: ../src/ui/dialog/inkscape-preferences.cpp:348 msgid "Path outline" msgstr "路徑輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:347 +#: ../src/ui/dialog/inkscape-preferences.cpp:349 msgid "Path outline color" msgstr "路徑輪廓顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:348 +#: ../src/ui/dialog/inkscape-preferences.cpp:350 msgid "Selects the color used for showing the path outline" msgstr "選擇用於顯示路徑輪廓的顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:349 +#: ../src/ui/dialog/inkscape-preferences.cpp:351 msgid "Always show outline" msgstr "始終顯示輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:350 +#: ../src/ui/dialog/inkscape-preferences.cpp:352 msgid "Show outlines for all paths, not only invisible paths" msgstr "顯示所有路徑的輪廓,包括隱形的路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:351 +#: ../src/ui/dialog/inkscape-preferences.cpp:353 msgid "Update outline when dragging nodes" msgstr "拖曳節點時更新輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:352 +#: ../src/ui/dialog/inkscape-preferences.cpp:354 msgid "" "Update the outline when dragging or transforming nodes; if this is off, the " "outline will only update when completing a drag" -msgstr "" -"拖曳或變形節點時更新輪廓;若停用這選項,只有在完成拖曳動作時才會更新輪廓" +msgstr "拖曳或變形節點時更新輪廓;若停用這選項,只有在完成拖曳動作時才會更新輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:353 +#: ../src/ui/dialog/inkscape-preferences.cpp:355 msgid "Update paths when dragging nodes" msgstr "拖曳節點時更新路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:354 +#: ../src/ui/dialog/inkscape-preferences.cpp:356 msgid "" "Update paths when dragging or transforming nodes; if this is off, paths will " "only be updated when completing a drag" -msgstr "" -"拖曳或變形節點時更新路徑;若停用這選項,只有在完成拖曳動作時才會更新路徑" +msgstr "拖曳或變形節點時更新路徑;若停用這選項,只有在完成拖曳動作時才會更新路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:355 +#: ../src/ui/dialog/inkscape-preferences.cpp:357 msgid "Show path direction on outlines" msgstr "顯示輪廓的路徑方向" -#: ../src/ui/dialog/inkscape-preferences.cpp:356 +#: ../src/ui/dialog/inkscape-preferences.cpp:358 msgid "" "Visualize the direction of selected paths by drawing small arrows in the " "middle of each outline segment" msgstr "在每條輪廓線段的中間繪製小箭頭來標明選取路徑的方向" -#: ../src/ui/dialog/inkscape-preferences.cpp:357 +#: ../src/ui/dialog/inkscape-preferences.cpp:359 msgid "Show temporary path outline" msgstr "顯示暫時路徑輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:358 +#: ../src/ui/dialog/inkscape-preferences.cpp:360 msgid "When hovering over a path, briefly flash its outline" msgstr "游標停留在路徑上方時,短暫地閃爍路徑的輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:359 +#: ../src/ui/dialog/inkscape-preferences.cpp:361 msgid "Show temporary outline for selected paths" msgstr "顯示選取路徑路徑的暫時輪廓" -#: ../src/ui/dialog/inkscape-preferences.cpp:360 +#: ../src/ui/dialog/inkscape-preferences.cpp:362 msgid "Show temporary outline even when a path is selected for editing" msgstr "顯示暫時輪廓,即使正在編輯選擇的路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:362 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "_Flash time:" -msgstr "閃爍時間:" +msgstr "閃爍時間(_F):" -#: ../src/ui/dialog/inkscape-preferences.cpp:362 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "" "Specifies how long the path outline will be visible after a mouse-over (in " "milliseconds); specify 0 to have the outline shown until mouse leaves the " @@ -15926,55 +17048,54 @@ msgstr "" "指定滑鼠停留在路徑上方路徑輪廓顯示的時間 (單位為毫秒);若指定 0 會顯示輪廓直" "到滑鼠離開路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:363 +#: ../src/ui/dialog/inkscape-preferences.cpp:365 msgid "Editing preferences" msgstr "編輯偏好設定" -#: ../src/ui/dialog/inkscape-preferences.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:366 msgid "Show transform handles for single nodes" msgstr "顯示單一節點的變形控制點" -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:367 msgid "Show transform handles even when only a single node is selected" msgstr "顯示變形控制點,即使只選擇單個節點也會顯示" -#: ../src/ui/dialog/inkscape-preferences.cpp:366 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Deleting nodes preserves shape" msgstr "刪除節點時維持形狀" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:369 msgid "" "Move handles next to deleted nodes to resemble original shape; hold Ctrl to " "get the other behavior" msgstr "將控制點移動貼近刪除的節點使其與原來形狀相似;按住 Ctrl 可獲得其他效果" #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:370 +#: ../src/ui/dialog/inkscape-preferences.cpp:372 msgid "Tweak" msgstr "微調" -#: ../src/ui/dialog/inkscape-preferences.cpp:371 +#: ../src/ui/dialog/inkscape-preferences.cpp:373 msgid "Object paint style" msgstr "物件塗繪樣式" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:376 +#: ../src/ui/dialog/inkscape-preferences.cpp:378 #: ../src/widgets/desktop-widget.cpp:631 msgid "Zoom" msgstr "縮放" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:381 ../src/verbs.cpp:2678 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:383 ../src/verbs.cpp:2765 msgctxt "ContextVerb" msgid "Measure" msgstr "量測" -#: ../src/ui/dialog/inkscape-preferences.cpp:383 +#: ../src/ui/dialog/inkscape-preferences.cpp:385 msgid "Ignore first and last points" msgstr "忽略第一個點和最後一個點" -#: ../src/ui/dialog/inkscape-preferences.cpp:384 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 msgid "" "The start and end of the measurement tool's control line will not be " "considered for calculating lengths. Only lengths between actual curve " @@ -15984,38 +17105,32 @@ msgstr "" "度。" #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:387 +#: ../src/ui/dialog/inkscape-preferences.cpp:389 msgid "Shapes" msgstr "形狀" -#. Pencil -#: ../src/ui/dialog/inkscape-preferences.cpp:415 -msgid "Pencil" -msgstr "鉛筆" - -#: ../src/ui/dialog/inkscape-preferences.cpp:419 +#: ../src/ui/dialog/inkscape-preferences.cpp:421 msgid "Sketch mode" msgstr "草圖模式" -#: ../src/ui/dialog/inkscape-preferences.cpp:421 +#: ../src/ui/dialog/inkscape-preferences.cpp:423 msgid "" "If on, the sketch result will be the normal average of all sketches made, " "instead of averaging the old result with the new sketch" -msgstr "" -"若開啟,該草圖結果是全部草圖製作的普通平均值,而不是用新草圖平均之前的結果" +msgstr "若開啟,該草圖結果是全部草圖製作的普通平均值,而不是用新草圖平均之前的結果" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:424 +#: ../src/ui/dialog/inkscape-preferences.cpp:426 #: ../src/ui/dialog/input.cpp:1485 msgid "Pen" msgstr "筆" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:430 +#: ../src/ui/dialog/inkscape-preferences.cpp:432 msgid "Calligraphy" msgstr "書法" -#: ../src/ui/dialog/inkscape-preferences.cpp:434 +#: ../src/ui/dialog/inkscape-preferences.cpp:436 msgid "" "If on, pen width is in absolute units (px) independent of zoom; otherwise " "pen width depends on zoom so that it looks the same at any zoom" @@ -16023,116 +17138,112 @@ msgstr "" "若開啟,筆尖寬度使用與畫面縮放無關的絕對單位 (像素);否則筆尖寬度取決於畫面縮" "放以便在不同縮放比例下看起來相同" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 +#: ../src/ui/dialog/inkscape-preferences.cpp:438 msgid "" "If on, each newly created object will be selected (deselecting previous " "selection)" msgstr "若開啟,每個新建立的物件都會被選取 (取消上一個選取)" #. Text -#: ../src/ui/dialog/inkscape-preferences.cpp:439 ../src/verbs.cpp:2670 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:441 ../src/verbs.cpp:2757 msgctxt "ContextVerb" msgid "Text" msgstr "文字" -#: ../src/ui/dialog/inkscape-preferences.cpp:444 +#: ../src/ui/dialog/inkscape-preferences.cpp:446 msgid "Show font samples in the drop-down list" msgstr "在下拉式清單裡顯示字型預覽" -#: ../src/ui/dialog/inkscape-preferences.cpp:445 +#: ../src/ui/dialog/inkscape-preferences.cpp:447 msgid "" "Show font samples alongside font names in the drop-down list in Text bar" msgstr "在文字列的下拉式清單裡字型名稱旁邊顯示字型預覽" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Show font substitution warning dialog" -msgstr "對話窗上顯示關閉按鈕" +msgstr "顯示字型替代警告對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:448 +#: ../src/ui/dialog/inkscape-preferences.cpp:450 msgid "" "Show font substitution warning dialog when requested fonts are not available " "on the system" -msgstr "" +msgstr "當系統上沒有可用的所需字型時顯示字型替代警告對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Pixel" msgstr "像素" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Pica" msgstr "派卡" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Millimeter" msgstr "公釐" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Centimeter" msgstr "公分" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Inch" msgstr "英寸" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Em square" msgstr "全方 (Em)" #. , _("Ex square"), _("Percent") #. , SP_CSS_UNIT_EX, SP_CSS_UNIT_PERCENT -#: ../src/ui/dialog/inkscape-preferences.cpp:454 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Text units" -msgstr "文字字型:" +msgstr "文字單位" -#: ../src/ui/dialog/inkscape-preferences.cpp:456 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:458 msgid "Text size unit type:" -msgstr "文字:變更字體" +msgstr "文字大小單位類型:" -#: ../src/ui/dialog/inkscape-preferences.cpp:457 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Set the type of unit used in the text toolbar and text dialogs" -msgstr "" +msgstr "設定用於文字工具列和文字對話窗的單位類型" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:460 msgid "Always output text size in pixels (px)" -msgstr "" +msgstr "輸出文字大小都使用像素 (px)" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "" "Always convert the text size units above into pixels (px) before saving to " "file" -msgstr "" +msgstr "儲存檔案前都將上面的文字大小單位轉換成像素 (px)" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:464 +#: ../src/ui/dialog/inkscape-preferences.cpp:466 msgid "Spray" msgstr "噴灑" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:469 +#: ../src/ui/dialog/inkscape-preferences.cpp:471 msgid "Eraser" msgstr "橡皮擦" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:473 +#: ../src/ui/dialog/inkscape-preferences.cpp:475 msgid "Paint Bucket" msgstr "油漆桶" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:478 -#: ../src/widgets/gradient-selector.cpp:152 -#: ../src/widgets/gradient-selector.cpp:320 +#: ../src/ui/dialog/inkscape-preferences.cpp:480 +#: ../src/widgets/gradient-selector.cpp:134 +#: ../src/widgets/gradient-selector.cpp:302 msgid "Gradient" msgstr "漸層" -#: ../src/ui/dialog/inkscape-preferences.cpp:480 +#: ../src/ui/dialog/inkscape-preferences.cpp:482 msgid "Prevent sharing of gradient definitions" msgstr "避免漸層定義的共用" -#: ../src/ui/dialog/inkscape-preferences.cpp:482 +#: ../src/ui/dialog/inkscape-preferences.cpp:484 msgid "" "When on, shared gradient definitions are automatically forked on change; " "uncheck to allow sharing of gradient definitions so that editing one object " @@ -16141,404 +17252,400 @@ msgstr "" "開啟時,改變共用的漸層定義時會自動分開;取消勾選會允許共用漸層定義以造成編輯" "一個物件可能會影響到另一個使用相同樣漸層的物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:483 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:485 msgid "Use legacy Gradient Editor" -msgstr "漸層編輯器" +msgstr "使用舊式漸層編輯器" -#: ../src/ui/dialog/inkscape-preferences.cpp:485 +#: ../src/ui/dialog/inkscape-preferences.cpp:487 msgid "" "When on, the Gradient Edit button in the Fill & Stroke dialog will show the " "legacy Gradient Editor dialog, when off the Gradient Tool will be used" msgstr "" +"若啟用在填充和邊框對話窗中的漸層編輯器按鈕會顯示舊式漸層編輯器對話窗,如果停" +"用則使用漸層工具" -#: ../src/ui/dialog/inkscape-preferences.cpp:488 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:490 msgid "Linear gradient _angle:" -msgstr "線性漸層填色" +msgstr "線性漸層角度(_A):" -#: ../src/ui/dialog/inkscape-preferences.cpp:489 +#: ../src/ui/dialog/inkscape-preferences.cpp:491 msgid "" "Default angle of new linear gradients in degrees (clockwise from horizontal)" -msgstr "" +msgstr "新增線性漸層的預設角度,單位為度 (從水平順時針開始)" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:493 +#: ../src/ui/dialog/inkscape-preferences.cpp:495 msgid "Dropper" msgstr "滴管" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:498 +#: ../src/ui/dialog/inkscape-preferences.cpp:500 msgid "Connector" msgstr "連接線" -#: ../src/ui/dialog/inkscape-preferences.cpp:501 +#: ../src/ui/dialog/inkscape-preferences.cpp:503 msgid "If on, connector attachment points will not be shown for text objects" msgstr "若開啟,不會顯示文字物件的連接線附著點" #. LPETool #. disabled, because the LPETool is not finished yet. -#: ../src/ui/dialog/inkscape-preferences.cpp:506 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:508 msgid "LPE Tool" msgstr "即時路徑特效工具" -#: ../src/ui/dialog/inkscape-preferences.cpp:513 +#: ../src/ui/dialog/inkscape-preferences.cpp:515 msgid "Interface" msgstr "介面" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "System default" msgstr "系統預設" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Albanian (sq)" msgstr "阿爾巴尼亞語 (sq)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Amharic (am)" msgstr "阿比西尼亞語 (am)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Arabic (ar)" msgstr "阿拉伯語 (ar)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Armenian (hy)" msgstr "亞美尼亞語 (hy)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Azerbaijani (az)" msgstr "亞塞拜然語 (az)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Basque (eu)" msgstr "巴斯克語 (eu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:516 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Belarusian (be)" msgstr "白俄羅斯語 (be)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Bulgarian (bg)" msgstr "保加利亞語 (bg)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Bengali (bn)" msgstr "孟加拉語 (bn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Bengali/Bangladesh (bn_BD)" -msgstr "孟加拉語 (bn)" +msgstr "孟加拉語 / 西孟加拉 (bn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Breton (br)" msgstr "不列塔尼語 (br)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Catalan (ca)" msgstr "加達朗語 (ca)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Valencian Catalan (ca@valencia)" msgstr "瓦倫西亞語 加泰羅尼亞語 (ca@valencia)" -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:519 msgid "Chinese/China (zh_CN)" msgstr "中文 / 中國 (zh_CN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:520 msgid "Chinese/Taiwan (zh_TW)" msgstr "中文 / 臺灣 (zh_TW)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:520 msgid "Croatian (hr)" msgstr "克羅埃西亞語 (hr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:520 msgid "Czech (cs)" msgstr "捷克語 (cs)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Danish (da)" msgstr "丹麥語 (da)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Dutch (nl)" msgstr "荷蘭語 (nl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Dzongkha (dz)" msgstr "宗卡語 (dz)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "German (de)" msgstr "德語 (de)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Greek (el)" msgstr "希臘語 (el)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "English (en)" msgstr "英語 (en)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "English/Australia (en_AU)" msgstr "英語/澳大利亞 (en_AU)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "English/Canada (en_CA)" msgstr "英語 / 加拿大 (en_CA)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "English/Great Britain (en_GB)" msgstr "英語 / 大不列顛 (en_GB)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Pig Latin (en_US@piglatin)" -msgstr "豬拉丁語 (en_US@piglatin)" +msgstr "兒童黑話 (en_US@piglatin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Esperanto (eo)" msgstr "世界語 (eo)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Estonian (et)" msgstr "愛沙尼亞語 (et)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Farsi (fa)" msgstr "波斯語 (fa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Finnish (fi)" msgstr "芬蘭語 (fi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "French (fr)" msgstr "法語 (fr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Irish (ga)" msgstr "愛爾蘭語 (ga)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Galician (gl)" msgstr "加裡西亞語 (gl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Hebrew (he)" msgstr "希伯來語 (he)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Hungarian (hu)" msgstr "匈牙利語 (hu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Indonesian (id)" msgstr "印尼語 (id)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Italian (it)" msgstr "義大利語 (it)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Japanese (ja)" msgstr "日文 (ja)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Khmer (km)" msgstr "高棉語 (km)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Kinyarwanda (rw)" msgstr "金亞盧安達語 (rw)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Korean (ko)" msgstr "韓語 (ko)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Lithuanian (lt)" msgstr "立陶宛語 (lt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Latvian (lv)" msgstr "拉脫維亞語 (lv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Macedonian (mk)" msgstr "馬其頓語 (mk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Mongolian (mn)" msgstr "蒙古語 (mn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Nepali (ne)" msgstr "尼泊爾語 (ne)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Norwegian Bokmål (nb)" msgstr "挪威 Bokmål 語 (nb)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Norwegian Nynorsk (nn)" msgstr "挪威 Nynorsk 語 (nn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Panjabi (pa)" msgstr "旁遮普語 (pa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Polish (pl)" msgstr "波蘭語 (pl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Portuguese (pt)" msgstr "葡萄牙語 (pt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Portuguese/Brazil (pt_BR)" msgstr "葡萄牙語 / 巴西 (pt_BR)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Romanian (ro)" msgstr "羅馬尼亞語 (ro)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Russian (ru)" msgstr "俄文 (ru)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Serbian (sr)" msgstr "賽爾維亞語 (sr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Serbian in Latin script (sr@latin)" msgstr "塞爾維亞文 - 拉丁 (sr@latin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Slovak (sk)" msgstr "斯洛法克語 (sk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Slovenian (sl)" msgstr "斯洛凡尼亞語 (sl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Spanish (es)" msgstr "西班牙語 (es)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Spanish/Mexico (es_MX)" msgstr "西班牙語 / 墨西哥 (es_MX)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Swedish (sv)" msgstr "瑞典語 (sv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 -msgid "Telugu (te_IN)" -msgstr "泰盧固文 (te_IN)" +#: ../src/ui/dialog/inkscape-preferences.cpp:529 +msgid "Telugu (te)" +msgstr "泰盧固語 (te)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Thai (th)" msgstr "泰語 (th)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Turkish (tr)" msgstr "土耳其語 (tr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Ukrainian (uk)" msgstr "烏克蘭語 (uk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Vietnamese (vi)" msgstr "越南話 (vi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:559 +#: ../src/ui/dialog/inkscape-preferences.cpp:561 msgid "Language (requires restart):" msgstr "語言 (需要重新啟動):" -#: ../src/ui/dialog/inkscape-preferences.cpp:560 +#: ../src/ui/dialog/inkscape-preferences.cpp:562 msgid "Set the language for menus and number formats" msgstr "設定選單的語言和數字的格式" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 -#: ../src/ui/dialog/inkscape-preferences.cpp:648 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 +#: ../src/ui/dialog/inkscape-preferences.cpp:650 msgid "Large" msgstr "大" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 -#: ../src/ui/dialog/inkscape-preferences.cpp:648 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 +#: ../src/ui/dialog/inkscape-preferences.cpp:650 msgid "Small" msgstr "小" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "Smaller" msgstr "較小" -#: ../src/ui/dialog/inkscape-preferences.cpp:567 +#: ../src/ui/dialog/inkscape-preferences.cpp:569 msgid "Toolbox icon size:" msgstr "工具箱圖示大小:" -#: ../src/ui/dialog/inkscape-preferences.cpp:568 +#: ../src/ui/dialog/inkscape-preferences.cpp:570 msgid "Set the size for the tool icons (requires restart)" msgstr "設定工具圖示的大小 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:571 +#: ../src/ui/dialog/inkscape-preferences.cpp:573 msgid "Control bar icon size:" msgstr "控制列圖示大小:" -#: ../src/ui/dialog/inkscape-preferences.cpp:572 +#: ../src/ui/dialog/inkscape-preferences.cpp:574 msgid "" "Set the size for the icons in tools' control bars to use (requires restart)" msgstr "設定工具控制列圖示的大小 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:575 +#: ../src/ui/dialog/inkscape-preferences.cpp:577 msgid "Secondary toolbar icon size:" msgstr "次工具列圖示大小:" -#: ../src/ui/dialog/inkscape-preferences.cpp:576 +#: ../src/ui/dialog/inkscape-preferences.cpp:578 msgid "" "Set the size for the icons in secondary toolbars to use (requires restart)" msgstr "設定次工具列圖示的大小 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:579 +#: ../src/ui/dialog/inkscape-preferences.cpp:581 msgid "Work-around color sliders not drawing" msgstr "避開彩色滑動拉桿無法繪製的問題" -#: ../src/ui/dialog/inkscape-preferences.cpp:581 +#: ../src/ui/dialog/inkscape-preferences.cpp:583 msgid "" "When on, will attempt to work around bugs in certain GTK themes drawing " "color sliders" msgstr "開啟時,將試圖避開某些 GTK 主題繪製彩色滑動拉桿產生的錯誤" -#: ../src/ui/dialog/inkscape-preferences.cpp:586 +#: ../src/ui/dialog/inkscape-preferences.cpp:588 msgid "Clear list" msgstr "清除清單" -#: ../src/ui/dialog/inkscape-preferences.cpp:589 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:591 msgid "Maximum documents in Open _Recent:" -msgstr "最近開啟的最多文件數:" +msgstr "最近開啟的最多文件數(_R):" -#: ../src/ui/dialog/inkscape-preferences.cpp:590 +#: ../src/ui/dialog/inkscape-preferences.cpp:592 msgid "" "Set the maximum length of the Open Recent list in the File menu, or clear " "the list" msgstr "設定檔案選單中最近開啟文件數清單的最大長度,或者清除此清單" -#: ../src/ui/dialog/inkscape-preferences.cpp:593 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:595 msgid "_Zoom correction factor (in %):" -msgstr "畫面縮放校正係數 (%):" +msgstr "畫面縮放校正係數 (%)(_Z):" -#: ../src/ui/dialog/inkscape-preferences.cpp:594 +#: ../src/ui/dialog/inkscape-preferences.cpp:596 msgid "" "Adjust the slider until the length of the ruler on your screen matches its " "real length. This information is used when zooming to 1:1, 1:2, etc., to " @@ -16547,228 +17654,220 @@ msgstr "" "調整滑動拉桿直到螢幕上尺標的長度符合實際的長度。在縮放成 1:1、1:2 等等時會用" "這項資訊來顯示物件的實際尺寸" -#: ../src/ui/dialog/inkscape-preferences.cpp:597 +#: ../src/ui/dialog/inkscape-preferences.cpp:599 msgid "Enable dynamic relayout for incomplete sections" msgstr "啟用針對未完成部份的動態重新排版" -#: ../src/ui/dialog/inkscape-preferences.cpp:599 +#: ../src/ui/dialog/inkscape-preferences.cpp:601 msgid "" "When on, will allow dynamic layout of components that are not completely " "finished being refactored" msgstr "開啟時,可允許元件的動態排版,並非完全完成重構" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:602 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:604 msgid "Show filter primitives infobox (requires restart)" -msgstr "顯示濾鏡基元資訊欄" +msgstr "顯示濾鏡基元資訊欄 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:604 +#: ../src/ui/dialog/inkscape-preferences.cpp:606 msgid "" "Show icons and descriptions for the filter primitives available at the " "filter effects dialog" msgstr "在濾鏡特效對話窗裡顯示可用濾鏡基元的圖示和描述" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 -#: ../src/ui/dialog/inkscape-preferences.cpp:615 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:617 msgid "Icons only" -msgstr "只有色彩" +msgstr "只顯示圖示" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 -#: ../src/ui/dialog/inkscape-preferences.cpp:615 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:617 msgid "Text only" -msgstr "文字字型:" +msgstr "只顯示文字" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 -#: ../src/ui/dialog/inkscape-preferences.cpp:615 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:617 msgid "Icons and text" -msgstr "內外陰影" +msgstr "圖示和文字" -#: ../src/ui/dialog/inkscape-preferences.cpp:612 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:614 msgid "Dockbar style (requires restart):" -msgstr "語言 (需要重新啟動):" +msgstr "工具欄樣式 (需要重新啟動):" -#: ../src/ui/dialog/inkscape-preferences.cpp:613 +#: ../src/ui/dialog/inkscape-preferences.cpp:615 msgid "" "Selects whether the vertical bars on the dockbar will show text labels, " "icons, or both" -msgstr "" +msgstr "選擇位於工具欄上的垂直列是否顯示文字標籤、圖示或兩種都顯示" -#: ../src/ui/dialog/inkscape-preferences.cpp:620 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:622 msgid "Switcher style (requires restart):" -msgstr "(需要重新啟動)" +msgstr "色票樣式 (需要重新啟動):" -#: ../src/ui/dialog/inkscape-preferences.cpp:621 +#: ../src/ui/dialog/inkscape-preferences.cpp:623 msgid "" "Selects whether the dockbar switcher will show text labels, icons, or both" -msgstr "" +msgstr "選擇工具欄色票是否顯示文字標籤、圖示或兩種都顯示" #. Windows -#: ../src/ui/dialog/inkscape-preferences.cpp:625 +#: ../src/ui/dialog/inkscape-preferences.cpp:627 msgid "Save and restore window geometry for each document" msgstr "針對每個文件儲存和恢復視窗位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:626 +#: ../src/ui/dialog/inkscape-preferences.cpp:628 msgid "Remember and use last window's geometry" msgstr "記住並使用上次的視窗位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:629 msgid "Don't save window geometry" msgstr "不要儲存視窗位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:631 msgid "Save and restore dialogs status" msgstr "儲存並恢復對話窗狀態" -#: ../src/ui/dialog/inkscape-preferences.cpp:630 -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 +#: ../src/ui/dialog/inkscape-preferences.cpp:668 msgid "Don't save dialogs status" msgstr "不儲存對話窗狀態" -#: ../src/ui/dialog/inkscape-preferences.cpp:632 -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:634 +#: ../src/ui/dialog/inkscape-preferences.cpp:676 msgid "Dockable" msgstr "工具欄式" -#: ../src/ui/dialog/inkscape-preferences.cpp:636 +#: ../src/ui/dialog/inkscape-preferences.cpp:638 msgid "Native open/save dialogs" -msgstr "原生開啟 / 儲存對話窗" +msgstr "本機開啟 / 儲存對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:639 msgid "GTK open/save dialogs" msgstr "GTK 開啟 / 儲存對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:639 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Dialogs are hidden in taskbar" msgstr "對話窗隱藏在任務欄裡" -#: ../src/ui/dialog/inkscape-preferences.cpp:640 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:642 msgid "Save and restore documents viewport" -msgstr "儲存並恢復對話窗狀態" +msgstr "儲存並恢復文件視埠" -#: ../src/ui/dialog/inkscape-preferences.cpp:641 +#: ../src/ui/dialog/inkscape-preferences.cpp:643 msgid "Zoom when window is resized" msgstr "視窗調整大小時縮放畫面" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Show close button on dialogs" msgstr "對話窗上顯示關閉按鈕" #: ../src/ui/dialog/inkscape-preferences.cpp:645 +msgctxt "Dialog on top" +msgid "None" +msgstr "無" + +#: ../src/ui/dialog/inkscape-preferences.cpp:647 msgid "Aggressive" msgstr "積極" -#: ../src/ui/dialog/inkscape-preferences.cpp:648 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:650 msgid "Maximized" -msgstr "最佳化" +msgstr "最大化" -#: ../src/ui/dialog/inkscape-preferences.cpp:652 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:654 msgid "Default window size:" -msgstr "預設格線設定值" +msgstr "預設視窗尺寸:" -#: ../src/ui/dialog/inkscape-preferences.cpp:653 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:655 msgid "Set the default window size" -msgstr "建立預設漸層" +msgstr "設定預設視窗尺寸" -#: ../src/ui/dialog/inkscape-preferences.cpp:656 +#: ../src/ui/dialog/inkscape-preferences.cpp:658 msgid "Saving window geometry (size and position)" msgstr "儲存視窗位置 (大小和位置)" -#: ../src/ui/dialog/inkscape-preferences.cpp:658 +#: ../src/ui/dialog/inkscape-preferences.cpp:660 msgid "Let the window manager determine placement of all windows" msgstr "讓視窗管理程式決定所有視窗的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:660 +#: ../src/ui/dialog/inkscape-preferences.cpp:662 msgid "" "Remember and use the last window's geometry (saves geometry to user " "preferences)" msgstr "記錄並使用最後的視窗位置 (將位置儲存到使用者偏好設定)" -#: ../src/ui/dialog/inkscape-preferences.cpp:662 +#: ../src/ui/dialog/inkscape-preferences.cpp:664 msgid "" "Save and restore window geometry for each document (saves geometry in the " "document)" msgstr "針對每個文件記錄並恢復視窗位置 (將位置儲存到文件裡)" -#: ../src/ui/dialog/inkscape-preferences.cpp:664 +#: ../src/ui/dialog/inkscape-preferences.cpp:666 msgid "Saving dialogs status" msgstr "儲存對話窗狀態" -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:670 msgid "" "Save and restore dialogs status (the last open windows dialogs are saved " "when it closes)" msgstr "儲存和恢復對話窗狀態 (程式關閉時儲存最後開啟的對話窗)" -#: ../src/ui/dialog/inkscape-preferences.cpp:672 +#: ../src/ui/dialog/inkscape-preferences.cpp:674 msgid "Dialog behavior (requires restart)" msgstr "對話窗行為 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:678 +#: ../src/ui/dialog/inkscape-preferences.cpp:680 msgid "Desktop integration" msgstr "桌面整合" -#: ../src/ui/dialog/inkscape-preferences.cpp:680 +#: ../src/ui/dialog/inkscape-preferences.cpp:682 msgid "Use Windows like open and save dialogs" msgstr "使用 Windows 外觀的開啟和儲存對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:682 +#: ../src/ui/dialog/inkscape-preferences.cpp:684 msgid "Use GTK open and save dialogs " msgstr "使用 GTK 的開啟和儲存對話窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:686 +#: ../src/ui/dialog/inkscape-preferences.cpp:688 msgid "Dialogs on top:" msgstr "對話窗置於最上層:" -#: ../src/ui/dialog/inkscape-preferences.cpp:689 +#: ../src/ui/dialog/inkscape-preferences.cpp:691 msgid "Dialogs are treated as regular windows" msgstr "對話窗視為一般視窗" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:693 msgid "Dialogs stay on top of document windows" msgstr "對話窗維持在文件視窗的最上層" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:695 msgid "Same as Normal but may work better with some window managers" msgstr "和普通相同,但用某些視窗管理程式效果更好" -#: ../src/ui/dialog/inkscape-preferences.cpp:696 +#: ../src/ui/dialog/inkscape-preferences.cpp:698 msgid "Dialog Transparency" msgstr "對話窗透明度" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:700 msgid "_Opacity when focused:" -msgstr "工作中不透明度:" +msgstr "工作中對話窗不透明度(_O):" -#: ../src/ui/dialog/inkscape-preferences.cpp:700 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:702 msgid "Opacity when _unfocused:" -msgstr "非工作中不透明度:" +msgstr "非工作中對話窗不透明度(_U):" -#: ../src/ui/dialog/inkscape-preferences.cpp:702 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:704 msgid "_Time of opacity change animation:" -msgstr "不透明度改變動畫的時間:" +msgstr "不透明度變化動畫時間(_T):" -#: ../src/ui/dialog/inkscape-preferences.cpp:705 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "Miscellaneous" msgstr "其他" -#: ../src/ui/dialog/inkscape-preferences.cpp:708 +#: ../src/ui/dialog/inkscape-preferences.cpp:710 msgid "Whether dialog windows are to be hidden in the window manager taskbar" msgstr "對話視窗是否要隱藏在視窗管理程式任務欄裡" -#: ../src/ui/dialog/inkscape-preferences.cpp:711 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "" "Zoom drawing when document window is resized, to keep the same area visible " "(this is the default which can be changed in any window using the button " @@ -16777,187 +17876,181 @@ msgstr "" "調整文件視窗大小時縮放畫面,以維持相同的可見區域 (此為預設值,使用右側捲動軸" "上方按鈕的任何視窗都可變更)" -#: ../src/ui/dialog/inkscape-preferences.cpp:713 +#: ../src/ui/dialog/inkscape-preferences.cpp:715 msgid "" "Save documents viewport (zoom and panning position). Useful to turn off when " "sharing version controlled files." msgstr "" +"儲存文件視埠 (畫面縮放和平移位置)。若檔案由共用版本控制時關閉此功能會比較方" +"便。" -#: ../src/ui/dialog/inkscape-preferences.cpp:715 +#: ../src/ui/dialog/inkscape-preferences.cpp:717 msgid "Whether dialog windows have a close button (requires restart)" msgstr "對話視窗是否有關閉按鈕 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:716 +#: ../src/ui/dialog/inkscape-preferences.cpp:718 msgid "Windows" msgstr "視窗" #. Grids -#: ../src/ui/dialog/inkscape-preferences.cpp:719 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Line color when zooming out" -msgstr "" +msgstr "縮小畫面時線條顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:722 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:724 msgid "The gridlines will be shown in minor grid line color" -msgstr "若設定且放大畫面,參考線會顯示一般顏色而不是主要格線的顏色" +msgstr "以次要格線顏色顯示格線" -#: ../src/ui/dialog/inkscape-preferences.cpp:724 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:726 msgid "The gridlines will be shown in major grid line color" -msgstr "若設定且放大畫面,參考線會顯示一般顏色而不是主要格線的顏色" +msgstr "以主要格線顏色顯示格線" -#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 msgid "Default grid settings" msgstr "預設格線設定值" -#: ../src/ui/dialog/inkscape-preferences.cpp:732 -#: ../src/ui/dialog/inkscape-preferences.cpp:757 +#: ../src/ui/dialog/inkscape-preferences.cpp:734 +#: ../src/ui/dialog/inkscape-preferences.cpp:759 msgid "Grid units:" msgstr "格線單位:" -#: ../src/ui/dialog/inkscape-preferences.cpp:737 -#: ../src/ui/dialog/inkscape-preferences.cpp:762 +#: ../src/ui/dialog/inkscape-preferences.cpp:739 +#: ../src/ui/dialog/inkscape-preferences.cpp:764 msgid "Origin X:" msgstr "X 原點:" -#: ../src/ui/dialog/inkscape-preferences.cpp:738 -#: ../src/ui/dialog/inkscape-preferences.cpp:763 +#: ../src/ui/dialog/inkscape-preferences.cpp:740 +#: ../src/ui/dialog/inkscape-preferences.cpp:765 msgid "Origin Y:" msgstr "Y 原點:" -#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/ui/dialog/inkscape-preferences.cpp:745 msgid "Spacing X:" msgstr "X 間距:" -#: ../src/ui/dialog/inkscape-preferences.cpp:744 -#: ../src/ui/dialog/inkscape-preferences.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:746 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Spacing Y:" msgstr "Y 間距:" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:747 -#: ../src/ui/dialog/inkscape-preferences.cpp:771 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:748 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:773 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 msgid "Minor grid line color:" -msgstr "主要格線顏色:" +msgstr "次要格線顏色:" -#: ../src/ui/dialog/inkscape-preferences.cpp:747 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 msgid "Color used for normal grid lines" msgstr "一般格線顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:773 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:750 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 +#: ../src/ui/dialog/inkscape-preferences.cpp:776 msgid "Major grid line color:" msgstr "主要格線顏色:" -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:776 msgid "Color used for major (highlighted) grid lines" msgstr "主要格線 (高亮度顯示) 顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:751 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:778 msgid "Major grid line every:" msgstr "主要格線的間隔數:" -#: ../src/ui/dialog/inkscape-preferences.cpp:752 +#: ../src/ui/dialog/inkscape-preferences.cpp:754 msgid "Show dots instead of lines" msgstr "顯示點而非線" -#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:755 msgid "If set, display dots at gridpoints instead of gridlines" msgstr "若設定,格點上會顯示點而不是線" -#: ../src/ui/dialog/inkscape-preferences.cpp:834 +#: ../src/ui/dialog/inkscape-preferences.cpp:836 msgid "Input/Output" msgstr "輸入 / 輸出" -#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:839 msgid "Use current directory for \"Save As ...\"" msgstr "「另存新檔 ...」使用目前目錄" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:841 msgid "" -"When this option is on, the \"Save as...\" and \"Save a Copy\" dialogs will " -"always open in the directory where the currently open document is; when it's " -"off, each will open in the directory where you last saved a file using it" +"When this option is on, the \"Save as...\" and \"Save a Copy...\" dialogs " +"will always open in the directory where the currently open document is; when " +"it's off, each will open in the directory where you last saved a file using " +"it" msgstr "" -"啟用該選項時,「另存新檔 ...」和「儲存副本」對話窗每次都會以目前檔案所在的目" -"錄開啟;若停用該選項,則會以此對話窗最近儲存檔案的目錄開啟" +"當啟用此選項時,「另存新檔 ...」和「儲存副本...」對話窗每次都會以目前檔案所在的目" +"錄開啟;若停用此選項,則會以此對話窗最近儲存檔案的目錄開啟" -#: ../src/ui/dialog/inkscape-preferences.cpp:841 +#: ../src/ui/dialog/inkscape-preferences.cpp:843 msgid "Add label comments to printing output" msgstr "將標籤註解加入到列印輸出" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:845 msgid "" "When on, a comment will be added to the raw print output, marking the " "rendered output for an object with its label" -msgstr "開啟時,將註解加入到原始列印輸出,用其標籤來標示物件的圖形潤算輸出" +msgstr "開啟時,將註解加入到原始列印輸出,用其標籤來標示物件的圖形繪算輸出" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:847 msgid "Add default metadata to new documents" -msgstr "編輯文件中繼資料 (和文件儲存在一起)" +msgstr "加入預設中繼資料到新文件" -#: ../src/ui/dialog/inkscape-preferences.cpp:847 +#: ../src/ui/dialog/inkscape-preferences.cpp:849 msgid "" "Add default metadata to new documents. Default metadata can be set from " "Document Properties->Metadata." -msgstr "" +msgstr "加入預設中繼資料到新文件。預設中繼資料可從文件屬性 -> 中繼資料中設定。" -#: ../src/ui/dialog/inkscape-preferences.cpp:851 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:853 msgid "_Grab sensitivity:" -msgstr "抓取靈敏度:" +msgstr "抓取靈敏度(_G):" -#: ../src/ui/dialog/inkscape-preferences.cpp:851 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:853 msgid "pixels (requires restart)" -msgstr "(需要重新啟動)" +msgstr "像素 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:852 +#: ../src/ui/dialog/inkscape-preferences.cpp:854 msgid "" "How close on the screen you need to be to an object to be able to grab it " "with mouse (in screen pixels)" msgstr "螢幕上需要離某個物件多靠近才能用滑鼠來抓住物件 (單位為螢幕像素)" -#: ../src/ui/dialog/inkscape-preferences.cpp:854 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:856 msgid "_Click/drag threshold:" -msgstr "點擊 / 拖曳臨界值:" +msgstr "點擊 / 拖曳臨界值(_C):" -#: ../src/ui/dialog/inkscape-preferences.cpp:854 -#: ../src/ui/dialog/inkscape-preferences.cpp:1196 -#: ../src/ui/dialog/inkscape-preferences.cpp:1200 -#: ../src/ui/dialog/inkscape-preferences.cpp:1210 +#: ../src/ui/dialog/inkscape-preferences.cpp:856 +#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1212 msgid "pixels" msgstr "像素" -#: ../src/ui/dialog/inkscape-preferences.cpp:855 +#: ../src/ui/dialog/inkscape-preferences.cpp:857 msgid "" "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" msgstr "滑鼠拖曳最大值 (單位為螢幕像素),用以判斷為點擊而不是拖曳" -#: ../src/ui/dialog/inkscape-preferences.cpp:858 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:860 msgid "_Handle size:" -msgstr "控制點" +msgstr "控制柄尺寸(_H):" -#: ../src/ui/dialog/inkscape-preferences.cpp:859 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:861 msgid "Set the relative size of node handles" -msgstr "移動節點控柄" +msgstr "設定節點控制柄的相對大小" -#: ../src/ui/dialog/inkscape-preferences.cpp:861 +#: ../src/ui/dialog/inkscape-preferences.cpp:863 msgid "Use pressure-sensitive tablet (requires restart)" msgstr "使用感壓繪圖板 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:863 +#: ../src/ui/dialog/inkscape-preferences.cpp:865 msgid "" "Use the capabilities of a tablet or other pressure-sensitive device. Disable " "this only if you have problems with the tablet (you can still use it as a " @@ -16966,112 +18059,109 @@ msgstr "" "使用繪圖板或其他感壓裝置的功能。只在使用繪圖板出現問題時才停用此功能 (依然能" "夠將裝置當作滑鼠使用)" -#: ../src/ui/dialog/inkscape-preferences.cpp:865 +#: ../src/ui/dialog/inkscape-preferences.cpp:867 msgid "Switch tool based on tablet device (requires restart)" msgstr "根據繪圖板裝置來切換工具 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:867 +#: ../src/ui/dialog/inkscape-preferences.cpp:869 msgid "" "Change tool as different devices are used on the tablet (pen, eraser, mouse)" msgstr "在繪圖板上使用不同裝置時改變工具 (筆、橡皮擦、滑鼠)" -#: ../src/ui/dialog/inkscape-preferences.cpp:868 +#: ../src/ui/dialog/inkscape-preferences.cpp:870 msgid "Input devices" msgstr "輸入裝置" #. SVG output options -#: ../src/ui/dialog/inkscape-preferences.cpp:871 +#: ../src/ui/dialog/inkscape-preferences.cpp:873 msgid "Use named colors" msgstr "使用命名顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:872 +#: ../src/ui/dialog/inkscape-preferences.cpp:874 msgid "" "If set, write the CSS name of the color when available (e.g. 'red' or " "'magenta') instead of the numeric value" -msgstr "" -"若設定,可用 (例如:'red' 或 'magenta') 時寫入顏色的 CSS 名稱而不是數值" +msgstr "若設定,可用 (例如:'red' 或 'magenta') 時寫入顏色的 CSS 名稱而不是數值" -#: ../src/ui/dialog/inkscape-preferences.cpp:874 +#: ../src/ui/dialog/inkscape-preferences.cpp:876 msgid "XML formatting" msgstr "XML 格式化" -#: ../src/ui/dialog/inkscape-preferences.cpp:876 +#: ../src/ui/dialog/inkscape-preferences.cpp:878 msgid "Inline attributes" msgstr "內部屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:877 +#: ../src/ui/dialog/inkscape-preferences.cpp:879 msgid "Put attributes on the same line as the element tag" msgstr "將屬性置於同一行作為元件標籤" -#: ../src/ui/dialog/inkscape-preferences.cpp:880 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:882 msgid "_Indent, spaces:" -msgstr "縮排,間距:" +msgstr "縮排,間距(_I):" -#: ../src/ui/dialog/inkscape-preferences.cpp:880 +#: ../src/ui/dialog/inkscape-preferences.cpp:882 msgid "" "The number of spaces to use for indenting nested elements; set to 0 for no " "indentation" msgstr "用以縮排嵌套元件的間隔數;設為 0 代表不縮排" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 +#: ../src/ui/dialog/inkscape-preferences.cpp:884 msgid "Path data" msgstr "路徑資料" -#: ../src/ui/dialog/inkscape-preferences.cpp:885 +#: ../src/ui/dialog/inkscape-preferences.cpp:887 msgid "Absolute" -msgstr "" +msgstr "絕對" -#: ../src/ui/dialog/inkscape-preferences.cpp:885 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:887 msgid "Relative" -msgstr "相對於:" +msgstr "相對" -#: ../src/ui/dialog/inkscape-preferences.cpp:885 -#: ../src/ui/dialog/inkscape-preferences.cpp:1175 +#: ../src/ui/dialog/inkscape-preferences.cpp:887 +#: ../src/ui/dialog/inkscape-preferences.cpp:1177 msgid "Optimized" msgstr "最佳化" -#: ../src/ui/dialog/inkscape-preferences.cpp:889 +#: ../src/ui/dialog/inkscape-preferences.cpp:891 msgid "Path string format:" -msgstr "" +msgstr "路徑字串格式:" -#: ../src/ui/dialog/inkscape-preferences.cpp:889 +#: ../src/ui/dialog/inkscape-preferences.cpp:891 msgid "" "Path data should be written: only with absolute coordinates, only with " "relative coordinates, or optimized for string length (mixed absolute and " "relative coordinates)" msgstr "" +"路徑資料應該已寫入:只用絕對坐標、只用相對坐標或者依據字串長度最佳化 (結合絕" +"對坐標和相對坐標)" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:893 msgid "Force repeat commands" msgstr "強制重複命令" -#: ../src/ui/dialog/inkscape-preferences.cpp:892 +#: ../src/ui/dialog/inkscape-preferences.cpp:894 msgid "" "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead " "of 'L 1,2 3,4')" msgstr "相同路徑的強制重複命令 (舉例,用「L 1,2 L 3,4」替代「L 1,2 3,4」)" -#: ../src/ui/dialog/inkscape-preferences.cpp:894 +#: ../src/ui/dialog/inkscape-preferences.cpp:896 msgid "Numbers" msgstr "數值" -#: ../src/ui/dialog/inkscape-preferences.cpp:897 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "_Numeric precision:" -msgstr "數值精確度:" +msgstr "數值精確度(_N):" -#: ../src/ui/dialog/inkscape-preferences.cpp:897 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Significant figures of the values written to the SVG file" msgstr "寫入到 SVG 檔數值的有效位數" -#: ../src/ui/dialog/inkscape-preferences.cpp:900 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "Minimum _exponent:" -msgstr "最小指數:" +msgstr "最小指數(_E):" -#: ../src/ui/dialog/inkscape-preferences.cpp:900 +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "" "The smallest number written to SVG is 10 to the power of this exponent; " "anything smaller is written as zero" @@ -17079,17 +18169,17 @@ msgstr "寫入到 SVG 指數次方最小為 10;任何更小的數字都會用 #. Code to add controls for attribute checking options #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:905 +#: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Improper Attributes Actions" msgstr "不恰當的屬性動作" -#: ../src/ui/dialog/inkscape-preferences.cpp:907 -#: ../src/ui/dialog/inkscape-preferences.cpp:915 -#: ../src/ui/dialog/inkscape-preferences.cpp:923 +#: ../src/ui/dialog/inkscape-preferences.cpp:909 +#: ../src/ui/dialog/inkscape-preferences.cpp:917 +#: ../src/ui/dialog/inkscape-preferences.cpp:925 msgid "Print warnings" msgstr "印出警告訊息" -#: ../src/ui/dialog/inkscape-preferences.cpp:908 +#: ../src/ui/dialog/inkscape-preferences.cpp:910 msgid "" "Print warning if invalid or non-useful attributes found. Database files " "located in inkscape_data_dir/attributes." @@ -17097,21 +18187,20 @@ msgstr "" "若發現無效或無用的屬性則印出警告訊息。資料庫檔案位置在「inkscape_data_dir/" "attributes」。" -#: ../src/ui/dialog/inkscape-preferences.cpp:909 +#: ../src/ui/dialog/inkscape-preferences.cpp:911 msgid "Remove attributes" msgstr "移除屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:910 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:912 msgid "Delete invalid or non-useful attributes from element tag" -msgstr "從元件標籤中刪除無效或無用的屬性。" +msgstr "從元件標籤中刪除無效或無用的屬性" #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:913 +#: ../src/ui/dialog/inkscape-preferences.cpp:915 msgid "Inappropriate Style Properties Actions" msgstr "不恰當的樣式屬性動作" -#: ../src/ui/dialog/inkscape-preferences.cpp:916 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "" "Print warning if inappropriate style properties found (i.e. 'font-family' " "set on a ). Database files located in inkscape_data_dir/attributes." @@ -17119,22 +18208,21 @@ msgstr "" "若發現不恰當的樣式屬性則印出警告訊息 (例如「font-family」設定在 上)。" "資料庫檔案位置在「inkscape_data_dir/attributes」。" -#: ../src/ui/dialog/inkscape-preferences.cpp:917 -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:919 +#: ../src/ui/dialog/inkscape-preferences.cpp:927 msgid "Remove style properties" msgstr "移除樣式屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:918 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:920 msgid "Delete inappropriate style properties" -msgstr "刪除不恰當的樣式屬性。" +msgstr "刪除不恰當的樣式屬性" #. Add default or inherited style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:921 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Non-useful Style Properties Actions" msgstr "無用的樣式屬性動作" -#: ../src/ui/dialog/inkscape-preferences.cpp:924 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "" "Print warning if redundant style properties found (i.e. if a property has " "the default value and a different value is not inherited or if value is the " @@ -17144,77 +18232,70 @@ msgstr "" "若發現多餘的樣式屬性則印出警告訊息 (例如樣式屬性本身有預設值卻繼承不同的數值" "或者數值與繼承的數值相同)。資料庫檔案位置在「inkscape_data_dir/attributes」。" -#: ../src/ui/dialog/inkscape-preferences.cpp:926 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Delete redundant style properties" -msgstr "刪除多餘的樣式屬性。" +msgstr "刪除多餘的樣式屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:928 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:930 msgid "Check Attributes and Style Properties on" -msgstr "檢查屬性和樣式屬性:" +msgstr "檢查屬性和樣式屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:930 +#: ../src/ui/dialog/inkscape-preferences.cpp:932 msgid "Reading" msgstr "讀取階段" -#: ../src/ui/dialog/inkscape-preferences.cpp:931 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "" "Check attributes and style properties on reading in SVG files (including " "those internal to Inkscape which will slow down startup)" msgstr "" "讀取 SVG 檔案時檢查屬性值和樣式屬性 (包括 Inkscape 內部的數值,這會讓程式啟動" -"變慢)。" +"變慢)" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:934 msgid "Editing" msgstr "編輯階段" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:935 msgid "" "Check attributes and style properties while editing SVG files (may slow down " "Inkscape, mostly useful for debugging)" -msgstr "" -"編輯 SVG 檔案時檢查屬性值和樣式屬性 (可能會讓 Inkscape 變慢,大部分用來除" -"錯)。" +msgstr "編輯 SVG 檔案時檢查屬性值和樣式屬性 (可能會讓 Inkscape 變慢,大多用來除錯)" -#: ../src/ui/dialog/inkscape-preferences.cpp:934 +#: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "Writing" msgstr "寫入階段" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:937 msgid "Check attributes and style properties on writing out SVG files" -msgstr "寫入 SVG 檔案時檢查屬性值和樣式屬性。" +msgstr "寫入 SVG 檔案時檢查屬性值和樣式屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:939 msgid "SVG output" msgstr "SVG 輸出" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:945 msgid "Perceptual" msgstr "知覺式" -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:945 msgid "Relative Colorimetric" msgstr "相對比色" -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:945 msgid "Absolute Colorimetric" msgstr "絕對比色" -#: ../src/ui/dialog/inkscape-preferences.cpp:947 +#: ../src/ui/dialog/inkscape-preferences.cpp:949 msgid "(Note: Color management has been disabled in this build)" msgstr "(備註:這次編譯已停用色彩管理)" -#: ../src/ui/dialog/inkscape-preferences.cpp:951 +#: ../src/ui/dialog/inkscape-preferences.cpp:953 msgid "Display adjustment" msgstr "顯示器調整值" -#: ../src/ui/dialog/inkscape-preferences.cpp:961 +#: ../src/ui/dialog/inkscape-preferences.cpp:963 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" @@ -17223,142 +18304,141 @@ msgstr "" "用於校正顯示器輸出的 ICC 描述檔。\n" "搜尋的資料夾:%s" -#: ../src/ui/dialog/inkscape-preferences.cpp:962 +#: ../src/ui/dialog/inkscape-preferences.cpp:964 msgid "Display profile:" msgstr "顯示器描述檔:" -#: ../src/ui/dialog/inkscape-preferences.cpp:967 +#: ../src/ui/dialog/inkscape-preferences.cpp:969 msgid "Retrieve profile from display" msgstr "從顯示器檢索描述檔" -#: ../src/ui/dialog/inkscape-preferences.cpp:970 +#: ../src/ui/dialog/inkscape-preferences.cpp:972 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "從經由 XICC 連接到顯示器的裝置檢索描述檔" -#: ../src/ui/dialog/inkscape-preferences.cpp:972 +#: ../src/ui/dialog/inkscape-preferences.cpp:974 msgid "Retrieve profiles from those attached to displays" msgstr "從連接到顯示器的裝置檢索描述檔" -#: ../src/ui/dialog/inkscape-preferences.cpp:977 +#: ../src/ui/dialog/inkscape-preferences.cpp:979 msgid "Display rendering intent:" msgstr "顯示器色彩對應方式:" -#: ../src/ui/dialog/inkscape-preferences.cpp:978 +#: ../src/ui/dialog/inkscape-preferences.cpp:980 msgid "The rendering intent to use to calibrate display output" msgstr "用於校準顯示器輸出的色彩對應方式" -#: ../src/ui/dialog/inkscape-preferences.cpp:980 +#: ../src/ui/dialog/inkscape-preferences.cpp:982 msgid "Proofing" msgstr "校樣" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 +#: ../src/ui/dialog/inkscape-preferences.cpp:984 msgid "Simulate output on screen" msgstr "模擬螢幕上的輸出" -#: ../src/ui/dialog/inkscape-preferences.cpp:984 +#: ../src/ui/dialog/inkscape-preferences.cpp:986 msgid "Simulates output of target device" msgstr "模擬目標裝置的輸出" -#: ../src/ui/dialog/inkscape-preferences.cpp:986 +#: ../src/ui/dialog/inkscape-preferences.cpp:988 msgid "Mark out of gamut colors" msgstr "標示超出色域的顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:988 +#: ../src/ui/dialog/inkscape-preferences.cpp:990 msgid "Highlights colors that are out of gamut for the target device" msgstr "超出目標裝置色域的高亮度顯示顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:1000 +#: ../src/ui/dialog/inkscape-preferences.cpp:1002 msgid "Out of gamut warning color:" msgstr "超出色域的警告顏色:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1001 +#: ../src/ui/dialog/inkscape-preferences.cpp:1003 msgid "Selects the color used for out of gamut warning" msgstr "選擇用來警告超出色域的顏色" -#: ../src/ui/dialog/inkscape-preferences.cpp:1003 +#: ../src/ui/dialog/inkscape-preferences.cpp:1005 msgid "Device profile:" msgstr "裝置描述檔:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1004 +#: ../src/ui/dialog/inkscape-preferences.cpp:1006 msgid "The ICC profile to use to simulate device output" msgstr "用於模擬裝置輸出的 ICC 描述檔" -#: ../src/ui/dialog/inkscape-preferences.cpp:1007 +#: ../src/ui/dialog/inkscape-preferences.cpp:1009 msgid "Device rendering intent:" msgstr "裝置色彩對應方式:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1008 +#: ../src/ui/dialog/inkscape-preferences.cpp:1010 msgid "The rendering intent to use to calibrate device output" msgstr "用於校準顯示器輸出的色彩對應方式" -#: ../src/ui/dialog/inkscape-preferences.cpp:1010 +#: ../src/ui/dialog/inkscape-preferences.cpp:1012 msgid "Black point compensation" msgstr "黑點補償" -#: ../src/ui/dialog/inkscape-preferences.cpp:1012 +#: ../src/ui/dialog/inkscape-preferences.cpp:1014 msgid "Enables black point compensation" msgstr "啟用黑點補償" -#: ../src/ui/dialog/inkscape-preferences.cpp:1014 +#: ../src/ui/dialog/inkscape-preferences.cpp:1016 msgid "Preserve black" msgstr "保留黑色色版" -#: ../src/ui/dialog/inkscape-preferences.cpp:1021 +#: ../src/ui/dialog/inkscape-preferences.cpp:1023 msgid "(LittleCMS 1.15 or later required)" msgstr "(需要 LittleCMS 1.15 或更新的版本)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1023 +#: ../src/ui/dialog/inkscape-preferences.cpp:1025 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "在 CMYK -> CMYK 轉換時保留黑色色版" -#: ../src/ui/dialog/inkscape-preferences.cpp:1037 -#: ../src/widgets/sp-color-icc-selector.cpp:474 -#: ../src/widgets/sp-color-icc-selector.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:1039 +#: ../src/widgets/sp-color-icc-selector.cpp:449 +#: ../src/widgets/sp-color-icc-selector.cpp:741 msgid "" msgstr "<無>" -#: ../src/ui/dialog/inkscape-preferences.cpp:1082 +#: ../src/ui/dialog/inkscape-preferences.cpp:1084 msgid "Color management" msgstr "色彩管理" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1085 +#: ../src/ui/dialog/inkscape-preferences.cpp:1087 msgid "Enable autosave (requires restart)" msgstr "啟用自動儲存 (需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1086 +#: ../src/ui/dialog/inkscape-preferences.cpp:1088 msgid "" "Automatically save the current document(s) at a given interval, thus " "minimizing loss in case of a crash" msgstr "每經過給定的時間就自動儲存檔案,以將程式不正常關閉時的損失降到最低" -#: ../src/ui/dialog/inkscape-preferences.cpp:1092 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgctxt "Filesystem" msgid "Autosave _directory:" -msgstr "圖片 zip 目錄:" +msgstr "自動儲存目錄(_D):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1092 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "" "The directory where autosaves will be written. This should be an absolute " "path (starts with / on UNIX or a drive letter such as C: on Windows). " msgstr "" +"自動儲存會寫入此目錄中。這應該為絕對路徑 (在 Unix 系統上為 / 開頭而 Windows " +"則是磁碟字母開頭例如 C:)。" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1096 msgid "_Interval (in minutes):" -msgstr "時間間隔 (分鐘):" +msgstr "時間間隔 (分鐘)(_I):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 +#: ../src/ui/dialog/inkscape-preferences.cpp:1096 msgid "Interval (in minutes) at which document will be autosaved" msgstr "每經過多久時間 (分鐘) 就自動儲存檔案" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1098 msgid "_Maximum number of autosaves:" -msgstr "自動儲存的最大數量:" +msgstr "自動儲存的最大數量(_M):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1098 msgid "" "Maximum number of autosaved files; use this to limit the storage space used" msgstr "自動存檔的最大數量;用這項數值以限制使用的儲存空間" @@ -17375,53 +18455,49 @@ msgstr "自動存檔的最大數量;用這項數值以限制使用的儲存空 #. _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE ); #. #. ----------- -#: ../src/ui/dialog/inkscape-preferences.cpp:1111 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "Autosave" msgstr "自動儲存" -#: ../src/ui/dialog/inkscape-preferences.cpp:1115 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1117 msgid "Open Clip Art Library _Server Name:" -msgstr "開放美工圖庫伺服器名稱:" +msgstr "開放美工圖庫伺服器名稱(_S):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1116 +#: ../src/ui/dialog/inkscape-preferences.cpp:1118 msgid "" "The server name of the Open Clip Art Library webdav server; it's used by the " "Import and Export to OCAL function" msgstr "開放美工圖庫 webdav 伺服器的名稱;該名稱用於匯入和匯出到 OCAL 函數" -#: ../src/ui/dialog/inkscape-preferences.cpp:1118 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Open Clip Art Library _Username:" -msgstr "開放美工圖庫使用者名稱:" +msgstr "開放美工圖庫使用者名稱(_U):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "The username used to log into Open Clip Art Library" msgstr "用於登入開放美工圖庫的使用者名稱" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Open Clip Art Library _Password:" -msgstr "開放美工圖庫密碼:" +msgstr "開放美工圖庫密碼(_P):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "The password used to log into Open Clip Art Library" msgstr "用於登入開放美工圖庫的密碼" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Open Clip Art" msgstr "開放美工圖庫" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Behavior" msgstr "行為" -#: ../src/ui/dialog/inkscape-preferences.cpp:1132 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1134 msgid "_Simplification threshold:" -msgstr "簡化臨界值:" +msgstr "簡化臨界值(_S):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1133 +#: ../src/ui/dialog/inkscape-preferences.cpp:1135 msgid "" "How strong is the Node tool's Simplify command by default. If you invoke " "this command several times in quick succession, it will act more and more " @@ -17430,212 +18506,208 @@ msgstr "" "節點工具「簡化」指令的預設強度。如果你一連串地執行這個指令許多次,作用會愈來" "愈強烈;短暫停一下後再執行可恢復預設的臨界值。" -#: ../src/ui/dialog/inkscape-preferences.cpp:1135 +#: ../src/ui/dialog/inkscape-preferences.cpp:1137 msgid "Color stock markers the same color as object" -msgstr "" +msgstr "彩色配備標記與物件顏色相同" -#: ../src/ui/dialog/inkscape-preferences.cpp:1136 +#: ../src/ui/dialog/inkscape-preferences.cpp:1138 msgid "Color custom markers the same color as object" -msgstr "" +msgstr "自訂顏色標記與物件顏色相同" -#: ../src/ui/dialog/inkscape-preferences.cpp:1137 -#: ../src/ui/dialog/inkscape-preferences.cpp:1347 +#: ../src/ui/dialog/inkscape-preferences.cpp:1139 +#: ../src/ui/dialog/inkscape-preferences.cpp:1349 msgid "Update marker color when object color changes" -msgstr "" +msgstr "當物件改變顏色時更新標記顏色" #. Selecting options -#: ../src/ui/dialog/inkscape-preferences.cpp:1140 +#: ../src/ui/dialog/inkscape-preferences.cpp:1142 msgid "Select in all layers" msgstr "在所有圖層中選取" -#: ../src/ui/dialog/inkscape-preferences.cpp:1141 +#: ../src/ui/dialog/inkscape-preferences.cpp:1143 msgid "Select only within current layer" msgstr "只在目前圖層中選取" -#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1144 msgid "Select in current layer and sublayers" msgstr "在目前圖層和子圖層中選取" -#: ../src/ui/dialog/inkscape-preferences.cpp:1143 +#: ../src/ui/dialog/inkscape-preferences.cpp:1145 msgid "Ignore hidden objects and layers" msgstr "忽略已隱藏的物件和圖層" -#: ../src/ui/dialog/inkscape-preferences.cpp:1144 +#: ../src/ui/dialog/inkscape-preferences.cpp:1146 msgid "Ignore locked objects and layers" msgstr "忽略已鎖定的物件和圖層" -#: ../src/ui/dialog/inkscape-preferences.cpp:1145 +#: ../src/ui/dialog/inkscape-preferences.cpp:1147 msgid "Deselect upon layer change" msgstr "取消即將進行的圖層變更" -#: ../src/ui/dialog/inkscape-preferences.cpp:1148 +#: ../src/ui/dialog/inkscape-preferences.cpp:1150 msgid "" "Uncheck this to be able to keep the current objects selected when the " "current layer changes" msgstr "取消勾選這一項可在圖層改變時保持物件為選取狀態" -#: ../src/ui/dialog/inkscape-preferences.cpp:1150 +#: ../src/ui/dialog/inkscape-preferences.cpp:1152 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "Ctrl+A, Tab, Shift+Tab" -#: ../src/ui/dialog/inkscape-preferences.cpp:1152 +#: ../src/ui/dialog/inkscape-preferences.cpp:1154 msgid "Make keyboard selection commands work on objects in all layers" msgstr "讓鍵盤選取指令對所有圖層的物件都有作用" -#: ../src/ui/dialog/inkscape-preferences.cpp:1154 +#: ../src/ui/dialog/inkscape-preferences.cpp:1156 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "讓鍵盤選取指令只對目前圖層的物件有作用" -#: ../src/ui/dialog/inkscape-preferences.cpp:1156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1158 msgid "" "Make keyboard selection commands work on objects in current layer and all " "its sublayers" msgstr "讓鍵盤選取指令對目前圖層和其子圖層的物件有作用" -#: ../src/ui/dialog/inkscape-preferences.cpp:1158 +#: ../src/ui/dialog/inkscape-preferences.cpp:1160 msgid "" "Uncheck this to be able to select objects that are hidden (either by " "themselves or by being in a hidden layer)" msgstr "取消勾選這一項可選取隱藏物件 (不論是本身隱藏或者位於隱藏群組或圖層裡)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1160 +#: ../src/ui/dialog/inkscape-preferences.cpp:1162 msgid "" "Uncheck this to be able to select objects that are locked (either by " "themselves or by being in a locked layer)" msgstr "取消勾選這一項可選取鎖定物件 (不論是本身鎖定或者位於鎖定群組或圖層裡)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1164 msgid "Wrap when cycling objects in z-order" -msgstr "" +msgstr "依順序切換物件時永續循環" -#: ../src/ui/dialog/inkscape-preferences.cpp:1164 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Alt+Scroll Wheel" -msgstr "" +msgstr "Alt+滑鼠滾輪" -#: ../src/ui/dialog/inkscape-preferences.cpp:1166 +#: ../src/ui/dialog/inkscape-preferences.cpp:1168 msgid "Wrap around at start and end when cycling objects in z-order" -msgstr "" +msgstr "當依順序切換物件時永續循環起點和終點" -#: ../src/ui/dialog/inkscape-preferences.cpp:1168 +#: ../src/ui/dialog/inkscape-preferences.cpp:1170 msgid "Selecting" msgstr "選取" #. Transforms options -#: ../src/ui/dialog/inkscape-preferences.cpp:1171 -#: ../src/widgets/select-toolbar.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/widgets/select-toolbar.cpp:572 msgid "Scale stroke width" msgstr "縮放邊框寬度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1172 +#: ../src/ui/dialog/inkscape-preferences.cpp:1174 msgid "Scale rounded corners in rectangles" msgstr "縮放矩形的圓角" -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/ui/dialog/inkscape-preferences.cpp:1175 msgid "Transform gradients" msgstr "漸層變形" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1176 msgid "Transform patterns" msgstr "圖樣變形" -#: ../src/ui/dialog/inkscape-preferences.cpp:1176 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Preserved" msgstr "保存" -#: ../src/ui/dialog/inkscape-preferences.cpp:1179 -#: ../src/widgets/select-toolbar.cpp:571 +#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "縮放物件時,以相同比例縮放邊框寬度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 -#: ../src/widgets/select-toolbar.cpp:582 +#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/widgets/select-toolbar.cpp:584 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "縮放矩形時,同時縮放圓角的半徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 -#: ../src/widgets/select-toolbar.cpp:593 +#: ../src/ui/dialog/inkscape-preferences.cpp:1185 +#: ../src/widgets/select-toolbar.cpp:595 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "隨著物件移動漸層 (填充或邊框)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1185 -#: ../src/widgets/select-toolbar.cpp:604 +#: ../src/ui/dialog/inkscape-preferences.cpp:1187 +#: ../src/widgets/select-toolbar.cpp:606 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "隨著物件移動圖樣 (填充或邊框)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1186 +#: ../src/ui/dialog/inkscape-preferences.cpp:1188 msgid "Store transformation" msgstr "儲存變形" -#: ../src/ui/dialog/inkscape-preferences.cpp:1188 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 msgid "" "If possible, apply transformation to objects without adding a transform= " "attribute" msgstr "若可能的話,不加上 transform= 屬性將變形套用到物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1190 +#: ../src/ui/dialog/inkscape-preferences.cpp:1192 msgid "Always store transformation as a transform= attribute on objects" msgstr "始終儲存變形效果作為物件的 transform= 屬性" -#: ../src/ui/dialog/inkscape-preferences.cpp:1192 +#: ../src/ui/dialog/inkscape-preferences.cpp:1194 msgid "Transforms" msgstr "變形" -#: ../src/ui/dialog/inkscape-preferences.cpp:1196 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1198 msgid "Mouse _wheel scrolls by:" -msgstr "滑鼠滾輪的捲動距離:" +msgstr "滑鼠滾輪的捲動距離(_W):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1197 +#: ../src/ui/dialog/inkscape-preferences.cpp:1199 msgid "" "One mouse wheel notch scrolls by this distance in screen pixels " "(horizontally with Shift)" msgstr "一格滑鼠滾輪刻度在螢幕上捲動的像素距離 (按著 Shift 可水平捲動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1200 msgid "Ctrl+arrows" msgstr "Ctrl+方向鍵" -#: ../src/ui/dialog/inkscape-preferences.cpp:1200 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1202 msgid "Sc_roll by:" -msgstr "捲動距離:" +msgstr "捲動距離(_R):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "按 Ctrl+方向鍵在螢幕上捲動的距離 (單位為螢幕像素)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1203 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "_Acceleration:" -msgstr "加速:" +msgstr "加速(_A):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1206 msgid "" "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no " "acceleration)" msgstr "按下和按住 Ctrl+方向鍵會逐漸加快捲動 (0 表示不加速)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1207 msgid "Autoscrolling" msgstr "自動捲動" -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1209 msgid "_Speed:" -msgstr "速度:" +msgstr "速度(_S):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1208 +#: ../src/ui/dialog/inkscape-preferences.cpp:1210 msgid "" "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn " "autoscroll off)" msgstr "在畫布邊緣拖曳時,畫布自動捲動的速度 (0 表示關閉自動捲動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1210 +#: ../src/ui/dialog/inkscape-preferences.cpp:1212 #: ../src/ui/dialog/tracedialog.cpp:522 ../src/ui/dialog/tracedialog.cpp:721 msgid "_Threshold:" msgstr "臨界值(_T):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1211 +#: ../src/ui/dialog/inkscape-preferences.cpp:1213 msgid "" "How far (in screen pixels) you need to be from the canvas edge to trigger " "autoscroll; positive is outside the canvas, negative is within the canvas" @@ -17648,11 +18720,11 @@ msgstr "" #. _page_scrolling.add_line( false, "", _scroll_space, "", #. _("When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)")); #. -#: ../src/ui/dialog/inkscape-preferences.cpp:1217 +#: ../src/ui/dialog/inkscape-preferences.cpp:1219 msgid "Mouse wheel zooms by default" msgstr "滑鼠滾輪預設功能為畫面縮放" -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1221 msgid "" "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when " "off, it zooms with Ctrl and scrolls without Ctrl" @@ -17660,25 +18732,24 @@ msgstr "" "若開啟,滑鼠滾輪不按著 Ctrl 滾動可縮放畫面,按著 Ctrl 滾動可捲動畫布;而關閉" "時,按著 Ctrl 滾動可縮放畫面,不按著 Ctrl 滾動可捲動畫面" -#: ../src/ui/dialog/inkscape-preferences.cpp:1220 +#: ../src/ui/dialog/inkscape-preferences.cpp:1222 msgid "Scrolling" msgstr "捲動" #. Snapping options -#: ../src/ui/dialog/inkscape-preferences.cpp:1223 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "Enable snap indicator" msgstr "啟用貼齊指標" -#: ../src/ui/dialog/inkscape-preferences.cpp:1225 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "貼齊之後,於已貼齊的點上繪製符號" -#: ../src/ui/dialog/inkscape-preferences.cpp:1228 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1230 msgid "_Delay (in ms):" -msgstr "延遲 (毫秒):" +msgstr "延遲 (毫秒)(_D):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1229 +#: ../src/ui/dialog/inkscape-preferences.cpp:1231 msgid "" "Postpone snapping as long as the mouse is moving, and then wait an " "additional fraction of a second. This additional delay is specified here. " @@ -17687,21 +18758,20 @@ msgstr "" "只要滑鼠正在移動就延後貼齊,且額外等待若干分之一秒。在這裡指定此附加延遲。設" "為零或很小的數值時則會立刻貼齊。" -#: ../src/ui/dialog/inkscape-preferences.cpp:1231 +#: ../src/ui/dialog/inkscape-preferences.cpp:1233 msgid "Only snap the node closest to the pointer" msgstr "只在極為靠近游標時才貼齊節點" -#: ../src/ui/dialog/inkscape-preferences.cpp:1233 +#: ../src/ui/dialog/inkscape-preferences.cpp:1235 msgid "" "Only try to snap the node that is initially closest to the mouse pointer" msgstr "只在極為靠近滑鼠游標時才試著貼齊節點" -#: ../src/ui/dialog/inkscape-preferences.cpp:1236 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1238 msgid "_Weight factor:" -msgstr "權重係數:" +msgstr "權重係數(_W):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1237 +#: ../src/ui/dialog/inkscape-preferences.cpp:1239 msgid "" "When multiple snap solutions are found, then Inkscape can either prefer the " "closest transformation (when set to 0), or prefer the node that was " @@ -17710,57 +18780,53 @@ msgstr "" "當發現多個貼齊目標時,Inkscape 以最接近變形的優先 (設定為 0 時),或者以最靠近" "游標的節點優先 (設定為 1 時)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1239 +#: ../src/ui/dialog/inkscape-preferences.cpp:1241 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "拖曳限定環結時貼齊滑鼠游標" -#: ../src/ui/dialog/inkscape-preferences.cpp:1241 +#: ../src/ui/dialog/inkscape-preferences.cpp:1243 msgid "" "When dragging a knot along a constraint line, then snap the position of the " "mouse pointer instead of snapping the projection of the knot onto the " "constraint line" -msgstr "" -"沿著限定直線拖曳節點時,貼齊滑鼠游標的位置而不是向限定線來貼齊環結的突起部位" +msgstr "沿著限定直線拖曳節點時,貼齊滑鼠游標的位置而不是向限定線來貼齊環結的突起部位" -#: ../src/ui/dialog/inkscape-preferences.cpp:1243 +#: ../src/ui/dialog/inkscape-preferences.cpp:1245 msgid "Snapping" msgstr "貼齊" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1250 msgid "_Arrow keys move by:" -msgstr "方向鍵移動距離:" +msgstr "方向鍵移動距離(_A):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1249 +#: ../src/ui/dialog/inkscape-preferences.cpp:1251 msgid "" "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "按方向鍵時會以該距離移動選取的物件或節點" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1252 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1254 msgid "> and < _scale by:" -msgstr "> 和 < 的縮放增加量:" +msgstr "> 和 < 的縮放增加量(_S):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1253 +#: ../src/ui/dialog/inkscape-preferences.cpp:1255 msgid "Pressing > or < scales selection up or down by this increment" msgstr "按 > 或 < 會以該增加量將選取區作伸展或縮減" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1257 msgid "_Inset/Outset by:" -msgstr "內縮 / 外擴距離:" +msgstr "內縮 / 外擴距離(_I):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1256 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Inset and Outset commands displace the path by this distance" msgstr "內縮與外擴指令會以該距離偏移路徑" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1259 msgid "Compass-like display of angles" msgstr "類似指南針的角度顯示" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1261 msgid "" "When on, angles are displayed with 0 at north, 0 to 360 range, positive " "clockwise; otherwise with 0 at east, -180 to 180 range, positive " @@ -17769,84 +18835,89 @@ msgstr "" "若開啟,角度以 0 表示北方、範圍從 0 到 360﹑順時針方向為正;否則會以東方為 0" "﹑範圍從 -180 到 180﹑逆時針方向為正" -#: ../src/ui/dialog/inkscape-preferences.cpp:1265 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 +msgctxt "Rotation angle" +msgid "None" +msgstr "無" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1267 msgid "_Rotation snaps every:" -msgstr "旋轉貼齊角度:" +msgstr "旋轉貼齊角度(_R):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1265 +#: ../src/ui/dialog/inkscape-preferences.cpp:1267 msgid "degrees" msgstr "度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1266 +#: ../src/ui/dialog/inkscape-preferences.cpp:1268 msgid "" "Rotating with Ctrl pressed snaps every that much degrees; also, pressing " "[ or ] rotates by this amount" msgstr "旋轉時按著 Ctrl 每次貼齊的角度;同時,按下 [ 或 ] 會以該旋轉量來旋轉" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1269 msgid "Relative snapping of guideline angles" msgstr "相對固定角度旋轉參考線角度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1269 +#: ../src/ui/dialog/inkscape-preferences.cpp:1271 msgid "" "When on, the snap angles when rotating a guideline will be relative to the " "original angle" msgstr "當啟用時,當旋轉參考線時固定角度相對於原始角度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1271 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1273 msgid "_Zoom in/out by:" -msgstr "畫面縮放倍數:" +msgstr "畫面縮放倍數(_Z):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1271 +#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/objects.cpp:1622 +#: ../src/ui/widget/filter-effect-chooser.cpp:27 msgid "%" msgstr "%" -#: ../src/ui/dialog/inkscape-preferences.cpp:1272 +#: ../src/ui/dialog/inkscape-preferences.cpp:1274 msgid "" "Zoom tool click, +/- keys, and middle click zoom in and out by this " "multiplier" msgstr "畫面縮放工具點擊 +/- 按鍵和滑鼠中鍵會以該倍數來縮放畫面" -#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/inkscape-preferences.cpp:1275 msgid "Steps" msgstr "階層數" #. Clones options -#: ../src/ui/dialog/inkscape-preferences.cpp:1276 +#: ../src/ui/dialog/inkscape-preferences.cpp:1278 msgid "Move in parallel" msgstr "平行移動" -#: ../src/ui/dialog/inkscape-preferences.cpp:1278 +#: ../src/ui/dialog/inkscape-preferences.cpp:1280 msgid "Stay unmoved" msgstr "不移動" -#: ../src/ui/dialog/inkscape-preferences.cpp:1280 +#: ../src/ui/dialog/inkscape-preferences.cpp:1282 msgid "Move according to transform" msgstr "根據變形移動" -#: ../src/ui/dialog/inkscape-preferences.cpp:1282 +#: ../src/ui/dialog/inkscape-preferences.cpp:1284 msgid "Are unlinked" msgstr "取消連結" -#: ../src/ui/dialog/inkscape-preferences.cpp:1284 +#: ../src/ui/dialog/inkscape-preferences.cpp:1286 msgid "Are deleted" msgstr "刪除" -#: ../src/ui/dialog/inkscape-preferences.cpp:1287 +#: ../src/ui/dialog/inkscape-preferences.cpp:1289 msgid "Moving original: clones and linked offsets" msgstr "移動原物件:仿製和連結偏移" -#: ../src/ui/dialog/inkscape-preferences.cpp:1289 +#: ../src/ui/dialog/inkscape-preferences.cpp:1291 msgid "Clones are translated by the same vector as their original" msgstr "仿製物件用相同向量圖形作為原物件進行轉換" -#: ../src/ui/dialog/inkscape-preferences.cpp:1291 +#: ../src/ui/dialog/inkscape-preferences.cpp:1293 msgid "Clones preserve their positions when their original is moved" msgstr "原物件移動時,仿製物件保留本身的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1293 +#: ../src/ui/dialog/inkscape-preferences.cpp:1295 msgid "" "Each clone moves according to the value of its transform= attribute; for " "example, a rotated clone will move in a different direction than its original" @@ -17854,27 +18925,27 @@ msgstr "" "每個仿製物件根據它的變形= 屬性來移動;例如,旋轉過的仿製物件將會以與其原物件" "不同的方向移動" -#: ../src/ui/dialog/inkscape-preferences.cpp:1294 +#: ../src/ui/dialog/inkscape-preferences.cpp:1296 msgid "Deleting original: clones" msgstr "刪除原物件:仿製" -#: ../src/ui/dialog/inkscape-preferences.cpp:1296 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 msgid "Orphaned clones are converted to regular objects" msgstr "被遺棄的仿製物件轉換成一般物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1298 +#: ../src/ui/dialog/inkscape-preferences.cpp:1300 msgid "Orphaned clones are deleted along with their original" msgstr "被遺棄的仿製物件隨著原物件一起刪除" -#: ../src/ui/dialog/inkscape-preferences.cpp:1300 +#: ../src/ui/dialog/inkscape-preferences.cpp:1302 msgid "Duplicating original+clones/linked offset" msgstr "再製原物件+仿製 / 連結偏移" -#: ../src/ui/dialog/inkscape-preferences.cpp:1302 +#: ../src/ui/dialog/inkscape-preferences.cpp:1304 msgid "Relink duplicated clones" msgstr "重新連結再製的仿製物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1304 +#: ../src/ui/dialog/inkscape-preferences.cpp:1306 msgid "" "When duplicating a selection containing both a clone and its original " "(possibly in groups), relink the duplicated clone to the duplicated original " @@ -17884,337 +18955,319 @@ msgstr "" "件到再製的原物件而不是之前的原物件" #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:1307 +#: ../src/ui/dialog/inkscape-preferences.cpp:1309 msgid "Clones" msgstr "仿製物件" #. Clip paths and masks options -#: ../src/ui/dialog/inkscape-preferences.cpp:1310 +#: ../src/ui/dialog/inkscape-preferences.cpp:1312 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "套用時,使用最上層的選取物件作為剪裁路徑 / 遮罩" -#: ../src/ui/dialog/inkscape-preferences.cpp:1312 +#: ../src/ui/dialog/inkscape-preferences.cpp:1314 msgid "" "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "取消勾選這選項會使用底層的選取物件作為剪裁路徑或遮罩" -#: ../src/ui/dialog/inkscape-preferences.cpp:1313 +#: ../src/ui/dialog/inkscape-preferences.cpp:1315 msgid "Remove clippath/mask object after applying" msgstr "套用後移除剪裁路徑 / 遮罩" -#: ../src/ui/dialog/inkscape-preferences.cpp:1315 +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "" "After applying, remove the object used as the clipping path or mask from the " "drawing" msgstr "套用後,從繪圖裡移除作為剪裁路徑或遮罩的物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +#: ../src/ui/dialog/inkscape-preferences.cpp:1319 msgid "Before applying" msgstr "套用前:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1319 +#: ../src/ui/dialog/inkscape-preferences.cpp:1321 msgid "Do not group clipped/masked objects" msgstr "不要群組套用裁剪路徑 / 遮罩的物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1320 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Put every clipped/masked object in its own group" -msgstr "將每個套用裁剪 / 遮罩的物件封入自己專屬的群組" +msgstr "將每個套用裁剪 / 遮罩的物件放進自己專屬的群組中" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1323 msgid "Put all clipped/masked objects into one group" msgstr "將全部套用裁剪 / 遮罩的物件放到一個群組中" -#: ../src/ui/dialog/inkscape-preferences.cpp:1324 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "Apply clippath/mask to every object" msgstr "套用裁剪路徑 / 遮罩到每個物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1327 +#: ../src/ui/dialog/inkscape-preferences.cpp:1329 msgid "Apply clippath/mask to groups containing single object" msgstr "套用裁剪路徑 / 遮罩到群組,包括單一物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1330 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Apply clippath/mask to group containing all objects" msgstr "套用裁剪路徑 / 遮罩到群組,包括所有物件" -#: ../src/ui/dialog/inkscape-preferences.cpp:1332 +#: ../src/ui/dialog/inkscape-preferences.cpp:1334 msgid "After releasing" msgstr "解除後" -#: ../src/ui/dialog/inkscape-preferences.cpp:1334 +#: ../src/ui/dialog/inkscape-preferences.cpp:1336 msgid "Ungroup automatically created groups" msgstr "解散自動建立的群組" -#: ../src/ui/dialog/inkscape-preferences.cpp:1336 +#: ../src/ui/dialog/inkscape-preferences.cpp:1338 msgid "Ungroup groups created when setting clip/mask" msgstr "設定裁剪 / 遮罩時,解散建立的群組" -#: ../src/ui/dialog/inkscape-preferences.cpp:1338 +#: ../src/ui/dialog/inkscape-preferences.cpp:1340 msgid "Clippaths and masks" msgstr "剪裁路徑和遮罩" -#: ../src/ui/dialog/inkscape-preferences.cpp:1341 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1343 msgid "Stroke Style Markers" -msgstr "邊框樣式(_Y)" +msgstr "邊框樣式標記" -#: ../src/ui/dialog/inkscape-preferences.cpp:1343 #: ../src/ui/dialog/inkscape-preferences.cpp:1345 +#: ../src/ui/dialog/inkscape-preferences.cpp:1347 msgid "" "Stroke color same as object, fill color either object fill color or marker " "fill color" -msgstr "" +msgstr "邊框顏色和物件相同,物件填色與標記填色使用相同顏色填充" -#: ../src/ui/dialog/inkscape-preferences.cpp:1349 +#: ../src/ui/dialog/inkscape-preferences.cpp:1351 #: ../share/extensions/hershey.inx.h:27 -#, fuzzy msgid "Markers" -msgstr "麥克筆" +msgstr "標記" -#: ../src/ui/dialog/inkscape-preferences.cpp:1352 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1354 msgid "Document cleanup" -msgstr "文件" +msgstr "文件清理" -#: ../src/ui/dialog/inkscape-preferences.cpp:1353 #: ../src/ui/dialog/inkscape-preferences.cpp:1355 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "Remove unused swatches when doing a document cleanup" -msgstr "" +msgstr "進行文件清理時移除沒用到的色票" #. tooltip -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1358 msgid "Cleanup" -msgstr "清理:" +msgstr "清理" -#: ../src/ui/dialog/inkscape-preferences.cpp:1364 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1366 msgid "Number of _Threads:" -msgstr "執行緒數量:" +msgstr "執行緒數量(_T):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1364 -#: ../src/ui/dialog/inkscape-preferences.cpp:1896 +#: ../src/ui/dialog/inkscape-preferences.cpp:1366 +#: ../src/ui/dialog/inkscape-preferences.cpp:1898 msgid "(requires restart)" msgstr "(需要重新啟動)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1365 +#: ../src/ui/dialog/inkscape-preferences.cpp:1367 msgid "Configure number of processors/threads to use when rendering filters" msgstr "設定圖形繪算濾鏡時要使用的處理器 / 執行緒數量" -#: ../src/ui/dialog/inkscape-preferences.cpp:1369 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgid "Rendering _cache size:" -msgstr "圖形潤算快取大小:" +msgstr "圖形繪算快取大小(_C):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1369 +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgctxt "mebibyte (2^20 bytes) abbreviation" msgid "MiB" msgstr "MiB" -#: ../src/ui/dialog/inkscape-preferences.cpp:1369 +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgid "" "Set the amount of memory per document which can be used to store rendered " "parts of the drawing for later reuse; set to zero to disable caching" -msgstr "" -"設定每份文件存取稍候可重複使用的圖畫繪算部分記憶體容量;設定為零可停用快取" +msgstr "設定每份文件存取稍候可重複使用的圖畫繪算部分記憶體容量;設定為零可停用快取" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:1372 -#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 +#: ../src/ui/dialog/inkscape-preferences.cpp:1398 msgid "Best quality (slowest)" msgstr "最佳品質 (最慢)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1374 -#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1376 +#: ../src/ui/dialog/inkscape-preferences.cpp:1400 msgid "Better quality (slower)" msgstr "較佳品質 (較慢)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1376 -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1378 +#: ../src/ui/dialog/inkscape-preferences.cpp:1402 msgid "Average quality" msgstr "平均品質" -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 -#: ../src/ui/dialog/inkscape-preferences.cpp:1402 +#: ../src/ui/dialog/inkscape-preferences.cpp:1380 +#: ../src/ui/dialog/inkscape-preferences.cpp:1404 msgid "Lower quality (faster)" msgstr "較低品質 (較快)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1380 -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1382 +#: ../src/ui/dialog/inkscape-preferences.cpp:1406 msgid "Lowest quality (fastest)" msgstr "最低品質 (最快)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1383 +#: ../src/ui/dialog/inkscape-preferences.cpp:1385 msgid "Gaussian blur quality for display" msgstr "高斯模糊顯示品質" -#: ../src/ui/dialog/inkscape-preferences.cpp:1385 -#: ../src/ui/dialog/inkscape-preferences.cpp:1409 +#: ../src/ui/dialog/inkscape-preferences.cpp:1387 +#: ../src/ui/dialog/inkscape-preferences.cpp:1411 msgid "" "Best quality, but display may be very slow at high zooms (bitmap export " "always uses best quality)" -msgstr "" -"最佳品質,於高倍畫面縮放時顯示也許會非常慢 (點陣圖匯出時會自動使用最佳品質)" +msgstr "最佳品質,於高倍畫面縮放時顯示也許會非常慢 (點陣圖匯出時會自動使用最佳品質)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1387 -#: ../src/ui/dialog/inkscape-preferences.cpp:1411 +#: ../src/ui/dialog/inkscape-preferences.cpp:1389 +#: ../src/ui/dialog/inkscape-preferences.cpp:1413 msgid "Better quality, but slower display" msgstr "較佳品質,但顯示速度較慢" -#: ../src/ui/dialog/inkscape-preferences.cpp:1389 -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1391 +#: ../src/ui/dialog/inkscape-preferences.cpp:1415 msgid "Average quality, acceptable display speed" msgstr "平均品質,可接受的顯示速度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1391 -#: ../src/ui/dialog/inkscape-preferences.cpp:1415 +#: ../src/ui/dialog/inkscape-preferences.cpp:1393 +#: ../src/ui/dialog/inkscape-preferences.cpp:1417 msgid "Lower quality (some artifacts), but display is faster" msgstr "較低品質 (有些不自然感),但顯示速度較快" -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 -#: ../src/ui/dialog/inkscape-preferences.cpp:1417 +#: ../src/ui/dialog/inkscape-preferences.cpp:1395 +#: ../src/ui/dialog/inkscape-preferences.cpp:1419 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "最低品質 (相當多不自然感),但顯示速度最快" -#: ../src/ui/dialog/inkscape-preferences.cpp:1407 +#: ../src/ui/dialog/inkscape-preferences.cpp:1409 msgid "Filter effects quality for display" msgstr "濾鏡特效顯示品質" #. build custom preferences tab -#: ../src/ui/dialog/inkscape-preferences.cpp:1419 +#: ../src/ui/dialog/inkscape-preferences.cpp:1421 #: ../src/ui/dialog/print.cpp:232 msgid "Rendering" -msgstr "圖形潤算" +msgstr "圖形繪算" #. Note: /options/bitmapoversample removed with Cairo renderer -#: ../src/ui/dialog/inkscape-preferences.cpp:1425 ../src/verbs.cpp:156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1427 ../src/verbs.cpp:157 #: ../src/widgets/calligraphy-toolbar.cpp:626 -#, fuzzy msgid "Edit" -msgstr "編輯(_E)" +msgstr "編輯" -#: ../src/ui/dialog/inkscape-preferences.cpp:1426 +#: ../src/ui/dialog/inkscape-preferences.cpp:1428 msgid "Automatically reload bitmaps" msgstr "自動重新載入點陣圖" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1430 msgid "Automatically reload linked images when file is changed on disk" msgstr "磁碟上的檔案變更時自動重新載入圖像" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1432 msgid "_Bitmap editor:" -msgstr "點陣圖編輯程式:" +msgstr "點陣圖編輯程式(_B):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1432 +#: ../src/ui/dialog/inkscape-preferences.cpp:1434 #: ../share/extensions/guillotine.inx.h:5 ../share/extensions/plotter.inx.h:55 #: ../share/extensions/print_win32_vector.inx.h:2 msgid "Export" msgstr "匯出" -#: ../src/ui/dialog/inkscape-preferences.cpp:1434 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1436 msgid "Default export _resolution:" -msgstr "預設匯出解析度:" +msgstr "預設匯出解析度(_R):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1435 +#: ../src/ui/dialog/inkscape-preferences.cpp:1437 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "匯出對話窗裡預設點陣圖解析度 (單位為每英寸多少點)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1436 +#: ../src/ui/dialog/inkscape-preferences.cpp:1438 #: ../src/ui/dialog/xml-tree.cpp:912 msgid "Create" msgstr "建立" -#: ../src/ui/dialog/inkscape-preferences.cpp:1438 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1440 msgid "Resolution for Create Bitmap _Copy:" -msgstr "建立點陣圖副本的解析度:" +msgstr "建立點陣圖副本的解析度(_C):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1439 +#: ../src/ui/dialog/inkscape-preferences.cpp:1441 msgid "Resolution used by the Create Bitmap Copy command" msgstr "建立點陣圖副本使用的解析度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1442 +#: ../src/ui/dialog/inkscape-preferences.cpp:1444 msgid "Ask about linking and scaling when importing" -msgstr "" +msgstr "匯入時詢問連結和縮放處理方式" -#: ../src/ui/dialog/inkscape-preferences.cpp:1444 +#: ../src/ui/dialog/inkscape-preferences.cpp:1446 msgid "Pop-up linking and scaling dialog when importing bitmap image." -msgstr "" +msgstr "匯入點陣圖影像時彈出連結和縮放對話窗。" -#: ../src/ui/dialog/inkscape-preferences.cpp:1450 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Bitmap link:" -msgstr "點陣圖匯入:" +msgstr "點陣圖連結:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1457 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "Bitmap scale (image-rendering):" -msgstr "" +msgstr "點陣圖縮放 (圖片繪算):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1462 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1464 msgid "Default _import resolution:" -msgstr "預設匯出解析度:" +msgstr "預設匯出解析度(_I):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1463 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1465 msgid "Default bitmap resolution (in dots per inch) for bitmap import" -msgstr "匯出對話窗裡預設點陣圖解析度 (單位為每英寸多少點)" +msgstr "匯出點陣圖的預設解析度 (單位為每英寸多少點)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1466 msgid "Override file resolution" -msgstr "設定濾鏡解析度" +msgstr "優先使用檔案解析度" -#: ../src/ui/dialog/inkscape-preferences.cpp:1466 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1468 msgid "Use default bitmap resolution in favor of information from file" -msgstr "匯出對話窗裡預設點陣圖解析度 (單位為每英寸多少點)" +msgstr "優先使用檔案資訊中的預設點陣圖解析度" #. rendering outlines for pixmap image tags -#: ../src/ui/dialog/inkscape-preferences.cpp:1470 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1472 msgid "Images in Outline Mode" -msgstr "沿著周圍繪製外框" +msgstr "外框模式顯示圖片" -#: ../src/ui/dialog/inkscape-preferences.cpp:1471 +#: ../src/ui/dialog/inkscape-preferences.cpp:1473 msgid "" "When active will render images while in outline mode instead of a red box " "with an x. This is useful for manual tracing." msgstr "" +"當啟用時外框模式會顯示圖片而不是顯示紅色方框裡面中間一個 x。此選項對手動描繪" +"時很幫助。" -#: ../src/ui/dialog/inkscape-preferences.cpp:1473 +#: ../src/ui/dialog/inkscape-preferences.cpp:1475 msgid "Bitmaps" msgstr "點陣圖" -#: ../src/ui/dialog/inkscape-preferences.cpp:1485 +#: ../src/ui/dialog/inkscape-preferences.cpp:1487 msgid "" "Select a file of predefined shortcuts to use. Any customized shortcuts you " "create will be added seperately to " -msgstr "" +msgstr "選擇要使用的預先定義快捷鍵檔案。任何你建立的自訂快捷鍵都會個別加入到該檔案" -#: ../src/ui/dialog/inkscape-preferences.cpp:1488 +#: ../src/ui/dialog/inkscape-preferences.cpp:1490 msgid "Shortcut file:" -msgstr "" +msgstr "快捷鍵檔案:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1491 +#: ../src/ui/dialog/inkscape-preferences.cpp:1493 #: ../src/ui/dialog/template-load-tab.cpp:48 -#, fuzzy msgid "Search:" -msgstr "搜尋" +msgstr "搜尋:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1503 +#: ../src/ui/dialog/inkscape-preferences.cpp:1505 msgid "Shortcut" -msgstr "" +msgstr "快捷鍵" -#: ../src/ui/dialog/inkscape-preferences.cpp:1504 +#: ../src/ui/dialog/inkscape-preferences.cpp:1506 #: ../src/ui/widget/page-sizer.cpp:260 msgid "Description" msgstr "描述" -#: ../src/ui/dialog/inkscape-preferences.cpp:1559 +#: ../src/ui/dialog/inkscape-preferences.cpp:1561 #: ../src/ui/dialog/pixelartdialog.cpp:296 #: ../src/ui/dialog/svg-fonts-dialog.cpp:698 #: ../src/ui/dialog/tracedialog.cpp:813 @@ -18222,184 +19275,183 @@ msgstr "描述" msgid "Reset" msgstr "重設" -#: ../src/ui/dialog/inkscape-preferences.cpp:1559 +#: ../src/ui/dialog/inkscape-preferences.cpp:1561 msgid "" "Remove all your customized keyboard shortcuts, and revert to the shortcuts " "in the shortcut file listed above" -msgstr "" +msgstr "移除全部自訂的鍵盤快捷鍵,並用上面呈列的快捷鍵檔案還原快捷鍵" -#: ../src/ui/dialog/inkscape-preferences.cpp:1563 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1565 msgid "Import ..." -msgstr "匯入(_I)..." +msgstr "匯入..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1563 +#: ../src/ui/dialog/inkscape-preferences.cpp:1565 msgid "Import custom keyboard shortcuts from a file" -msgstr "" +msgstr "從檔案匯入自訂鍵盤快捷鍵" -#: ../src/ui/dialog/inkscape-preferences.cpp:1566 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Export ..." -msgstr "匯出點陣圖(_E)..." +msgstr "匯出..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1566 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Export custom keyboard shortcuts to a file" -msgstr "將文件匯出成 PS 檔" +msgstr "將自訂鍵盤快捷鍵匯出到檔案" -#: ../src/ui/dialog/inkscape-preferences.cpp:1576 +#: ../src/ui/dialog/inkscape-preferences.cpp:1578 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "鍵盤快捷鍵" #. Find this group in the tree -#: ../src/ui/dialog/inkscape-preferences.cpp:1739 +#: ../src/ui/dialog/inkscape-preferences.cpp:1741 msgid "Misc" msgstr "其他" -#: ../src/ui/dialog/inkscape-preferences.cpp:1858 +#: ../src/ui/dialog/inkscape-preferences.cpp:1839 +msgctxt "Spellchecker language" +msgid "None" +msgstr "無" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1860 msgid "Set the main spell check language" msgstr "設定主要拼寫檢查語言" -#: ../src/ui/dialog/inkscape-preferences.cpp:1861 +#: ../src/ui/dialog/inkscape-preferences.cpp:1863 msgid "Second language:" msgstr "第二語言:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1862 +#: ../src/ui/dialog/inkscape-preferences.cpp:1864 msgid "" "Set the second spell check language; checking will only stop on words " "unknown in ALL chosen languages" msgstr "設定第二拼寫檢查語言;檢查只會停在所有選擇語言裡面的不明單字上" -#: ../src/ui/dialog/inkscape-preferences.cpp:1865 +#: ../src/ui/dialog/inkscape-preferences.cpp:1867 msgid "Third language:" msgstr "第三語言:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1866 +#: ../src/ui/dialog/inkscape-preferences.cpp:1868 msgid "" "Set the third spell check language; checking will only stop on words unknown " "in ALL chosen languages" msgstr "設定第三拼寫檢查語言;檢查只會停在所有選擇語言裡面的不明單字上" -#: ../src/ui/dialog/inkscape-preferences.cpp:1868 +#: ../src/ui/dialog/inkscape-preferences.cpp:1870 msgid "Ignore words with digits" msgstr "忽略數字" -#: ../src/ui/dialog/inkscape-preferences.cpp:1870 +#: ../src/ui/dialog/inkscape-preferences.cpp:1872 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "忽略含有數字的單字,例如「R2D2」" -#: ../src/ui/dialog/inkscape-preferences.cpp:1872 +#: ../src/ui/dialog/inkscape-preferences.cpp:1874 msgid "Ignore words in ALL CAPITALS" msgstr "忽略所有大寫字母的拼寫" -#: ../src/ui/dialog/inkscape-preferences.cpp:1874 +#: ../src/ui/dialog/inkscape-preferences.cpp:1876 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "忽略所有大寫字母的拼寫,例如「IUPAC」" -#: ../src/ui/dialog/inkscape-preferences.cpp:1876 +#: ../src/ui/dialog/inkscape-preferences.cpp:1878 msgid "Spellcheck" msgstr "拼寫檢查" -#: ../src/ui/dialog/inkscape-preferences.cpp:1896 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1898 msgid "Latency _skew:" -msgstr "數位延遲偏差:" +msgstr "數位延遲偏差(_S):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1897 +#: ../src/ui/dialog/inkscape-preferences.cpp:1899 msgid "" "Factor by which the event clock is skewed from the actual time (0.9766 on " "some systems)" msgstr "實際時間裡事件時鐘偏差的係數 (於某些系統上為 0.9766)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1899 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "Pre-render named icons" -msgstr "預先潤算命名圖示" +msgstr "預先繪算命名圖示" -#: ../src/ui/dialog/inkscape-preferences.cpp:1901 +#: ../src/ui/dialog/inkscape-preferences.cpp:1903 msgid "" "When on, named icons will be rendered before displaying the ui. This is for " "working around bugs in GTK+ named icon notification" -msgstr "" -"開啟時,顯示使用介面前會潤算命名圖示。這是為了避開在 GTK+ 命名圖示通知的錯誤" +msgstr "開啟時,顯示使用介面前會繪算命名圖示。這是為了避開在 GTK+ 命名圖示通知的錯誤" -#: ../src/ui/dialog/inkscape-preferences.cpp:1909 +#: ../src/ui/dialog/inkscape-preferences.cpp:1911 msgid "System info" msgstr "系統資訊" -#: ../src/ui/dialog/inkscape-preferences.cpp:1913 +#: ../src/ui/dialog/inkscape-preferences.cpp:1915 msgid "User config: " msgstr "使用者設定:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1913 +#: ../src/ui/dialog/inkscape-preferences.cpp:1915 msgid "Location of users configuration" msgstr "使用者組態設定的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1917 +#: ../src/ui/dialog/inkscape-preferences.cpp:1919 msgid "User preferences: " msgstr "使用者偏好設定:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1917 +#: ../src/ui/dialog/inkscape-preferences.cpp:1919 msgid "Location of the users preferences file" msgstr "使用者偏好設定檔的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1921 +#: ../src/ui/dialog/inkscape-preferences.cpp:1923 msgid "User extensions: " msgstr "使用者擴充功能:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1921 +#: ../src/ui/dialog/inkscape-preferences.cpp:1923 msgid "Location of the users extensions" msgstr "使用者擴充功能的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1925 +#: ../src/ui/dialog/inkscape-preferences.cpp:1927 msgid "User cache: " msgstr "使用者快取:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1925 +#: ../src/ui/dialog/inkscape-preferences.cpp:1927 msgid "Location of users cache" msgstr "使用者快取的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1933 +#: ../src/ui/dialog/inkscape-preferences.cpp:1935 msgid "Temporary files: " msgstr "暫存檔:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1933 +#: ../src/ui/dialog/inkscape-preferences.cpp:1935 msgid "Location of the temporary files used for autosave" msgstr "用於自動儲存的暫存檔位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1937 +#: ../src/ui/dialog/inkscape-preferences.cpp:1939 msgid "Inkscape data: " msgstr "Inkscape 資料:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1937 +#: ../src/ui/dialog/inkscape-preferences.cpp:1939 msgid "Location of Inkscape data" msgstr "Inkscape 資料的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1941 +#: ../src/ui/dialog/inkscape-preferences.cpp:1943 msgid "Inkscape extensions: " msgstr "Inkscape 擴充功能:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1941 +#: ../src/ui/dialog/inkscape-preferences.cpp:1943 msgid "Location of the Inkscape extensions" msgstr "Inkscape 擴充功能的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1950 +#: ../src/ui/dialog/inkscape-preferences.cpp:1952 msgid "System data: " msgstr "系統資料:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1950 +#: ../src/ui/dialog/inkscape-preferences.cpp:1952 msgid "Locations of system data" msgstr "系統資料的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1974 +#: ../src/ui/dialog/inkscape-preferences.cpp:1976 msgid "Icon theme: " msgstr "圖示主題:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1974 -#, fuzzy +#: ../src/ui/dialog/inkscape-preferences.cpp:1976 msgid "Locations of icon themes" msgstr "圖示主題的位置" -#: ../src/ui/dialog/inkscape-preferences.cpp:1976 +#: ../src/ui/dialog/inkscape-preferences.cpp:1978 msgid "System" msgstr "系統" @@ -18422,9 +19474,8 @@ msgid "Test Area" msgstr "測試區" #: ../src/ui/dialog/input.cpp:619 -#, fuzzy msgid "Axis" -msgstr "X 軸" +msgstr "坐標軸" #: ../src/ui/dialog/input.cpp:708 ../share/extensions/svgcalendar.inx.h:2 msgid "Configuration" @@ -18438,6 +19489,11 @@ msgstr "硬體" msgid "Link:" msgstr "連結:" +#: ../src/ui/dialog/input.cpp:742 ../src/ui/dialog/input.cpp:743 +#: ../src/ui/dialog/input.cpp:1571 +msgid "None" +msgstr "無" + #: ../src/ui/dialog/input.cpp:758 msgid "Axes count:" msgstr "軸數:" @@ -18463,19 +19519,20 @@ msgid "_Use pressure-sensitive tablet (requires restart)" msgstr "使用感壓繪圖板(_U) (需要重新啟動)" #: ../src/ui/dialog/input.cpp:1086 -#, fuzzy msgid "Axes" -msgstr "繪製軸線" +msgstr "軸線" #: ../src/ui/dialog/input.cpp:1087 msgid "Keys" -msgstr "" +msgstr "按鍵" #: ../src/ui/dialog/input.cpp:1170 msgid "" "A device can be 'Disabled', its co-ordinates mapped to the whole 'Screen', " "or to a single (usually focused) 'Window'" msgstr "" +"裝置可以是「已停用」狀態,其坐標被對應到整個「螢幕」或單一「視窗」(通常是使用" +"中的視窗)" #: ../src/ui/dialog/input.cpp:1616 ../src/widgets/calligraphy-toolbar.cpp:578 #: ../src/widgets/spray-toolbar.cpp:224 ../src/widgets/tweak-toolbar.cpp:372 @@ -18484,17 +19541,22 @@ msgstr "壓力" #: ../src/ui/dialog/input.cpp:1616 msgid "X tilt" -msgstr "" +msgstr "X 傾斜" #: ../src/ui/dialog/input.cpp:1616 msgid "Y tilt" -msgstr "" +msgstr "Y 傾斜" #: ../src/ui/dialog/input.cpp:1616 -#: ../src/widgets/sp-color-wheel-selector.cpp:59 +#: ../src/widgets/sp-color-wheel-selector.cpp:32 msgid "Wheel" msgstr "色環" +#: ../src/ui/dialog/input.cpp:1625 +msgctxt "Input device axe" +msgid "None" +msgstr "無" + #: ../src/ui/dialog/layer-properties.cpp:55 msgid "Layer name:" msgstr "圖層名稱:" @@ -18521,8 +19583,8 @@ msgstr "重新命名圖層" #. TODO: find an unused layer number, forming name from _("Layer ") + "%d" #: ../src/ui/dialog/layer-properties.cpp:354 -#: ../src/ui/dialog/layer-properties.cpp:410 ../src/verbs.cpp:194 -#: ../src/verbs.cpp:2289 +#: ../src/ui/dialog/layer-properties.cpp:410 ../src/verbs.cpp:195 +#: ../src/verbs.cpp:2372 msgid "Layer" msgstr "圖層" @@ -18552,11 +19614,11 @@ msgid "New layer created." msgstr "新圖層已建立。" #: ../src/ui/dialog/layer-properties.cpp:408 -#, fuzzy msgid "Move to Layer" -msgstr "降低圖層" +msgstr "移動到圖層" #: ../src/ui/dialog/layer-properties.cpp:411 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:120 #: ../src/ui/dialog/transformation.cpp:114 msgid "_Move" msgstr "移動(_M)" @@ -18577,19 +19639,19 @@ msgstr "鎖定圖層" msgid "Unlock layer" msgstr "解除鎖定圖層" -#: ../src/ui/dialog/layers.cpp:624 ../src/verbs.cpp:1405 +#: ../src/ui/dialog/layers.cpp:624 ../src/ui/dialog/objects.cpp:845 +#: ../src/verbs.cpp:1438 msgid "Toggle layer solo" msgstr "切換圖層單獨顯示" -#: ../src/ui/dialog/layers.cpp:627 ../src/verbs.cpp:1429 -#, fuzzy +#: ../src/ui/dialog/layers.cpp:627 ../src/ui/dialog/objects.cpp:848 +#: ../src/verbs.cpp:1462 msgid "Lock other layers" -msgstr "鎖定圖層" +msgstr "鎖定其他圖層" #: ../src/ui/dialog/layers.cpp:721 -#, fuzzy msgid "Moved layer" -msgstr "降低圖層" +msgstr "移動的圖層" #: ../src/ui/dialog/layers.cpp:884 msgctxt "Layers" @@ -18617,7 +19679,6 @@ msgid "Top" msgstr "最上層" #: ../src/ui/dialog/livepatheffect-add.cpp:32 -#, fuzzy msgid "Add Path Effect" msgstr "加入路徑特效" @@ -18691,6 +19752,46 @@ msgstr "使用中的路徑特效" msgid "Deactivate path effect" msgstr "非使用中的路徑特效" +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:57 +msgid "Radius (pixels):" +msgstr "半徑 (像素):" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:69 +msgid "Chamfer subdivisions:" +msgstr "倒角細分:" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:139 +msgid "Modify Fillet-Chamfer" +msgstr "修改圓角-倒角" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:140 +msgid "_Modify" +msgstr "修改(_M)" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:203 +msgid "Radius " +msgstr "半徑" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:205 +msgid "Radius approximated " +msgstr "近似半徑" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:208 +msgid "Knot distance " +msgstr "環結距離" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:215 +msgid "Position (%):" +msgstr "位置 (%):" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:219 +msgid "(" +msgstr "(" + +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:119 +msgid "Modify Node Position" +msgstr "修改節點位置" + #: ../src/ui/dialog/memory.cpp:96 msgid "Heap" msgstr "堆積" @@ -18738,14 +19839,13 @@ msgstr "已開始日誌擷取。" msgid "Log capture stopped." msgstr "已停止日誌擷取。" -#: ../src/ui/dialog/new-from-template.cpp:24 -#, fuzzy +#: ../src/ui/dialog/new-from-template.cpp:27 msgid "Create from template" -msgstr "建立螺旋路徑" +msgstr "從範本建立" -#: ../src/ui/dialog/new-from-template.cpp:26 +#: ../src/ui/dialog/new-from-template.cpp:29 msgid "New From Template" -msgstr "" +msgstr "從範本新增" #: ../src/ui/dialog/object-attributes.cpp:47 msgid "Href:" @@ -18778,9 +19878,8 @@ msgid "URL:" msgstr "網址:" #: ../src/ui/dialog/object-attributes.cpp:70 -#, fuzzy msgid "Image Rendering:" -msgstr "圖形潤算" +msgstr "影像繪算:" #: ../src/ui/dialog/object-properties.cpp:58 #: ../src/ui/dialog/object-properties.cpp:399 @@ -18794,9 +19893,8 @@ msgid "_Title:" msgstr "標題(_T):" #: ../src/ui/dialog/object-properties.cpp:61 -#, fuzzy msgid "_Image Rendering:" -msgstr "圖形潤算" +msgstr "影像繪算" #: ../src/ui/dialog/object-properties.cpp:62 msgid "_Hide" @@ -18819,9 +19917,8 @@ msgstr "物件的自由形式標籤" #. Create the frame for the object description #: ../src/ui/dialog/object-properties.cpp:225 -#, fuzzy msgid "_Description:" -msgstr "描述:" +msgstr "描述(_D):" #: ../src/ui/dialog/object-properties.cpp:260 msgid "" @@ -18832,6 +19929,12 @@ msgid "" "Note that this behaviour is not defined in the SVG 1.1 specification and not " "all browsers follow this interpretation." msgstr "" +"「影像繪算」屬性會影響點陣圖的縮放方式:\n" +"\t「自動」 無偏好設定;\n" +"\t「畫質最佳化」平滑;\n" +"\t「效能最佳化」塊狀鋸齒。\n" +"注意此行為沒有定義在 SVG 1.1 規範中,因此不是每種瀏覽程式都依照此設定值解析 " +"SVG 檔案。" #. Hide #: ../src/ui/dialog/object-properties.cpp:293 @@ -18845,8 +19948,8 @@ msgid "Check to make the object insensitive (not selectable by mouse)" msgstr "勾選可讓物件麻痺 (無法用滑鼠選取)" #. Button for setting the object's id, label, title and description. -#: ../src/ui/dialog/object-properties.cpp:325 ../src/verbs.cpp:2632 -#: ../src/verbs.cpp:2638 +#: ../src/ui/dialog/object-properties.cpp:325 ../src/verbs.cpp:2715 +#: ../src/verbs.cpp:2721 msgid "_Set" msgstr "設定(_S)" @@ -18900,6 +20003,79 @@ msgstr "隱藏物件" msgid "Unhide object" msgstr "取消隱藏物件" +#: ../src/ui/dialog/objects.cpp:875 +msgid "Unhide objects" +msgstr "取消隱藏物件" + +#: ../src/ui/dialog/objects.cpp:875 +msgid "Hide objects" +msgstr "隱藏物件" + +#: ../src/ui/dialog/objects.cpp:895 +msgid "Lock objects" +msgstr "鎖定物件" + +#: ../src/ui/dialog/objects.cpp:895 +msgid "Unlock objects" +msgstr "解除鎖定物件" + +#: ../src/ui/dialog/objects.cpp:907 +msgid "Layer to group" +msgstr "圖層轉成群組" + +#: ../src/ui/dialog/objects.cpp:907 +msgid "Group to layer" +msgstr "群組轉成圖層" + +#: ../src/ui/dialog/objects.cpp:1105 +msgid "Moved objects" +msgstr "移動的物件" + +#: ../src/ui/dialog/objects.cpp:1354 ../src/ui/dialog/tags.cpp:875 +#: ../src/ui/dialog/tags.cpp:882 +msgid "Rename object" +msgstr "重新命名物件" + +#: ../src/ui/dialog/objects.cpp:1461 +msgid "Set object highlight color" +msgstr "設定物件高亮度顯示顏色" + +#: ../src/ui/dialog/objects.cpp:1471 +msgid "Set object opacity" +msgstr "設定物件不透明度" + +#: ../src/ui/dialog/objects.cpp:1504 +msgid "Set object blend mode" +msgstr "設定物件混合模式" + +#: ../src/ui/dialog/objects.cpp:1560 +msgid "Set object blur" +msgstr "設定物件模糊" + +#: ../src/ui/dialog/objects.cpp:1802 +msgid "Add layer..." +msgstr "加入圖層..." + +#: ../src/ui/dialog/objects.cpp:1817 +msgid "Remove object" +msgstr "移除物件" + +#: ../src/ui/dialog/objects.cpp:1832 +msgid "Move To Bottom" +msgstr "移到最下層" + +#: ../src/ui/dialog/objects.cpp:1877 +msgid "Move To Top" +msgstr "移到最上層" + +#: ../src/ui/dialog/objects.cpp:1892 +msgid "Collapse All" +msgstr "全部折疊" + +#: ../src/ui/dialog/objects.cpp:1974 +msgid "Select Highlight Color" +msgstr "選取高亮度顯示顏色" + #: ../src/ui/dialog/ocaldialogs.cpp:715 msgid "Clipart found" msgstr "找到美工圖" @@ -18937,9 +20113,8 @@ msgid "Could not parse search results" msgstr "無法解析搜尋結果" #: ../src/ui/dialog/ocaldialogs.cpp:1177 -#, fuzzy msgid "No clipart named %1 was found." -msgstr "未命名的美工圖" +msgstr "找不到名稱為 %1 的美工圖。" #: ../src/ui/dialog/ocaldialogs.cpp:1179 msgid "" @@ -18957,77 +20132,71 @@ msgstr "關閉" #: ../src/ui/dialog/pixelartdialog.cpp:190 msgid "_Curves (multiplier):" -msgstr "" +msgstr "曲線 (倍數)(_C):" #: ../src/ui/dialog/pixelartdialog.cpp:193 msgid "Favors connections that are part of a long curve" -msgstr "" +msgstr "想要的長路徑組成連接性" #: ../src/ui/dialog/pixelartdialog.cpp:204 -#, fuzzy msgid "_Islands (weight):" -msgstr "大寫字母高度:" +msgstr "孤立像素 (權重)(_I):" #: ../src/ui/dialog/pixelartdialog.cpp:207 msgid "Avoid single disconnected pixels" -msgstr "" +msgstr "避免單一沒有相連接的像素" #: ../src/ui/dialog/pixelartdialog.cpp:209 -#, fuzzy msgid "A constant vote value" -msgstr "限定角度" +msgstr "一個常數投票值" #: ../src/ui/dialog/pixelartdialog.cpp:219 msgid "Sparse pixels (window _radius):" -msgstr "" +msgstr "稀疏像素 (視窗半徑)(_R):" #: ../src/ui/dialog/pixelartdialog.cpp:228 msgid "The radius of the window analyzed" -msgstr "" +msgstr "分析的視窗半徑" #: ../src/ui/dialog/pixelartdialog.cpp:229 msgid "Sparse pixels (_multiplier):" -msgstr "" +msgstr "稀疏像素 (倍數)(_M):" #: ../src/ui/dialog/pixelartdialog.cpp:240 msgid "Favors connections that are part of foreground color" -msgstr "" +msgstr "想要的背景顏色組成連接性" #: ../src/ui/dialog/pixelartdialog.cpp:246 msgid "The heuristic computed vote will be multiplied by this value" -msgstr "" +msgstr "試探法計算的投票會乘以這項數值" #: ../src/ui/dialog/pixelartdialog.cpp:259 msgid "Heuristics" -msgstr "" +msgstr "試探法" #: ../src/ui/dialog/pixelartdialog.cpp:266 -#, fuzzy msgid "_Voronoi diagram" -msgstr "范氏晶格圖案" +msgstr "范氏晶格圖案(_V)" #: ../src/ui/dialog/pixelartdialog.cpp:267 msgid "Output composed of straight lines" -msgstr "" +msgstr "輸出直線組成" #: ../src/ui/dialog/pixelartdialog.cpp:273 -#, fuzzy msgid "Convert to _B-spline curves" -msgstr "轉成破折號" +msgstr "轉換成貝氏雲形線曲線(_B)" #: ../src/ui/dialog/pixelartdialog.cpp:274 -#, fuzzy msgid "Preserve staircasing artifacts" -msgstr "保留以此開頭的 ID 名稱:" +msgstr "保留階梯不自然痕跡" #: ../src/ui/dialog/pixelartdialog.cpp:281 -#, fuzzy msgid "_Smooth curves" -msgstr "平滑轉角(_C)" +msgstr "平滑曲線(_S)" #: ../src/ui/dialog/pixelartdialog.cpp:282 msgid "The Kopf-Lischinski algorithm" -msgstr "" +msgstr "Kopf-Lischinski 演算法" #: ../src/ui/dialog/pixelartdialog.cpp:289 msgid "Output" @@ -19035,9 +20204,8 @@ msgstr "輸出" #: ../src/ui/dialog/pixelartdialog.cpp:297 #: ../src/ui/dialog/tracedialog.cpp:814 -#, fuzzy msgid "Reset all settings to defaults" -msgstr "將目前分頁上的數值重設為預設值" +msgstr "將全部設定值重設為預設值" #: ../src/ui/dialog/pixelartdialog.cpp:302 #: ../src/ui/dialog/tracedialog.cpp:819 @@ -19050,13 +20218,6 @@ msgid "Execute the trace" msgstr "執行描繪" #: ../src/ui/dialog/pixelartdialog.cpp:388 -msgid "" -"Image looks too big. Process may take a while and is wise to save your " -"document before continue.\n" -"\n" -"Continue the procedure (without saving)?" -msgstr "" - #: ../src/ui/dialog/pixelartdialog.cpp:422 msgid "" "Image looks too big. Process may take a while and it is wise to save your " @@ -19064,83 +20225,72 @@ msgid "" "\n" "Continue the procedure (without saving)?" msgstr "" +"影像尺寸太大。該過程可能會需要一些時間並且最好在繼續處理前先儲存你的文件。\n" +"\n" +"繼續處理動作嗎 (不儲存)?" #: ../src/ui/dialog/pixelartdialog.cpp:499 -#, fuzzy msgid "Trace pixel art" -msgstr "像素" +msgstr "描繪像素圖案" -#: ../src/ui/dialog/polar-arrange-tab.cpp:43 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:48 msgctxt "Polar arrange tab" msgid "Anchor point:" -msgstr "塗鴉點" +msgstr "錨點:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:47 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:52 msgctxt "Polar arrange tab" msgid "Object's bounding box:" -msgstr "邊界框" +msgstr "物件邊界框:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:54 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:59 msgctxt "Polar arrange tab" msgid "Object's rotational center" msgstr "物件旋轉中心" -#: ../src/ui/dialog/polar-arrange-tab.cpp:59 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:64 msgctxt "Polar arrange tab" msgid "Arrange on:" -msgstr "排列" +msgstr "排列基準:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:63 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:68 msgctxt "Polar arrange tab" msgid "First selected circle/ellipse/arc" -msgstr "建立圓形﹑橢圓形與弧形" +msgstr "最開始選取的圓/橢圓/弧" -#: ../src/ui/dialog/polar-arrange-tab.cpp:68 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:73 msgctxt "Polar arrange tab" msgid "Last selected circle/ellipse/arc" -msgstr "最近選擇的顏色" +msgstr "最後選取的圓/橢圓/弧" -#: ../src/ui/dialog/polar-arrange-tab.cpp:73 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:78 msgctxt "Polar arrange tab" msgid "Parameterized:" -msgstr "參數化 G 程式碼" +msgstr "參數化 :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:78 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:83 msgid "Center X/Y:" -msgstr "置中" +msgstr "中心 X/Y:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:91 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:105 msgid "Radius X/Y:" -msgstr "半徑:" +msgstr "半徑 X/Y:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:104 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:127 msgid "Angle X/Y:" -msgstr "X 角度:" +msgstr "角度 X/Y:" -#: ../src/ui/dialog/polar-arrange-tab.cpp:118 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:150 msgid "Rotate objects" -msgstr "旋轉節點" +msgstr "旋轉物件" -#: ../src/ui/dialog/polar-arrange-tab.cpp:306 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:338 msgid "Couldn't find an ellipse in selection" -msgstr "此份文件 / 選取範圍裡找不到任何字型。" +msgstr "選取範圍裡找不到橢圓" -#: ../src/ui/dialog/polar-arrange-tab.cpp:371 -#, fuzzy +#: ../src/ui/dialog/polar-arrange-tab.cpp:403 msgid "Arrange on ellipse" -msgstr "建立橢圓形" +msgstr "按照橢圓排列" #: ../src/ui/dialog/print.cpp:111 msgid "Could not open temporary PNG for bitmap printing" @@ -19375,7 +20525,7 @@ msgstr "字型" msgid "Add font" msgstr "加入字型" -#: ../src/ui/dialog/svg-fonts-dialog.cpp:912 ../src/ui/dialog/text-edit.cpp:70 +#: ../src/ui/dialog/svg-fonts-dialog.cpp:912 ../src/ui/dialog/text-edit.cpp:69 msgid "_Font" msgstr "字型(_F)" @@ -19400,9 +20550,9 @@ msgstr "樣本文字" msgid "Preview Text:" msgstr "預覽文字:" -#: ../src/ui/dialog/swatches.cpp:203 ../src/ui/tools/gradient-tool.cpp:367 -#: ../src/ui/tools/gradient-tool.cpp:465 -#: ../src/widgets/gradient-vector.cpp:814 +#: ../src/ui/dialog/swatches.cpp:203 ../src/ui/tools/gradient-tool.cpp:370 +#: ../src/ui/tools/gradient-tool.cpp:468 +#: ../src/widgets/gradient-vector.cpp:794 msgid "Add gradient stop" msgstr "加入漸層停止點" @@ -19430,147 +20580,157 @@ msgid "Palettes directory (%s) is unavailable." msgstr "調色盤目錄 (%s) 無法使用。" #. ******************* Symbol Sets ************************ -#: ../src/ui/dialog/symbols.cpp:127 +#: ../src/ui/dialog/symbols.cpp:139 msgid "Symbol set: " -msgstr "" +msgstr "符號集:" #. Fill in later -#: ../src/ui/dialog/symbols.cpp:136 ../src/ui/dialog/symbols.cpp:137 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:148 ../src/ui/dialog/symbols.cpp:149 msgid "Current Document" -msgstr "列印文件" +msgstr "目前文件" -#: ../src/ui/dialog/symbols.cpp:204 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:216 msgid "Add Symbol from the current document." -msgstr "單獨顯示目前圖層" +msgstr "從目前文件加入符號。" -#: ../src/ui/dialog/symbols.cpp:213 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:225 msgid "Remove Symbol from the current document." -msgstr "選取目前漸層的停止點" +msgstr "從目前文件移除符號。" -#: ../src/ui/dialog/symbols.cpp:227 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:239 msgid "Display more icons in row." -msgstr "顯示測量資訊" +msgstr "列中顯示更多圖示。" -#: ../src/ui/dialog/symbols.cpp:236 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:248 msgid "Display fewer icons in row." -msgstr "顯示測量資訊" +msgstr "列中顯示較少圖示。" -#: ../src/ui/dialog/symbols.cpp:246 +#: ../src/ui/dialog/symbols.cpp:258 msgid "Toggle 'fit' symbols in icon space." -msgstr "" +msgstr "開啟/關閉讓符號符合圖示空間大小。" -#: ../src/ui/dialog/symbols.cpp:258 +#: ../src/ui/dialog/symbols.cpp:270 msgid "Make symbols smaller by zooming out." -msgstr "" +msgstr "讓符號隨著畫面縮小而變小。" -#: ../src/ui/dialog/symbols.cpp:268 +#: ../src/ui/dialog/symbols.cpp:280 msgid "Make symbols bigger by zooming in." -msgstr "" +msgstr "讓符號隨著畫面放大而變大。" -#: ../src/ui/dialog/symbols.cpp:622 -#, fuzzy +#: ../src/ui/dialog/symbols.cpp:640 msgid "Unnamed Symbols" -msgstr "高棉符號" +msgstr "未命名的符號" -#: ../src/ui/dialog/template-widget.cpp:36 -#, fuzzy +#: ../src/ui/dialog/tags.cpp:293 ../src/ui/dialog/tags.cpp:591 +#: ../src/ui/dialog/tags.cpp:705 +msgid "Remove from selection set" +msgstr "從選取集合中移除" + +#: ../src/ui/dialog/tags.cpp:449 +msgid "Items" +msgstr "項目" + +#: ../src/ui/dialog/tags.cpp:688 +msgid "Add selection to set" +msgstr "將選取項目加到集合" + +#: ../src/ui/dialog/tags.cpp:846 +msgid "Moved sets" +msgstr "移動的集合" + +#: ../src/ui/dialog/tags.cpp:1016 +msgid "Add a new selection set" +msgstr "加入新的選取集合" + +#: ../src/ui/dialog/tags.cpp:1025 +msgid "Remove Item/Set" +msgstr "移除項目/集合" + +#: ../src/ui/dialog/template-widget.cpp:37 msgid "More info" -msgstr "增加亮度" +msgstr "更多資訊" -#: ../src/ui/dialog/template-widget.cpp:38 -#, fuzzy +#: ../src/ui/dialog/template-widget.cpp:39 msgid "no template selected" -msgstr "沒有選取濾鏡" +msgstr "沒有選取任何範本" -#: ../src/ui/dialog/template-widget.cpp:119 -#, fuzzy +#: ../src/ui/dialog/template-widget.cpp:123 msgid "Path: " -msgstr "路徑:" +msgstr "路徑: " -#: ../src/ui/dialog/template-widget.cpp:122 -#, fuzzy +#: ../src/ui/dialog/template-widget.cpp:126 msgid "Description: " -msgstr "描述:" +msgstr "描述: " -#: ../src/ui/dialog/template-widget.cpp:124 -#, fuzzy +#: ../src/ui/dialog/template-widget.cpp:128 msgid "Keywords: " -msgstr "關鍵字:" +msgstr "關鍵字: " -#: ../src/ui/dialog/template-widget.cpp:131 +#: ../src/ui/dialog/template-widget.cpp:135 msgid "By: " -msgstr "" +msgstr "依據:" -#: ../src/ui/dialog/text-edit.cpp:73 +#: ../src/ui/dialog/text-edit.cpp:72 msgid "Set as _default" msgstr "設為預設(_D)" -#: ../src/ui/dialog/text-edit.cpp:87 +#: ../src/ui/dialog/text-edit.cpp:86 msgid "AaBbCcIiPpQq12369$€¢?.;/()" msgstr "AaBbCcIiPpQq12369$€¢?.;/()" #. Align buttons -#: ../src/ui/dialog/text-edit.cpp:97 ../src/widgets/text-toolbar.cpp:1344 -#: ../src/widgets/text-toolbar.cpp:1345 +#: ../src/ui/dialog/text-edit.cpp:96 ../src/widgets/text-toolbar.cpp:1346 +#: ../src/widgets/text-toolbar.cpp:1347 msgid "Align left" msgstr "靠左對齊" -#: ../src/ui/dialog/text-edit.cpp:98 ../src/widgets/text-toolbar.cpp:1352 -#: ../src/widgets/text-toolbar.cpp:1353 +#: ../src/ui/dialog/text-edit.cpp:97 ../src/widgets/text-toolbar.cpp:1354 +#: ../src/widgets/text-toolbar.cpp:1355 msgid "Align center" msgstr "置中" -#: ../src/ui/dialog/text-edit.cpp:99 ../src/widgets/text-toolbar.cpp:1360 -#: ../src/widgets/text-toolbar.cpp:1361 +#: ../src/ui/dialog/text-edit.cpp:98 ../src/widgets/text-toolbar.cpp:1362 +#: ../src/widgets/text-toolbar.cpp:1363 msgid "Align right" msgstr "靠右對齊" -#: ../src/ui/dialog/text-edit.cpp:100 ../src/widgets/text-toolbar.cpp:1369 +#: ../src/ui/dialog/text-edit.cpp:99 ../src/widgets/text-toolbar.cpp:1371 msgid "Justify (only flowed text)" msgstr "左右對齊 (僅流動文字)" #. Direction buttons -#: ../src/ui/dialog/text-edit.cpp:109 ../src/widgets/text-toolbar.cpp:1404 +#: ../src/ui/dialog/text-edit.cpp:108 ../src/widgets/text-toolbar.cpp:1406 msgid "Horizontal text" msgstr "橫書" -#: ../src/ui/dialog/text-edit.cpp:110 ../src/widgets/text-toolbar.cpp:1411 +#: ../src/ui/dialog/text-edit.cpp:109 ../src/widgets/text-toolbar.cpp:1413 msgid "Vertical text" msgstr "直書" -#: ../src/ui/dialog/text-edit.cpp:130 ../src/ui/dialog/text-edit.cpp:131 +#: ../src/ui/dialog/text-edit.cpp:129 ../src/ui/dialog/text-edit.cpp:130 msgid "Spacing between lines (percent of font size)" msgstr "每一行之間的距離 (字型大小的百分比)" -#: ../src/ui/dialog/text-edit.cpp:147 -#, fuzzy +#: ../src/ui/dialog/text-edit.cpp:146 msgid "Text path offset" -msgstr "調整偏移" +msgstr "文字路徑偏移" -#: ../src/ui/dialog/text-edit.cpp:588 ../src/ui/dialog/text-edit.cpp:662 +#: ../src/ui/dialog/text-edit.cpp:587 ../src/ui/dialog/text-edit.cpp:661 #: ../src/ui/tools/text-tool.cpp:1455 msgid "Set text style" msgstr "設定文字樣式" #: ../src/ui/dialog/tile.cpp:36 -#, fuzzy msgctxt "Arrange dialog" msgid "Rectangular grid" msgstr "矩形格線" #: ../src/ui/dialog/tile.cpp:37 -#, fuzzy msgctxt "Arrange dialog" msgid "Polar Coordinates" -msgstr "三線性坐標" +msgstr "極坐標" #: ../src/ui/dialog/tile.cpp:40 -#, fuzzy msgctxt "Arrange dialog" msgid "_Arrange" msgstr "排列(_A)" @@ -19803,7 +20963,6 @@ msgid "Cover the area you want to select as the foreground" msgstr "覆蓋你想要選擇作為前景的區域" #: ../src/ui/dialog/tracedialog.cpp:782 -#, fuzzy msgid "Live Preview" msgstr "即時預覽" @@ -19956,14 +21115,12 @@ msgid "Apply transformation to selection" msgstr "套用變形到選取區" #: ../src/ui/dialog/transformation.cpp:332 -#, fuzzy msgid "Rotate in a counterclockwise direction" -msgstr "逆時針旋轉" +msgstr "逆時針方向旋轉" #: ../src/ui/dialog/transformation.cpp:338 -#, fuzzy msgid "Rotate in a clockwise direction" -msgstr "順時針旋轉" +msgstr "順時針方向旋轉" #: ../src/ui/dialog/transformation.cpp:908 #: ../src/ui/dialog/transformation.cpp:919 @@ -19973,16 +21130,15 @@ msgstr "順時針旋轉" #: ../src/ui/dialog/transformation.cpp:973 #: ../src/ui/dialog/transformation.cpp:997 msgid "Transform matrix is singular, not used." -msgstr "" +msgstr "變換矩陣是單數,沒有使用矩陣。" #: ../src/ui/dialog/transformation.cpp:1012 msgid "Edit transformation matrix" msgstr "編輯變形矩陣" #: ../src/ui/dialog/transformation.cpp:1111 -#, fuzzy msgid "Rotation angle (positive = clockwise)" -msgstr "旋轉角度 (正值 = 逆時針)" +msgstr "旋轉角度 (正值 = 順時針)" #: ../src/ui/dialog/xml-tree.cpp:70 ../src/ui/dialog/xml-tree.cpp:126 msgid "New element node" @@ -20085,25 +21241,374 @@ msgstr "刪除節點" msgid "Change attribute" msgstr "變更屬性" -#: ../src/ui/tool/curve-drag-point.cpp:100 +#: ../src/ui/interface.cpp:748 +msgctxt "Interface setup" +msgid "Default" +msgstr "預設" + +#: ../src/ui/interface.cpp:748 +msgid "Default interface setup" +msgstr "預設的介面設定" + +#: ../src/ui/interface.cpp:749 +msgctxt "Interface setup" +msgid "Custom" +msgstr "自訂" + +#: ../src/ui/interface.cpp:749 +msgid "Setup for custom task" +msgstr "自訂工作設定" + +#: ../src/ui/interface.cpp:750 +msgctxt "Interface setup" +msgid "Wide" +msgstr "寬螢幕" + +#: ../src/ui/interface.cpp:750 +msgid "Setup for widescreen work" +msgstr "寬螢幕工作設定" + +#: ../src/ui/interface.cpp:862 +#, c-format +msgid "Verb \"%s\" Unknown" +msgstr "動詞「%s」不明" + +#: ../src/ui/interface.cpp:901 +msgid "Open _Recent" +msgstr "最近開啟(_R)" + +#: ../src/ui/interface.cpp:1009 ../src/ui/interface.cpp:1095 +#: ../src/ui/interface.cpp:1198 ../src/ui/widget/selected-style.cpp:545 +msgid "Drop color" +msgstr "丟棄顏色" + +#: ../src/ui/interface.cpp:1048 ../src/ui/interface.cpp:1158 +msgid "Drop color on gradient" +msgstr "丟棄漸層上的顏色" + +#: ../src/ui/interface.cpp:1211 +msgid "Could not parse SVG data" +msgstr "無法解析 SVG 資料" + +#: ../src/ui/interface.cpp:1250 +msgid "Drop SVG" +msgstr "丟棄 SVG" + +#: ../src/ui/interface.cpp:1263 +msgid "Drop Symbol" +msgstr "丟棄符號" + +#: ../src/ui/interface.cpp:1294 +msgid "Drop bitmap image" +msgstr "丟棄點陣圖影像" + +#: ../src/ui/interface.cpp:1386 +#, c-format +msgid "" +"A file named \"%s\" already exists. Do " +"you want to replace it?\n" +"\n" +"The file already exists in \"%s\". Replacing it will overwrite its contents." +msgstr "" +"檔案「%s」已經存在。要取代此檔案嗎?\n" +"\n" +"檔案已存在\"%s\"。 取代將會覆寫檔案的內容。" + +#: ../src/ui/interface.cpp:1393 ../share/extensions/web-set-att.inx.h:21 +#: ../share/extensions/web-transmit-att.inx.h:19 +msgid "Replace" +msgstr "取代" + +#: ../src/ui/interface.cpp:1464 +msgid "Go to parent" +msgstr "前往上一層" + +#. TRANSLATORS: #%1 is the id of the group e.g. , not a number. +#: ../src/ui/interface.cpp:1505 +msgid "Enter group #%1" +msgstr "進入群組 #%1" + +#. Item dialog +#: ../src/ui/interface.cpp:1641 ../src/verbs.cpp:2936 +msgid "_Object Properties..." +msgstr "物件屬性(_O)..." + +#: ../src/ui/interface.cpp:1650 +msgid "_Select This" +msgstr "選取此物件(_S)" + +#: ../src/ui/interface.cpp:1661 +msgid "Select Same" +msgstr "選取相同物件" + +#. Select same fill and stroke +#: ../src/ui/interface.cpp:1671 +msgid "Fill and Stroke" +msgstr "填充和邊框" + +#. Select same fill color +#: ../src/ui/interface.cpp:1678 +msgid "Fill Color" +msgstr "填充顏色" + +#. Select same stroke color +#: ../src/ui/interface.cpp:1685 +msgid "Stroke Color" +msgstr "邊框顏色" + +#. Select same stroke style +#: ../src/ui/interface.cpp:1692 +msgid "Stroke Style" +msgstr "邊框樣式" + +#. Select same stroke style +#: ../src/ui/interface.cpp:1699 +msgid "Object type" +msgstr "物件類型" + +#. Move to layer +#: ../src/ui/interface.cpp:1706 +msgid "_Move to layer ..." +msgstr "移至圖層(_M)..." + +#. Create link +#: ../src/ui/interface.cpp:1716 +msgid "Create _Link" +msgstr "建立連結(_L)" + +#. Set mask +#: ../src/ui/interface.cpp:1739 +msgid "Set Mask" +msgstr "設定遮罩" + +#. Release mask +#: ../src/ui/interface.cpp:1750 +msgid "Release Mask" +msgstr "解除遮罩" + +#. SSet Clip Group +#: ../src/ui/interface.cpp:1761 +msgid "Create Clip G_roup" +msgstr "建立裁剪群組(_G)" + +#. Set Clip +#: ../src/ui/interface.cpp:1768 +msgid "Set Cl_ip" +msgstr "設定裁剪(_I)" + +#. Release Clip +#: ../src/ui/interface.cpp:1779 +msgid "Release C_lip" +msgstr "解除裁剪(_L)" + +#. Group +#: ../src/ui/interface.cpp:1790 ../src/verbs.cpp:2569 +msgid "_Group" +msgstr "群組(_G)" + +#: ../src/ui/interface.cpp:1861 +msgid "Create link" +msgstr "建立連結" + +#. Ungroup +#: ../src/ui/interface.cpp:1896 ../src/verbs.cpp:2571 +msgid "_Ungroup" +msgstr "解散群組(_U)" + +#. Link dialog +#: ../src/ui/interface.cpp:1921 +msgid "Link _Properties..." +msgstr "連結屬性(_P)..." + +#. Select item +#: ../src/ui/interface.cpp:1927 +msgid "_Follow Link" +msgstr "跟隨連結(_F)" + +#. Reset transformations +#: ../src/ui/interface.cpp:1933 +msgid "_Remove Link" +msgstr "移除連結(_R)" + +#: ../src/ui/interface.cpp:1964 +msgid "Remove link" +msgstr "移除連結" + +#. Image properties +#: ../src/ui/interface.cpp:1975 +msgid "Image _Properties..." +msgstr "圖片屬性(_P)..." + +#. Edit externally +#: ../src/ui/interface.cpp:1981 +msgid "Edit Externally..." +msgstr "外部編輯..." + +#. Trace Bitmap +#. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) +#: ../src/ui/interface.cpp:1990 ../src/verbs.cpp:2632 +msgid "_Trace Bitmap..." +msgstr "描繪點陣圖(_T)..." + +#. Trace Pixel Art +#: ../src/ui/interface.cpp:1999 +msgid "Trace Pixel Art" +msgstr "描繪像素圖案" + +#: ../src/ui/interface.cpp:2009 +msgctxt "Context menu" +msgid "Embed Image" +msgstr "嵌入圖片" + +#: ../src/ui/interface.cpp:2020 +msgctxt "Context menu" +msgid "Extract Image..." +msgstr "提取圖片..." + +#. Item dialog +#. Fill and Stroke dialog +#: ../src/ui/interface.cpp:2165 ../src/ui/interface.cpp:2185 +#: ../src/verbs.cpp:2899 +msgid "_Fill and Stroke..." +msgstr "填充與邊框(_F)..." + +#. Edit Text dialog +#: ../src/ui/interface.cpp:2191 ../src/verbs.cpp:2918 +msgid "_Text and Font..." +msgstr "文字與字型(_T)..." + +#. Spellcheck dialog +#: ../src/ui/interface.cpp:2197 ../src/verbs.cpp:2926 +msgid "Check Spellin_g..." +msgstr "檢查拼寫(_G)..." + +#: ../src/ui/object-edit.cpp:456 +msgid "" +"Adjust the horizontal rounding radius; with Ctrl to make the " +"vertical radius the same" +msgstr "調整水平圓角半徑;按著 Ctrl 可讓垂直半徑相同" + +#: ../src/ui/object-edit.cpp:461 +msgid "" +"Adjust the vertical rounding radius; with Ctrl to make the " +"horizontal radius the same" +msgstr "調整垂直圓角半徑;按著 Ctrl 可讓水平半徑相同" + +#: ../src/ui/object-edit.cpp:466 ../src/ui/object-edit.cpp:471 +msgid "" +"Adjust the width and height of the rectangle; with Ctrl to " +"lock ratio or stretch in one dimension only" +msgstr "調整矩形的寬度和高度;按著 Ctrl 可鎖定比例或只伸展單一尺寸" + +#: ../src/ui/object-edit.cpp:718 ../src/ui/object-edit.cpp:722 +#: ../src/ui/object-edit.cpp:726 ../src/ui/object-edit.cpp:730 +msgid "" +"Resize box in X/Y direction; with Shift along the Z axis; with " +"Ctrl to constrain to the directions of edges or diagonals" +msgstr "" +"以 X / Y 方向調整立方體大小;按著 Shift 沿著 Z 軸; 按著 Ctrl 可" +"限定邊或對角線方向" + +#: ../src/ui/object-edit.cpp:734 ../src/ui/object-edit.cpp:738 +#: ../src/ui/object-edit.cpp:742 ../src/ui/object-edit.cpp:746 +msgid "" +"Resize box along the Z axis; with Shift in X/Y direction; with " +"Ctrl to constrain to the directions of edges or diagonals" +msgstr "" +"沿著 Z 軸調整立方體大小;按著 Shift 可以 X/Y 方向調整大小;按 " +"Ctrl 可限定邊或對角線方向" + +#: ../src/ui/object-edit.cpp:750 +msgid "Move the box in perspective" +msgstr "用透視角度移動立方體" + +#: ../src/ui/object-edit.cpp:989 +msgid "Adjust ellipse width, with Ctrl to make circle" +msgstr "調整橢圓形寬度,按著 Ctrl 可繪製圓形" + +#: ../src/ui/object-edit.cpp:993 +msgid "Adjust ellipse height, with Ctrl to make circle" +msgstr "調整橢圓形高度,按著 Ctrl 可繪製圓形" + +#: ../src/ui/object-edit.cpp:997 +msgid "" +"Position the start point of the arc or segment; with Ctrl to " +"snap angle; drag inside the ellipse for arc, outside for " +"segment" +msgstr "" +"設定弧形或線段的起點位置;按著 Ctrl 可貼齊角度;拖曳橢圓形內" +"部可成為弧形,而外部可成為扇形" + +#: ../src/ui/object-edit.cpp:1002 +msgid "" +"Position the end point of the arc or segment; with Ctrl to " +"snap angle; drag inside the ellipse for arc, outside for " +"segment" +msgstr "" +"設定弧形或線段的終點位置;按著 Ctrl 可貼齊角度;拖曳橢圓形內" +"部可成為弧形,而外部可成為扇形。" + +#: ../src/ui/object-edit.cpp:1148 +msgid "" +"Adjust the tip radius of the star or polygon; with Shift to " +"round; with Alt to randomize" +msgstr "" +"調整星形或多邊形的尖端半徑;按著 Shift 可變為圓角;按著 " +"Alt 可隨機變化" + +#: ../src/ui/object-edit.cpp:1156 +msgid "" +"Adjust the base radius of the star; with Ctrl to keep star " +"rays radial (no skew); with Shift to round; with Alt to " +"randomize" +msgstr "" +"調整星形的基本半徑;按著 Ctrl 可維持星形光芒為放射狀 (無傾斜);" +"按著 Shift 可變為圓角;按著 Alt 可隨機變化" + +#: ../src/ui/object-edit.cpp:1351 +msgid "" +"Roll/unroll the spiral from inside; with Ctrl to snap angle; " +"with Alt to converge/diverge" +msgstr "" +"從內部捲起 / 展開螺旋形;按 Ctrl 可貼齊角度;按 Alt 可變" +"成收斂 / 發散" + +#: ../src/ui/object-edit.cpp:1355 +msgid "" +"Roll/unroll the spiral from outside; with Ctrl to snap angle; " +"with Shift to scale/rotate; with Alt to lock radius" +msgstr "" +"從外部捲起 / 展開螺旋形;按 Ctrl 可貼齊角度;按 Shift 可" +"縮放 / 旋轉;按 Alt 可鎖住半徑" + +#: ../src/ui/object-edit.cpp:1402 +msgid "Adjust the offset distance" +msgstr "調整偏移距離" + +#: ../src/ui/object-edit.cpp:1439 +msgid "Drag to resize the flowed text frame" +msgstr "拖曳來調整流動文字框的大小" + +#: ../src/ui/tool/curve-drag-point.cpp:105 msgid "Drag curve" msgstr "拖曳曲線" -#: ../src/ui/tool/curve-drag-point.cpp:157 +#: ../src/ui/tool/curve-drag-point.cpp:162 msgid "Add node" msgstr "加入節點" -#: ../src/ui/tool/curve-drag-point.cpp:167 +#: ../src/ui/tool/curve-drag-point.cpp:172 msgctxt "Path segment tip" msgid "Shift: click to toggle segment selection" msgstr "Shift:點擊可切換線段選取" -#: ../src/ui/tool/curve-drag-point.cpp:171 +#: ../src/ui/tool/curve-drag-point.cpp:176 msgctxt "Path segment tip" msgid "Ctrl+Alt: click to insert a node" msgstr "Ctrl+Alt:點擊可插入節點" -#: ../src/ui/tool/curve-drag-point.cpp:175 +#: ../src/ui/tool/curve-drag-point.cpp:180 msgctxt "Path segment tip" msgid "" "Linear segment: drag to convert to a Bezier segment, doubleclick to " @@ -20112,7 +21617,7 @@ msgstr "" "線性線段:拖曳可轉換成貝茲曲線線段,點擊兩下可插入節點,點擊可選取 (更" "多:Shift, Ctrl+Alt)" -#: ../src/ui/tool/curve-drag-point.cpp:179 +#: ../src/ui/tool/curve-drag-point.cpp:184 msgctxt "Path segment tip" msgid "" "Bezier segment: drag to shape the segment, doubleclick to insert " @@ -20125,7 +21630,7 @@ msgstr "" msgid "Retract handles" msgstr "縮回控制柄" -#: ../src/ui/tool/multi-path-manipulator.cpp:315 ../src/ui/tool/node.cpp:270 +#: ../src/ui/tool/multi-path-manipulator.cpp:315 ../src/ui/tool/node.cpp:296 msgid "Change node type" msgstr "變更節點類型" @@ -20163,83 +21668,88 @@ msgstr "拆開節點" msgid "Delete nodes" msgstr "刪除節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:757 +#: ../src/ui/tool/multi-path-manipulator.cpp:768 msgid "Move nodes" msgstr "移動節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:760 +#: ../src/ui/tool/multi-path-manipulator.cpp:771 msgid "Move nodes horizontally" msgstr "水平移動節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:764 +#: ../src/ui/tool/multi-path-manipulator.cpp:775 msgid "Move nodes vertically" msgstr "垂直移動節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:768 -#: ../src/ui/tool/multi-path-manipulator.cpp:771 +#: ../src/ui/tool/multi-path-manipulator.cpp:779 +#: ../src/ui/tool/multi-path-manipulator.cpp:782 msgid "Rotate nodes" msgstr "旋轉節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:775 -#: ../src/ui/tool/multi-path-manipulator.cpp:781 +#: ../src/ui/tool/multi-path-manipulator.cpp:786 +#: ../src/ui/tool/multi-path-manipulator.cpp:792 msgid "Scale nodes uniformly" msgstr "均勻縮放節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:778 +#: ../src/ui/tool/multi-path-manipulator.cpp:789 msgid "Scale nodes" msgstr "縮放節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:785 +#: ../src/ui/tool/multi-path-manipulator.cpp:796 msgid "Scale nodes horizontally" msgstr "水平縮放節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:789 +#: ../src/ui/tool/multi-path-manipulator.cpp:800 msgid "Scale nodes vertically" msgstr "垂直縮放節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:793 +#: ../src/ui/tool/multi-path-manipulator.cpp:804 msgid "Skew nodes horizontally" msgstr "水平傾斜節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:797 +#: ../src/ui/tool/multi-path-manipulator.cpp:808 msgid "Skew nodes vertically" msgstr "垂直傾斜節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:801 +#: ../src/ui/tool/multi-path-manipulator.cpp:812 msgid "Flip nodes horizontally" msgstr "水平翻轉節點" -#: ../src/ui/tool/multi-path-manipulator.cpp:804 +#: ../src/ui/tool/multi-path-manipulator.cpp:815 msgid "Flip nodes vertically" msgstr "垂直翻轉節點" -#: ../src/ui/tool/node.cpp:245 +#: ../src/ui/tool/node.cpp:271 msgid "Cusp node handle" msgstr "尖端節點控制柄" -#: ../src/ui/tool/node.cpp:246 +#: ../src/ui/tool/node.cpp:272 msgid "Smooth node handle" msgstr "平滑節點控制柄" -#: ../src/ui/tool/node.cpp:247 +#: ../src/ui/tool/node.cpp:273 msgid "Symmetric node handle" msgstr "對稱節點控制柄" -#: ../src/ui/tool/node.cpp:248 +#: ../src/ui/tool/node.cpp:274 msgid "Auto-smooth node handle" msgstr "自動平滑節點控制柄" -#: ../src/ui/tool/node.cpp:432 +#: ../src/ui/tool/node.cpp:493 msgctxt "Path handle tip" msgid "more: Shift, Ctrl, Alt" msgstr "更進一步:Shift, Ctrl, Alt" -#: ../src/ui/tool/node.cpp:434 +#: ../src/ui/tool/node.cpp:495 +msgctxt "Path handle tip" +msgid "more: Ctrl" +msgstr "更進一步:Ctrl" + +#: ../src/ui/tool/node.cpp:497 msgctxt "Path handle tip" msgid "more: Ctrl, Alt" msgstr "更進一步:Ctrl, Alt" -#: ../src/ui/tool/node.cpp:440 +#: ../src/ui/tool/node.cpp:503 #, c-format msgctxt "Path handle tip" msgid "" @@ -20247,24 +21757,24 @@ msgid "" "increments while rotating both handles" msgstr "Shift+Ctrl+Alt:固定長度且同時旋轉控制柄時貼齊角度為 %g° 遞增" -#: ../src/ui/tool/node.cpp:445 +#: ../src/ui/tool/node.cpp:508 #, c-format msgctxt "Path handle tip" msgid "" "Ctrl+Alt: preserve length and snap rotation angle to %g° increments" msgstr "Ctrl+Alt:固定長度且貼齊角度為 %g° 遞增" -#: ../src/ui/tool/node.cpp:451 +#: ../src/ui/tool/node.cpp:514 msgctxt "Path handle tip" msgid "Shift+Alt: preserve handle length and rotate both handles" msgstr "Shift+Alt:固定控制柄長度並同時旋轉控制柄" -#: ../src/ui/tool/node.cpp:454 +#: ../src/ui/tool/node.cpp:517 msgctxt "Path handle tip" msgid "Alt: preserve handle length while dragging" msgstr "Alt:拖曳時固定控制柄長度" -#: ../src/ui/tool/node.cpp:461 +#: ../src/ui/tool/node.cpp:524 #, c-format msgctxt "Path handle tip" msgid "" @@ -20272,67 +21782,85 @@ msgid "" "handles" msgstr "Shift+Ctrl:貼齊旋轉角度為 %g° 遞增並同時旋轉控制柄" -#: ../src/ui/tool/node.cpp:465 +#: ../src/ui/tool/node.cpp:528 +msgctxt "Path handle tip" +msgid "Ctrl: Move handle by his actual steps in BSpline Live Effect" +msgstr "Ctrl: 在貝氏雲形線即時特效中依照本身實際的階數移動控制柄" + +#: ../src/ui/tool/node.cpp:531 #, c-format msgctxt "Path handle tip" msgid "Ctrl: snap rotation angle to %g° increments, click to retract" msgstr "Ctrl:貼齊旋轉角度為 %g° 遞增,點擊可收縮" -#: ../src/ui/tool/node.cpp:470 +#: ../src/ui/tool/node.cpp:536 msgctxt "Path hande tip" msgid "Shift: rotate both handles by the same angle" msgstr "Shift:以相同角度同時旋轉控制柄" -#: ../src/ui/tool/node.cpp:477 +#: ../src/ui/tool/node.cpp:539 +msgctxt "Path hande tip" +msgid "Shift: move handle" +msgstr "Shift:移動節點控柄" + +#: ../src/ui/tool/node.cpp:546 ../src/ui/tool/node.cpp:550 #, c-format msgctxt "Path handle tip" msgid "Auto node handle: drag to convert to smooth node (%s)" msgstr "自動節點控制柄:拖曳可轉換成平滑節點 (%s)" -#: ../src/ui/tool/node.cpp:480 +#: ../src/ui/tool/node.cpp:553 #, c-format msgctxt "Path handle tip" -msgid "%s: drag to shape the segment (%s)" -msgstr "%s:拖曳可改變線段的形狀 (%s)" +msgid "BSpline node handle: Shift to drag, double click to reset (%s)" +msgstr "貝氏節點控制柄:Shift 鍵可以拖曳,滑鼠點擊兩下可以重設 (%s)" -#: ../src/ui/tool/node.cpp:500 +#: ../src/ui/tool/node.cpp:573 #, c-format msgctxt "Path handle tip" msgid "Move handle by %s, %s; angle %.2f°, length %s" msgstr "移動控制柄到 %s, %s;角度 %.2f°、長度 %s" -#: ../src/ui/tool/node.cpp:1270 +#: ../src/ui/tool/node.cpp:1447 msgctxt "Path node tip" msgid "Shift: drag out a handle, click to toggle selection" msgstr "Shift:按住控制點,點擊可切換選取" -#: ../src/ui/tool/node.cpp:1272 +#: ../src/ui/tool/node.cpp:1449 msgctxt "Path node tip" msgid "Shift: click to toggle selection" msgstr "Shift:點擊可切換選取" -#: ../src/ui/tool/node.cpp:1277 +#: ../src/ui/tool/node.cpp:1454 msgctxt "Path node tip" msgid "Ctrl+Alt: move along handle lines, click to delete node" msgstr "Ctrl+Alt:沿著控制線移動,點擊可刪除節點" -#: ../src/ui/tool/node.cpp:1280 +#: ../src/ui/tool/node.cpp:1457 msgctxt "Path node tip" msgid "Ctrl: move along axes, click to change node type" msgstr "Ctrl:沿著坐標軸移動,點擊可改變節點類型" -#: ../src/ui/tool/node.cpp:1284 +#: ../src/ui/tool/node.cpp:1461 msgctxt "Path node tip" msgid "Alt: sculpt nodes" msgstr "Alt:雕塑節點" -#: ../src/ui/tool/node.cpp:1292 +#: ../src/ui/tool/node.cpp:1469 #, c-format msgctxt "Path node tip" msgid "%s: drag to shape the path (more: Shift, Ctrl, Alt)" msgstr "%s:拖曳可改變路徑的形狀 (更進一步:Shift, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1295 +#: ../src/ui/tool/node.cpp:1472 +#, c-format +msgctxt "Path node tip" +msgid "" +"BSpline node: %g weight, drag to shape the path (more: Shift, Ctrl, " +"Alt)" +msgstr "貝氏雲形線:%g 權重,拖曳可改變路徑的形狀 (更進一步:Shift, Ctrl, Alt)" + +#: ../src/ui/tool/node.cpp:1475 #, c-format msgctxt "Path node tip" msgid "" @@ -20342,7 +21870,7 @@ msgstr "" "%s:拖曳可改變路徑的形狀,點擊可切換縮放 / 旋轉控制點 (更進一步:" "Shift, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1298 +#: ../src/ui/tool/node.cpp:1479 #, c-format msgctxt "Path node tip" msgid "" @@ -20352,43 +21880,52 @@ msgstr "" "%s:拖曳可改變路徑的形狀,點擊可只選取此節點 (更進一步:Shift, Ctrl, " "Alt)" -#: ../src/ui/tool/node.cpp:1309 +#: ../src/ui/tool/node.cpp:1482 +msgctxt "Path node tip" +msgid "" +"BSpline node: drag to shape the path, click to select only this node " +"(more: Shift, Ctrl, Alt)" +msgstr "" +"貝氏雲形線節點:拖曳可改變路徑的形狀,點擊可以只選取該節點 (更進一步:Shift, Ctrl, " +"Alt)" + +#: ../src/ui/tool/node.cpp:1495 #, c-format msgctxt "Path node tip" msgid "Move node by %s, %s" msgstr "移動節點到 %s, %s " -#: ../src/ui/tool/node.cpp:1320 +#: ../src/ui/tool/node.cpp:1506 msgid "Symmetric node" msgstr "對稱節點" -#: ../src/ui/tool/node.cpp:1321 +#: ../src/ui/tool/node.cpp:1507 msgid "Auto-smooth node" msgstr "自動平滑節點" -#: ../src/ui/tool/path-manipulator.cpp:821 +#: ../src/ui/tool/path-manipulator.cpp:836 msgid "Scale handle" msgstr "縮放控制" -#: ../src/ui/tool/path-manipulator.cpp:845 +#: ../src/ui/tool/path-manipulator.cpp:860 msgid "Rotate handle" msgstr "旋轉控制" #. We need to call MPM's method because it could have been our last node -#: ../src/ui/tool/path-manipulator.cpp:1384 +#: ../src/ui/tool/path-manipulator.cpp:1520 #: ../src/widgets/node-toolbar.cpp:397 msgid "Delete node" msgstr "刪除節點" -#: ../src/ui/tool/path-manipulator.cpp:1392 +#: ../src/ui/tool/path-manipulator.cpp:1528 msgid "Cycle node type" msgstr "循環節點類型" -#: ../src/ui/tool/path-manipulator.cpp:1407 +#: ../src/ui/tool/path-manipulator.cpp:1543 msgid "Drag handle" msgstr "拖曳控制點" -#: ../src/ui/tool/path-manipulator.cpp:1416 +#: ../src/ui/tool/path-manipulator.cpp:1552 msgid "Retract handle" msgstr "收縮控制點" @@ -20504,6 +22041,152 @@ msgctxt "Transform handle tip" msgid "Rotation center: drag to change the origin of transforms" msgstr "旋轉中心點:拖曳可變更變形原點" +#: ../src/ui/tools-switch.cpp:95 +msgid "" +"Click to Select and Transform objects, Drag to select many " +"objects." +msgstr "點擊可選取和變形物件,拖曳可多個物件。" + +#: ../src/ui/tools-switch.cpp:96 +msgid "Modify selected path points (nodes) directly." +msgstr "直接修改選取的路徑點 (節點)。" + +#: ../src/ui/tools-switch.cpp:97 +msgid "To tweak a path by pushing, select it and drag over it." +msgstr "用推壓方式微調路徑,選取路徑並在上方拖曳。" + +#: ../src/ui/tools-switch.cpp:98 +msgid "" +"Drag, click or click and scroll to spray the selected " +"objects." +msgstr "拖曳點擊滾動滑鼠滾輪來噴灑選取的物件。" + +#: ../src/ui/tools-switch.cpp:99 +msgid "" +"Drag to create a rectangle. Drag controls to round corners and " +"resize. Click to select." +msgstr "拖曳可建立矩形。拖曳控制點可調整圓角及大小。點擊可選取。" + +#: ../src/ui/tools-switch.cpp:100 +msgid "" +"Drag to create a 3D box. Drag controls to resize in " +"perspective. Click to select (with Ctrl+Alt for single faces)." +msgstr "" +"拖曳可建立立方體。拖曳控制點可用透視角度來調整大小。點擊" +"可選取 (按著 Ctrl+Alt 可選取單一個面)。" + +#: ../src/ui/tools-switch.cpp:101 +msgid "" +"Drag to create an ellipse. Drag controls to make an arc or " +"segment. Click to select." +msgstr "" +"拖曳可建立橢圓形。拖曳控制點可建立弧形或線段。點擊可選" +"取。" + +#: ../src/ui/tools-switch.cpp:102 +msgid "" +"Drag to create a star. Drag controls to edit the star shape. " +"Click to select." +msgstr "拖曳可建立星形。拖曳控制點可編輯星形的形狀。點擊可選取。" + +#: ../src/ui/tools-switch.cpp:103 +msgid "" +"Drag to create a spiral. Drag controls to edit the spiral " +"shape. Click to select." +msgstr "" +"拖曳可建立螺旋形。拖曳控制點可編輯螺旋的形狀。點擊可選" +"取。" + +#: ../src/ui/tools-switch.cpp:104 +msgid "" +"Drag to create a freehand line. Shift appends to selected " +"path, Alt activates sketch mode." +msgstr "" +"拖曳可建立手繪線。按 Shift 可添加到選擇的路徑,按 Alt 可" +"啟動草圖模式。" + +#: ../src/ui/tools-switch.cpp:105 +msgid "" +"Click or click and drag to start a path; with Shift to " +"append to selected path. Ctrl+click to create single dots (straight " +"line modes only)." +msgstr "" +"點擊點擊並拖曳可開始一條路徑;按著 Shift 可添加到所選" +"取的路徑。Ctrl + 點擊 可建立單一個點 (只限直線模式)。" + +#: ../src/ui/tools-switch.cpp:106 +msgid "" +"Drag to draw a calligraphic stroke; with Ctrl to track a guide " +"path. Arrow keys adjust width (left/right) and angle (up/down)." +msgstr "" +"拖曳可畫出書法筆畫;按著 Ctrl 可描繪參考線路徑。方向鍵可" +"調整寬度 (左/右) 和角度 (上/下)。" + +#: ../src/ui/tools-switch.cpp:107 ../src/ui/tools/text-tool.cpp:1593 +msgid "" +"Click to select or create text, drag to create flowed text; " +"then type." +msgstr "點擊可選取或建立文字,拖曳可建立流動文字;然後輸入文字。" + +#: ../src/ui/tools-switch.cpp:108 +msgid "" +"Drag or double click to create a gradient on selected objects, " +"drag handles to adjust gradients." +msgstr "" +"拖曳點擊兩下可在選擇的物件上建立漸層,拖曳控制點可調整" +"漸層。" + +#: ../src/ui/tools-switch.cpp:109 +msgid "" +"Drag or double click to create a mesh on selected objects, " +"drag handles to adjust meshes." +msgstr "" +"拖曳點擊兩下可在選擇的物件上建立網面漸層,拖曳控制點可" +"調整網面漸層。" + +#: ../src/ui/tools-switch.cpp:110 +msgid "" +"Click or drag around an area to zoom in, Shift+click to " +"zoom out." +msgstr "" +"點擊在區域四周拖曳可放大畫面, Shift+點擊 可以縮小畫" +"面。" + +#: ../src/ui/tools-switch.cpp:111 +msgid "Drag to measure the dimensions of objects." +msgstr "拖曳來測量物件的尺寸。" + +#: ../src/ui/tools-switch.cpp:112 ../src/ui/tools/dropper-tool.cpp:285 +msgid "" +"Click to set fill, Shift+click to set stroke; drag to " +"average color in area; with Alt to pick inverse color; Ctrl+C " +"to copy the color under mouse to clipboard" +msgstr "" +"點擊可設定填充,Shift+click 可設定邊框;拖曳可設定區域中" +"的平均顏色;按著 Alt 可汲取反相顏色;Ctrl+C 可將滑鼠下方的顏色" +"複製到剪貼簿" + +#: ../src/ui/tools-switch.cpp:113 +msgid "Click and drag between shapes to create a connector." +msgstr "在形狀之間點擊和拖曳可建立連接線。" + +#: ../src/ui/tools-switch.cpp:114 +msgid "" +"Click to paint a bounded area, Shift+click to union the new " +"fill with the current selection, Ctrl+click to change the clicked " +"object's fill and stroke to the current setting." +msgstr "" +"點擊 可塗繪一個封閉區域,Shift+點擊 可將新填塗合併到目前的選取" +"區, Ctrl+點擊 可將被點擊物件的填塗和邊框變為目前的設定值。" + +#: ../src/ui/tools-switch.cpp:115 +msgid "Drag to erase." +msgstr "拖曳可擦除。" + +#: ../src/ui/tools-switch.cpp:116 +msgid "Choose a subtool from the toolbar" +msgstr "從此工具列選擇附屬工具" + #: ../src/ui/tools/arc-tool.cpp:252 msgid "" "Ctrl: make circle or integer-ratio ellipse, snap arc/segment angle" @@ -20716,24 +22399,24 @@ msgid "Draw over areas to add to fill, hold Alt for touch fill" msgstr "拖曳到區域上面來加入到填充,按住 Alt 可觸碰填充" #. We hit green anchor, closing Green-Blue-Red -#: ../src/ui/tools/freehand-base.cpp:518 +#: ../src/ui/tools/freehand-base.cpp:559 msgid "Path is closed." msgstr "路徑已閉合。" #. We hit bot start and end of single curve, closing paths -#: ../src/ui/tools/freehand-base.cpp:533 +#: ../src/ui/tools/freehand-base.cpp:574 msgid "Closing path." msgstr "正在閉合路徑。" -#: ../src/ui/tools/freehand-base.cpp:635 +#: ../src/ui/tools/freehand-base.cpp:711 msgid "Draw path" msgstr "繪製路徑" -#: ../src/ui/tools/freehand-base.cpp:792 +#: ../src/ui/tools/freehand-base.cpp:867 msgid "Creating single dot" msgstr "正在建立單一點" -#: ../src/ui/tools/freehand-base.cpp:793 +#: ../src/ui/tools/freehand-base.cpp:868 msgid "Create single dot" msgstr "建立單一點" @@ -20788,182 +22471,189 @@ msgid_plural "" msgstr[0] "沒有 從 %d 個選取物件的 %d 個裡選擇漸層控制點" msgstr[1] "沒有 從 %d 個選取物件的 %d 個裡選擇漸層控制點" -#: ../src/ui/tools/gradient-tool.cpp:440 +#: ../src/ui/tools/gradient-tool.cpp:443 msgid "Simplify gradient" msgstr "簡單漸層" -#: ../src/ui/tools/gradient-tool.cpp:516 +#: ../src/ui/tools/gradient-tool.cpp:519 msgid "Create default gradient" msgstr "建立預設漸層" -#: ../src/ui/tools/gradient-tool.cpp:575 ../src/ui/tools/mesh-tool.cpp:570 +#: ../src/ui/tools/gradient-tool.cpp:578 ../src/ui/tools/mesh-tool.cpp:570 msgid "Draw around handles to select them" msgstr "拖曳控制點的周圍來選取控制點" -#: ../src/ui/tools/gradient-tool.cpp:698 +#: ../src/ui/tools/gradient-tool.cpp:701 msgid "Ctrl: snap gradient angle" msgstr "Ctrl:貼齊漸層角度" -#: ../src/ui/tools/gradient-tool.cpp:699 +#: ../src/ui/tools/gradient-tool.cpp:702 msgid "Shift: draw gradient around the starting point" msgstr "Shift:從起始點周圍繪製漸層" -#: ../src/ui/tools/gradient-tool.cpp:953 ../src/ui/tools/mesh-tool.cpp:993 +#: ../src/ui/tools/gradient-tool.cpp:956 ../src/ui/tools/mesh-tool.cpp:993 #, c-format msgid "Gradient for %d object; with Ctrl to snap angle" msgid_plural "Gradient for %d objects; with Ctrl to snap angle" msgstr[0] "%d個物件的漸層;按著 Ctrl 可貼齊角度" msgstr[1] "%d個物件漸層;按著 Ctrl 以捉取角度" -#: ../src/ui/tools/gradient-tool.cpp:957 ../src/ui/tools/mesh-tool.cpp:997 +#: ../src/ui/tools/gradient-tool.cpp:960 ../src/ui/tools/mesh-tool.cpp:997 msgid "Select objects on which to create gradient." msgstr "選擇物件以建立漸層。" -#: ../src/ui/tools/lpe-tool.cpp:207 +#: ../src/ui/tools/lpe-tool.cpp:206 msgid "Choose a construction tool from the toolbar." msgstr "從這工具列中選擇一個建造工具。" #. TRANSLATORS: Mind the space in front. This is part of a compound message #: ../src/ui/tools/mesh-tool.cpp:132 ../src/ui/tools/mesh-tool.cpp:143 -#, fuzzy, c-format +#, c-format msgid " out of %d mesh handle" msgid_plural " out of %d mesh handles" -msgstr[0] " 超過 %d 個漸層控制點" -msgstr[1] " 超過 %d 個漸層控制點" +msgstr[0] " %d 個網面控制點" +msgstr[1] " %d 個網面控制點" #: ../src/ui/tools/mesh-tool.cpp:150 -#, fuzzy, c-format +#, c-format msgid "%d mesh handle selected out of %d" msgid_plural "%d mesh handles selected out of %d" -msgstr[0] "已從 %d 個裡選擇了 %d 個漸層控制點" -msgstr[1] "已從 %d 個裡選擇了 %d 個漸層控制點" +msgstr[0] "從 %d 個裡選取了 %d 個網面控制點" +msgstr[1] "從 %d 個裡選取了 %d 個網面控制點" #. TRANSLATORS: The plural refers to number of selected objects #: ../src/ui/tools/mesh-tool.cpp:157 -#, fuzzy, c-format +#, c-format msgid "No mesh handles selected out of %d on %d selected object" msgid_plural "No mesh handles selected out of %d on %d selected objects" -msgstr[0] "沒有 從 %d 個選取物件的 %d 個裡選擇漸層控制點" -msgstr[1] "沒有 從 %d 個選取物件的 %d 個裡選擇漸層控制點" +msgstr[0] "沒有 從 %d 個選取物件的 %d 個裡選擇網面控制點" +msgstr[1] "沒有 從 %d 個選取物件的 %d 個裡選擇網面控制點" #: ../src/ui/tools/mesh-tool.cpp:321 msgid "Split mesh row/column" -msgstr "" +msgstr "分割網面的列/欄" #: ../src/ui/tools/mesh-tool.cpp:407 msgid "Toggled mesh path type." -msgstr "" +msgstr "切換網面路徑類型。" #: ../src/ui/tools/mesh-tool.cpp:411 msgid "Approximated arc for mesh side." -msgstr "" +msgstr "網面邊的近似弧形。" #: ../src/ui/tools/mesh-tool.cpp:415 msgid "Toggled mesh tensors." -msgstr "" +msgstr "切換網面張量。" #: ../src/ui/tools/mesh-tool.cpp:419 -#, fuzzy msgid "Smoothed mesh corner color." -msgstr "平滑轉角(_C)" +msgstr "平滑網面邊角顏色。" #: ../src/ui/tools/mesh-tool.cpp:423 -#, fuzzy msgid "Picked mesh corner color." -msgstr "取得色相" +msgstr "汲取網面邊角顏色。" #: ../src/ui/tools/mesh-tool.cpp:498 -#, fuzzy msgid "Create default mesh" -msgstr "建立預設漸層" +msgstr "建立預設網面" #: ../src/ui/tools/mesh-tool.cpp:718 -#, fuzzy msgid "FIXMECtrl: snap mesh angle" -msgstr "Ctrl:貼齊角度" +msgstr "按住Ctrl:貼齊角度" #: ../src/ui/tools/mesh-tool.cpp:719 -#, fuzzy msgid "FIXMEShift: draw mesh around the starting point" -msgstr "Shift:於起始點周圍繪製" +msgstr "按住Shift:於起始點周圍繪製" -#: ../src/ui/tools/node-tool.cpp:598 +#: ../src/ui/tools/node-tool.cpp:612 msgctxt "Node tool tip" msgid "" "Shift: drag to add nodes to the selection, click to toggle object " "selection" msgstr "Shift:拖曳可加入節點到選取區,點擊可切換物件選取" -#: ../src/ui/tools/node-tool.cpp:602 +#: ../src/ui/tools/node-tool.cpp:616 msgctxt "Node tool tip" msgid "Shift: drag to add nodes to the selection" msgstr "Shift:拖曳可加入節點到選取區" -#: ../src/ui/tools/node-tool.cpp:614 +#: ../src/ui/tools/node-tool.cpp:628 #, c-format msgid "%u of %u node selected." msgid_plural "%u of %u nodes selected." msgstr[0] "總共有 %u 個節點,選取了 %u 個節點。" msgstr[1] "總共有 %u 個節點,選取了 %u 個節點。" -#: ../src/ui/tools/node-tool.cpp:620 +#: ../src/ui/tools/node-tool.cpp:634 #, c-format msgctxt "Node tool tip" msgid "%s Drag to select nodes, click to edit only this object (more: Shift)" msgstr "%s 拖曳可選取節點,點擊可只編輯這個物件 (更進一步:Shift)" -#: ../src/ui/tools/node-tool.cpp:626 +#: ../src/ui/tools/node-tool.cpp:640 #, c-format msgctxt "Node tool tip" msgid "%s Drag to select nodes, click clear the selection" msgstr "%s 拖曳可選取節點,點擊可清除選取狀態" -#: ../src/ui/tools/node-tool.cpp:635 +#: ../src/ui/tools/node-tool.cpp:649 msgctxt "Node tool tip" msgid "Drag to select nodes, click to edit only this object" msgstr "拖曳可選取節點,點擊可只編輯這個物件" -#: ../src/ui/tools/node-tool.cpp:638 +#: ../src/ui/tools/node-tool.cpp:652 msgctxt "Node tool tip" msgid "Drag to select nodes, click to clear the selection" msgstr "拖曳可選取節點,點擊可清除選取區" -#: ../src/ui/tools/node-tool.cpp:643 +#: ../src/ui/tools/node-tool.cpp:657 msgctxt "Node tool tip" msgid "Drag to select objects to edit, click to edit this object (more: Shift)" msgstr "拖曳可選取要編輯的物件,點擊可編輯這個物件 (更進一步:Shift)" -#: ../src/ui/tools/node-tool.cpp:646 +#: ../src/ui/tools/node-tool.cpp:660 msgctxt "Node tool tip" msgid "Drag to select objects to edit" msgstr "拖曳可選取要編輯的物件" -#: ../src/ui/tools/pen-tool.cpp:186 ../src/ui/tools/pencil-tool.cpp:465 +#: ../src/ui/tools/pen-tool.cpp:230 ../src/ui/tools/pencil-tool.cpp:466 msgid "Drawing cancelled" msgstr "已取消繪製" -#: ../src/ui/tools/pen-tool.cpp:407 ../src/ui/tools/pencil-tool.cpp:203 +#: ../src/ui/tools/pen-tool.cpp:466 ../src/ui/tools/pencil-tool.cpp:204 msgid "Continuing selected path" msgstr "接續選取的路徑" -#: ../src/ui/tools/pen-tool.cpp:417 ../src/ui/tools/pencil-tool.cpp:211 +#: ../src/ui/tools/pen-tool.cpp:476 ../src/ui/tools/pencil-tool.cpp:212 msgid "Creating new path" msgstr "建立新路徑" -#: ../src/ui/tools/pen-tool.cpp:419 ../src/ui/tools/pencil-tool.cpp:214 +#: ../src/ui/tools/pen-tool.cpp:478 ../src/ui/tools/pencil-tool.cpp:215 msgid "Appending to selected path" msgstr "添加到選擇的路徑" -#: ../src/ui/tools/pen-tool.cpp:576 +#: ../src/ui/tools/pen-tool.cpp:638 msgid "Click or click and drag to close and finish the path." -msgstr "點擊點擊拖曳來閉合並結束路徑。" +msgstr "滑鼠點擊滑鼠點擊並拖曳來閉合並結束路徑。" + +#: ../src/ui/tools/pen-tool.cpp:640 +msgid "" +"Click or click and drag to close and finish the path. Shift" +"+Click make a cusp node" +msgstr "滑鼠點擊滑鼠點擊並拖曳來閉合並結束路徑。Shift+滑鼠點擊可變成尖銳節點" -#: ../src/ui/tools/pen-tool.cpp:586 +#: ../src/ui/tools/pen-tool.cpp:652 msgid "" "Click or click and drag to continue the path from this point." -msgstr "點擊點擊拖曳可從此點接續路徑。" +msgstr "滑鼠點擊滑鼠點擊並拖曳可從此點接續路徑。" -#: ../src/ui/tools/pen-tool.cpp:1211 +#: ../src/ui/tools/pen-tool.cpp:654 +msgid "" +"Click or click and drag to continue the path from this point. " +"Shift+Click make a cusp node" +msgstr "滑鼠點擊滑鼠點擊並拖曳可從此點接續路徑。Shift+滑鼠點擊可變成尖銳節點" + +#: ../src/ui/tools/pen-tool.cpp:2096 #, c-format msgid "" "Curve segment: angle %3.2f°, distance %s; with Ctrl to " @@ -20972,7 +22662,7 @@ msgstr "" "曲線線段:角度 %3.2f°、距離 %s; 按著 Ctrl 可貼齊角度," "Enter 可結束路徑" -#: ../src/ui/tools/pen-tool.cpp:1212 +#: ../src/ui/tools/pen-tool.cpp:2097 #, c-format msgid "" "Line segment: angle %3.2f°, distance %s; with Ctrl to " @@ -20981,15 +22671,34 @@ msgstr "" "直線線段:角度 %3.2f°、距離 %s; 按著 Ctrl 可貼齊角度," "Enter 來結束路徑" -#: ../src/ui/tools/pen-tool.cpp:1228 +#: ../src/ui/tools/pen-tool.cpp:2100 +#, c-format +msgid "" +"Curve segment: angle %3.2f°, distance %s; with Shift+Click make a cusp node, Enter to finish the path" +msgstr "" +"曲線線段:角度 %3.2f°、距離 %s; 按著 Ctrl 可貼齊角度; Shift+滑鼠點擊" +"可變成尖銳節點," +"Enter 可結束路徑" + +#: ../src/ui/tools/pen-tool.cpp:2101 +#, c-format +msgid "" +"Line segment: angle %3.2f°, distance %s; with Shift+Click " +"make a cusp node, Enter to finish the path" +msgstr "" +"直線線段:角度 %3.2f°、距離 %s; 按著 Ctrl 可貼齊角度; Shift+滑鼠點擊" +"可讓此節點變成尖銳節點," +"Enter 來結束路徑" + +#: ../src/ui/tools/pen-tool.cpp:2118 #, c-format msgid "" "Curve handle: angle %3.2f°, length %s; with Ctrl to snap " "angle" -msgstr "" -"曲線控制點:角度 %3.2f°、長度 %s; 按著 Ctrl 可貼齊角度" +msgstr "曲線控制點:角度 %3.2f°、長度 %s; 按著 Ctrl 可貼齊角度" -#: ../src/ui/tools/pen-tool.cpp:1250 +#: ../src/ui/tools/pen-tool.cpp:2142 #, c-format msgid "" "Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl曲線控制點,對稱:角度 %3.2f°、長度 %s; 按著 Ctrl 可貼齊角" "度, 按著 Shift 可只移動此控制點" -#: ../src/ui/tools/pen-tool.cpp:1251 +#: ../src/ui/tools/pen-tool.cpp:2143 #, c-format msgid "" "Curve handle: angle %3.2f°, length %s; with Ctrl to snap " @@ -21007,28 +22716,28 @@ msgstr "" "曲線控制點:角度 %3.2f°、長度 %s; 按著 Ctrl 可貼齊角度, " "按著 Shift 可只移動這個控制點" -#: ../src/ui/tools/pen-tool.cpp:1294 +#: ../src/ui/tools/pen-tool.cpp:2191 msgid "Drawing finished" msgstr "已完成繪製" -#: ../src/ui/tools/pencil-tool.cpp:315 +#: ../src/ui/tools/pencil-tool.cpp:316 msgid "Release here to close and finish the path." msgstr "在這裡放開滑鼠可閉合並結束此路徑。" -#: ../src/ui/tools/pencil-tool.cpp:321 +#: ../src/ui/tools/pencil-tool.cpp:322 msgid "Drawing a freehand path" msgstr "繪製手繪路徑" -#: ../src/ui/tools/pencil-tool.cpp:326 +#: ../src/ui/tools/pencil-tool.cpp:327 msgid "Drag to continue the path from this point." msgstr "拖曳可從此點接續路徑。" #. Write curves to object -#: ../src/ui/tools/pencil-tool.cpp:411 +#: ../src/ui/tools/pencil-tool.cpp:412 msgid "Finishing freehand" msgstr "完成手繪" -#: ../src/ui/tools/pencil-tool.cpp:514 +#: ../src/ui/tools/pencil-tool.cpp:515 msgid "" "Sketch mode: holding Alt interpolates between sketched paths. " "Release Alt to finalize." @@ -21036,7 +22745,7 @@ msgstr "" "草圖模式:按住 Alt 可在草圖路徑之間插入。放開 Alt 則結束" "繪製。" -#: ../src/ui/tools/pencil-tool.cpp:541 +#: ../src/ui/tools/pencil-tool.cpp:542 msgid "Finishing freehand sketch" msgstr "完成手繪草圖" @@ -21106,27 +22815,27 @@ msgstr "已取消移動。" msgid "Selection canceled." msgstr "已取消選取。" -#: ../src/ui/tools/select-tool.cpp:642 +#: ../src/ui/tools/select-tool.cpp:653 msgid "" "Draw over objects to select them; release Alt to switch to " "rubberband selection" msgstr "在物件上方拖曳可選取物件;放開 Alt 可切換成框選" -#: ../src/ui/tools/select-tool.cpp:644 +#: ../src/ui/tools/select-tool.cpp:655 msgid "" "Drag around objects to select them; press Alt to switch to " "touch selection" msgstr "在物件的附近拖曳來選取物件;按 Alt 可切換成觸碰選取" -#: ../src/ui/tools/select-tool.cpp:932 +#: ../src/ui/tools/select-tool.cpp:950 msgid "Ctrl: click to select in groups; drag to move hor/vert" msgstr "Ctrl:點擊可在群組中選取;拖曳可水平 / 垂直移動" -#: ../src/ui/tools/select-tool.cpp:933 +#: ../src/ui/tools/select-tool.cpp:951 msgid "Shift: click to toggle select; drag for rubberband selection" msgstr "Shift:點擊可切換選取;拖曳可框選" -#: ../src/ui/tools/select-tool.cpp:934 +#: ../src/ui/tools/select-tool.cpp:952 msgid "" "Alt: click to select under; scroll mouse-wheel to cycle-select; drag " "to move selected or select by touch" @@ -21134,7 +22843,7 @@ msgstr "" "Alt:點擊可選取下層的物件;滾動滑鼠滾輪可循環選取物件;拖曳可移動選取" "的物件或用觸碰來選取" -#: ../src/ui/tools/select-tool.cpp:1142 +#: ../src/ui/tools/select-tool.cpp:1160 msgid "Selected object is not a group. Cannot enter." msgstr "選取的物件不是群組。無法進入。" @@ -21168,39 +22877,39 @@ msgid "Nothing selected" msgstr "沒有選擇任何物件" #: ../src/ui/tools/spray-tool.cpp:199 -#, fuzzy, c-format +#, c-format msgid "" "%s. Drag, click or click and scroll to spray copies of the initial " "selection." msgstr "%s。拖曳、點擊或滾動滾輪來噴灑最初選取物件的複製物件。" #: ../src/ui/tools/spray-tool.cpp:202 -#, fuzzy, c-format +#, c-format msgid "" "%s. Drag, click or click and scroll to spray clones of the initial " "selection." msgstr "%s。拖曳、點擊或滾動滾輪來噴灑最初選取物件的仿製物件。" #: ../src/ui/tools/spray-tool.cpp:205 -#, fuzzy, c-format +#, c-format msgid "" "%s. Drag, click or click and scroll to spray in a single path of the " "initial selection." -msgstr "%s。拖曳、點擊或滾動滾輪來用最初選取物件的單一路徑進行噴灑。" +msgstr "%s。拖曳、點擊或滾動滾輪來噴灑最初選取物件的單一路徑。" -#: ../src/ui/tools/spray-tool.cpp:656 +#: ../src/ui/tools/spray-tool.cpp:664 msgid "Nothing selected! Select objects to spray." msgstr "沒有選取物件! 請選取物件來噴灑。" -#: ../src/ui/tools/spray-tool.cpp:731 ../src/widgets/spray-toolbar.cpp:166 +#: ../src/ui/tools/spray-tool.cpp:739 ../src/widgets/spray-toolbar.cpp:166 msgid "Spray with copies" msgstr "用複製物件噴灑" -#: ../src/ui/tools/spray-tool.cpp:735 ../src/widgets/spray-toolbar.cpp:173 +#: ../src/ui/tools/spray-tool.cpp:743 ../src/widgets/spray-toolbar.cpp:173 msgid "Spray with clones" msgstr "用仿製物件噴灑" -#: ../src/ui/tools/spray-tool.cpp:739 +#: ../src/ui/tools/spray-tool.cpp:747 msgid "Spray in single path" msgstr "用單一路徑噴灑" @@ -21345,32 +23054,31 @@ msgid "Paste text" msgstr "貼上文字" #: ../src/ui/tools/text-tool.cpp:1583 -#, fuzzy, c-format +#, c-format msgid "" "Type or edit flowed text (%d character%s); Enter to start new " "paragraph." msgid_plural "" "Type or edit flowed text (%d characters%s); Enter to start new " "paragraph." -msgstr[0] "輸入或編輯流動文字 (%d 個字元%s);按 Enter 可開始新的段落。" -msgstr[1] "輸入或編輯流動文字 (%d 個字元%s);按 Enter 可開始新的段落。" +msgstr[0] "輸入或編輯流動文字 (%d 個字元%s);按 Enter 鍵可開始新的段落。" +msgstr[1] "輸入或編輯流動文字 (%d 個字元%s);按 Enter 鍵可開始新的段落。" #: ../src/ui/tools/text-tool.cpp:1585 -#, fuzzy, c-format +#, c-format msgid "Type or edit text (%d character%s); Enter to start new line." msgid_plural "" "Type or edit text (%d characters%s); Enter to start new line." -msgstr[0] "輸入或編輯文字 (%d 個字元%s);按 Enter 可換行。" -msgstr[1] "輸入或編輯文字 (%d 個字元%s);按 Enter 可換行。" +msgstr[0] "輸入或編輯文字 (%d 個字元%s);按 Enter 鍵可換行。" +msgstr[1] "輸入或編輯文字 (%d 個字元%s);按 Enter 鍵可換行。" #: ../src/ui/tools/text-tool.cpp:1695 msgid "Type text" msgstr "輸入文字" -#: ../src/ui/tools/tool-base.cpp:703 -#, fuzzy +#: ../src/ui/tools/tool-base.cpp:705 msgid "Space+mouse move to pan canvas" -msgstr "空白鍵+滑鼠拖曳 可平移畫布" +msgstr "空白鍵+滑鼠移動 可平移畫布" #: ../src/ui/tools/tweak-tool.cpp:174 #, c-format @@ -21440,66 +23148,69 @@ msgid "" "%s. Drag or click to increase blur; with Shift to decrease." msgstr "%s。 拖曳或點擊可增加模糊;按著 Shift 可減少模糊。" -#: ../src/ui/tools/tweak-tool.cpp:1193 +#: ../src/ui/tools/tweak-tool.cpp:1205 msgid "Nothing selected! Select objects to tweak." msgstr "沒有選取任何物件! 請選取要微調的物件。" -#: ../src/ui/tools/tweak-tool.cpp:1227 +#: ../src/ui/tools/tweak-tool.cpp:1239 msgid "Move tweak" msgstr "移動微調" -#: ../src/ui/tools/tweak-tool.cpp:1231 +#: ../src/ui/tools/tweak-tool.cpp:1243 msgid "Move in/out tweak" msgstr "內移 / 外移微調" -#: ../src/ui/tools/tweak-tool.cpp:1235 +#: ../src/ui/tools/tweak-tool.cpp:1247 msgid "Move jitter tweak" msgstr "抖動微調" -#: ../src/ui/tools/tweak-tool.cpp:1239 +#: ../src/ui/tools/tweak-tool.cpp:1251 msgid "Scale tweak" msgstr "縮放微調" -#: ../src/ui/tools/tweak-tool.cpp:1243 +#: ../src/ui/tools/tweak-tool.cpp:1255 msgid "Rotate tweak" msgstr "旋轉微調" -#: ../src/ui/tools/tweak-tool.cpp:1247 +#: ../src/ui/tools/tweak-tool.cpp:1259 msgid "Duplicate/delete tweak" msgstr "再製 / 刪除微調" -#: ../src/ui/tools/tweak-tool.cpp:1251 +#: ../src/ui/tools/tweak-tool.cpp:1263 msgid "Push path tweak" msgstr "推擠路徑微調" -#: ../src/ui/tools/tweak-tool.cpp:1255 +#: ../src/ui/tools/tweak-tool.cpp:1267 msgid "Shrink/grow path tweak" msgstr "收縮 / 膨脹路徑微調" -#: ../src/ui/tools/tweak-tool.cpp:1259 +#: ../src/ui/tools/tweak-tool.cpp:1271 msgid "Attract/repel path tweak" msgstr "吸引 / 排斥路徑微調" -#: ../src/ui/tools/tweak-tool.cpp:1263 +#: ../src/ui/tools/tweak-tool.cpp:1275 msgid "Roughen path tweak" msgstr "粗糙路徑微調" -#: ../src/ui/tools/tweak-tool.cpp:1267 +#: ../src/ui/tools/tweak-tool.cpp:1279 msgid "Color paint tweak" msgstr "顏色塗繪微調" -#: ../src/ui/tools/tweak-tool.cpp:1271 +#: ../src/ui/tools/tweak-tool.cpp:1283 msgid "Color jitter tweak" msgstr "顏色抖動微調" -#: ../src/ui/tools/tweak-tool.cpp:1275 +#: ../src/ui/tools/tweak-tool.cpp:1287 msgid "Blur tweak" msgstr "模糊微調" -#: ../src/ui/widget/filter-effect-chooser.cpp:27 -#, fuzzy +#: ../src/ui/widget/filter-effect-chooser.cpp:26 +msgid "_Blur:" +msgstr "模糊(_B):" + +#: ../src/ui/widget/filter-effect-chooser.cpp:29 msgid "Blur (%)" -msgstr "模糊" +msgstr "模糊 (%)" #: ../src/ui/widget/layer-selector.cpp:118 msgid "Toggle current layer visibility" @@ -21526,8 +23237,8 @@ msgid "MetadataLicence|Other" msgstr "其他" #: ../src/ui/widget/object-composite-settings.cpp:67 -#: ../src/ui/widget/selected-style.cpp:1095 -#: ../src/ui/widget/selected-style.cpp:1096 +#: ../src/ui/widget/selected-style.cpp:1120 +#: ../src/ui/widget/selected-style.cpp:1121 msgid "Opacity (%)" msgstr "不透明度 (%0" @@ -21536,8 +23247,8 @@ msgid "Change blur" msgstr "變更模糊" #: ../src/ui/widget/object-composite-settings.cpp:220 -#: ../src/ui/widget/selected-style.cpp:927 -#: ../src/ui/widget/selected-style.cpp:1221 +#: ../src/ui/widget/selected-style.cpp:944 +#: ../src/ui/widget/selected-style.cpp:1248 msgid "Change opacity" msgstr "變更不透明度" @@ -21685,28 +23396,24 @@ msgid "Wider" msgstr "更寬" #: ../src/ui/widget/panel.cpp:207 -#, fuzzy msgctxt "Swatches" msgid "Border" -msgstr "順序" +msgstr "邊框" #: ../src/ui/widget/panel.cpp:211 -#, fuzzy msgctxt "Swatches border" msgid "None" msgstr "無" #: ../src/ui/widget/panel.cpp:212 -#, fuzzy msgctxt "Swatches border" msgid "Solid" -msgstr "純色" +msgstr "黑框" #: ../src/ui/widget/panel.cpp:213 -#, fuzzy msgctxt "Swatches border" msgid "Wide" -msgstr "寬" +msgstr "白框" #. TRANSLATORS: "Wrap" indicates how colour swatches are displayed #: ../src/ui/widget/panel.cpp:244 @@ -21746,7 +23453,7 @@ msgstr "點陣圖選項" #: ../src/ui/widget/rendering-options.cpp:38 msgid "Preferred resolution of rendering, in dots per inch." -msgstr "偏好的圖形潤算解析度,單位為每英寸多少點。" +msgstr "偏好的圖形繪算解析度,單位為每英寸多少點。" #: ../src/ui/widget/rendering-options.cpp:47 msgid "" @@ -21754,8 +23461,8 @@ msgid "" "smaller in file size and can be arbitrarily scaled, but some filter effects " "will not be correctly rendered." msgstr "" -"使用 Cairo 向量運算來潤算圖形。其產生的圖片檔案體積通常會較小而且可任意縮放," -"但是某些濾鏡特效會無法正確潤算。" +"使用 Cairo 向量運算來繪算圖形。其產生的圖片檔案體積通常會較小而且可任意縮放," +"但是某些濾鏡特效會無法正確繪算。" #: ../src/ui/widget/rendering-options.cpp:52 msgid "" @@ -21763,344 +23470,356 @@ msgid "" "size and cannot be arbitrarily scaled without quality loss, but all objects " "will be rendered exactly as displayed." msgstr "" -"將所有項目當成點陣圖潤算。產生的圖片檔案體積常常會比較大,而且無法在不損失品" -"質的情形下任意縮放,但所有的物件潤算結果都會和顯示的相同。" +"將所有項目當成點陣圖繪算。產生的圖片檔案體積常常會比較大,而且無法在不損失品" +"質的情形下任意縮放,但所有的物件繪算結果都會和顯示的相同。" -#: ../src/ui/widget/selected-style.cpp:130 +#: ../src/ui/widget/selected-style.cpp:131 #: ../src/ui/widget/style-swatch.cpp:127 msgid "Fill:" msgstr "填充:" -#: ../src/ui/widget/selected-style.cpp:132 +#: ../src/ui/widget/selected-style.cpp:133 msgid "O:" msgstr "不透明度:" -#: ../src/ui/widget/selected-style.cpp:177 +#: ../src/ui/widget/selected-style.cpp:178 msgid "N/A" msgstr "無法使用" -#: ../src/ui/widget/selected-style.cpp:180 -#: ../src/ui/widget/selected-style.cpp:1088 -#: ../src/ui/widget/selected-style.cpp:1089 +#: ../src/ui/widget/selected-style.cpp:181 +#: ../src/ui/widget/selected-style.cpp:1113 +#: ../src/ui/widget/selected-style.cpp:1114 #: ../src/widgets/gradient-toolbar.cpp:162 msgid "Nothing selected" msgstr "沒有選取項目" -#: ../src/ui/widget/selected-style.cpp:182 -#: ../src/ui/widget/style-swatch.cpp:320 -#, fuzzy -msgctxt "Fill and stroke" +#: ../src/ui/widget/selected-style.cpp:184 +msgctxt "Fill" +msgid "None" +msgstr "" + +#: ../src/ui/widget/selected-style.cpp:186 +msgctxt "Stroke" msgid "None" msgstr "" -#: ../src/ui/widget/selected-style.cpp:185 +#: ../src/ui/widget/selected-style.cpp:190 #: ../src/ui/widget/style-swatch.cpp:322 -#, fuzzy msgctxt "Fill and stroke" msgid "No fill" msgstr "無填充" -#: ../src/ui/widget/selected-style.cpp:185 +#: ../src/ui/widget/selected-style.cpp:190 #: ../src/ui/widget/style-swatch.cpp:322 -#, fuzzy msgctxt "Fill and stroke" msgid "No stroke" msgstr "無邊框" -#: ../src/ui/widget/selected-style.cpp:187 -#: ../src/ui/widget/style-swatch.cpp:301 ../src/widgets/paint-selector.cpp:242 +#: ../src/ui/widget/selected-style.cpp:192 +#: ../src/ui/widget/style-swatch.cpp:301 ../src/widgets/paint-selector.cpp:234 msgid "Pattern" msgstr "圖樣" -#: ../src/ui/widget/selected-style.cpp:190 +#: ../src/ui/widget/selected-style.cpp:195 #: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern fill" msgstr "圖樣填充" -#: ../src/ui/widget/selected-style.cpp:190 +#: ../src/ui/widget/selected-style.cpp:195 #: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern stroke" msgstr "圖樣邊框" -#: ../src/ui/widget/selected-style.cpp:192 +#: ../src/ui/widget/selected-style.cpp:197 msgid "L" msgstr "線性" -#: ../src/ui/widget/selected-style.cpp:195 +#: ../src/ui/widget/selected-style.cpp:200 #: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient fill" msgstr "線性漸層填色" -#: ../src/ui/widget/selected-style.cpp:195 +#: ../src/ui/widget/selected-style.cpp:200 #: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient stroke" msgstr "線性漸層邊框" -#: ../src/ui/widget/selected-style.cpp:202 +#: ../src/ui/widget/selected-style.cpp:207 msgid "R" msgstr "放射" -#: ../src/ui/widget/selected-style.cpp:205 +#: ../src/ui/widget/selected-style.cpp:210 #: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient fill" msgstr "放射漸層填色" -#: ../src/ui/widget/selected-style.cpp:205 +#: ../src/ui/widget/selected-style.cpp:210 #: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient stroke" msgstr "放射漸層邊框" -#: ../src/ui/widget/selected-style.cpp:212 +#: ../src/ui/widget/selected-style.cpp:218 +msgid "M" +msgstr "網面" + +#: ../src/ui/widget/selected-style.cpp:221 +msgid "Mesh gradient fill" +msgstr "網面漸層填色" + +#: ../src/ui/widget/selected-style.cpp:221 +msgid "Mesh gradient stroke" +msgstr "網面漸層邊框" + +#: ../src/ui/widget/selected-style.cpp:229 msgid "Different" msgstr "不同的" -#: ../src/ui/widget/selected-style.cpp:215 +#: ../src/ui/widget/selected-style.cpp:232 msgid "Different fills" msgstr "不同的填色" -#: ../src/ui/widget/selected-style.cpp:215 +#: ../src/ui/widget/selected-style.cpp:232 msgid "Different strokes" msgstr "不同的邊框" -#: ../src/ui/widget/selected-style.cpp:217 +#: ../src/ui/widget/selected-style.cpp:234 #: ../src/ui/widget/style-swatch.cpp:325 msgid "Unset" -msgstr "取消設定" +msgstr "未設定" #. TRANSLATORS COMMENT: unset is a verb here -#: ../src/ui/widget/selected-style.cpp:220 -#: ../src/ui/widget/selected-style.cpp:278 -#: ../src/ui/widget/selected-style.cpp:559 +#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:295 +#: ../src/ui/widget/selected-style.cpp:576 #: ../src/ui/widget/style-swatch.cpp:327 ../src/widgets/fill-style.cpp:712 msgid "Unset fill" -msgstr "取消填充設定" +msgstr "未設定填充" -#: ../src/ui/widget/selected-style.cpp:220 -#: ../src/ui/widget/selected-style.cpp:278 -#: ../src/ui/widget/selected-style.cpp:575 +#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:295 +#: ../src/ui/widget/selected-style.cpp:592 #: ../src/ui/widget/style-swatch.cpp:327 ../src/widgets/fill-style.cpp:712 msgid "Unset stroke" -msgstr "取消邊框設定" +msgstr "未設定邊框" -#: ../src/ui/widget/selected-style.cpp:223 +#: ../src/ui/widget/selected-style.cpp:240 msgid "Flat color fill" msgstr "平面顏色填充" -#: ../src/ui/widget/selected-style.cpp:223 +#: ../src/ui/widget/selected-style.cpp:240 msgid "Flat color stroke" msgstr "平面顏色邊框" #. TRANSLATOR COMMENT: A means "Averaged" -#: ../src/ui/widget/selected-style.cpp:226 +#: ../src/ui/widget/selected-style.cpp:243 msgid "a" msgstr "平均" -#: ../src/ui/widget/selected-style.cpp:229 +#: ../src/ui/widget/selected-style.cpp:246 msgid "Fill is averaged over selected objects" msgstr "填充平均覆蓋選取的物件" -#: ../src/ui/widget/selected-style.cpp:229 +#: ../src/ui/widget/selected-style.cpp:246 msgid "Stroke is averaged over selected objects" msgstr "邊框平均覆蓋選取的物件" #. TRANSLATOR COMMENT: M means "Multiple" -#: ../src/ui/widget/selected-style.cpp:232 +#: ../src/ui/widget/selected-style.cpp:249 msgid "m" msgstr "多個" -#: ../src/ui/widget/selected-style.cpp:235 +#: ../src/ui/widget/selected-style.cpp:252 msgid "Multiple selected objects have the same fill" msgstr "多個選取的物件有相同填色" -#: ../src/ui/widget/selected-style.cpp:235 +#: ../src/ui/widget/selected-style.cpp:252 msgid "Multiple selected objects have the same stroke" msgstr "多個選取的物件有相同邊框" -#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:254 msgid "Edit fill..." msgstr "編輯填色..." -#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:254 msgid "Edit stroke..." msgstr "編輯邊框..." -#: ../src/ui/widget/selected-style.cpp:241 +#: ../src/ui/widget/selected-style.cpp:258 msgid "Last set color" msgstr "最近設定的顏色" -#: ../src/ui/widget/selected-style.cpp:245 +#: ../src/ui/widget/selected-style.cpp:262 msgid "Last selected color" msgstr "最近選擇的顏色" -#: ../src/ui/widget/selected-style.cpp:261 +#: ../src/ui/widget/selected-style.cpp:278 msgid "Copy color" msgstr "複製顏色" -#: ../src/ui/widget/selected-style.cpp:265 +#: ../src/ui/widget/selected-style.cpp:282 msgid "Paste color" msgstr "貼上顏色" -#: ../src/ui/widget/selected-style.cpp:269 -#: ../src/ui/widget/selected-style.cpp:852 +#: ../src/ui/widget/selected-style.cpp:286 +#: ../src/ui/widget/selected-style.cpp:869 msgid "Swap fill and stroke" msgstr "調換填充和邊框" -#: ../src/ui/widget/selected-style.cpp:273 -#: ../src/ui/widget/selected-style.cpp:584 -#: ../src/ui/widget/selected-style.cpp:593 +#: ../src/ui/widget/selected-style.cpp:290 +#: ../src/ui/widget/selected-style.cpp:601 +#: ../src/ui/widget/selected-style.cpp:610 msgid "Make fill opaque" msgstr "使填色不透明" -#: ../src/ui/widget/selected-style.cpp:273 +#: ../src/ui/widget/selected-style.cpp:290 msgid "Make stroke opaque" msgstr "使邊框不透明" -#: ../src/ui/widget/selected-style.cpp:282 -#: ../src/ui/widget/selected-style.cpp:541 ../src/widgets/fill-style.cpp:510 +#: ../src/ui/widget/selected-style.cpp:299 +#: ../src/ui/widget/selected-style.cpp:558 ../src/widgets/fill-style.cpp:510 msgid "Remove fill" msgstr "移除填色" -#: ../src/ui/widget/selected-style.cpp:282 -#: ../src/ui/widget/selected-style.cpp:550 ../src/widgets/fill-style.cpp:510 +#: ../src/ui/widget/selected-style.cpp:299 +#: ../src/ui/widget/selected-style.cpp:567 ../src/widgets/fill-style.cpp:510 msgid "Remove stroke" msgstr "移除邊框" -#: ../src/ui/widget/selected-style.cpp:605 +#: ../src/ui/widget/selected-style.cpp:622 msgid "Apply last set color to fill" msgstr "套用最後設定的顏色到填充" -#: ../src/ui/widget/selected-style.cpp:617 +#: ../src/ui/widget/selected-style.cpp:634 msgid "Apply last set color to stroke" msgstr "套用最後設定的顏色到邊框" -#: ../src/ui/widget/selected-style.cpp:628 +#: ../src/ui/widget/selected-style.cpp:645 msgid "Apply last selected color to fill" msgstr "套用最後選擇的顏色到填充" -#: ../src/ui/widget/selected-style.cpp:639 +#: ../src/ui/widget/selected-style.cpp:656 msgid "Apply last selected color to stroke" msgstr "套用最後選擇的顏色到邊框" -#: ../src/ui/widget/selected-style.cpp:665 +#: ../src/ui/widget/selected-style.cpp:682 msgid "Invert fill" msgstr "反轉填色" -#: ../src/ui/widget/selected-style.cpp:689 +#: ../src/ui/widget/selected-style.cpp:706 msgid "Invert stroke" msgstr "反轉邊框" -#: ../src/ui/widget/selected-style.cpp:701 +#: ../src/ui/widget/selected-style.cpp:718 msgid "White fill" msgstr "白色填充" -#: ../src/ui/widget/selected-style.cpp:713 +#: ../src/ui/widget/selected-style.cpp:730 msgid "White stroke" msgstr "白色邊框" -#: ../src/ui/widget/selected-style.cpp:725 +#: ../src/ui/widget/selected-style.cpp:742 msgid "Black fill" msgstr "黑色填充" -#: ../src/ui/widget/selected-style.cpp:737 +#: ../src/ui/widget/selected-style.cpp:754 msgid "Black stroke" msgstr "黑色邊框" -#: ../src/ui/widget/selected-style.cpp:780 +#: ../src/ui/widget/selected-style.cpp:797 msgid "Paste fill" msgstr "貼上填充" -#: ../src/ui/widget/selected-style.cpp:798 +#: ../src/ui/widget/selected-style.cpp:815 msgid "Paste stroke" msgstr "貼上邊框" -#: ../src/ui/widget/selected-style.cpp:954 +#: ../src/ui/widget/selected-style.cpp:971 msgid "Change stroke width" msgstr "變更邊框寬度" -#: ../src/ui/widget/selected-style.cpp:1049 +#: ../src/ui/widget/selected-style.cpp:1074 msgid ", drag to adjust" msgstr ",拖曳可調整" -#: ../src/ui/widget/selected-style.cpp:1134 +#: ../src/ui/widget/selected-style.cpp:1159 #, c-format msgid "Stroke width: %.5g%s%s" msgstr "邊框寬度: %.5g%s%s" -#: ../src/ui/widget/selected-style.cpp:1138 +#: ../src/ui/widget/selected-style.cpp:1163 msgid " (averaged)" msgstr " (平均)" -#: ../src/ui/widget/selected-style.cpp:1166 +#: ../src/ui/widget/selected-style.cpp:1191 msgid "0 (transparent)" msgstr "0 (透明)" -#: ../src/ui/widget/selected-style.cpp:1190 +#: ../src/ui/widget/selected-style.cpp:1215 msgid "100% (opaque)" msgstr "100% (不透明)" -#: ../src/ui/widget/selected-style.cpp:1362 -#, fuzzy +#: ../src/ui/widget/selected-style.cpp:1389 msgid "Adjust alpha" -msgstr "調整色相" +msgstr "調整透明" -#: ../src/ui/widget/selected-style.cpp:1364 -#, fuzzy, c-format +#: ../src/ui/widget/selected-style.cpp:1391 +#, c-format msgid "" "Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without " "modifiers to adjust hue" msgstr "" -"調整 亮度:之前 %.3g,現在 %.3g (相差 %.3g);按著 Shift " -"可調整飽和度,沒有修改元可調整色相" +"調整透明:調整前 %.3g,現在 %.3g (相差 %.3g);按 Ctrl 可" +"調整亮度,按 Shift 可調整飽和度,沒有調整色相的修飾元 (modifier)" -#: ../src/ui/widget/selected-style.cpp:1368 +#: ../src/ui/widget/selected-style.cpp:1395 msgid "Adjust saturation" msgstr "調整飽和度" -#: ../src/ui/widget/selected-style.cpp:1370 -#, fuzzy, c-format +#: ../src/ui/widget/selected-style.cpp:1397 +#, c-format msgid "" "Adjusting saturation: was %.3g, now %.3g (diff %.3g); with " "Ctrl to adjust lightness, with Alt to adjust alpha, without " "modifiers to adjust hue" msgstr "" -"調整 飽和度:之前 %.3g,現在 %.3g (相差 %.3g); 按著 Ctrl 可調整亮度,沒有修改元可調整色相" +"調整 飽和度:調整前 %.3g,現在 %.3g (相差 %.3g); 按 Ctrl 可調整亮度,按 Alt 可調整透明,沒有調整色相的修飾元 (modifier)" -#: ../src/ui/widget/selected-style.cpp:1374 +#: ../src/ui/widget/selected-style.cpp:1401 msgid "Adjust lightness" msgstr "調整亮度" -#: ../src/ui/widget/selected-style.cpp:1376 -#, fuzzy, c-format +#: ../src/ui/widget/selected-style.cpp:1403 +#, c-format msgid "" "Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, without " "modifiers to adjust hue" msgstr "" -"調整 亮度:之前 %.3g,現在 %.3g (相差 %.3g);按著 Shift " -"可調整飽和度,沒有修改元可調整色相" +"調整 亮度:調整前 %.3g,現在 %.3g (相差 %.3g);按 Shift " +"可調整飽和度,按 Alt 可調整透明,沒有修改元可調整色相" -#: ../src/ui/widget/selected-style.cpp:1380 +#: ../src/ui/widget/selected-style.cpp:1407 msgid "Adjust hue" msgstr "調整色相" -#: ../src/ui/widget/selected-style.cpp:1382 -#, fuzzy, c-format +#: ../src/ui/widget/selected-style.cpp:1409 +#, c-format msgid "" "Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl " "to adjust lightness" msgstr "" -"調整 色相:之前 %.3g,現在 %.3g (相差 %.3g);按著 Shift " -"可調整飽和度,按著 Ctrl 可調整亮度" +"調整 色相:調整前 %.3g,現在 %.3g (相差 %.3g);按 Shift " +"可調整飽和度,按 Alt 可調整透明,按 Ctrl 可調整亮度" -#: ../src/ui/widget/selected-style.cpp:1500 -#: ../src/ui/widget/selected-style.cpp:1514 +#: ../src/ui/widget/selected-style.cpp:1527 +#: ../src/ui/widget/selected-style.cpp:1541 msgid "Adjust stroke width" msgstr "調整邊框寬度" -#: ../src/ui/widget/selected-style.cpp:1501 +#: ../src/ui/widget/selected-style.cpp:1528 #, c-format msgid "Adjusting stroke width: was %.3g, now %.3g (diff %.3g)" msgstr "調整邊框寬度:之前 %.3g,現在 %.3g (相差 %.3g)" @@ -22129,30 +23848,35 @@ msgstr "填充:%06x/%.3g" msgid "Stroke: %06x/%.3g" msgstr "邊框:%06x/%.3g" +#: ../src/ui/widget/style-swatch.cpp:320 +msgctxt "Fill and stroke" +msgid "None" +msgstr "" + #: ../src/ui/widget/style-swatch.cpp:347 #, c-format msgid "Stroke width: %.5g%s" -msgstr "邊框寬度: %.5g%s" +msgstr "邊框寬度:%.5g%s" #: ../src/ui/widget/style-swatch.cpp:363 #, c-format msgid "O: %2.0f" -msgstr "" +msgstr "O: %2.0f" #: ../src/ui/widget/style-swatch.cpp:368 -#, fuzzy, c-format +#, c-format msgid "Opacity: %2.1f %%" -msgstr "不透明度: %.3g" +msgstr "不透明度:%2.1f %%" -#: ../src/vanishing-point.cpp:132 +#: ../src/vanishing-point.cpp:133 msgid "Split vanishing points" msgstr "分開消逝點" -#: ../src/vanishing-point.cpp:177 +#: ../src/vanishing-point.cpp:178 msgid "Merge vanishing points" msgstr "合併消逝點" -#: ../src/vanishing-point.cpp:243 +#: ../src/vanishing-point.cpp:244 msgid "3D box: Move vanishing point" msgstr "立方體:移動消逝點" @@ -22185,2475 +23909,2436 @@ msgstr[1] "" msgid "" "shared by %d box; drag with Shift to separate selected box(es)" msgid_plural "" -"shared by %d boxes; drag with Shift to separate selected box" -"(es)" +"shared by %d boxes; drag with Shift to separate selected " +"box(es)" msgstr[0] "有 %d 個立方體共用;按著 Shift 拖曳可分開選取的立方體" -msgstr[1] "" -"有 %d 個立方體共用;按著 Shift 並拖曳可分開選取的立方體" +msgstr[1] "有 %d 個立方體共用;按著 Shift 並拖曳可分開選取的立方體" -#: ../src/verbs.cpp:137 +#: ../src/verbs.cpp:138 msgid "File" msgstr "檔案" -#: ../src/verbs.cpp:232 -#, fuzzy +#: ../src/verbs.cpp:233 ../share/extensions/interp_att_g.inx.h:22 +msgid "Tag" +msgstr "標籤" + +#: ../src/verbs.cpp:252 msgid "Context" -msgstr "對比" +msgstr "功能表" -#: ../src/verbs.cpp:251 ../src/verbs.cpp:2223 +#: ../src/verbs.cpp:271 ../src/verbs.cpp:2306 #: ../share/extensions/jessyInk_view.inx.h:1 #: ../share/extensions/polyhedron_3d.inx.h:26 msgid "View" msgstr "視角" -#: ../src/verbs.cpp:271 -#, fuzzy +#: ../src/verbs.cpp:291 msgid "Dialog" -msgstr "他加祿文" +msgstr "對話窗" -#: ../src/verbs.cpp:1227 +#: ../src/verbs.cpp:1260 msgid "Switch to next layer" msgstr "切換到下一個圖層" -#: ../src/verbs.cpp:1228 +#: ../src/verbs.cpp:1261 msgid "Switched to next layer." msgstr "已切換到下一個圖層。" -#: ../src/verbs.cpp:1230 +#: ../src/verbs.cpp:1263 msgid "Cannot go past last layer." msgstr "無法移到最下層圖層之後。" -#: ../src/verbs.cpp:1239 +#: ../src/verbs.cpp:1272 msgid "Switch to previous layer" msgstr "切換到上一個圖層" -#: ../src/verbs.cpp:1240 +#: ../src/verbs.cpp:1273 msgid "Switched to previous layer." msgstr "已切換到上一個圖層。" -#: ../src/verbs.cpp:1242 +#: ../src/verbs.cpp:1275 msgid "Cannot go before first layer." msgstr "無法移到最上層圖層之前。" -#: ../src/verbs.cpp:1263 ../src/verbs.cpp:1360 ../src/verbs.cpp:1396 -#: ../src/verbs.cpp:1402 ../src/verbs.cpp:1426 ../src/verbs.cpp:1441 +#: ../src/verbs.cpp:1296 ../src/verbs.cpp:1393 ../src/verbs.cpp:1429 +#: ../src/verbs.cpp:1435 ../src/verbs.cpp:1459 ../src/verbs.cpp:1474 msgid "No current layer." msgstr "無目前圖層。" -#: ../src/verbs.cpp:1292 ../src/verbs.cpp:1296 +#: ../src/verbs.cpp:1325 ../src/verbs.cpp:1329 #, c-format msgid "Raised layer %s." msgstr "已提升圖層 %s。" -#: ../src/verbs.cpp:1293 +#: ../src/verbs.cpp:1326 msgid "Layer to top" msgstr "圖層移到最上層" -#: ../src/verbs.cpp:1297 +#: ../src/verbs.cpp:1330 msgid "Raise layer" msgstr "提升圖層" -#: ../src/verbs.cpp:1300 ../src/verbs.cpp:1304 +#: ../src/verbs.cpp:1333 ../src/verbs.cpp:1337 #, c-format msgid "Lowered layer %s." msgstr "已降低圖層 %s。" -#: ../src/verbs.cpp:1301 +#: ../src/verbs.cpp:1334 msgid "Layer to bottom" msgstr "圖層移到最下層" -#: ../src/verbs.cpp:1305 +#: ../src/verbs.cpp:1338 msgid "Lower layer" msgstr "降低圖層" -#: ../src/verbs.cpp:1314 +#: ../src/verbs.cpp:1347 msgid "Cannot move layer any further." msgstr "無法再移動圖層。" -#: ../src/verbs.cpp:1328 ../src/verbs.cpp:1347 +#: ../src/verbs.cpp:1361 ../src/verbs.cpp:1380 #, c-format msgid "%s copy" msgstr "%s 複製" -#: ../src/verbs.cpp:1355 +#: ../src/verbs.cpp:1388 msgid "Duplicate layer" msgstr "再製圖層" #. TRANSLATORS: this means "The layer has been duplicated." -#: ../src/verbs.cpp:1358 +#: ../src/verbs.cpp:1391 msgid "Duplicated layer." msgstr "已再製圖層。" -#: ../src/verbs.cpp:1391 +#: ../src/verbs.cpp:1424 msgid "Delete layer" msgstr "刪除圖層" #. TRANSLATORS: this means "The layer has been deleted." -#: ../src/verbs.cpp:1394 +#: ../src/verbs.cpp:1427 msgid "Deleted layer." msgstr "已刪除圖層。" -#: ../src/verbs.cpp:1411 -#, fuzzy +#: ../src/verbs.cpp:1444 msgid "Show all layers" -msgstr "搜尋所有圖層" +msgstr "顯示全部圖層" -#: ../src/verbs.cpp:1416 -#, fuzzy +#: ../src/verbs.cpp:1449 msgid "Hide all layers" -msgstr "隱藏圖層" +msgstr "隱藏全部圖層" -#: ../src/verbs.cpp:1421 -#, fuzzy +#: ../src/verbs.cpp:1454 msgid "Lock all layers" -msgstr "搜尋所有圖層" +msgstr "鎖定全部圖層" -#: ../src/verbs.cpp:1435 -#, fuzzy +#: ../src/verbs.cpp:1468 msgid "Unlock all layers" -msgstr "解除鎖定圖層" +msgstr "解除鎖定全部圖層" -#: ../src/verbs.cpp:1519 +#: ../src/verbs.cpp:1552 msgid "Flip horizontally" msgstr "水平翻轉" -#: ../src/verbs.cpp:1524 +#: ../src/verbs.cpp:1557 msgid "Flip vertically" msgstr "垂直翻轉" +#: ../src/verbs.cpp:1618 ../src/verbs.cpp:2731 +msgid "Create new selection set" +msgstr "建立新的選取集合" + #. TRANSLATORS: If you have translated the tutorial-basic.en.svgz file to your language, #. then translate this string as "tutorial-basic.LANG.svgz" (where LANG is your language #. code); otherwise leave as "tutorial-basic.svg". -#: ../src/verbs.cpp:2105 +#: ../src/verbs.cpp:2188 msgid "tutorial-basic.svg" msgstr "tutorial-basic.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2109 +#: ../src/verbs.cpp:2192 msgid "tutorial-shapes.svg" msgstr "tutorial-shapes.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2113 +#: ../src/verbs.cpp:2196 msgid "tutorial-advanced.svg" msgstr "tutorial-advanced.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2117 +#: ../src/verbs.cpp:2200 msgid "tutorial-tracing.svg" msgstr "tutorial-tracing.zh_TW.svg" -#: ../src/verbs.cpp:2120 -#, fuzzy +#: ../src/verbs.cpp:2203 msgid "tutorial-tracing-pixelart.svg" -msgstr "tutorial-tracing.zh_TW.svg" +msgstr "tutorial-tracing-pixelart.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2124 +#: ../src/verbs.cpp:2207 msgid "tutorial-calligraphy.svg" msgstr "tutorial-calligraphy.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2128 +#: ../src/verbs.cpp:2211 msgid "tutorial-interpolate.svg" msgstr "tutorial-interpolate.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2132 +#: ../src/verbs.cpp:2215 msgid "tutorial-elements.svg" msgstr "tutorial-elements.zh_TW.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2136 +#: ../src/verbs.cpp:2219 msgid "tutorial-tips.svg" msgstr "tutorial-tips.zh_TW.svg" -#: ../src/verbs.cpp:2322 ../src/verbs.cpp:2913 +#: ../src/verbs.cpp:2405 ../src/verbs.cpp:3004 msgid "Unlock all objects in the current layer" msgstr "解除鎖定目前圖層的所有物件" -#: ../src/verbs.cpp:2326 ../src/verbs.cpp:2915 +#: ../src/verbs.cpp:2409 ../src/verbs.cpp:3006 msgid "Unlock all objects in all layers" msgstr "解除鎖定全部圖層的所有物件" -#: ../src/verbs.cpp:2330 ../src/verbs.cpp:2917 +#: ../src/verbs.cpp:2413 ../src/verbs.cpp:3008 msgid "Unhide all objects in the current layer" msgstr "取消隱藏目前圖層的所有物件" -#: ../src/verbs.cpp:2334 ../src/verbs.cpp:2919 +#: ../src/verbs.cpp:2417 ../src/verbs.cpp:3010 msgid "Unhide all objects in all layers" msgstr "取消隱藏全部圖層的所有物件" -#: ../src/verbs.cpp:2349 +#: ../src/verbs.cpp:2432 +msgctxt "Verb" +msgid "None" +msgstr "無" + +#: ../src/verbs.cpp:2432 msgid "Does nothing" msgstr "不做任何動作" -#: ../src/verbs.cpp:2352 +#: ../src/verbs.cpp:2435 msgid "Create new document from the default template" msgstr "從預設範本建立新文件" -#: ../src/verbs.cpp:2354 +#: ../src/verbs.cpp:2437 msgid "_Open..." msgstr "開啟(_O)..." -#: ../src/verbs.cpp:2355 +#: ../src/verbs.cpp:2438 msgid "Open an existing document" msgstr "開啟現有的文件" -#: ../src/verbs.cpp:2356 +#: ../src/verbs.cpp:2439 msgid "Re_vert" msgstr "回復(_V)" -#: ../src/verbs.cpp:2357 +#: ../src/verbs.cpp:2440 msgid "Revert to the last saved version of document (changes will be lost)" msgstr "回復到上次儲存狀態 (變更將會遺失)" -#: ../src/verbs.cpp:2358 +#: ../src/verbs.cpp:2441 msgid "Save document" msgstr "儲存文件" -#: ../src/verbs.cpp:2360 +#: ../src/verbs.cpp:2443 msgid "Save _As..." msgstr "另存新檔(_A)..." -#: ../src/verbs.cpp:2361 +#: ../src/verbs.cpp:2444 msgid "Save document under a new name" msgstr "以新的名稱儲存文件" -#: ../src/verbs.cpp:2362 +#: ../src/verbs.cpp:2445 msgid "Save a Cop_y..." msgstr "儲存副本(_Y)..." -#: ../src/verbs.cpp:2363 +#: ../src/verbs.cpp:2446 msgid "Save a copy of the document under a new name" msgstr "以新的名稱儲存文件" -#: ../src/verbs.cpp:2364 +#: ../src/verbs.cpp:2447 msgid "_Print..." msgstr "列印(_P)..." -#: ../src/verbs.cpp:2364 +#: ../src/verbs.cpp:2447 msgid "Print document" msgstr "列印文件" #. TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions) -#: ../src/verbs.cpp:2367 -#, fuzzy +#: ../src/verbs.cpp:2450 msgid "Clean _up document" -msgstr "無法設定文件" +msgstr "清理文件(_U)" -#: ../src/verbs.cpp:2367 +#: ../src/verbs.cpp:2450 msgid "" "Remove unused definitions (such as gradients or clipping paths) from the <" "defs> of the document" msgstr "從文件的 <defs> 中移除未使用的定義 (例如漸層或剪裁路徑)" -#: ../src/verbs.cpp:2369 +#: ../src/verbs.cpp:2452 msgid "_Import..." msgstr "匯入(_I)..." -#: ../src/verbs.cpp:2370 +#: ../src/verbs.cpp:2453 msgid "Import a bitmap or SVG image into this document" msgstr "匯入點陣圖或 SVG 圖片到這份文件" #. new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."), N_("Export this document or a selection as a bitmap image"), INKSCAPE_ICON("document-export")), -#: ../src/verbs.cpp:2372 +#: ../src/verbs.cpp:2455 msgid "Import Clip Art..." msgstr "匯入美工圖..." -#: ../src/verbs.cpp:2373 +#: ../src/verbs.cpp:2456 msgid "Import clipart from Open Clip Art Library" msgstr "從開放美工圖庫匯入美工圖" #. new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("Export To Open Clip Art Library"), N_("Export this document to Open Clip Art Library"), INKSCAPE_ICON_DOCUMENT_EXPORT_OCAL), -#: ../src/verbs.cpp:2375 +#: ../src/verbs.cpp:2458 msgid "N_ext Window" msgstr "下一個視窗(_E)" -#: ../src/verbs.cpp:2376 +#: ../src/verbs.cpp:2459 msgid "Switch to the next document window" msgstr "切換到下一個文件視窗" -#: ../src/verbs.cpp:2377 +#: ../src/verbs.cpp:2460 msgid "P_revious Window" msgstr "上一個視窗(_R)" -#: ../src/verbs.cpp:2378 +#: ../src/verbs.cpp:2461 msgid "Switch to the previous document window" msgstr "切換到上一個文件視窗" -#: ../src/verbs.cpp:2379 +#: ../src/verbs.cpp:2462 msgid "_Close" msgstr "關閉(_C)" -#: ../src/verbs.cpp:2380 +#: ../src/verbs.cpp:2463 msgid "Close this document window" msgstr "關閉此文件視窗" -#: ../src/verbs.cpp:2381 +#: ../src/verbs.cpp:2464 msgid "_Quit" msgstr "離開(_Q)" -#: ../src/verbs.cpp:2381 +#: ../src/verbs.cpp:2464 msgid "Quit Inkscape" msgstr "離開 Inkscape" -#: ../src/verbs.cpp:2382 -#, fuzzy +#: ../src/verbs.cpp:2465 msgid "_Templates..." -msgstr "色票(_W)..." +msgstr "範本(_T)..." -#: ../src/verbs.cpp:2383 -#, fuzzy +#: ../src/verbs.cpp:2466 msgid "Create new project from template" -msgstr "從預設範本建立新文件" +msgstr "從範本建立新專案" -#: ../src/verbs.cpp:2386 +#: ../src/verbs.cpp:2469 msgid "Undo last action" msgstr "復原最後一個動作" -#: ../src/verbs.cpp:2389 +#: ../src/verbs.cpp:2472 msgid "Do again the last undone action" msgstr "取消最後復原的動作" -#: ../src/verbs.cpp:2390 +#: ../src/verbs.cpp:2473 msgid "Cu_t" msgstr "剪下(_T)" -#: ../src/verbs.cpp:2391 +#: ../src/verbs.cpp:2474 msgid "Cut selection to clipboard" msgstr "剪下選取區到剪貼簿" -#: ../src/verbs.cpp:2392 +#: ../src/verbs.cpp:2475 msgid "_Copy" msgstr "複製(_C)" -#: ../src/verbs.cpp:2393 +#: ../src/verbs.cpp:2476 msgid "Copy selection to clipboard" msgstr "複製選取區到剪貼簿" -#: ../src/verbs.cpp:2394 +#: ../src/verbs.cpp:2477 msgid "_Paste" msgstr "貼上(_P)" -#: ../src/verbs.cpp:2395 +#: ../src/verbs.cpp:2478 msgid "Paste objects from clipboard to mouse point, or paste text" msgstr "從剪貼簿裡將物件貼到滑鼠游標位置,或者貼上文字" -#: ../src/verbs.cpp:2396 +#: ../src/verbs.cpp:2479 msgid "Paste _Style" msgstr "貼上樣式(_S)" -#: ../src/verbs.cpp:2397 +#: ../src/verbs.cpp:2480 msgid "Apply the style of the copied object to selection" msgstr "套用複製的物件樣式到選取區" -#: ../src/verbs.cpp:2399 +#: ../src/verbs.cpp:2482 msgid "Scale selection to match the size of the copied object" msgstr "將選取區縮放成複製物件的大小" -#: ../src/verbs.cpp:2400 +#: ../src/verbs.cpp:2483 msgid "Paste _Width" msgstr "貼上寬度(_W)" -#: ../src/verbs.cpp:2401 +#: ../src/verbs.cpp:2484 msgid "Scale selection horizontally to match the width of the copied object" msgstr "將選取區水平縮放成複製物件的寬度" -#: ../src/verbs.cpp:2402 +#: ../src/verbs.cpp:2485 msgid "Paste _Height" msgstr "貼上高度(_H)" -#: ../src/verbs.cpp:2403 +#: ../src/verbs.cpp:2486 msgid "Scale selection vertically to match the height of the copied object" msgstr "將選取區垂直縮放成複製物件的高度" -#: ../src/verbs.cpp:2404 +#: ../src/verbs.cpp:2487 msgid "Paste Size Separately" msgstr "個別貼上尺寸" -#: ../src/verbs.cpp:2405 +#: ../src/verbs.cpp:2488 msgid "Scale each selected object to match the size of the copied object" msgstr "將每個選取物件縮放成複製物件的大小" -#: ../src/verbs.cpp:2406 +#: ../src/verbs.cpp:2489 msgid "Paste Width Separately" msgstr "個別貼上寬度" -#: ../src/verbs.cpp:2407 +#: ../src/verbs.cpp:2490 msgid "" "Scale each selected object horizontally to match the width of the copied " "object" msgstr "將每個選取物件水平縮放成複製物件的寬度" -#: ../src/verbs.cpp:2408 +#: ../src/verbs.cpp:2491 msgid "Paste Height Separately" msgstr "個別貼上高度" -#: ../src/verbs.cpp:2409 +#: ../src/verbs.cpp:2492 msgid "" "Scale each selected object vertically to match the height of the copied " "object" msgstr "將每個選取物件垂直縮放成複製物件的高度" -#: ../src/verbs.cpp:2410 +#: ../src/verbs.cpp:2493 msgid "Paste _In Place" msgstr "貼在原處(_I)" -#: ../src/verbs.cpp:2411 +#: ../src/verbs.cpp:2494 msgid "Paste objects from clipboard to the original location" msgstr "從剪貼簿裡將物件貼到原來的位置" -#: ../src/verbs.cpp:2412 +#: ../src/verbs.cpp:2495 msgid "Paste Path _Effect" msgstr "貼上路徑特效(_E)" -#: ../src/verbs.cpp:2413 +#: ../src/verbs.cpp:2496 msgid "Apply the path effect of the copied object to selection" msgstr "套用複製物件的路徑特效到選取區" -#: ../src/verbs.cpp:2414 +#: ../src/verbs.cpp:2497 msgid "Remove Path _Effect" msgstr "移除路徑特效(_E)" -#: ../src/verbs.cpp:2415 +#: ../src/verbs.cpp:2498 msgid "Remove any path effects from selected objects" msgstr "從選取的物件移除任何路徑特效" -#: ../src/verbs.cpp:2416 +#: ../src/verbs.cpp:2499 msgid "_Remove Filters" msgstr "移除濾鏡(_R)" -#: ../src/verbs.cpp:2417 +#: ../src/verbs.cpp:2500 msgid "Remove any filters from selected objects" msgstr "從選取物件移除任何濾鏡" -#: ../src/verbs.cpp:2418 +#: ../src/verbs.cpp:2501 msgid "_Delete" msgstr "刪除(_D)" -#: ../src/verbs.cpp:2419 +#: ../src/verbs.cpp:2502 msgid "Delete selection" msgstr "刪除選取" -#: ../src/verbs.cpp:2420 +#: ../src/verbs.cpp:2503 msgid "Duplic_ate" msgstr "再製(_A)" -#: ../src/verbs.cpp:2421 +#: ../src/verbs.cpp:2504 msgid "Duplicate selected objects" msgstr "再製選取的物件" -#: ../src/verbs.cpp:2422 +#: ../src/verbs.cpp:2505 msgid "Create Clo_ne" msgstr "建立仿製物件(_N)" -#: ../src/verbs.cpp:2423 +#: ../src/verbs.cpp:2506 msgid "Create a clone (a copy linked to the original) of selected object" msgstr "建立選取物件的仿製物件 (連結到原物件的複製物件)" -#: ../src/verbs.cpp:2424 +#: ../src/verbs.cpp:2507 msgid "Unlin_k Clone" msgstr "取消連結仿製物件(_K)" -#: ../src/verbs.cpp:2425 +#: ../src/verbs.cpp:2508 msgid "" "Cut the selected clones' links to the originals, turning them into " "standalone objects" msgstr "切斷仿製物件與原物件的連結,將其轉化成單獨的物件" -#: ../src/verbs.cpp:2426 +#: ../src/verbs.cpp:2509 msgid "Relink to Copied" msgstr "連結到複製物件" -#: ../src/verbs.cpp:2427 +#: ../src/verbs.cpp:2510 msgid "Relink the selected clones to the object currently on the clipboard" msgstr "重新連結選取的仿製物件到目前剪貼簿上的物件" -#: ../src/verbs.cpp:2428 +#: ../src/verbs.cpp:2511 msgid "Select _Original" msgstr "選擇原物件(_O)" -#: ../src/verbs.cpp:2429 +#: ../src/verbs.cpp:2512 msgid "Select the object to which the selected clone is linked" msgstr "選擇要被連結到選取仿製物件的物件" -#: ../src/verbs.cpp:2430 +#: ../src/verbs.cpp:2513 msgid "Clone original path (LPE)" msgstr "複製原本路徑 (LPE)" -#: ../src/verbs.cpp:2431 +#: ../src/verbs.cpp:2514 msgid "" "Creates a new path, applies the Clone original LPE, and refers it to the " "selected path" msgstr "建立新路徑,套用複製原本即時路徑特效 (LPE),並把該路經當作選取的路徑" -#: ../src/verbs.cpp:2432 +#: ../src/verbs.cpp:2515 msgid "Objects to _Marker" msgstr "物件轉成標記(_M)" -#: ../src/verbs.cpp:2433 +#: ../src/verbs.cpp:2516 msgid "Convert selection to a line marker" msgstr "選取區轉換成線條標記" -#: ../src/verbs.cpp:2434 +#: ../src/verbs.cpp:2517 msgid "Objects to Gu_ides" msgstr "物件轉成參考線(_I)" -#: ../src/verbs.cpp:2435 +#: ../src/verbs.cpp:2518 msgid "" "Convert selected objects to a collection of guidelines aligned with their " "edges" msgstr "將選取物件轉換成對齊物件邊緣的參考線群集" -#: ../src/verbs.cpp:2436 +#: ../src/verbs.cpp:2519 msgid "Objects to Patter_n" msgstr "物件轉成圖樣(_N)" -#: ../src/verbs.cpp:2437 +#: ../src/verbs.cpp:2520 msgid "Convert selection to a rectangle with tiled pattern fill" msgstr "將選取區轉換成鋪排圖樣填充的矩形" -#: ../src/verbs.cpp:2438 +#: ../src/verbs.cpp:2521 msgid "Pattern to _Objects" msgstr "圖樣轉成物件(_O)" -#: ../src/verbs.cpp:2439 +#: ../src/verbs.cpp:2522 msgid "Extract objects from a tiled pattern fill" msgstr "從鋪排圖樣填充裡提取物件" -#: ../src/verbs.cpp:2440 +#: ../src/verbs.cpp:2523 msgid "Group to Symbol" -msgstr "" +msgstr "群組轉成符號" -#: ../src/verbs.cpp:2441 -#, fuzzy +#: ../src/verbs.cpp:2524 msgid "Convert group to a symbol" -msgstr "將邊框轉成路徑" +msgstr "將群組轉換成符號" -#: ../src/verbs.cpp:2442 +#: ../src/verbs.cpp:2525 msgid "Symbol to Group" -msgstr "" +msgstr "符號轉成群組" -#: ../src/verbs.cpp:2443 +#: ../src/verbs.cpp:2526 msgid "Extract group from a symbol" -msgstr "" +msgstr "從符號中提取群組" -#: ../src/verbs.cpp:2444 +#: ../src/verbs.cpp:2527 msgid "Clea_r All" msgstr "全部清除(_R)" -#: ../src/verbs.cpp:2445 +#: ../src/verbs.cpp:2528 msgid "Delete all objects from document" msgstr "從文件中刪除所有物件" -#: ../src/verbs.cpp:2446 +#: ../src/verbs.cpp:2529 msgid "Select Al_l" msgstr "全選(_L)" -#: ../src/verbs.cpp:2447 +#: ../src/verbs.cpp:2530 msgid "Select all objects or all nodes" msgstr "選擇所有物件或所有節點" -#: ../src/verbs.cpp:2448 +#: ../src/verbs.cpp:2531 msgid "Select All in All La_yers" msgstr "在所有圖層中全選(_Y)" -#: ../src/verbs.cpp:2449 +#: ../src/verbs.cpp:2532 msgid "Select all objects in all visible and unlocked layers" msgstr "在全部可見和未上鎖的圖層裡選取所有物件" -#: ../src/verbs.cpp:2450 +#: ../src/verbs.cpp:2533 msgid "Fill _and Stroke" msgstr "填充和邊框(_A)" -#: ../src/verbs.cpp:2451 +#: ../src/verbs.cpp:2534 msgid "" "Select all objects with the same fill and stroke as the selected objects" msgstr "選取與此選取物件填充及邊框相同的所有物件" -#: ../src/verbs.cpp:2452 +#: ../src/verbs.cpp:2535 msgid "_Fill Color" msgstr "填充(_F)" -#: ../src/verbs.cpp:2453 +#: ../src/verbs.cpp:2536 msgid "Select all objects with the same fill as the selected objects" msgstr "選取與此選取物件填充相同的所有物件" -#: ../src/verbs.cpp:2454 +#: ../src/verbs.cpp:2537 msgid "_Stroke Color" msgstr "邊框顏色(_S)" -#: ../src/verbs.cpp:2455 +#: ../src/verbs.cpp:2538 msgid "Select all objects with the same stroke as the selected objects" msgstr "選取與此選取物件邊框相同的所有物件" -#: ../src/verbs.cpp:2456 +#: ../src/verbs.cpp:2539 msgid "Stroke St_yle" msgstr "邊框樣式(_Y)" -#: ../src/verbs.cpp:2457 -#, fuzzy +#: ../src/verbs.cpp:2540 msgid "" "Select all objects with the same stroke style (width, dash, markers) as the " "selected objects" -msgstr "選取與此選取物件邊框樣式 (寬度、線段、標記) 的所有物件" +msgstr "選取與此選取物件相同邊框樣式 (寬度、線段、標記) 的所有物件" -#: ../src/verbs.cpp:2458 -#, fuzzy +#: ../src/verbs.cpp:2541 msgid "_Object Type" -msgstr "物件類型" +msgstr "物件類型(_O)" -#: ../src/verbs.cpp:2459 -#, fuzzy +#: ../src/verbs.cpp:2542 msgid "" "Select all objects with the same object type (rect, arc, text, path, bitmap " "etc) as the selected objects" -msgstr "選取與此選取物件邊框樣式 (寬度、線段、標記) 的所有物件" +msgstr "選取和此選取物件相同類型 (矩形、弧、文字、路徑、點陣圖等) 的所有物件" -#: ../src/verbs.cpp:2460 +#: ../src/verbs.cpp:2543 msgid "In_vert Selection" msgstr "反向選取(_V)" -#: ../src/verbs.cpp:2461 +#: ../src/verbs.cpp:2544 msgid "Invert selection (unselect what is selected and select everything else)" msgstr "反向選取 (取消已選的項目並選取其餘的項目)" -#: ../src/verbs.cpp:2462 +#: ../src/verbs.cpp:2545 msgid "Invert in All Layers" msgstr "在所有圖層中反向選取" -#: ../src/verbs.cpp:2463 +#: ../src/verbs.cpp:2546 msgid "Invert selection in all visible and unlocked layers" msgstr "在全部可見和未上鎖的圖層裡反向選取所有物件" -#: ../src/verbs.cpp:2464 +#: ../src/verbs.cpp:2547 msgid "Select Next" msgstr "選取下一個" -#: ../src/verbs.cpp:2465 +#: ../src/verbs.cpp:2548 msgid "Select next object or node" msgstr "選取下一個物件或節點" -#: ../src/verbs.cpp:2466 +#: ../src/verbs.cpp:2549 msgid "Select Previous" msgstr "選取上一個" -#: ../src/verbs.cpp:2467 +#: ../src/verbs.cpp:2550 msgid "Select previous object or node" msgstr "選取上一個物件或節點" -#: ../src/verbs.cpp:2468 +#: ../src/verbs.cpp:2551 msgid "D_eselect" msgstr "取消選取(_E)" -#: ../src/verbs.cpp:2469 +#: ../src/verbs.cpp:2552 msgid "Deselect any selected objects or nodes" msgstr "取消選取任何已選的物件或節點" -#: ../src/verbs.cpp:2471 -#, fuzzy +#: ../src/verbs.cpp:2554 msgid "Delete all the guides in the document" -msgstr "從文件中刪除所有物件" +msgstr "刪除文件中所有的參考線" -#: ../src/verbs.cpp:2472 +#: ../src/verbs.cpp:2555 msgid "Create _Guides Around the Page" msgstr "建立頁邊參考線(_G)" -#: ../src/verbs.cpp:2473 +#: ../src/verbs.cpp:2556 msgid "Create four guides aligned with the page borders" msgstr "建立 4 條對齊頁面邊界的參考線" -#: ../src/verbs.cpp:2474 +#: ../src/verbs.cpp:2557 msgid "Next path effect parameter" msgstr "下一個路徑特效參數" -#: ../src/verbs.cpp:2475 +#: ../src/verbs.cpp:2558 msgid "Show next editable path effect parameter" msgstr "顯示下一個可編輯的路徑特效參數" #. Selection -#: ../src/verbs.cpp:2478 +#: ../src/verbs.cpp:2561 msgid "Raise to _Top" msgstr "提升到最上層(_T)" -#: ../src/verbs.cpp:2479 +#: ../src/verbs.cpp:2562 msgid "Raise selection to top" msgstr "提升選取到最上層" -#: ../src/verbs.cpp:2480 +#: ../src/verbs.cpp:2563 msgid "Lower to _Bottom" msgstr "降低到最下層(_B)" -#: ../src/verbs.cpp:2481 +#: ../src/verbs.cpp:2564 msgid "Lower selection to bottom" msgstr "降低選取到最下層" -#: ../src/verbs.cpp:2482 +#: ../src/verbs.cpp:2565 msgid "_Raise" msgstr "提升(_R)" -#: ../src/verbs.cpp:2483 +#: ../src/verbs.cpp:2566 msgid "Raise selection one step" msgstr "提升選取到上一層" -#: ../src/verbs.cpp:2484 +#: ../src/verbs.cpp:2567 msgid "_Lower" msgstr "降低(_L)" -#: ../src/verbs.cpp:2485 +#: ../src/verbs.cpp:2568 msgid "Lower selection one step" msgstr "降低選取到下一層" -#: ../src/verbs.cpp:2487 +#: ../src/verbs.cpp:2570 msgid "Group selected objects" msgstr "群組選取的物件" -#: ../src/verbs.cpp:2489 +#: ../src/verbs.cpp:2572 msgid "Ungroup selected groups" msgstr "解散選取的群組" -#: ../src/verbs.cpp:2491 +#: ../src/verbs.cpp:2574 msgid "_Put on Path" msgstr "置於路徑(_P)" -#: ../src/verbs.cpp:2493 +#: ../src/verbs.cpp:2576 msgid "_Remove from Path" msgstr "從路徑移除(_R)" -#: ../src/verbs.cpp:2495 +#: ../src/verbs.cpp:2578 msgid "Remove Manual _Kerns" msgstr "手動移除突出(_K)" #. TRANSLATORS: "glyph": An image used in the visual representation of characters; #. roughly speaking, how a character looks. A font is a set of glyphs. -#: ../src/verbs.cpp:2498 +#: ../src/verbs.cpp:2581 msgid "Remove all manual kerns and glyph rotations from a text object" msgstr "從文字物件手動移除所有突出和字形" -#: ../src/verbs.cpp:2500 +#: ../src/verbs.cpp:2583 msgid "_Union" msgstr "相加(_U)" -#: ../src/verbs.cpp:2501 +#: ../src/verbs.cpp:2584 msgid "Create union of selected paths" msgstr "建立選取路徑的聯集" -#: ../src/verbs.cpp:2502 +#: ../src/verbs.cpp:2585 msgid "_Intersection" msgstr "交集(_I)" -#: ../src/verbs.cpp:2503 +#: ../src/verbs.cpp:2586 msgid "Create intersection of selected paths" msgstr "建立選取路徑的交集" -#: ../src/verbs.cpp:2504 +#: ../src/verbs.cpp:2587 msgid "_Difference" msgstr "減去(_D)" -#: ../src/verbs.cpp:2505 +#: ../src/verbs.cpp:2588 msgid "Create difference of selected paths (bottom minus top)" msgstr "建立選取路徑的差集 (下層路徑減去上層路徑)" -#: ../src/verbs.cpp:2506 +#: ../src/verbs.cpp:2589 msgid "E_xclusion" msgstr "排除(_X)" -#: ../src/verbs.cpp:2507 +#: ../src/verbs.cpp:2590 msgid "" "Create exclusive OR of selected paths (those parts that belong to only one " "path)" msgstr "建立選取路徑的互斥 (這些部分屬於單一路徑)" -#: ../src/verbs.cpp:2508 +#: ../src/verbs.cpp:2591 msgid "Di_vision" msgstr "分割(_V)" -#: ../src/verbs.cpp:2509 +#: ../src/verbs.cpp:2592 msgid "Cut the bottom path into pieces" msgstr "將下層的路徑切成好幾片" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2512 +#: ../src/verbs.cpp:2595 msgid "Cut _Path" msgstr "剪切(_P)" -#: ../src/verbs.cpp:2513 +#: ../src/verbs.cpp:2596 msgid "Cut the bottom path's stroke into pieces, removing fill" msgstr "將下層路徑的邊框切成好幾片,並移除填充" #. TRANSLATORS: "outset": expand a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2517 +#: ../src/verbs.cpp:2600 msgid "Outs_et" msgstr "外擴(_E)" -#: ../src/verbs.cpp:2518 +#: ../src/verbs.cpp:2601 msgid "Outset selected paths" msgstr "外擴選取的路徑" -#: ../src/verbs.cpp:2520 +#: ../src/verbs.cpp:2603 msgid "O_utset Path by 1 px" msgstr "外擴路徑 1 px(_U)" -#: ../src/verbs.cpp:2521 +#: ../src/verbs.cpp:2604 msgid "Outset selected paths by 1 px" msgstr "選取的路徑外擴 1px" -#: ../src/verbs.cpp:2523 +#: ../src/verbs.cpp:2606 msgid "O_utset Path by 10 px" msgstr "外擴路徑 10 px(_U)" -#: ../src/verbs.cpp:2524 +#: ../src/verbs.cpp:2607 msgid "Outset selected paths by 10 px" msgstr "選取的路徑外擴 10px" #. TRANSLATORS: "inset": contract a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2528 +#: ../src/verbs.cpp:2611 msgid "I_nset" msgstr "內縮(_N)" -#: ../src/verbs.cpp:2529 +#: ../src/verbs.cpp:2612 msgid "Inset selected paths" msgstr "內縮選取的路徑" -#: ../src/verbs.cpp:2531 +#: ../src/verbs.cpp:2614 msgid "I_nset Path by 1 px" msgstr "內縮路徑 1 px(_N)" -#: ../src/verbs.cpp:2532 +#: ../src/verbs.cpp:2615 msgid "Inset selected paths by 1 px" msgstr "選取的路徑內縮 1px " -#: ../src/verbs.cpp:2534 +#: ../src/verbs.cpp:2617 msgid "I_nset Path by 10 px" msgstr "內縮路徑 10 px(_N)" -#: ../src/verbs.cpp:2535 +#: ../src/verbs.cpp:2618 msgid "Inset selected paths by 10 px" msgstr "選取的路徑內縮 10 px" -#: ../src/verbs.cpp:2537 +#: ../src/verbs.cpp:2620 msgid "D_ynamic Offset" msgstr "動態偏移(_Y)" -#: ../src/verbs.cpp:2537 +#: ../src/verbs.cpp:2620 msgid "Create a dynamic offset object" msgstr "建立動態偏移物件" -#: ../src/verbs.cpp:2539 +#: ../src/verbs.cpp:2622 msgid "_Linked Offset" msgstr "連結偏移(_L)" -#: ../src/verbs.cpp:2540 +#: ../src/verbs.cpp:2623 msgid "Create a dynamic offset object linked to the original path" msgstr "建立連結到原路徑的動態偏移物件" -#: ../src/verbs.cpp:2542 +#: ../src/verbs.cpp:2625 msgid "_Stroke to Path" msgstr "邊框轉成路徑(_S)" -#: ../src/verbs.cpp:2543 +#: ../src/verbs.cpp:2626 msgid "Convert selected object's stroke to paths" msgstr "將選取物件的邊框轉換成路徑" -#: ../src/verbs.cpp:2544 +#: ../src/verbs.cpp:2627 msgid "Si_mplify" msgstr "簡化(_M)" -#: ../src/verbs.cpp:2545 +#: ../src/verbs.cpp:2628 msgid "Simplify selected paths (remove extra nodes)" msgstr "簡化選取的路徑 (移除多餘節點)" -#: ../src/verbs.cpp:2546 +#: ../src/verbs.cpp:2629 msgid "_Reverse" msgstr "反轉(_R)" -#: ../src/verbs.cpp:2547 +#: ../src/verbs.cpp:2630 msgid "Reverse the direction of selected paths (useful for flipping markers)" msgstr "反轉選取路徑的方向 (用來翻轉標記)" -#: ../src/verbs.cpp:2550 +#: ../src/verbs.cpp:2633 msgid "Create one or more paths from a bitmap by tracing it" msgstr "利用描繪點陣圖建立一條或多條路徑" -#: ../src/verbs.cpp:2551 -#, fuzzy +#: ../src/verbs.cpp:2634 msgid "Trace Pixel Art..." -msgstr "描繪點陣圖(_T)..." +msgstr "描繪像素圖案..." -#: ../src/verbs.cpp:2552 +#: ../src/verbs.cpp:2635 msgid "Create paths using Kopf-Lischinski algorithm to vectorize pixel art" -msgstr "" +msgstr "使用 Kopf-Lischinski 演算法建立路徑將像素圖案變成向量圖" -#: ../src/verbs.cpp:2553 -#, fuzzy +#: ../src/verbs.cpp:2636 msgid "Make a _Bitmap Copy" -msgstr "製作點陣圖副本(_M)" +msgstr "建立點陣圖副本(_M)" -#: ../src/verbs.cpp:2554 +#: ../src/verbs.cpp:2637 msgid "Export selection to a bitmap and insert it into document" msgstr "將選取區匯出成點陣圖並將其插入到文件裡" -#: ../src/verbs.cpp:2555 +#: ../src/verbs.cpp:2638 msgid "_Combine" msgstr "結合(_C)" -#: ../src/verbs.cpp:2556 +#: ../src/verbs.cpp:2639 msgid "Combine several paths into one" msgstr "將數條路徑結合成一條" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2559 +#: ../src/verbs.cpp:2642 msgid "Break _Apart" msgstr "打散(_A)" -#: ../src/verbs.cpp:2560 +#: ../src/verbs.cpp:2643 msgid "Break selected paths into subpaths" msgstr "將選取路徑打散拆開成子路徑" -#: ../src/verbs.cpp:2561 -#, fuzzy +#: ../src/verbs.cpp:2644 msgid "_Arrange..." -msgstr "排列(_A)" +msgstr "排列(_A)..." -#: ../src/verbs.cpp:2562 -#, fuzzy +#: ../src/verbs.cpp:2645 msgid "Arrange selected objects in a table or circle" -msgstr "將選取物件排列成表格" +msgstr "將選取物件排列成表格或圓環" #. Layer -#: ../src/verbs.cpp:2564 +#: ../src/verbs.cpp:2647 msgid "_Add Layer..." msgstr "加入圖層(_A)..." -#: ../src/verbs.cpp:2565 +#: ../src/verbs.cpp:2648 msgid "Create a new layer" msgstr "建立新圖層" -#: ../src/verbs.cpp:2566 +#: ../src/verbs.cpp:2649 msgid "Re_name Layer..." msgstr "重新命名圖層(_N)..." -#: ../src/verbs.cpp:2567 +#: ../src/verbs.cpp:2650 msgid "Rename the current layer" msgstr "重新命名目前圖層" -#: ../src/verbs.cpp:2568 +#: ../src/verbs.cpp:2651 msgid "Switch to Layer Abov_e" msgstr "切換到上方圖層(_E)" -#: ../src/verbs.cpp:2569 +#: ../src/verbs.cpp:2652 msgid "Switch to the layer above the current" msgstr "切換到目前上方的圖層" -#: ../src/verbs.cpp:2570 +#: ../src/verbs.cpp:2653 msgid "Switch to Layer Belo_w" msgstr "切換到下方圖層(_W)" -#: ../src/verbs.cpp:2571 +#: ../src/verbs.cpp:2654 msgid "Switch to the layer below the current" msgstr "切換到目前下方的圖層" -#: ../src/verbs.cpp:2572 +#: ../src/verbs.cpp:2655 msgid "Move Selection to Layer Abo_ve" -msgstr "移動選取到上方圖層(_V)" +msgstr "移動選取物件到上方圖層(_V)" -#: ../src/verbs.cpp:2573 +#: ../src/verbs.cpp:2656 msgid "Move selection to the layer above the current" -msgstr "移動選取到目前上方的圖層" +msgstr "移動選取物件到目前上方的圖層" -#: ../src/verbs.cpp:2574 +#: ../src/verbs.cpp:2657 msgid "Move Selection to Layer Bel_ow" -msgstr "移動選取到下方圖層(_O)" +msgstr "移動選取物件到下方圖層(_O)" -#: ../src/verbs.cpp:2575 +#: ../src/verbs.cpp:2658 msgid "Move selection to the layer below the current" -msgstr "移動選取到目前下方的圖層" +msgstr "移動選取物件到目前下方的圖層" -#: ../src/verbs.cpp:2576 -#, fuzzy +#: ../src/verbs.cpp:2659 msgid "Move Selection to Layer..." -msgstr "移動選取到上方圖層(_V)" +msgstr "移動選取物件到圖層..." -#: ../src/verbs.cpp:2578 +#: ../src/verbs.cpp:2661 msgid "Layer to _Top" msgstr "圖層移到最上層(_T)" -#: ../src/verbs.cpp:2579 +#: ../src/verbs.cpp:2662 msgid "Raise the current layer to the top" msgstr "提升目前圖層到最上層" -#: ../src/verbs.cpp:2580 +#: ../src/verbs.cpp:2663 msgid "Layer to _Bottom" msgstr "圖層移到最下層(_B)" -#: ../src/verbs.cpp:2581 +#: ../src/verbs.cpp:2664 msgid "Lower the current layer to the bottom" msgstr "降低目前圖層到最下層" -#: ../src/verbs.cpp:2582 +#: ../src/verbs.cpp:2665 msgid "_Raise Layer" msgstr "提升圖層(_R)" -#: ../src/verbs.cpp:2583 +#: ../src/verbs.cpp:2666 msgid "Raise the current layer" msgstr "提升目前圖層" -#: ../src/verbs.cpp:2584 +#: ../src/verbs.cpp:2667 msgid "_Lower Layer" msgstr "降低圖層(_L)" -#: ../src/verbs.cpp:2585 +#: ../src/verbs.cpp:2668 msgid "Lower the current layer" msgstr "降低目前圖層" -#: ../src/verbs.cpp:2586 +#: ../src/verbs.cpp:2669 msgid "D_uplicate Current Layer" msgstr "複製目前圖層(_U)" -#: ../src/verbs.cpp:2587 +#: ../src/verbs.cpp:2670 msgid "Duplicate an existing layer" msgstr "複製現有的圖層" -#: ../src/verbs.cpp:2588 +#: ../src/verbs.cpp:2671 msgid "_Delete Current Layer" msgstr "刪除目前圖層(_D)" -#: ../src/verbs.cpp:2589 +#: ../src/verbs.cpp:2672 msgid "Delete the current layer" msgstr "刪除目前圖層" -#: ../src/verbs.cpp:2590 +#: ../src/verbs.cpp:2673 msgid "_Show/hide other layers" msgstr "顯示 / 隱藏其他圖層(_S)" -#: ../src/verbs.cpp:2591 +#: ../src/verbs.cpp:2674 msgid "Solo the current layer" msgstr "單獨顯示目前圖層" -#: ../src/verbs.cpp:2592 -#, fuzzy +#: ../src/verbs.cpp:2675 msgid "_Show all layers" -msgstr "搜尋所有圖層" +msgstr "顯示全部圖層(_S)" -#: ../src/verbs.cpp:2593 -#, fuzzy +#: ../src/verbs.cpp:2676 msgid "Show all the layers" -msgstr "顯示 / 隱藏其他圖層(_S)" +msgstr "顯示全部圖層" -#: ../src/verbs.cpp:2594 -#, fuzzy +#: ../src/verbs.cpp:2677 msgid "_Hide all layers" -msgstr "隱藏圖層" +msgstr "隱藏全部圖層(_H)" -#: ../src/verbs.cpp:2595 -#, fuzzy +#: ../src/verbs.cpp:2678 msgid "Hide all the layers" -msgstr "隱藏圖層" +msgstr "隱藏全部圖層" -#: ../src/verbs.cpp:2596 -#, fuzzy +#: ../src/verbs.cpp:2679 msgid "_Lock all layers" -msgstr "搜尋所有圖層" +msgstr "鎖定全部圖層(_L)" -#: ../src/verbs.cpp:2597 -#, fuzzy +#: ../src/verbs.cpp:2680 msgid "Lock all the layers" -msgstr "顯示 / 隱藏其他圖層(_S)" +msgstr "鎖定全部圖層" -#: ../src/verbs.cpp:2598 -#, fuzzy +#: ../src/verbs.cpp:2681 msgid "Lock/Unlock _other layers" -msgstr "鎖定或解除鎖定目前圖層(_L)" +msgstr "鎖定 / 解除鎖定其他圖層(_O)" -#: ../src/verbs.cpp:2599 -#, fuzzy +#: ../src/verbs.cpp:2682 msgid "Lock all the other layers" -msgstr "顯示 / 隱藏其他圖層(_S)" +msgstr "鎖定所有其餘圖層" -#: ../src/verbs.cpp:2600 -#, fuzzy +#: ../src/verbs.cpp:2683 msgid "_Unlock all layers" -msgstr "解除鎖定圖層" +msgstr "解除鎖定全部圖層(_U)" -#: ../src/verbs.cpp:2601 -#, fuzzy +#: ../src/verbs.cpp:2684 msgid "Unlock all the layers" -msgstr "顯示 / 隱藏其他圖層(_S)" +msgstr "解除鎖定全部圖層" -#: ../src/verbs.cpp:2602 +#: ../src/verbs.cpp:2685 msgid "_Lock/Unlock Current Layer" -msgstr "鎖定或解除鎖定目前圖層(_L)" +msgstr "鎖定 / 解除鎖定目前圖層(_L)" -#: ../src/verbs.cpp:2603 +#: ../src/verbs.cpp:2686 msgid "Toggle lock on current layer" msgstr "開啟 / 關閉鎖定目前圖層" -#: ../src/verbs.cpp:2604 +#: ../src/verbs.cpp:2687 msgid "_Show/hide Current Layer" msgstr "顯示 / 隱藏目前圖層(_S)" -#: ../src/verbs.cpp:2605 +#: ../src/verbs.cpp:2688 msgid "Toggle visibility of current layer" msgstr "切換目前圖層的隱現狀態" #. Object -#: ../src/verbs.cpp:2608 -#, fuzzy +#: ../src/verbs.cpp:2691 msgid "Rotate _90° CW" -msgstr "順時針旋轉 _90°" +msgstr "順時針旋轉 _90°" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2611 +#: ../src/verbs.cpp:2694 msgid "Rotate selection 90° clockwise" msgstr "將選取區順時針旋轉 90°" -#: ../src/verbs.cpp:2612 -#, fuzzy +#: ../src/verbs.cpp:2695 msgid "Rotate 9_0° CCW" -msgstr "逆時針旋轉 9_0°" +msgstr "逆時針旋轉 9_0°" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2615 +#: ../src/verbs.cpp:2698 msgid "Rotate selection 90° counter-clockwise" msgstr "將選取區逆時針旋轉 90°" -#: ../src/verbs.cpp:2616 +#: ../src/verbs.cpp:2699 msgid "Remove _Transformations" msgstr "移除變形(_T)" -#: ../src/verbs.cpp:2617 +#: ../src/verbs.cpp:2700 msgid "Remove transformations from object" msgstr "從物件移除變形" -#: ../src/verbs.cpp:2618 +#: ../src/verbs.cpp:2701 msgid "_Object to Path" msgstr "物件轉成路徑(_O)" -#: ../src/verbs.cpp:2619 +#: ../src/verbs.cpp:2702 msgid "Convert selected object to path" msgstr "將選取物件轉換成路徑" -#: ../src/verbs.cpp:2620 +#: ../src/verbs.cpp:2703 msgid "_Flow into Frame" msgstr "置入框架(_F)" -#: ../src/verbs.cpp:2621 +#: ../src/verbs.cpp:2704 msgid "" "Put text into a frame (path or shape), creating a flowed text linked to the " "frame object" msgstr "將文字放入框架 (路徑或形狀) 裡,建立連結到框架物件的流動文字" -#: ../src/verbs.cpp:2622 +#: ../src/verbs.cpp:2705 msgid "_Unflow" msgstr "不流動文字(_U)" -#: ../src/verbs.cpp:2623 +#: ../src/verbs.cpp:2706 msgid "Remove text from frame (creates a single-line text object)" msgstr "從框架移除文字 (建立單行文字物件)" -#: ../src/verbs.cpp:2624 +#: ../src/verbs.cpp:2707 msgid "_Convert to Text" msgstr "轉成文字(_C)" -#: ../src/verbs.cpp:2625 +#: ../src/verbs.cpp:2708 msgid "Convert flowed text to regular text object (preserves appearance)" msgstr "將流動文字轉換成普通文字物件 (保留外觀)" -#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2710 msgid "Flip _Horizontal" msgstr "水平翻轉(_H)" -#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2710 msgid "Flip selected objects horizontally" msgstr "水平翻轉選取的物件" -#: ../src/verbs.cpp:2630 +#: ../src/verbs.cpp:2713 msgid "Flip _Vertical" msgstr "垂直翻轉(_V)" -#: ../src/verbs.cpp:2630 +#: ../src/verbs.cpp:2713 msgid "Flip selected objects vertically" msgstr "垂直翻轉選取的物件" -#: ../src/verbs.cpp:2633 +#: ../src/verbs.cpp:2716 msgid "Apply mask to selection (using the topmost object as mask)" msgstr "套用遮罩到選取區 (使用最上層物件作為遮罩)" -#: ../src/verbs.cpp:2635 +#: ../src/verbs.cpp:2718 msgid "Edit mask" msgstr "編輯遮罩" -#: ../src/verbs.cpp:2636 ../src/verbs.cpp:2642 +#: ../src/verbs.cpp:2719 ../src/verbs.cpp:2727 msgid "_Release" msgstr "解除(_R)" -#: ../src/verbs.cpp:2637 +#: ../src/verbs.cpp:2720 msgid "Remove mask from selection" msgstr "從選取區移除遮罩" -#: ../src/verbs.cpp:2639 +#: ../src/verbs.cpp:2722 msgid "" "Apply clipping path to selection (using the topmost object as clipping path)" msgstr "套用剪裁路徑到選取區 (使用最上層物件作為剪裁路徑)" -#: ../src/verbs.cpp:2641 +#: ../src/verbs.cpp:2723 +msgid "Create Cl_ip Group" +msgstr "建立裁剪群組(_N)" + +#: ../src/verbs.cpp:2724 +msgid "Creates a clip group using the selected objects as a base" +msgstr "用選取的務件作為基準建立裁剪群組" + +#: ../src/verbs.cpp:2726 msgid "Edit clipping path" msgstr "編輯裁剪路徑" -#: ../src/verbs.cpp:2643 +#: ../src/verbs.cpp:2728 msgid "Remove clipping path from selection" msgstr "從選取區移除剪裁路徑" #. Tools -#: ../src/verbs.cpp:2646 -#, fuzzy +#: ../src/verbs.cpp:2733 msgctxt "ContextVerb" msgid "Select" msgstr "選取" -#: ../src/verbs.cpp:2647 +#: ../src/verbs.cpp:2734 msgid "Select and transform objects" msgstr "選取和變形物件" -#: ../src/verbs.cpp:2648 -#, fuzzy +#: ../src/verbs.cpp:2735 msgctxt "ContextVerb" msgid "Node Edit" msgstr "編輯節點" -#: ../src/verbs.cpp:2649 +#: ../src/verbs.cpp:2736 msgid "Edit paths by nodes" msgstr "用節點編輯路徑" -#: ../src/verbs.cpp:2650 -#, fuzzy +#: ../src/verbs.cpp:2737 msgctxt "ContextVerb" msgid "Tweak" msgstr "微調" -#: ../src/verbs.cpp:2651 +#: ../src/verbs.cpp:2738 msgid "Tweak objects by sculpting or painting" msgstr "用雕刻或塗繪來微調物件" -#: ../src/verbs.cpp:2652 -#, fuzzy +#: ../src/verbs.cpp:2739 msgctxt "ContextVerb" msgid "Spray" msgstr "噴灑" -#: ../src/verbs.cpp:2653 +#: ../src/verbs.cpp:2740 msgid "Spray objects by sculpting or painting" msgstr "用雕刻或塗繪來噴灑物件" -#: ../src/verbs.cpp:2654 -#, fuzzy +#: ../src/verbs.cpp:2741 msgctxt "ContextVerb" msgid "Rectangle" msgstr "矩形" -#: ../src/verbs.cpp:2655 +#: ../src/verbs.cpp:2742 msgid "Create rectangles and squares" msgstr "建立矩形與正方形" -#: ../src/verbs.cpp:2656 -#, fuzzy +#: ../src/verbs.cpp:2743 msgctxt "ContextVerb" msgid "3D Box" msgstr "立方體" -#: ../src/verbs.cpp:2657 +#: ../src/verbs.cpp:2744 msgid "Create 3D boxes" msgstr "建立立方體" -#: ../src/verbs.cpp:2658 -#, fuzzy +#: ../src/verbs.cpp:2745 msgctxt "ContextVerb" msgid "Ellipse" msgstr "橢圓形" -#: ../src/verbs.cpp:2659 +#: ../src/verbs.cpp:2746 msgid "Create circles, ellipses, and arcs" msgstr "建立圓形﹑橢圓形與弧形" -#: ../src/verbs.cpp:2660 -#, fuzzy +#: ../src/verbs.cpp:2747 msgctxt "ContextVerb" msgid "Star" msgstr "星形" -#: ../src/verbs.cpp:2661 +#: ../src/verbs.cpp:2748 msgid "Create stars and polygons" msgstr "建立星形與多邊形" -#: ../src/verbs.cpp:2662 -#, fuzzy +#: ../src/verbs.cpp:2749 msgctxt "ContextVerb" msgid "Spiral" msgstr "螺旋" -#: ../src/verbs.cpp:2663 +#: ../src/verbs.cpp:2750 msgid "Create spirals" msgstr "建立螺旋形" -#: ../src/verbs.cpp:2664 -#, fuzzy +#: ../src/verbs.cpp:2751 msgctxt "ContextVerb" msgid "Pencil" msgstr "鉛筆" -#: ../src/verbs.cpp:2665 +#: ../src/verbs.cpp:2752 msgid "Draw freehand lines" msgstr "繪製手繪線" -#: ../src/verbs.cpp:2666 -#, fuzzy +#: ../src/verbs.cpp:2753 msgctxt "ContextVerb" msgid "Pen" msgstr "筆" -#: ../src/verbs.cpp:2667 +#: ../src/verbs.cpp:2754 msgid "Draw Bezier curves and straight lines" msgstr "繪製貝茲曲線及直線" -#: ../src/verbs.cpp:2668 -#, fuzzy +#: ../src/verbs.cpp:2755 msgctxt "ContextVerb" msgid "Calligraphy" msgstr "書法" -#: ../src/verbs.cpp:2669 +#: ../src/verbs.cpp:2756 msgid "Draw calligraphic or brush strokes" msgstr "繪製書法或畫筆筆觸" -#: ../src/verbs.cpp:2671 +#: ../src/verbs.cpp:2758 msgid "Create and edit text objects" msgstr "建立和編輯文字物件" -#: ../src/verbs.cpp:2672 -#, fuzzy +#: ../src/verbs.cpp:2759 msgctxt "ContextVerb" msgid "Gradient" msgstr "漸層" -#: ../src/verbs.cpp:2673 +#: ../src/verbs.cpp:2760 msgid "Create and edit gradients" msgstr "建立和編輯漸層" -#: ../src/verbs.cpp:2674 +#: ../src/verbs.cpp:2761 msgctxt "ContextVerb" msgid "Mesh" -msgstr "" +msgstr "網面漸層" -#: ../src/verbs.cpp:2675 -#, fuzzy +#: ../src/verbs.cpp:2762 msgid "Create and edit meshes" -msgstr "建立和編輯漸層" +msgstr "建立和編輯網面漸層" -#: ../src/verbs.cpp:2676 -#, fuzzy +#: ../src/verbs.cpp:2763 msgctxt "ContextVerb" msgid "Zoom" msgstr "縮放" -#: ../src/verbs.cpp:2677 +#: ../src/verbs.cpp:2764 msgid "Zoom in or out" msgstr "放大或縮小" -#: ../src/verbs.cpp:2679 +#: ../src/verbs.cpp:2766 msgid "Measurement tool" msgstr "量測工具" -#: ../src/verbs.cpp:2680 -#, fuzzy +#: ../src/verbs.cpp:2767 msgctxt "ContextVerb" msgid "Dropper" msgstr "滴管" -#: ../src/verbs.cpp:2681 ../src/widgets/sp-color-notebook.cpp:411 +#: ../src/verbs.cpp:2768 ../src/widgets/sp-color-notebook.cpp:396 msgid "Pick colors from image" -msgstr "從影像取得顏色" +msgstr "從影像汲取顏色" -#: ../src/verbs.cpp:2682 -#, fuzzy +#: ../src/verbs.cpp:2769 msgctxt "ContextVerb" msgid "Connector" msgstr "連接線" -#: ../src/verbs.cpp:2683 +#: ../src/verbs.cpp:2770 msgid "Create diagram connectors" msgstr "建立圖表連接線" -#: ../src/verbs.cpp:2684 -#, fuzzy +#: ../src/verbs.cpp:2771 msgctxt "ContextVerb" msgid "Paint Bucket" msgstr "油漆桶" -#: ../src/verbs.cpp:2685 +#: ../src/verbs.cpp:2772 msgid "Fill bounded areas" msgstr "填入封閉區域" -#: ../src/verbs.cpp:2686 -#, fuzzy +#: ../src/verbs.cpp:2773 msgctxt "ContextVerb" msgid "LPE Edit" msgstr "編輯即時路徑特效" -#: ../src/verbs.cpp:2687 +#: ../src/verbs.cpp:2774 msgid "Edit Path Effect parameters" msgstr "編輯路徑特效參數" -#: ../src/verbs.cpp:2688 -#, fuzzy +#: ../src/verbs.cpp:2775 msgctxt "ContextVerb" msgid "Eraser" msgstr "橡皮擦" -#: ../src/verbs.cpp:2689 +#: ../src/verbs.cpp:2776 msgid "Erase existing paths" msgstr "擦除現有的路徑" -#: ../src/verbs.cpp:2690 -#, fuzzy +#: ../src/verbs.cpp:2777 msgctxt "ContextVerb" msgid "LPE Tool" msgstr "即時路徑特效工具" -#: ../src/verbs.cpp:2691 +#: ../src/verbs.cpp:2778 msgid "Do geometric constructions" msgstr "製作幾何結構" #. Tool prefs -#: ../src/verbs.cpp:2693 +#: ../src/verbs.cpp:2780 msgid "Selector Preferences" msgstr "選取工具偏好設定" -#: ../src/verbs.cpp:2694 +#: ../src/verbs.cpp:2781 msgid "Open Preferences for the Selector tool" msgstr "開啟選取工具的偏好設定" -#: ../src/verbs.cpp:2695 +#: ../src/verbs.cpp:2782 msgid "Node Tool Preferences" msgstr "節點工具偏好設定" -#: ../src/verbs.cpp:2696 +#: ../src/verbs.cpp:2783 msgid "Open Preferences for the Node tool" msgstr "開啟節點工具的偏好設定" -#: ../src/verbs.cpp:2697 +#: ../src/verbs.cpp:2784 msgid "Tweak Tool Preferences" msgstr "微調工具偏好設定" -#: ../src/verbs.cpp:2698 +#: ../src/verbs.cpp:2785 msgid "Open Preferences for the Tweak tool" msgstr "開啟微調工具的偏好設定" -#: ../src/verbs.cpp:2699 +#: ../src/verbs.cpp:2786 msgid "Spray Tool Preferences" msgstr "噴灑工具偏好設定" -#: ../src/verbs.cpp:2700 +#: ../src/verbs.cpp:2787 msgid "Open Preferences for the Spray tool" msgstr "開啟噴灑工具的偏好設定" -#: ../src/verbs.cpp:2701 +#: ../src/verbs.cpp:2788 msgid "Rectangle Preferences" msgstr "矩形偏好設定" -#: ../src/verbs.cpp:2702 +#: ../src/verbs.cpp:2789 msgid "Open Preferences for the Rectangle tool" msgstr "開啟矩形工具的偏好設定" -#: ../src/verbs.cpp:2703 +#: ../src/verbs.cpp:2790 msgid "3D Box Preferences" msgstr "立方體偏好設定" -#: ../src/verbs.cpp:2704 +#: ../src/verbs.cpp:2791 msgid "Open Preferences for the 3D Box tool" msgstr "開啟立方體工具的偏好設定" -#: ../src/verbs.cpp:2705 +#: ../src/verbs.cpp:2792 msgid "Ellipse Preferences" msgstr "橢圓形偏好設定" -#: ../src/verbs.cpp:2706 +#: ../src/verbs.cpp:2793 msgid "Open Preferences for the Ellipse tool" msgstr "開啟橢圓形工具的偏好設定" -#: ../src/verbs.cpp:2707 +#: ../src/verbs.cpp:2794 msgid "Star Preferences" msgstr "星形偏好設定" -#: ../src/verbs.cpp:2708 +#: ../src/verbs.cpp:2795 msgid "Open Preferences for the Star tool" msgstr "開啟星形工具的偏好設定" -#: ../src/verbs.cpp:2709 +#: ../src/verbs.cpp:2796 msgid "Spiral Preferences" msgstr "螺旋形偏好設定" -#: ../src/verbs.cpp:2710 +#: ../src/verbs.cpp:2797 msgid "Open Preferences for the Spiral tool" msgstr "開啟螺旋形工具的偏好設定" -#: ../src/verbs.cpp:2711 +#: ../src/verbs.cpp:2798 msgid "Pencil Preferences" msgstr "鉛筆偏好設定" -#: ../src/verbs.cpp:2712 +#: ../src/verbs.cpp:2799 msgid "Open Preferences for the Pencil tool" msgstr "開啟鉛筆工具的偏好設定" -#: ../src/verbs.cpp:2713 +#: ../src/verbs.cpp:2800 msgid "Pen Preferences" msgstr "筆工具偏好設定" -#: ../src/verbs.cpp:2714 +#: ../src/verbs.cpp:2801 msgid "Open Preferences for the Pen tool" msgstr "開啟筆工具的偏好設定" -#: ../src/verbs.cpp:2715 +#: ../src/verbs.cpp:2802 msgid "Calligraphic Preferences" msgstr "書法偏好設定" -#: ../src/verbs.cpp:2716 +#: ../src/verbs.cpp:2803 msgid "Open Preferences for the Calligraphy tool" msgstr "開啟書法工具的偏好設定" -#: ../src/verbs.cpp:2717 +#: ../src/verbs.cpp:2804 msgid "Text Preferences" msgstr "文字偏好設定" -#: ../src/verbs.cpp:2718 +#: ../src/verbs.cpp:2805 msgid "Open Preferences for the Text tool" msgstr "開啟文字工具的偏好設定" -#: ../src/verbs.cpp:2719 +#: ../src/verbs.cpp:2806 msgid "Gradient Preferences" msgstr "漸層偏好設定" -#: ../src/verbs.cpp:2720 +#: ../src/verbs.cpp:2807 msgid "Open Preferences for the Gradient tool" msgstr "開啟漸層工具的偏好設定" -#: ../src/verbs.cpp:2721 -#, fuzzy +#: ../src/verbs.cpp:2808 msgid "Mesh Preferences" -msgstr "量測偏好設定" +msgstr "網面漸層偏好設定" -#: ../src/verbs.cpp:2722 -#, fuzzy +#: ../src/verbs.cpp:2809 msgid "Open Preferences for the Mesh tool" -msgstr "開啟量測工具的偏好設定" +msgstr "開啟網面漸層工具的偏好設定" -#: ../src/verbs.cpp:2723 +#: ../src/verbs.cpp:2810 msgid "Zoom Preferences" msgstr "畫面縮放偏好設定" -#: ../src/verbs.cpp:2724 +#: ../src/verbs.cpp:2811 msgid "Open Preferences for the Zoom tool" msgstr "開啟縮放工具的偏好設定" -#: ../src/verbs.cpp:2725 +#: ../src/verbs.cpp:2812 msgid "Measure Preferences" msgstr "量測偏好設定" -#: ../src/verbs.cpp:2726 +#: ../src/verbs.cpp:2813 msgid "Open Preferences for the Measure tool" msgstr "開啟量測工具的偏好設定" -#: ../src/verbs.cpp:2727 +#: ../src/verbs.cpp:2814 msgid "Dropper Preferences" msgstr "滴管偏好設定" -#: ../src/verbs.cpp:2728 +#: ../src/verbs.cpp:2815 msgid "Open Preferences for the Dropper tool" msgstr "開啟滴管工具的偏好設定" -#: ../src/verbs.cpp:2729 +#: ../src/verbs.cpp:2816 msgid "Connector Preferences" msgstr "連接線偏好設定" -#: ../src/verbs.cpp:2730 +#: ../src/verbs.cpp:2817 msgid "Open Preferences for the Connector tool" msgstr "開啟連接線工具的偏好設定" -#: ../src/verbs.cpp:2731 +#: ../src/verbs.cpp:2818 msgid "Paint Bucket Preferences" msgstr "油漆桶偏好設定" -#: ../src/verbs.cpp:2732 +#: ../src/verbs.cpp:2819 msgid "Open Preferences for the Paint Bucket tool" msgstr "開啟油漆桶工具的偏好設定" -#: ../src/verbs.cpp:2733 +#: ../src/verbs.cpp:2820 msgid "Eraser Preferences" msgstr "橡皮擦偏好設定" -#: ../src/verbs.cpp:2734 +#: ../src/verbs.cpp:2821 msgid "Open Preferences for the Eraser tool" msgstr "開啟橡皮擦工具的偏好設定" -#: ../src/verbs.cpp:2735 +#: ../src/verbs.cpp:2822 msgid "LPE Tool Preferences" msgstr "即時路徑特效工具偏好設定" -#: ../src/verbs.cpp:2736 +#: ../src/verbs.cpp:2823 msgid "Open Preferences for the LPETool tool" msgstr "開啟即時路徑特效 (LPE) 工具的偏好設定" #. Zoom/View -#: ../src/verbs.cpp:2738 +#: ../src/verbs.cpp:2825 msgid "Zoom In" msgstr "放大" -#: ../src/verbs.cpp:2738 +#: ../src/verbs.cpp:2825 msgid "Zoom in" msgstr "放大" -#: ../src/verbs.cpp:2739 +#: ../src/verbs.cpp:2826 msgid "Zoom Out" msgstr "縮小" -#: ../src/verbs.cpp:2739 +#: ../src/verbs.cpp:2826 msgid "Zoom out" msgstr "縮小" -#: ../src/verbs.cpp:2740 +#: ../src/verbs.cpp:2827 msgid "_Rulers" msgstr "尺標(_R)" -#: ../src/verbs.cpp:2740 +#: ../src/verbs.cpp:2827 msgid "Show or hide the canvas rulers" msgstr "顯示或隱藏畫布尺標" -#: ../src/verbs.cpp:2741 +#: ../src/verbs.cpp:2828 msgid "Scroll_bars" msgstr "捲軸(_B)" -#: ../src/verbs.cpp:2741 +#: ../src/verbs.cpp:2828 msgid "Show or hide the canvas scrollbars" msgstr "顯示或隱藏畫布捲軸" -#: ../src/verbs.cpp:2742 -#, fuzzy +#: ../src/verbs.cpp:2829 msgid "Page _Grid" -msgstr "頁面寬度(_W)" +msgstr "頁面格線(_G)" -#: ../src/verbs.cpp:2742 -#, fuzzy +#: ../src/verbs.cpp:2829 msgid "Show or hide the page grid" -msgstr "顯示或隱藏格線" +msgstr "顯示或隱藏頁面格線" -#: ../src/verbs.cpp:2743 +#: ../src/verbs.cpp:2830 msgid "G_uides" msgstr "參考線(_U)" -#: ../src/verbs.cpp:2743 +#: ../src/verbs.cpp:2830 msgid "Show or hide guides (drag from a ruler to create a guide)" msgstr "顯示或隱藏參考線 (從尺標拖曳可建立參考線)" -#: ../src/verbs.cpp:2744 +#: ../src/verbs.cpp:2831 msgid "Enable snapping" msgstr "啟用貼齊" -#: ../src/verbs.cpp:2745 +#: ../src/verbs.cpp:2832 msgid "_Commands Bar" msgstr "命令列(_C)" -#: ../src/verbs.cpp:2745 +#: ../src/verbs.cpp:2832 msgid "Show or hide the Commands bar (under the menu)" msgstr "顯示或隱藏命令列 (位於選單下面)" -#: ../src/verbs.cpp:2746 +#: ../src/verbs.cpp:2833 msgid "Sn_ap Controls Bar" msgstr "貼齊控制列(_A)" -#: ../src/verbs.cpp:2746 +#: ../src/verbs.cpp:2833 msgid "Show or hide the snapping controls" msgstr "顯示或隱藏貼齊控制項目" -#: ../src/verbs.cpp:2747 +#: ../src/verbs.cpp:2834 msgid "T_ool Controls Bar" msgstr "工具控制列(_O)" -#: ../src/verbs.cpp:2747 +#: ../src/verbs.cpp:2834 msgid "Show or hide the Tool Controls bar" msgstr "顯示或隱藏工具控制列" -#: ../src/verbs.cpp:2748 +#: ../src/verbs.cpp:2835 msgid "_Toolbox" msgstr "工具箱(_T)" -#: ../src/verbs.cpp:2748 +#: ../src/verbs.cpp:2835 msgid "Show or hide the main toolbox (on the left)" msgstr "顯示或隱藏主要工具列 (位於視窗左邊)" -#: ../src/verbs.cpp:2749 +#: ../src/verbs.cpp:2836 msgid "_Palette" msgstr "調色盤(_P)" -#: ../src/verbs.cpp:2749 +#: ../src/verbs.cpp:2836 msgid "Show or hide the color palette" msgstr "顯示或隱藏調色盤" -#: ../src/verbs.cpp:2750 +#: ../src/verbs.cpp:2837 msgid "_Statusbar" msgstr "狀態列(_S)" -#: ../src/verbs.cpp:2750 +#: ../src/verbs.cpp:2837 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "顯示或隱藏狀態列 (位於視窗的底端)" -#: ../src/verbs.cpp:2751 +#: ../src/verbs.cpp:2838 msgid "Nex_t Zoom" msgstr "下一個畫面縮放(_T)" -#: ../src/verbs.cpp:2751 +#: ../src/verbs.cpp:2838 msgid "Next zoom (from the history of zooms)" msgstr "下一個畫面縮放 (從畫面縮放紀錄)" -#: ../src/verbs.cpp:2753 +#: ../src/verbs.cpp:2840 msgid "Pre_vious Zoom" msgstr "上一個畫面縮放(_V)" -#: ../src/verbs.cpp:2753 +#: ../src/verbs.cpp:2840 msgid "Previous zoom (from the history of zooms)" msgstr "上一個畫面縮放 (從畫面縮放紀錄)" -#: ../src/verbs.cpp:2755 +#: ../src/verbs.cpp:2842 msgid "Zoom 1:_1" msgstr "縮放1:_1 " -#: ../src/verbs.cpp:2755 +#: ../src/verbs.cpp:2842 msgid "Zoom to 1:1" msgstr "縮放成 1:1" -#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2844 msgid "Zoom 1:_2" msgstr "縮放 1:_2" -#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2844 msgid "Zoom to 1:2" msgstr "縮放成 1:2" -#: ../src/verbs.cpp:2759 +#: ../src/verbs.cpp:2846 msgid "_Zoom 2:1" msgstr "縮放 2:1(_Z)" -#: ../src/verbs.cpp:2759 +#: ../src/verbs.cpp:2846 msgid "Zoom to 2:1" msgstr "縮放成 2:1" -#: ../src/verbs.cpp:2762 +#: ../src/verbs.cpp:2849 msgid "_Fullscreen" msgstr "全螢幕(_F)" -#: ../src/verbs.cpp:2762 ../src/verbs.cpp:2764 +#: ../src/verbs.cpp:2849 ../src/verbs.cpp:2851 msgid "Stretch this document window to full screen" msgstr "將此文件視窗展開成全螢幕" -#: ../src/verbs.cpp:2764 -#, fuzzy +#: ../src/verbs.cpp:2851 msgid "Fullscreen & Focus Mode" -msgstr "切換專注模式(_F)" +msgstr "全螢幕 & 專注模式" -#: ../src/verbs.cpp:2767 +#: ../src/verbs.cpp:2854 msgid "Toggle _Focus Mode" msgstr "切換專注模式(_F)" -#: ../src/verbs.cpp:2767 +#: ../src/verbs.cpp:2854 msgid "Remove excess toolbars to focus on drawing" msgstr "移除多餘的工具列來專心繪畫" -#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2856 msgid "Duplic_ate Window" msgstr "再製視窗(_A)" -#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2856 msgid "Open a new window with the same document" msgstr "開啟相同文件的新視窗" -#: ../src/verbs.cpp:2771 +#: ../src/verbs.cpp:2858 msgid "_New View Preview" msgstr "新增檢視預覽(_N)" -#: ../src/verbs.cpp:2772 +#: ../src/verbs.cpp:2859 msgid "New View Preview" msgstr "新增檢視預覽" #. "view_new_preview" -#: ../src/verbs.cpp:2774 ../src/verbs.cpp:2782 +#: ../src/verbs.cpp:2861 ../src/verbs.cpp:2869 msgid "_Normal" msgstr "一般(_N)" -#: ../src/verbs.cpp:2775 +#: ../src/verbs.cpp:2862 msgid "Switch to normal display mode" msgstr "切換成一般顯示模式" -#: ../src/verbs.cpp:2776 +#: ../src/verbs.cpp:2863 msgid "No _Filters" msgstr "無濾鏡(_F)" -#: ../src/verbs.cpp:2777 +#: ../src/verbs.cpp:2864 msgid "Switch to normal display without filters" msgstr "切換成無濾鏡一般顯示模式" -#: ../src/verbs.cpp:2778 +#: ../src/verbs.cpp:2865 msgid "_Outline" msgstr "輪廓(_O)" -#: ../src/verbs.cpp:2779 +#: ../src/verbs.cpp:2866 msgid "Switch to outline (wireframe) display mode" msgstr "切換到輪廓 (線框) 顯示模式" #. new ZoomVerb(SP_VERB_VIEW_COLOR_MODE_PRINT_COLORS_PREVIEW, "ViewColorModePrintColorsPreview", N_("_Print Colors Preview"), #. N_("Switch to print colors preview mode"), NULL), -#: ../src/verbs.cpp:2780 ../src/verbs.cpp:2788 +#: ../src/verbs.cpp:2867 ../src/verbs.cpp:2875 msgid "_Toggle" msgstr "切換(_T)" -#: ../src/verbs.cpp:2781 +#: ../src/verbs.cpp:2868 msgid "Toggle between normal and outline display modes" msgstr "切換一般或輪廓顯示模式" -#: ../src/verbs.cpp:2783 +#: ../src/verbs.cpp:2870 msgid "Switch to normal color display mode" msgstr "切換成一般顯示模式" -#: ../src/verbs.cpp:2784 +#: ../src/verbs.cpp:2871 msgid "_Grayscale" msgstr "灰階(_G)" -#: ../src/verbs.cpp:2785 +#: ../src/verbs.cpp:2872 msgid "Switch to grayscale display mode" msgstr "切換到灰階顯示模式" -#: ../src/verbs.cpp:2789 +#: ../src/verbs.cpp:2876 msgid "Toggle between normal and grayscale color display modes" msgstr "切換一般或灰階顯示模式" -#: ../src/verbs.cpp:2791 +#: ../src/verbs.cpp:2878 msgid "Color-managed view" msgstr "色彩管理檢視" -#: ../src/verbs.cpp:2792 +#: ../src/verbs.cpp:2879 msgid "Toggle color-managed display for this document window" msgstr "切換此文件視窗的色彩管理顯示" -#: ../src/verbs.cpp:2794 +#: ../src/verbs.cpp:2881 msgid "Ico_n Preview..." msgstr "圖示預覽(_N)..." -#: ../src/verbs.cpp:2795 +#: ../src/verbs.cpp:2882 msgid "Open a window to preview objects at different icon resolutions" msgstr "開啟用不同的圖示解析度預覽物件的視窗" -#: ../src/verbs.cpp:2797 +#: ../src/verbs.cpp:2884 msgid "Zoom to fit page in window" msgstr "將頁面縮放成視窗大小" -#: ../src/verbs.cpp:2798 +#: ../src/verbs.cpp:2885 msgid "Page _Width" msgstr "頁面寬度(_W)" -#: ../src/verbs.cpp:2799 +#: ../src/verbs.cpp:2886 msgid "Zoom to fit page width in window" msgstr "將頁面寬度縮放成視窗大小" -#: ../src/verbs.cpp:2801 +#: ../src/verbs.cpp:2888 msgid "Zoom to fit drawing in window" msgstr "將繪圖部份縮放成視窗大小" -#: ../src/verbs.cpp:2803 +#: ../src/verbs.cpp:2890 msgid "Zoom to fit selection in window" msgstr "將選取區縮放成視窗大小" #. Dialogs -#: ../src/verbs.cpp:2806 -#, fuzzy +#: ../src/verbs.cpp:2893 msgid "P_references..." -msgstr "偏好設定" +msgstr "偏好設定(_R)..." -#: ../src/verbs.cpp:2807 +#: ../src/verbs.cpp:2894 msgid "Edit global Inkscape preferences" -msgstr "編輯整體 Inkscape 偏好設定" +msgstr "編輯總體 Inkscape 偏好設定" -#: ../src/verbs.cpp:2808 +#: ../src/verbs.cpp:2895 msgid "_Document Properties..." msgstr "文件屬性(_D)..." -#: ../src/verbs.cpp:2809 +#: ../src/verbs.cpp:2896 msgid "Edit properties of this document (to be saved with the document)" msgstr "編輯此文件的屬性 (和文件儲存在一起)" -#: ../src/verbs.cpp:2810 +#: ../src/verbs.cpp:2897 msgid "Document _Metadata..." msgstr "文件中繼資料(_M)..." -#: ../src/verbs.cpp:2811 +#: ../src/verbs.cpp:2898 msgid "Edit document metadata (to be saved with the document)" msgstr "編輯文件中繼資料 (和文件儲存在一起)" -#: ../src/verbs.cpp:2813 +#: ../src/verbs.cpp:2900 msgid "" "Edit objects' colors, gradients, arrowheads, and other fill and stroke " "properties..." msgstr "編輯物件的顏色、漸層、箭頭和其他填充及邊框屬性..." #. FIXME: Probably better to either use something from the icon naming spec or ship our own "select-font" icon -#: ../src/verbs.cpp:2815 +#: ../src/verbs.cpp:2902 msgid "Gl_yphs..." -msgstr "字(_Y)..." +msgstr "字形(_Y)..." -#: ../src/verbs.cpp:2816 +#: ../src/verbs.cpp:2903 msgid "Select characters from a glyphs palette" msgstr "從字版選擇字元" #. FIXME: Probably better to either use something from the icon naming spec or ship our own "select-color" icon #. TRANSLATORS: "Swatches" means: color samples -#: ../src/verbs.cpp:2819 +#: ../src/verbs.cpp:2906 msgid "S_watches..." msgstr "色票(_W)..." -#: ../src/verbs.cpp:2820 +#: ../src/verbs.cpp:2907 msgid "Select colors from a swatches palette" msgstr "從色票調色盤選擇顏色" -#: ../src/verbs.cpp:2821 +#: ../src/verbs.cpp:2908 msgid "S_ymbols..." -msgstr "" +msgstr "符號(_Y)..." -#: ../src/verbs.cpp:2822 -#, fuzzy +#: ../src/verbs.cpp:2909 msgid "Select symbol from a symbols palette" -msgstr "從色票調色盤選擇顏色" +msgstr "從符號調色盤中選擇符號" -#: ../src/verbs.cpp:2823 +#: ../src/verbs.cpp:2910 msgid "Transfor_m..." msgstr "變形(_M)..." -#: ../src/verbs.cpp:2824 +#: ../src/verbs.cpp:2911 msgid "Precisely control objects' transformations" msgstr "精確控制物件的變形" -#: ../src/verbs.cpp:2825 +#: ../src/verbs.cpp:2912 msgid "_Align and Distribute..." msgstr "對齊與分佈(_A)..." -#: ../src/verbs.cpp:2826 +#: ../src/verbs.cpp:2913 msgid "Align and distribute objects" msgstr "對齊和分佈物件" -#: ../src/verbs.cpp:2827 +#: ../src/verbs.cpp:2914 msgid "_Spray options..." msgstr "噴灑選項(_S)..." -#: ../src/verbs.cpp:2828 +#: ../src/verbs.cpp:2915 msgid "Some options for the spray" msgstr "噴灑的一些選項" -#: ../src/verbs.cpp:2829 +#: ../src/verbs.cpp:2916 msgid "Undo _History..." msgstr "復原記錄(_H)..." -#: ../src/verbs.cpp:2830 +#: ../src/verbs.cpp:2917 msgid "Undo History" msgstr "復原記錄" -#: ../src/verbs.cpp:2832 +#: ../src/verbs.cpp:2919 msgid "View and select font family, font size and other text properties" msgstr "檢視和選擇字族、字型大小和其他字型屬性" -#: ../src/verbs.cpp:2833 +#: ../src/verbs.cpp:2920 msgid "_XML Editor..." msgstr "_XML 編輯器..." -#: ../src/verbs.cpp:2834 +#: ../src/verbs.cpp:2921 msgid "View and edit the XML tree of the document" msgstr "顯示和編輯文件的 XML 樹狀內容" -#: ../src/verbs.cpp:2835 -#, fuzzy +#: ../src/verbs.cpp:2922 msgid "_Find/Replace..." -msgstr "尋找和取代文字(_R)..." +msgstr "尋找 / 取代文字(_F)..." -#: ../src/verbs.cpp:2836 +#: ../src/verbs.cpp:2923 msgid "Find objects in document" msgstr "尋找文件的物件" -#: ../src/verbs.cpp:2837 +#: ../src/verbs.cpp:2924 msgid "Find and _Replace Text..." msgstr "尋找和取代文字(_R)..." -#: ../src/verbs.cpp:2838 +#: ../src/verbs.cpp:2925 msgid "Find and replace text in document" msgstr "尋找和取代文件的文字" -#: ../src/verbs.cpp:2840 +#: ../src/verbs.cpp:2927 msgid "Check spelling of text in document" msgstr "檢查文件的文字拼寫" -#: ../src/verbs.cpp:2841 +#: ../src/verbs.cpp:2928 msgid "_Messages..." msgstr "訊息(_M)..." -#: ../src/verbs.cpp:2842 +#: ../src/verbs.cpp:2929 msgid "View debug messages" msgstr "檢視除錯訊息" -#: ../src/verbs.cpp:2843 +#: ../src/verbs.cpp:2930 msgid "Show/Hide D_ialogs" msgstr "顯示 / 隱藏對話窗(_I)" -#: ../src/verbs.cpp:2844 +#: ../src/verbs.cpp:2931 msgid "Show or hide all open dialogs" msgstr "顯示或隱藏所有開啟的對話窗" -#: ../src/verbs.cpp:2845 +#: ../src/verbs.cpp:2932 msgid "Create Tiled Clones..." msgstr "建立鋪排仿製物件..." -#: ../src/verbs.cpp:2846 +#: ../src/verbs.cpp:2933 msgid "" "Create multiple clones of selected object, arranging them into a pattern or " "scattering" msgstr "建立選取物件的多個仿製物件,將其排列成圖案或分散" -#: ../src/verbs.cpp:2847 +#: ../src/verbs.cpp:2934 msgid "_Object attributes..." msgstr "物件屬性(_O)..." -#: ../src/verbs.cpp:2848 +#: ../src/verbs.cpp:2935 msgid "Edit the object attributes..." msgstr "編輯物件屬性..." -#: ../src/verbs.cpp:2850 +#: ../src/verbs.cpp:2937 msgid "Edit the ID, locked and visible status, and other object properties" msgstr "編輯物件的 ID,鎖定和可見狀態,以及其他物件屬性" -#: ../src/verbs.cpp:2851 +#: ../src/verbs.cpp:2938 msgid "_Input Devices..." msgstr "輸入裝置(_I)..." -#: ../src/verbs.cpp:2852 +#: ../src/verbs.cpp:2939 msgid "Configure extended input devices, such as a graphics tablet" msgstr "設定延伸輸入裝置,例如繪圖板" -#: ../src/verbs.cpp:2853 +#: ../src/verbs.cpp:2940 msgid "_Extensions..." msgstr "擴充功能(_E)..." -#: ../src/verbs.cpp:2854 +#: ../src/verbs.cpp:2941 msgid "Query information about extensions" msgstr "查詢擴充功能的資訊" -#: ../src/verbs.cpp:2855 +#: ../src/verbs.cpp:2942 msgid "Layer_s..." msgstr "圖層(_S)..." -#: ../src/verbs.cpp:2856 +#: ../src/verbs.cpp:2943 msgid "View Layers" msgstr "檢視圖層" -#: ../src/verbs.cpp:2857 +#: ../src/verbs.cpp:2944 +msgid "Object_s..." +msgstr "物件(_S)..." + +#: ../src/verbs.cpp:2945 +msgid "View Objects" +msgstr "檢視物件" + +#: ../src/verbs.cpp:2946 +msgid "Selection se_ts..." +msgstr "選取集合(_T)..." + +#: ../src/verbs.cpp:2947 +msgid "View Tags" +msgstr "檢視標籤" + +#: ../src/verbs.cpp:2948 msgid "Path E_ffects ..." msgstr "路徑特效(_F)..." -#: ../src/verbs.cpp:2858 +#: ../src/verbs.cpp:2949 msgid "Manage, edit, and apply path effects" msgstr "管理、編輯和套用路徑特效" -#: ../src/verbs.cpp:2859 +#: ../src/verbs.cpp:2950 msgid "Filter _Editor..." msgstr "濾鏡編輯器(_E)..." -#: ../src/verbs.cpp:2860 +#: ../src/verbs.cpp:2951 msgid "Manage, edit, and apply SVG filters" msgstr "管理、編輯和套用 SVG 濾鏡" -#: ../src/verbs.cpp:2861 +#: ../src/verbs.cpp:2952 msgid "SVG Font Editor..." msgstr "SVG 字型編輯器..." -#: ../src/verbs.cpp:2862 +#: ../src/verbs.cpp:2953 msgid "Edit SVG fonts" msgstr "編輯 SVG 字型" -#: ../src/verbs.cpp:2863 +#: ../src/verbs.cpp:2954 msgid "Print Colors..." msgstr "列印色彩..." -#: ../src/verbs.cpp:2864 +#: ../src/verbs.cpp:2955 msgid "" "Select which color separations to render in Print Colors Preview rendermode" -msgstr "選擇用列印色彩預覽演算模式潤算的色彩分離" +msgstr "選擇用列印色彩預覽演算模式繪算的色彩分離" -#: ../src/verbs.cpp:2865 -#, fuzzy +#: ../src/verbs.cpp:2956 msgid "_Export PNG Image..." -msgstr "提取圖片..." +msgstr "匯出 PNG 圖片(_E)..." -#: ../src/verbs.cpp:2866 -#, fuzzy +#: ../src/verbs.cpp:2957 msgid "Export this document or a selection as a PNG image" -msgstr "將文件或選取區匯出成點陣圖" +msgstr "將文件或選取範圍匯出成 PNG 圖片" #. Help -#: ../src/verbs.cpp:2868 +#: ../src/verbs.cpp:2959 msgid "About E_xtensions" msgstr "關於擴充功能(_X)" -#: ../src/verbs.cpp:2869 +#: ../src/verbs.cpp:2960 msgid "Information on Inkscape extensions" msgstr "Inkscape 擴充功能資訊" -#: ../src/verbs.cpp:2870 +#: ../src/verbs.cpp:2961 msgid "About _Memory" msgstr "關於記憶體(_M)" -#: ../src/verbs.cpp:2871 +#: ../src/verbs.cpp:2962 msgid "Memory usage information" msgstr "記憶體使用資訊" -#: ../src/verbs.cpp:2872 +#: ../src/verbs.cpp:2963 msgid "_About Inkscape" msgstr "關於 Inkscape(_A)" -#: ../src/verbs.cpp:2873 +#: ../src/verbs.cpp:2964 msgid "Inkscape version, authors, license" msgstr "Inscape 版本、作者、授權" #. new HelpVerb(SP_VERB_SHOW_LICENSE, "ShowLicense", N_("_License"), #. N_("Distribution terms"), /*"show_license"*/"inkscape_options"), #. Tutorials -#: ../src/verbs.cpp:2878 +#: ../src/verbs.cpp:2969 msgid "Inkscape: _Basic" msgstr "Inkscape:基本(_B)" -#: ../src/verbs.cpp:2879 +#: ../src/verbs.cpp:2970 msgid "Getting started with Inkscape" msgstr "Inkscape 使用入門" #. "tutorial_basic" -#: ../src/verbs.cpp:2880 +#: ../src/verbs.cpp:2971 msgid "Inkscape: _Shapes" msgstr "Inkscape:形狀(_S)" -#: ../src/verbs.cpp:2881 +#: ../src/verbs.cpp:2972 msgid "Using shape tools to create and edit shapes" msgstr "使用形狀工具來建立和編輯形狀" -#: ../src/verbs.cpp:2882 +#: ../src/verbs.cpp:2973 msgid "Inkscape: _Advanced" msgstr "Inkscape:進階(_A)" -#: ../src/verbs.cpp:2883 +#: ../src/verbs.cpp:2974 msgid "Advanced Inkscape topics" msgstr "進階的 Inkscape 教學" #. "tutorial_advanced" #. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/verbs.cpp:2885 +#: ../src/verbs.cpp:2976 msgid "Inkscape: T_racing" msgstr "Inkscape:描繪(_R)" -#: ../src/verbs.cpp:2886 +#: ../src/verbs.cpp:2977 msgid "Using bitmap tracing" msgstr "使用點陣圖描繪功能" #. "tutorial_tracing" -#: ../src/verbs.cpp:2887 -#, fuzzy +#: ../src/verbs.cpp:2978 msgid "Inkscape: Tracing Pixel Art" -msgstr "Inkscape:描繪(_R)" +msgstr "Inkscape:描繪像素圖案" -#: ../src/verbs.cpp:2888 +#: ../src/verbs.cpp:2979 msgid "Using Trace Pixel Art dialog" -msgstr "" +msgstr "使用描繪像素圖案對話窗" -#: ../src/verbs.cpp:2889 +#: ../src/verbs.cpp:2980 msgid "Inkscape: _Calligraphy" msgstr "Inkscape:書法(_C)" -#: ../src/verbs.cpp:2890 +#: ../src/verbs.cpp:2981 msgid "Using the Calligraphy pen tool" msgstr "使用美工筆工具" -#: ../src/verbs.cpp:2891 +#: ../src/verbs.cpp:2982 msgid "Inkscape: _Interpolate" msgstr "Inkscape:內插(_I)" -#: ../src/verbs.cpp:2892 +#: ../src/verbs.cpp:2983 msgid "Using the interpolate extension" msgstr "使用內插擴充功能" #. "tutorial_interpolate" -#: ../src/verbs.cpp:2893 +#: ../src/verbs.cpp:2984 msgid "_Elements of Design" msgstr "設計要素(_E)" -#: ../src/verbs.cpp:2894 +#: ../src/verbs.cpp:2985 msgid "Principles of design in the tutorial form" msgstr "教學慣常形式的設計原則" #. "tutorial_design" -#: ../src/verbs.cpp:2895 +#: ../src/verbs.cpp:2986 msgid "_Tips and Tricks" msgstr "技巧和祕訣(_T)" -#: ../src/verbs.cpp:2896 +#: ../src/verbs.cpp:2987 msgid "Miscellaneous tips and tricks" msgstr "各種技巧與祕訣" #. "tutorial_tips" #. Effect -- renamed Extension -#: ../src/verbs.cpp:2899 +#: ../src/verbs.cpp:2990 msgid "Previous Exte_nsion" msgstr "上一個擴充功能(_N)" -#: ../src/verbs.cpp:2900 +#: ../src/verbs.cpp:2991 msgid "Repeat the last extension with the same settings" msgstr "以相同設定值重複上次的擴充功能" -#: ../src/verbs.cpp:2901 +#: ../src/verbs.cpp:2992 msgid "_Previous Extension Settings..." msgstr "上一個擴充功能設定值(_P)..." -#: ../src/verbs.cpp:2902 +#: ../src/verbs.cpp:2993 msgid "Repeat the last extension with new settings" msgstr "以新設定值重複上次的擴充功能" -#: ../src/verbs.cpp:2906 +#: ../src/verbs.cpp:2997 msgid "Fit the page to the current selection" msgstr "將頁面調整成目前選取區大小" -#: ../src/verbs.cpp:2908 +#: ../src/verbs.cpp:2999 msgid "Fit the page to the drawing" msgstr "將頁面調整成繪畫部份大小" -#: ../src/verbs.cpp:2910 +#: ../src/verbs.cpp:3001 msgid "" "Fit the page to the current selection or the drawing if there is no selection" msgstr "如果沒有選取,頁面會調整成目前選取區或繪圖部份的大小" #. LockAndHide -#: ../src/verbs.cpp:2912 +#: ../src/verbs.cpp:3003 msgid "Unlock All" msgstr "全部解除鎖定" -#: ../src/verbs.cpp:2914 +#: ../src/verbs.cpp:3005 msgid "Unlock All in All Layers" msgstr "解除全部圖層中的所有鎖定" -#: ../src/verbs.cpp:2916 +#: ../src/verbs.cpp:3007 msgid "Unhide All" msgstr "全部取消隱藏" -#: ../src/verbs.cpp:2918 +#: ../src/verbs.cpp:3009 msgid "Unhide All in All Layers" msgstr "取消全部圖層中的所有隱藏" -#: ../src/verbs.cpp:2922 +#: ../src/verbs.cpp:3013 msgid "Link an ICC color profile" msgstr "連結 ICC 色彩描述檔" -#: ../src/verbs.cpp:2923 +#: ../src/verbs.cpp:3014 msgid "Remove Color Profile" msgstr "移除色彩描述檔" -#: ../src/verbs.cpp:2924 +#: ../src/verbs.cpp:3015 msgid "Remove a linked ICC color profile" msgstr "移除連結的 ICC 色彩描述檔" -#: ../src/verbs.cpp:2927 -#, fuzzy +#: ../src/verbs.cpp:3018 msgid "Add External Script" -msgstr "加入外部腳本..." +msgstr "加入外部腳本" -#: ../src/verbs.cpp:2927 -#, fuzzy +#: ../src/verbs.cpp:3018 msgid "Add an external script" -msgstr "加入外部腳本..." +msgstr "加入外部的腳本" -#: ../src/verbs.cpp:2929 -#, fuzzy +#: ../src/verbs.cpp:3020 msgid "Add Embedded Script" -msgstr "加入內嵌腳本..." +msgstr "加入內嵌腳本" -#: ../src/verbs.cpp:2929 -#, fuzzy +#: ../src/verbs.cpp:3020 msgid "Add an embedded script" -msgstr "加入內嵌腳本..." +msgstr "加入內嵌的腳本" -#: ../src/verbs.cpp:2931 -#, fuzzy +#: ../src/verbs.cpp:3022 msgid "Edit Embedded Script" msgstr "編輯內嵌腳本" -#: ../src/verbs.cpp:2931 -#, fuzzy +#: ../src/verbs.cpp:3022 msgid "Edit an embedded script" -msgstr "編輯內嵌腳本" +msgstr "編輯內嵌的腳本" -#: ../src/verbs.cpp:2933 -#, fuzzy +#: ../src/verbs.cpp:3024 msgid "Remove External Script" msgstr "移除外部腳本" -#: ../src/verbs.cpp:2933 -#, fuzzy +#: ../src/verbs.cpp:3024 msgid "Remove an external script" -msgstr "移除外部腳本" +msgstr "移除外部的腳本" -#: ../src/verbs.cpp:2935 -#, fuzzy +#: ../src/verbs.cpp:3026 msgid "Remove Embedded Script" msgstr "移除內嵌腳本" -#: ../src/verbs.cpp:2935 -#, fuzzy +#: ../src/verbs.cpp:3026 msgid "Remove an embedded script" -msgstr "移除內嵌腳本" +msgstr "移除內嵌的腳本" -#: ../src/verbs.cpp:2957 ../src/verbs.cpp:2958 -#, fuzzy +#: ../src/verbs.cpp:3048 ../src/verbs.cpp:3049 msgid "Center on horizontal and vertical axis" -msgstr "橫軸置中" +msgstr "橫軸和縱軸的中心" -#: ../src/widgets/arc-toolbar.cpp:131 +#: ../src/widgets/arc-toolbar.cpp:132 msgid "Arc: Change start/end" msgstr "弧:變更起點 / 終點" -#: ../src/widgets/arc-toolbar.cpp:197 +#: ../src/widgets/arc-toolbar.cpp:198 msgid "Arc: Change open/closed" msgstr "弧:變更打開 / 閉合" -#: ../src/widgets/arc-toolbar.cpp:288 ../src/widgets/arc-toolbar.cpp:317 -#: ../src/widgets/rect-toolbar.cpp:258 ../src/widgets/rect-toolbar.cpp:296 +#: ../src/widgets/arc-toolbar.cpp:289 ../src/widgets/arc-toolbar.cpp:319 +#: ../src/widgets/rect-toolbar.cpp:261 ../src/widgets/rect-toolbar.cpp:300 #: ../src/widgets/spiral-toolbar.cpp:214 ../src/widgets/spiral-toolbar.cpp:238 -#: ../src/widgets/star-toolbar.cpp:383 ../src/widgets/star-toolbar.cpp:444 +#: ../src/widgets/star-toolbar.cpp:384 ../src/widgets/star-toolbar.cpp:446 msgid "New:" msgstr "新增:" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("Average:")); -#: ../src/widgets/arc-toolbar.cpp:291 ../src/widgets/arc-toolbar.cpp:302 -#: ../src/widgets/rect-toolbar.cpp:266 ../src/widgets/rect-toolbar.cpp:284 +#: ../src/widgets/arc-toolbar.cpp:292 ../src/widgets/arc-toolbar.cpp:303 +#: ../src/widgets/rect-toolbar.cpp:269 ../src/widgets/rect-toolbar.cpp:287 #: ../src/widgets/spiral-toolbar.cpp:216 ../src/widgets/spiral-toolbar.cpp:227 -#: ../src/widgets/star-toolbar.cpp:385 +#: ../src/widgets/star-toolbar.cpp:386 msgid "Change:" msgstr "變更:" -#: ../src/widgets/arc-toolbar.cpp:326 +#: ../src/widgets/arc-toolbar.cpp:328 msgid "Start:" msgstr "起點:" -#: ../src/widgets/arc-toolbar.cpp:327 +#: ../src/widgets/arc-toolbar.cpp:329 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "從水平到弧形起點的角度 (單位為度)" -#: ../src/widgets/arc-toolbar.cpp:339 +#: ../src/widgets/arc-toolbar.cpp:341 msgid "End:" msgstr "終點:" -#: ../src/widgets/arc-toolbar.cpp:340 +#: ../src/widgets/arc-toolbar.cpp:342 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "從水平到弧形終點的角度 (單位為度)" -#: ../src/widgets/arc-toolbar.cpp:356 +#: ../src/widgets/arc-toolbar.cpp:358 msgid "Closed arc" msgstr "閉合弧形" -#: ../src/widgets/arc-toolbar.cpp:357 +#: ../src/widgets/arc-toolbar.cpp:359 msgid "Switch to segment (closed shape with two radii)" msgstr "切換為線段 (用兩個半徑變成封閉的形狀)" -#: ../src/widgets/arc-toolbar.cpp:363 +#: ../src/widgets/arc-toolbar.cpp:365 msgid "Open Arc" msgstr "打開弧形" -#: ../src/widgets/arc-toolbar.cpp:364 +#: ../src/widgets/arc-toolbar.cpp:366 msgid "Switch to arc (unclosed shape)" msgstr "切換為弧形 (未閉合形狀)" -#: ../src/widgets/arc-toolbar.cpp:387 +#: ../src/widgets/arc-toolbar.cpp:389 msgid "Make whole" msgstr "完整形狀" -#: ../src/widgets/arc-toolbar.cpp:388 +#: ../src/widgets/arc-toolbar.cpp:390 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "讓此形狀變成完整橢圓形,而不是弧形或線段" #. TODO: use the correct axis here, too -#: ../src/widgets/box3d-toolbar.cpp:232 +#: ../src/widgets/box3d-toolbar.cpp:233 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "立方體:變更透視 (無限軸的角度)" -#: ../src/widgets/box3d-toolbar.cpp:299 +#: ../src/widgets/box3d-toolbar.cpp:302 msgid "Angle in X direction" msgstr "X 方向的角度" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:301 +#: ../src/widgets/box3d-toolbar.cpp:304 msgid "Angle of PLs in X direction" msgstr "平行線 (PLs) X 方向的角度" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:323 +#: ../src/widgets/box3d-toolbar.cpp:326 msgid "State of VP in X direction" msgstr "消逝點 (VP) X 方向的狀態" -#: ../src/widgets/box3d-toolbar.cpp:324 +#: ../src/widgets/box3d-toolbar.cpp:327 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" msgstr "切換消逝點 (VP) X 方向為「有限」或「無限」(=平行)" -#: ../src/widgets/box3d-toolbar.cpp:339 +#: ../src/widgets/box3d-toolbar.cpp:342 msgid "Angle in Y direction" msgstr "Y 方向的角度" -#: ../src/widgets/box3d-toolbar.cpp:339 +#: ../src/widgets/box3d-toolbar.cpp:342 msgid "Angle Y:" msgstr "角度 Y:" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:341 +#: ../src/widgets/box3d-toolbar.cpp:344 msgid "Angle of PLs in Y direction" msgstr "平行線 (PLs) Y 方向的角度" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:362 +#: ../src/widgets/box3d-toolbar.cpp:365 msgid "State of VP in Y direction" msgstr "消逝點 (VP) Y 方向的狀態" -#: ../src/widgets/box3d-toolbar.cpp:363 +#: ../src/widgets/box3d-toolbar.cpp:366 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" msgstr "切換消逝點 (VP) Y 方向為「有限」或「無限」(=平行)" -#: ../src/widgets/box3d-toolbar.cpp:378 +#: ../src/widgets/box3d-toolbar.cpp:381 msgid "Angle in Z direction" msgstr "Z 方向的角度" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:380 +#: ../src/widgets/box3d-toolbar.cpp:383 msgid "Angle of PLs in Z direction" msgstr "平行線 (PLs) Z 方向的角度" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:401 +#: ../src/widgets/box3d-toolbar.cpp:404 msgid "State of VP in Z direction" msgstr "消逝點 (VP) Z 方向的狀態" -#: ../src/widgets/box3d-toolbar.cpp:402 +#: ../src/widgets/box3d-toolbar.cpp:405 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" msgstr "切換消逝點 (VP) Z 方向為「有限」或「無限」(=平行)" @@ -24675,7 +26360,7 @@ msgstr "(髮絲線)" #. Scale #: ../src/widgets/calligraphy-toolbar.cpp:427 #: ../src/widgets/calligraphy-toolbar.cpp:460 -#: ../src/widgets/eraser-toolbar.cpp:125 ../src/widgets/pencil-toolbar.cpp:269 +#: ../src/widgets/eraser-toolbar.cpp:125 ../src/widgets/pencil-toolbar.cpp:275 #: ../src/widgets/spray-toolbar.cpp:113 ../src/widgets/spray-toolbar.cpp:129 #: ../src/widgets/spray-toolbar.cpp:145 ../src/widgets/spray-toolbar.cpp:205 #: ../src/widgets/spray-toolbar.cpp:235 ../src/widgets/spray-toolbar.cpp:253 @@ -24931,14 +26616,12 @@ msgid "Choose a preset" msgstr "選擇外形" #: ../src/widgets/calligraphy-toolbar.cpp:622 -#, fuzzy msgid "Add/Edit Profile" -msgstr "連結描述檔" +msgstr "加入/編輯描述檔" #: ../src/widgets/calligraphy-toolbar.cpp:623 -#, fuzzy msgid "Add or edit calligraphic profile" -msgstr "新增書法筆畫的樣式" +msgstr "加入或編輯書法描述檔" #: ../src/widgets/connector-toolbar.cpp:120 msgid "Set connector type: orthogonal" @@ -25054,64 +26737,58 @@ msgstr "" "可移動或變形物件。" #: ../src/widgets/desktop-widget.cpp:828 -#, fuzzy msgid "grayscale" msgstr "灰階" #: ../src/widgets/desktop-widget.cpp:829 -#, fuzzy msgid ", grayscale" -msgstr "灰階" +msgstr ",灰階" #: ../src/widgets/desktop-widget.cpp:830 -#, fuzzy msgid "print colors preview" -msgstr "列印色彩預覽(_P)" +msgstr "列印色彩預覽" #: ../src/widgets/desktop-widget.cpp:831 -#, fuzzy msgid ", print colors preview" -msgstr "列印色彩預覽(_P)" +msgstr ",列印色彩預覽" #: ../src/widgets/desktop-widget.cpp:832 -#, fuzzy msgid "outline" -msgstr "外框" +msgstr "輪廓" #: ../src/widgets/desktop-widget.cpp:833 -#, fuzzy msgid "no filters" -msgstr "無濾鏡(_F)" +msgstr "無濾鏡" #: ../src/widgets/desktop-widget.cpp:860 -#, fuzzy, c-format +#, c-format msgid "%s%s: %d (%s%s) - Inkscape" -msgstr "%s%s: %d %s- Inkscape" +msgstr "%s%s: %d (%s%s) - Inkscape" #: ../src/widgets/desktop-widget.cpp:862 ../src/widgets/desktop-widget.cpp:866 -#, fuzzy, c-format +#, c-format msgid "%s%s: %d (%s) - Inkscape" -msgstr "%s%s: %d %s- Inkscape" +msgstr "%s%s: %d (%s) - Inkscape" #: ../src/widgets/desktop-widget.cpp:868 -#, fuzzy, c-format +#, c-format msgid "%s%s: %d - Inkscape" -msgstr "%s%s: %d %s- Inkscape" +msgstr "%s%s: %d - Inkscape" #: ../src/widgets/desktop-widget.cpp:874 -#, fuzzy, c-format +#, c-format msgid "%s%s (%s%s) - Inkscape" -msgstr "%s%s %s- Inkscape" +msgstr "%s%s (%s%s) - Inkscape" #: ../src/widgets/desktop-widget.cpp:876 ../src/widgets/desktop-widget.cpp:880 -#, fuzzy, c-format +#, c-format msgid "%s%s (%s) - Inkscape" -msgstr "%s%s %s- Inkscape" +msgstr "%s%s (%s) - Inkscape" #: ../src/widgets/desktop-widget.cpp:882 -#, fuzzy, c-format +#, c-format msgid "%s%s - Inkscape" -msgstr "%s%s %s- Inkscape" +msgstr "%s%s - Inkscape" #: ../src/widgets/desktop-widget.cpp:1051 msgid "Color-managed display is enabled in this window" @@ -25162,19 +26839,19 @@ msgstr "備註:" #: ../src/widgets/dropper-toolbar.cpp:90 msgid "Pick opacity" -msgstr "點取不透明度" +msgstr "汲取不透明度" #: ../src/widgets/dropper-toolbar.cpp:91 msgid "" "Pick both the color and the alpha (transparency) under cursor; otherwise, " "pick only the visible color premultiplied by alpha" msgstr "" -"同時取得游標底下的顏色和透明 (alpha);否則,只會取得用透明 (alpha) 預先乘以可" -"見顏色的數值" +"同時汲取游標底下的顏色和透明 (alpha);否則,只會汲取到用透明 (alpha) 預先乘以" +"可見顏色的數值" #: ../src/widgets/dropper-toolbar.cpp:94 msgid "Pick" -msgstr "點取" +msgstr "汲取" #: ../src/widgets/dropper-toolbar.cpp:103 msgid "Assign opacity" @@ -25237,51 +26914,46 @@ msgstr "設定填充圖樣" msgid "Set pattern on stroke" msgstr "設定邊框圖樣" -#: ../src/widgets/font-selector.cpp:134 ../src/widgets/text-toolbar.cpp:956 -#: ../src/widgets/text-toolbar.cpp:1270 -#, fuzzy +#: ../src/widgets/font-selector.cpp:120 ../src/widgets/text-toolbar.cpp:958 +#: ../src/widgets/text-toolbar.cpp:1272 msgid "Font size" -msgstr "字型大小:" +msgstr "字型大小" #. Family frame -#: ../src/widgets/font-selector.cpp:148 +#: ../src/widgets/font-selector.cpp:134 msgid "Font family" msgstr "字族" #. Style frame -#: ../src/widgets/font-selector.cpp:192 +#: ../src/widgets/font-selector.cpp:179 msgctxt "Font selector" msgid "Style" msgstr "樣式" -#: ../src/widgets/font-selector.cpp:224 -#, fuzzy +#: ../src/widgets/font-selector.cpp:211 msgid "Face" msgstr "面" -#: ../src/widgets/font-selector.cpp:253 ../share/extensions/dots.inx.h:3 +#: ../src/widgets/font-selector.cpp:240 ../share/extensions/dots.inx.h:3 msgid "Font size:" msgstr "字型大小:" -#: ../src/widgets/gradient-selector.cpp:214 -#, fuzzy +#: ../src/widgets/gradient-selector.cpp:196 msgid "Create a duplicate gradient" -msgstr "建立和編輯漸層" +msgstr "複製漸層" -#: ../src/widgets/gradient-selector.cpp:230 -#, fuzzy +#: ../src/widgets/gradient-selector.cpp:212 msgid "Edit gradient" -msgstr "放射漸層" +msgstr "編輯漸層" -#: ../src/widgets/gradient-selector.cpp:306 -#: ../src/widgets/paint-selector.cpp:244 +#: ../src/widgets/gradient-selector.cpp:288 +#: ../src/widgets/paint-selector.cpp:236 msgid "Swatch" msgstr "色票" -#: ../src/widgets/gradient-selector.cpp:356 -#, fuzzy +#: ../src/widgets/gradient-selector.cpp:338 msgid "Rename gradient" -msgstr "線性漸層" +msgstr "重新命名漸層" #: ../src/widgets/gradient-toolbar.cpp:156 #: ../src/widgets/gradient-toolbar.cpp:169 @@ -25299,7 +26971,7 @@ msgid "Multiple stops" msgstr "多個停止點" #: ../src/widgets/gradient-toolbar.cpp:774 -#: ../src/widgets/gradient-vector.cpp:629 +#: ../src/widgets/gradient-vector.cpp:609 msgid "No stops in gradient" msgstr "漸層沒有停止點" @@ -25312,7 +26984,7 @@ msgid "Set gradient repeat" msgstr "設定漸層重複" #: ../src/widgets/gradient-toolbar.cpp:987 -#: ../src/widgets/gradient-vector.cpp:740 +#: ../src/widgets/gradient-vector.cpp:720 msgid "Change gradient stop offset" msgstr "變更漸層停止點偏移" @@ -25333,32 +27005,32 @@ msgid "Create radial (elliptic or circular) gradient" msgstr "建立放射狀 (橢圓或圓形) 漸層" #: ../src/widgets/gradient-toolbar.cpp:1041 -#: ../src/widgets/mesh-toolbar.cpp:211 +#: ../src/widgets/mesh-toolbar.cpp:207 msgid "New:" msgstr "新增:" #: ../src/widgets/gradient-toolbar.cpp:1064 -#: ../src/widgets/mesh-toolbar.cpp:234 +#: ../src/widgets/mesh-toolbar.cpp:230 msgid "fill" msgstr "填充" #: ../src/widgets/gradient-toolbar.cpp:1064 -#: ../src/widgets/mesh-toolbar.cpp:234 +#: ../src/widgets/mesh-toolbar.cpp:230 msgid "Create gradient in the fill" msgstr "在填充中建立漸層" #: ../src/widgets/gradient-toolbar.cpp:1068 -#: ../src/widgets/mesh-toolbar.cpp:238 +#: ../src/widgets/mesh-toolbar.cpp:234 msgid "stroke" msgstr "邊框" #: ../src/widgets/gradient-toolbar.cpp:1068 -#: ../src/widgets/mesh-toolbar.cpp:238 +#: ../src/widgets/mesh-toolbar.cpp:234 msgid "Create gradient in the stroke" msgstr "在邊框中建立漸層" #: ../src/widgets/gradient-toolbar.cpp:1071 -#: ../src/widgets/mesh-toolbar.cpp:241 +#: ../src/widgets/mesh-toolbar.cpp:237 msgid "on:" msgstr "目標:" @@ -25367,21 +27039,19 @@ msgid "Select" msgstr "選取" #: ../src/widgets/gradient-toolbar.cpp:1096 -#, fuzzy msgid "Choose a gradient" -msgstr "選擇外形" +msgstr "選擇漸層" #: ../src/widgets/gradient-toolbar.cpp:1097 msgid "Select:" msgstr "選取:" -#: ../src/widgets/gradient-toolbar.cpp:1115 -#, fuzzy -msgid "Reflected" -msgstr "反向" +#: ../src/widgets/gradient-toolbar.cpp:1112 +msgctxt "Gradient repeat type" +msgid "None" +msgstr "無" #: ../src/widgets/gradient-toolbar.cpp:1118 -#, fuzzy msgid "Direct" msgstr "正向" @@ -25405,9 +27075,8 @@ msgid "Repeat:" msgstr "重複:" #: ../src/widgets/gradient-toolbar.cpp:1141 -#, fuzzy msgid "No stops" -msgstr "無邊框" +msgstr "無停止點" #: ../src/widgets/gradient-toolbar.cpp:1143 msgid "Stops" @@ -25418,14 +27087,12 @@ msgid "Select a stop for the current gradient" msgstr "選取目前漸層的停止點" #: ../src/widgets/gradient-toolbar.cpp:1144 -#, fuzzy msgid "Stops:" -msgstr "停止點" +msgstr "停止點:" #. Label #: ../src/widgets/gradient-toolbar.cpp:1156 -#: ../src/widgets/gradient-vector.cpp:926 -#, fuzzy +#: ../src/widgets/gradient-vector.cpp:906 msgctxt "Gradient" msgid "Offset:" msgstr "偏移:" @@ -25441,64 +27108,59 @@ msgstr "插入新停止點" #: ../src/widgets/gradient-toolbar.cpp:1188 #: ../src/widgets/gradient-toolbar.cpp:1189 -#: ../src/widgets/gradient-vector.cpp:908 +#: ../src/widgets/gradient-vector.cpp:888 msgid "Delete stop" msgstr "刪除停止點" -#: ../src/widgets/gradient-toolbar.cpp:1202 -msgid "Reverse" -msgstr "反轉" - #: ../src/widgets/gradient-toolbar.cpp:1203 msgid "Reverse the direction of the gradient" msgstr "反轉漸層的方向" #: ../src/widgets/gradient-toolbar.cpp:1217 -#, fuzzy msgid "Link gradients" -msgstr "線性漸層" +msgstr "連結漸層" #: ../src/widgets/gradient-toolbar.cpp:1218 msgid "Link gradients to change all related gradients" -msgstr "" +msgstr "連結漸層以改變全部相關聯的漸層" -#: ../src/widgets/gradient-vector.cpp:332 -#: ../src/widgets/paint-selector.cpp:922 +#: ../src/widgets/gradient-vector.cpp:312 +#: ../src/widgets/paint-selector.cpp:947 #: ../src/widgets/stroke-marker-selector.cpp:154 msgid "No document selected" msgstr "沒有選擇文件" -#: ../src/widgets/gradient-vector.cpp:336 +#: ../src/widgets/gradient-vector.cpp:316 msgid "No gradients in document" msgstr "文件裡沒有漸層" -#: ../src/widgets/gradient-vector.cpp:340 +#: ../src/widgets/gradient-vector.cpp:320 msgid "No gradient selected" msgstr "沒有選擇漸層" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:903 +#: ../src/widgets/gradient-vector.cpp:883 msgid "Add stop" msgstr "加入停止點" -#: ../src/widgets/gradient-vector.cpp:906 +#: ../src/widgets/gradient-vector.cpp:886 msgid "Add another control stop to gradient" msgstr "加入其他控制停止點到漸層" -#: ../src/widgets/gradient-vector.cpp:911 +#: ../src/widgets/gradient-vector.cpp:891 msgid "Delete current control stop from gradient" msgstr "從漸層刪除目前的控制停止點" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:979 +#: ../src/widgets/gradient-vector.cpp:959 msgid "Stop Color" msgstr "停止點顏色" -#: ../src/widgets/gradient-vector.cpp:1007 +#: ../src/widgets/gradient-vector.cpp:987 msgid "Gradient editor" msgstr "漸層編輯器" -#: ../src/widgets/gradient-vector.cpp:1307 +#: ../src/widgets/gradient-vector.cpp:1287 msgid "Change gradient stop color" msgstr "變更漸層停止點顏色" @@ -25518,60 +27180,60 @@ msgstr "打開終點" msgid "Open both" msgstr "打開兩端" -#: ../src/widgets/lpe-toolbar.cpp:298 +#: ../src/widgets/lpe-toolbar.cpp:301 msgid "All inactive" msgstr "所有非使用中的工具" -#: ../src/widgets/lpe-toolbar.cpp:299 +#: ../src/widgets/lpe-toolbar.cpp:302 msgid "No geometric tool is active" msgstr "沒有使用中的幾何圖形工具" -#: ../src/widgets/lpe-toolbar.cpp:332 +#: ../src/widgets/lpe-toolbar.cpp:335 msgid "Show limiting bounding box" msgstr "顯示限制邊界框" -#: ../src/widgets/lpe-toolbar.cpp:333 +#: ../src/widgets/lpe-toolbar.cpp:336 msgid "Show bounding box (used to cut infinite lines)" msgstr "顯示邊界框 (用於剪切無限長直線)" -#: ../src/widgets/lpe-toolbar.cpp:344 +#: ../src/widgets/lpe-toolbar.cpp:347 msgid "Get limiting bounding box from selection" msgstr "從選取區中取得限制邊界框" -#: ../src/widgets/lpe-toolbar.cpp:345 +#: ../src/widgets/lpe-toolbar.cpp:348 msgid "" "Set limiting bounding box (used to cut infinite lines) to the bounding box " "of current selection" msgstr "將限制邊界框 (用於剪切無限長的直線) 設為目前選取區的邊界框" -#: ../src/widgets/lpe-toolbar.cpp:357 +#: ../src/widgets/lpe-toolbar.cpp:360 msgid "Choose a line segment type" msgstr "選擇直線線段類型" -#: ../src/widgets/lpe-toolbar.cpp:373 +#: ../src/widgets/lpe-toolbar.cpp:376 msgid "Display measuring info" msgstr "顯示測量資訊" -#: ../src/widgets/lpe-toolbar.cpp:374 +#: ../src/widgets/lpe-toolbar.cpp:377 msgid "Display measuring info for selected items" msgstr "顯示選取項目的測量資訊" #. Add the units menu. -#: ../src/widgets/lpe-toolbar.cpp:384 ../src/widgets/node-toolbar.cpp:613 -#: ../src/widgets/paintbucket-toolbar.cpp:166 -#: ../src/widgets/rect-toolbar.cpp:375 ../src/widgets/select-toolbar.cpp:536 +#: ../src/widgets/lpe-toolbar.cpp:387 ../src/widgets/node-toolbar.cpp:613 +#: ../src/widgets/paintbucket-toolbar.cpp:168 +#: ../src/widgets/rect-toolbar.cpp:379 ../src/widgets/select-toolbar.cpp:538 msgid "Units" msgstr "單位" -#: ../src/widgets/lpe-toolbar.cpp:394 +#: ../src/widgets/lpe-toolbar.cpp:397 msgid "Open LPE dialog" msgstr "開啟即時路徑特效對話窗" -#: ../src/widgets/lpe-toolbar.cpp:395 +#: ../src/widgets/lpe-toolbar.cpp:398 msgid "Open LPE dialog (to adapt parameters numerically)" msgstr "開啟即時路徑特效對話窗 (調整參數)" -#: ../src/widgets/measure-toolbar.cpp:86 ../src/widgets/text-toolbar.cpp:1273 +#: ../src/widgets/measure-toolbar.cpp:86 ../src/widgets/text-toolbar.cpp:1275 msgid "Font Size" msgstr "字型大小" @@ -25588,84 +27250,72 @@ msgstr "測量標籤使用的字型大小" msgid "The units to be used for the measurements" msgstr "用於測量的單位" -#: ../src/widgets/mesh-toolbar.cpp:204 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:200 msgid "normal" msgstr "標準" -#: ../src/widgets/mesh-toolbar.cpp:204 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:200 msgid "Create mesh gradient" -msgstr "建立線性漸層" +msgstr "建立網面漸層" -#: ../src/widgets/mesh-toolbar.cpp:208 +#: ../src/widgets/mesh-toolbar.cpp:204 msgid "conical" -msgstr "" +msgstr "圓錐" -#: ../src/widgets/mesh-toolbar.cpp:208 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:204 msgid "Create conical gradient" -msgstr "建立線性漸層" +msgstr "建立圓錐形漸層" -#: ../src/widgets/mesh-toolbar.cpp:263 +#: ../src/widgets/mesh-toolbar.cpp:259 msgid "Rows" msgstr "列" -#: ../src/widgets/mesh-toolbar.cpp:263 +#: ../src/widgets/mesh-toolbar.cpp:259 #: ../share/extensions/guides_creator.inx.h:5 #: ../share/extensions/layout_nup.inx.h:12 msgid "Rows:" msgstr "列數:" -#: ../src/widgets/mesh-toolbar.cpp:263 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:259 msgid "Number of rows in new mesh" -msgstr "列數" +msgstr "新網面的列數" -#: ../src/widgets/mesh-toolbar.cpp:279 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:275 msgid "Columns" -msgstr "欄(_C):" +msgstr "欄" -#: ../src/widgets/mesh-toolbar.cpp:279 +#: ../src/widgets/mesh-toolbar.cpp:275 #: ../share/extensions/guides_creator.inx.h:4 -#, fuzzy msgid "Columns:" -msgstr "欄(_C):" +msgstr "欄數:" -#: ../src/widgets/mesh-toolbar.cpp:279 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:275 msgid "Number of columns in new mesh" -msgstr "欄數" +msgstr "新網面的欄數" -#: ../src/widgets/mesh-toolbar.cpp:293 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:289 msgid "Edit Fill" -msgstr "編輯填色..." +msgstr "編輯填色" -#: ../src/widgets/mesh-toolbar.cpp:294 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:290 msgid "Edit fill mesh" -msgstr "編輯填色..." +msgstr "編輯填色網面" -#: ../src/widgets/mesh-toolbar.cpp:305 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:301 msgid "Edit Stroke" -msgstr "編輯邊框..." +msgstr "編輯邊框" -#: ../src/widgets/mesh-toolbar.cpp:306 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:302 msgid "Edit stroke mesh" -msgstr "編輯邊框..." +msgstr "編輯邊框網面" -#: ../src/widgets/mesh-toolbar.cpp:317 ../src/widgets/node-toolbar.cpp:521 +#: ../src/widgets/mesh-toolbar.cpp:313 ../src/widgets/node-toolbar.cpp:521 msgid "Show Handles" msgstr "顯示控制柄" -#: ../src/widgets/mesh-toolbar.cpp:318 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:314 msgid "Show side and tensor handles" -msgstr "顯示節點變形控制點" +msgstr "顯示邊和張量控制柄" #: ../src/widgets/node-toolbar.cpp:341 msgid "Insert node" @@ -25859,69 +27509,77 @@ msgstr "Y 坐標:" msgid "Y coordinate of selected node(s)" msgstr "選取節點的 Y 坐標" -#: ../src/widgets/paint-selector.cpp:234 +#: ../src/widgets/paint-selector.cpp:222 msgid "No paint" msgstr "無塗繪" -#: ../src/widgets/paint-selector.cpp:236 +#: ../src/widgets/paint-selector.cpp:224 msgid "Flat color" msgstr "單色" -#: ../src/widgets/paint-selector.cpp:238 +#: ../src/widgets/paint-selector.cpp:226 msgid "Linear gradient" msgstr "線性漸層" -#: ../src/widgets/paint-selector.cpp:240 +#: ../src/widgets/paint-selector.cpp:228 msgid "Radial gradient" msgstr "放射漸層" -#: ../src/widgets/paint-selector.cpp:246 +#: ../src/widgets/paint-selector.cpp:231 +msgid "Mesh gradient" +msgstr "網面漸層" + +#: ../src/widgets/paint-selector.cpp:238 msgid "Unset paint (make it undefined so it can be inherited)" -msgstr "取消塗繪設定 (不定義物件使其能夠繼承)" +msgstr "取消塗繪設定 (將值設為「未定義」使鋪排仿製物件的顏色設定可被繼承使用)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:263 +#: ../src/widgets/paint-selector.cpp:255 msgid "" "Any path self-intersections or subpaths create holes in the fill (fill-rule: " "evenodd)" msgstr "任何路徑本身的交叉點或子路徑會在填充裡形成空心 (填充規則:奇偶)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:274 +#: ../src/widgets/paint-selector.cpp:266 msgid "" "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" msgstr "填充為實心,除非子路徑方向相反 (填充規則:非零)" -#: ../src/widgets/paint-selector.cpp:590 +#: ../src/widgets/paint-selector.cpp:600 msgid "No objects" msgstr "無物件" -#: ../src/widgets/paint-selector.cpp:601 +#: ../src/widgets/paint-selector.cpp:611 msgid "Multiple styles" msgstr "多種樣式" -#: ../src/widgets/paint-selector.cpp:612 +#: ../src/widgets/paint-selector.cpp:622 msgid "Paint is undefined" msgstr "未定義塗繪" -#: ../src/widgets/paint-selector.cpp:623 +#: ../src/widgets/paint-selector.cpp:633 msgid "No paint" msgstr "無塗繪" -#: ../src/widgets/paint-selector.cpp:694 +#: ../src/widgets/paint-selector.cpp:704 msgid "Flat color" msgstr "純色" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:758 +#: ../src/widgets/paint-selector.cpp:773 msgid "Linear gradient" msgstr "線性漸層" -#: ../src/widgets/paint-selector.cpp:761 +#: ../src/widgets/paint-selector.cpp:776 msgid "Radial gradient" msgstr "放射狀漸層" -#: ../src/widgets/paint-selector.cpp:1055 +#: ../src/widgets/paint-selector.cpp:781 +msgid "Mesh gradient" +msgstr "網面漸層" + +#: ../src/widgets/paint-selector.cpp:1080 msgid "" "Use the Node tool to adjust position, scale, and rotation of the " "pattern on canvas. Use Object > Pattern > Objects to Pattern to " @@ -25930,60 +27588,60 @@ msgstr "" "使用節點工具可於畫布上調整圖樣的位置、縮放和旋轉。使用 物件 > 圖" "樣 > 物件轉成圖樣 可從選取區建立新圖樣。" -#: ../src/widgets/paint-selector.cpp:1068 +#: ../src/widgets/paint-selector.cpp:1093 msgid "Pattern fill" msgstr "圖樣填充" -#: ../src/widgets/paint-selector.cpp:1162 +#: ../src/widgets/paint-selector.cpp:1187 msgid "Swatch fill" msgstr "色票填充" -#: ../src/widgets/paintbucket-toolbar.cpp:133 +#: ../src/widgets/paintbucket-toolbar.cpp:135 msgid "Fill by" msgstr "填充" -#: ../src/widgets/paintbucket-toolbar.cpp:134 +#: ../src/widgets/paintbucket-toolbar.cpp:136 msgid "Fill by:" msgstr "填充:" -#: ../src/widgets/paintbucket-toolbar.cpp:146 +#: ../src/widgets/paintbucket-toolbar.cpp:148 msgid "Fill Threshold" msgstr "填充臨界值" -#: ../src/widgets/paintbucket-toolbar.cpp:147 +#: ../src/widgets/paintbucket-toolbar.cpp:149 msgid "" "The maximum allowed difference between the clicked pixel and the neighboring " "pixels to be counted in the fill" msgstr "在填充裡計算點擊像素和鄰近像素之間容許的最大誤差值" -#: ../src/widgets/paintbucket-toolbar.cpp:174 +#: ../src/widgets/paintbucket-toolbar.cpp:176 msgid "Grow/shrink by" msgstr "擴張 / 收縮" -#: ../src/widgets/paintbucket-toolbar.cpp:174 +#: ../src/widgets/paintbucket-toolbar.cpp:176 msgid "Grow/shrink by:" msgstr "擴張 / 收縮:" -#: ../src/widgets/paintbucket-toolbar.cpp:175 +#: ../src/widgets/paintbucket-toolbar.cpp:177 msgid "" "The amount to grow (positive) or shrink (negative) the created fill path" msgstr "要擴張 (正值) 或收縮 (負值) 填充路徑的程度" -#: ../src/widgets/paintbucket-toolbar.cpp:200 +#: ../src/widgets/paintbucket-toolbar.cpp:202 msgid "Close gaps" msgstr "閉合缺口" -#: ../src/widgets/paintbucket-toolbar.cpp:201 +#: ../src/widgets/paintbucket-toolbar.cpp:203 msgid "Close gaps:" msgstr "閉合缺口:" -#: ../src/widgets/paintbucket-toolbar.cpp:212 -#: ../src/widgets/pencil-toolbar.cpp:293 ../src/widgets/spiral-toolbar.cpp:289 -#: ../src/widgets/star-toolbar.cpp:564 +#: ../src/widgets/paintbucket-toolbar.cpp:214 +#: ../src/widgets/pencil-toolbar.cpp:299 ../src/widgets/spiral-toolbar.cpp:289 +#: ../src/widgets/star-toolbar.cpp:566 msgid "Defaults" msgstr "預設值" -#: ../src/widgets/paintbucket-toolbar.cpp:213 +#: ../src/widgets/paintbucket-toolbar.cpp:215 msgid "" "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools " "to change defaults)" @@ -26001,292 +27659,299 @@ msgstr "建立規則的貝茲路徑" msgid "Create Spiro path" msgstr "建立螺旋路徑" -#: ../src/widgets/pencil-toolbar.cpp:111 +#: ../src/widgets/pencil-toolbar.cpp:110 +msgid "Create BSpline path" +msgstr "建立貝氏雲形線路徑" + +#: ../src/widgets/pencil-toolbar.cpp:116 msgid "Zigzag" msgstr "曲折" -#: ../src/widgets/pencil-toolbar.cpp:112 +#: ../src/widgets/pencil-toolbar.cpp:117 msgid "Create a sequence of straight line segments" msgstr "建立一條連續的直線線段" -#: ../src/widgets/pencil-toolbar.cpp:118 +#: ../src/widgets/pencil-toolbar.cpp:123 msgid "Paraxial" msgstr "近軸" -#: ../src/widgets/pencil-toolbar.cpp:119 +#: ../src/widgets/pencil-toolbar.cpp:124 msgid "Create a sequence of paraxial line segments" msgstr "建立一條連續的近軸線段" -#: ../src/widgets/pencil-toolbar.cpp:127 +#: ../src/widgets/pencil-toolbar.cpp:132 msgid "Mode of new lines drawn by this tool" msgstr "用此工具繪製新線條的模式" -#: ../src/widgets/pencil-toolbar.cpp:156 +#: ../src/widgets/pencil-toolbar.cpp:160 +msgctxt "Freehand shape" +msgid "None" +msgstr "無" + +#: ../src/widgets/pencil-toolbar.cpp:161 msgid "Triangle in" msgstr "內三角" -#: ../src/widgets/pencil-toolbar.cpp:157 +#: ../src/widgets/pencil-toolbar.cpp:162 msgid "Triangle out" msgstr "外三角" -#: ../src/widgets/pencil-toolbar.cpp:159 +#: ../src/widgets/pencil-toolbar.cpp:164 msgid "From clipboard" msgstr "從剪貼簿" -#: ../src/widgets/pencil-toolbar.cpp:184 ../src/widgets/pencil-toolbar.cpp:185 +#: ../src/widgets/pencil-toolbar.cpp:165 +msgid "Last applied" +msgstr "最近套用的" + +#: ../src/widgets/pencil-toolbar.cpp:190 ../src/widgets/pencil-toolbar.cpp:191 msgid "Shape:" msgstr "形狀:" -#: ../src/widgets/pencil-toolbar.cpp:184 +#: ../src/widgets/pencil-toolbar.cpp:190 msgid "Shape of new paths drawn by this tool" msgstr "用這個工具繪製的新路徑形狀" -#: ../src/widgets/pencil-toolbar.cpp:269 +#: ../src/widgets/pencil-toolbar.cpp:275 msgid "(many nodes, rough)" msgstr "(節點多,粗糙)" -#: ../src/widgets/pencil-toolbar.cpp:269 +#: ../src/widgets/pencil-toolbar.cpp:275 msgid "(few nodes, smooth)" msgstr "(節點少,平滑)" -#: ../src/widgets/pencil-toolbar.cpp:272 +#: ../src/widgets/pencil-toolbar.cpp:278 msgid "Smoothing:" msgstr "平滑:" -#: ../src/widgets/pencil-toolbar.cpp:272 +#: ../src/widgets/pencil-toolbar.cpp:278 msgid "Smoothing: " msgstr "平滑:" -#: ../src/widgets/pencil-toolbar.cpp:273 +#: ../src/widgets/pencil-toolbar.cpp:279 msgid "How much smoothing (simplifying) is applied to the line" msgstr "套用到線條的平滑 (簡化) 程度" -#: ../src/widgets/pencil-toolbar.cpp:294 +#: ../src/widgets/pencil-toolbar.cpp:300 msgid "" "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to " "change defaults)" msgstr "將鉛筆參數重設為預設值 (可在 Inkscape 偏好設定 > 工具 變更預設值)" -#: ../src/widgets/rect-toolbar.cpp:122 +#: ../src/widgets/rect-toolbar.cpp:124 msgid "Change rectangle" msgstr "變更矩形" -#: ../src/widgets/rect-toolbar.cpp:314 +#: ../src/widgets/rect-toolbar.cpp:318 msgid "W:" msgstr "寬:" -#: ../src/widgets/rect-toolbar.cpp:314 +#: ../src/widgets/rect-toolbar.cpp:318 msgid "Width of rectangle" msgstr "矩形寬度" -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/widgets/rect-toolbar.cpp:335 msgid "H:" msgstr "高:" -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/widgets/rect-toolbar.cpp:335 msgid "Height of rectangle" msgstr "矩形高度" -#: ../src/widgets/rect-toolbar.cpp:345 ../src/widgets/rect-toolbar.cpp:360 +#: ../src/widgets/rect-toolbar.cpp:349 ../src/widgets/rect-toolbar.cpp:364 msgid "not rounded" msgstr "無圓角" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Horizontal radius" msgstr "水平半徑" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Rx:" msgstr "X 半徑:" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Horizontal radius of rounded corners" msgstr "圓角的水平半徑" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Vertical radius" msgstr "垂直半徑" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Ry:" msgstr "Y 半徑:" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Vertical radius of rounded corners" msgstr "圓角的垂直半徑" -#: ../src/widgets/rect-toolbar.cpp:382 +#: ../src/widgets/rect-toolbar.cpp:386 msgid "Not rounded" msgstr "無圓角" -#: ../src/widgets/rect-toolbar.cpp:383 +#: ../src/widgets/rect-toolbar.cpp:387 msgid "Make corners sharp" msgstr "使頂角變尖銳" #: ../src/widgets/ruler.cpp:192 -#, fuzzy msgid "The orientation of the ruler" -msgstr "工具欄項目的方向" +msgstr "尺標方向" #: ../src/widgets/ruler.cpp:202 -#, fuzzy msgid "Unit of the ruler" -msgstr "圖樣寬度" +msgstr "尺標單位" #: ../src/widgets/ruler.cpp:209 msgid "Lower" msgstr "降低" #: ../src/widgets/ruler.cpp:210 -#, fuzzy msgid "Lower limit of ruler" -msgstr "降到前一個圖層" +msgstr "尺標下限" #: ../src/widgets/ruler.cpp:219 -#, fuzzy msgid "Upper" -msgstr "滴管" +msgstr "上限" #: ../src/widgets/ruler.cpp:220 msgid "Upper limit of ruler" -msgstr "" +msgstr "尺標上限" #: ../src/widgets/ruler.cpp:230 -#, fuzzy msgid "Position of mark on the ruler" -msgstr "圖示主題的位置" +msgstr "尺標上的記號位置" #: ../src/widgets/ruler.cpp:239 -#, fuzzy msgid "Max Size" -msgstr "大小" +msgstr "最大尺寸" #: ../src/widgets/ruler.cpp:240 msgid "Maximum size of the ruler" -msgstr "" +msgstr "尺標最大尺寸" -#: ../src/widgets/select-toolbar.cpp:260 +#: ../src/widgets/select-toolbar.cpp:262 msgid "Transform by toolbar" msgstr "用工具列變形" -#: ../src/widgets/select-toolbar.cpp:339 +#: ../src/widgets/select-toolbar.cpp:341 msgid "Now stroke width is scaled when objects are scaled." msgstr "物件縮放時邊框寬度會隨著縮放。" -#: ../src/widgets/select-toolbar.cpp:341 +#: ../src/widgets/select-toolbar.cpp:343 msgid "Now stroke width is not scaled when objects are scaled." msgstr "物件縮放邊框寬度不會隨著縮放。" -#: ../src/widgets/select-toolbar.cpp:352 +#: ../src/widgets/select-toolbar.cpp:354 msgid "" "Now rounded rectangle corners are scaled when rectangles are " "scaled." msgstr "矩形縮放時圓角矩形的圓角會隨著縮放。" -#: ../src/widgets/select-toolbar.cpp:354 +#: ../src/widgets/select-toolbar.cpp:356 msgid "" "Now rounded rectangle corners are not scaled when rectangles " "are scaled." msgstr "矩形縮放時圓角矩形的圓角不會隨著縮放。" -#: ../src/widgets/select-toolbar.cpp:365 +#: ../src/widgets/select-toolbar.cpp:367 msgid "" "Now gradients are transformed along with their objects when " "those are transformed (moved, scaled, rotated, or skewed)." msgstr "漸層會隨著物件 (移動、縮放、旋轉或傾斜) 變形。" -#: ../src/widgets/select-toolbar.cpp:367 +#: ../src/widgets/select-toolbar.cpp:369 msgid "" "Now gradients remain fixed when objects are transformed " "(moved, scaled, rotated, or skewed)." msgstr "漸層不會隨著物件 (移動、縮放、旋轉或傾斜) 變形。" -#: ../src/widgets/select-toolbar.cpp:378 +#: ../src/widgets/select-toolbar.cpp:380 msgid "" "Now patterns are transformed along with their objects when " "those are transformed (moved, scaled, rotated, or skewed)." msgstr "圖樣會隨著物件 (移動、縮放、旋轉或傾斜) 變形。" -#: ../src/widgets/select-toolbar.cpp:380 +#: ../src/widgets/select-toolbar.cpp:382 msgid "" "Now patterns remain fixed when objects are transformed (moved, " "scaled, rotated, or skewed)." msgstr "圖樣不會隨著物件 (移動、縮放、旋轉或傾斜) 變形。" #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:500 msgctxt "Select toolbar" msgid "X position" msgstr "X 位置" -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:500 msgctxt "Select toolbar" msgid "X:" msgstr "X:" -#: ../src/widgets/select-toolbar.cpp:500 +#: ../src/widgets/select-toolbar.cpp:502 msgid "Horizontal coordinate of selection" msgstr "選取區的水平坐標" -#: ../src/widgets/select-toolbar.cpp:504 +#: ../src/widgets/select-toolbar.cpp:506 msgctxt "Select toolbar" msgid "Y position" msgstr "Y 位置" -#: ../src/widgets/select-toolbar.cpp:504 +#: ../src/widgets/select-toolbar.cpp:506 msgctxt "Select toolbar" msgid "Y:" msgstr "Y:" -#: ../src/widgets/select-toolbar.cpp:506 +#: ../src/widgets/select-toolbar.cpp:508 msgid "Vertical coordinate of selection" msgstr "選取區的垂直坐標" -#: ../src/widgets/select-toolbar.cpp:510 +#: ../src/widgets/select-toolbar.cpp:512 msgctxt "Select toolbar" msgid "Width" msgstr "寬度" -#: ../src/widgets/select-toolbar.cpp:510 +#: ../src/widgets/select-toolbar.cpp:512 msgctxt "Select toolbar" msgid "W:" msgstr "寬:" -#: ../src/widgets/select-toolbar.cpp:512 +#: ../src/widgets/select-toolbar.cpp:514 msgid "Width of selection" msgstr "選取區的寬度" -#: ../src/widgets/select-toolbar.cpp:519 +#: ../src/widgets/select-toolbar.cpp:521 msgid "Lock width and height" msgstr "鎖定寬度和高度" -#: ../src/widgets/select-toolbar.cpp:520 +#: ../src/widgets/select-toolbar.cpp:522 msgid "When locked, change both width and height by the same proportion" msgstr "鎖定時,寬度和高度會同時按照相同比例改變" -#: ../src/widgets/select-toolbar.cpp:529 +#: ../src/widgets/select-toolbar.cpp:531 msgctxt "Select toolbar" msgid "Height" msgstr "高度" -#: ../src/widgets/select-toolbar.cpp:529 +#: ../src/widgets/select-toolbar.cpp:531 msgctxt "Select toolbar" msgid "H:" msgstr "高:" -#: ../src/widgets/select-toolbar.cpp:531 +#: ../src/widgets/select-toolbar.cpp:533 msgid "Height of selection" msgstr "選取區的高度" -#: ../src/widgets/select-toolbar.cpp:581 +#: ../src/widgets/select-toolbar.cpp:583 msgid "Scale rounded corners" msgstr "縮放圓角" -#: ../src/widgets/select-toolbar.cpp:592 +#: ../src/widgets/select-toolbar.cpp:594 msgid "Move gradients" msgstr "移動漸層" -#: ../src/widgets/select-toolbar.cpp:603 +#: ../src/widgets/select-toolbar.cpp:605 msgid "Move patterns" msgstr "移動圖樣" @@ -26294,147 +27959,147 @@ msgstr "移動圖樣" msgid "Set attribute" msgstr "設定屬性" -#: ../src/widgets/sp-color-icc-selector.cpp:257 +#: ../src/widgets/sp-color-icc-selector.cpp:234 msgid "CMS" msgstr "CMS" -#: ../src/widgets/sp-color-icc-selector.cpp:355 -#: ../src/widgets/sp-color-scales.cpp:428 +#: ../src/widgets/sp-color-icc-selector.cpp:330 +#: ../src/widgets/sp-color-scales.cpp:414 msgid "_R:" msgstr "紅(_R):" #. TYPE_RGB_16 -#: ../src/widgets/sp-color-icc-selector.cpp:356 -#: ../src/widgets/sp-color-scales.cpp:431 +#: ../src/widgets/sp-color-icc-selector.cpp:331 +#: ../src/widgets/sp-color-scales.cpp:417 msgid "_G:" msgstr "綠(_G):" -#: ../src/widgets/sp-color-icc-selector.cpp:357 -#: ../src/widgets/sp-color-scales.cpp:434 +#: ../src/widgets/sp-color-icc-selector.cpp:332 +#: ../src/widgets/sp-color-scales.cpp:420 msgid "_B:" msgstr "藍(_B):" -#: ../src/widgets/sp-color-icc-selector.cpp:359 +#: ../src/widgets/sp-color-icc-selector.cpp:334 msgid "Gray" msgstr "灰" #. TYPE_GRAY_16 -#: ../src/widgets/sp-color-icc-selector.cpp:361 -#: ../src/widgets/sp-color-icc-selector.cpp:365 -#: ../src/widgets/sp-color-scales.cpp:454 +#: ../src/widgets/sp-color-icc-selector.cpp:336 +#: ../src/widgets/sp-color-icc-selector.cpp:340 +#: ../src/widgets/sp-color-scales.cpp:440 msgid "_H:" msgstr "色相(_H):" #. TYPE_HSV_16 -#: ../src/widgets/sp-color-icc-selector.cpp:362 -#: ../src/widgets/sp-color-icc-selector.cpp:367 -#: ../src/widgets/sp-color-scales.cpp:457 +#: ../src/widgets/sp-color-icc-selector.cpp:337 +#: ../src/widgets/sp-color-icc-selector.cpp:342 +#: ../src/widgets/sp-color-scales.cpp:443 msgid "_S:" msgstr "飽和度(_S):" #. TYPE_HLS_16 -#: ../src/widgets/sp-color-icc-selector.cpp:366 -#: ../src/widgets/sp-color-scales.cpp:460 +#: ../src/widgets/sp-color-icc-selector.cpp:341 +#: ../src/widgets/sp-color-scales.cpp:446 msgid "_L:" msgstr "明度(_L):" -#: ../src/widgets/sp-color-icc-selector.cpp:369 -#: ../src/widgets/sp-color-icc-selector.cpp:374 -#: ../src/widgets/sp-color-scales.cpp:482 +#: ../src/widgets/sp-color-icc-selector.cpp:344 +#: ../src/widgets/sp-color-icc-selector.cpp:349 +#: ../src/widgets/sp-color-scales.cpp:468 msgid "_C:" msgstr "青(_C):" #. TYPE_CMYK_16 #. TYPE_CMY_16 -#: ../src/widgets/sp-color-icc-selector.cpp:370 -#: ../src/widgets/sp-color-icc-selector.cpp:375 -#: ../src/widgets/sp-color-scales.cpp:485 +#: ../src/widgets/sp-color-icc-selector.cpp:345 +#: ../src/widgets/sp-color-icc-selector.cpp:350 +#: ../src/widgets/sp-color-scales.cpp:471 msgid "_M:" msgstr "洋紅(_M):" -#: ../src/widgets/sp-color-icc-selector.cpp:371 -#: ../src/widgets/sp-color-icc-selector.cpp:376 -#: ../src/widgets/sp-color-scales.cpp:488 +#: ../src/widgets/sp-color-icc-selector.cpp:346 +#: ../src/widgets/sp-color-icc-selector.cpp:351 +#: ../src/widgets/sp-color-scales.cpp:474 msgid "_Y:" msgstr "_Y:" -#: ../src/widgets/sp-color-icc-selector.cpp:372 -#: ../src/widgets/sp-color-scales.cpp:491 +#: ../src/widgets/sp-color-icc-selector.cpp:347 +#: ../src/widgets/sp-color-scales.cpp:477 msgid "_K:" msgstr "黑(_K):" -#: ../src/widgets/sp-color-icc-selector.cpp:455 +#: ../src/widgets/sp-color-icc-selector.cpp:430 msgid "Fix" msgstr "修正" -#: ../src/widgets/sp-color-icc-selector.cpp:458 +#: ../src/widgets/sp-color-icc-selector.cpp:433 msgid "Fix RGB fallback to match icc-color() value." msgstr "修正 RGB 備份以符合 icc-color() 的值。" #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:561 -#: ../src/widgets/sp-color-scales.cpp:437 -#: ../src/widgets/sp-color-scales.cpp:463 -#: ../src/widgets/sp-color-scales.cpp:494 -#: ../src/widgets/sp-color-wheel-selector.cpp:140 +#: ../src/widgets/sp-color-icc-selector.cpp:536 +#: ../src/widgets/sp-color-scales.cpp:423 +#: ../src/widgets/sp-color-scales.cpp:449 +#: ../src/widgets/sp-color-scales.cpp:480 +#: ../src/widgets/sp-color-wheel-selector.cpp:111 msgid "_A:" msgstr "透明(_A):" -#: ../src/widgets/sp-color-icc-selector.cpp:572 -#: ../src/widgets/sp-color-icc-selector.cpp:585 -#: ../src/widgets/sp-color-scales.cpp:438 -#: ../src/widgets/sp-color-scales.cpp:439 -#: ../src/widgets/sp-color-scales.cpp:464 -#: ../src/widgets/sp-color-scales.cpp:465 -#: ../src/widgets/sp-color-scales.cpp:495 -#: ../src/widgets/sp-color-scales.cpp:496 -#: ../src/widgets/sp-color-wheel-selector.cpp:161 -#: ../src/widgets/sp-color-wheel-selector.cpp:185 +#: ../src/widgets/sp-color-icc-selector.cpp:547 +#: ../src/widgets/sp-color-icc-selector.cpp:560 +#: ../src/widgets/sp-color-scales.cpp:424 +#: ../src/widgets/sp-color-scales.cpp:425 +#: ../src/widgets/sp-color-scales.cpp:450 +#: ../src/widgets/sp-color-scales.cpp:451 +#: ../src/widgets/sp-color-scales.cpp:481 +#: ../src/widgets/sp-color-scales.cpp:482 +#: ../src/widgets/sp-color-wheel-selector.cpp:137 +#: ../src/widgets/sp-color-wheel-selector.cpp:166 msgid "Alpha (opacity)" msgstr "Alpha (不透明度)" -#: ../src/widgets/sp-color-notebook.cpp:385 +#: ../src/widgets/sp-color-notebook.cpp:370 msgid "Color Managed" msgstr "色彩管理" -#: ../src/widgets/sp-color-notebook.cpp:392 +#: ../src/widgets/sp-color-notebook.cpp:377 msgid "Out of gamut!" msgstr "超出色域!" -#: ../src/widgets/sp-color-notebook.cpp:399 +#: ../src/widgets/sp-color-notebook.cpp:384 msgid "Too much ink!" msgstr "太多墨水!" #. Create RGBA entry and color preview -#: ../src/widgets/sp-color-notebook.cpp:416 +#: ../src/widgets/sp-color-notebook.cpp:401 msgid "RGBA_:" msgstr "RGBA_:" -#: ../src/widgets/sp-color-notebook.cpp:424 +#: ../src/widgets/sp-color-notebook.cpp:409 msgid "Hexadecimal RGBA value of the color" msgstr "顏色的十六進位 RGBA 值" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "RGB" msgstr "RGB" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "HSL" msgstr "HSL" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "CMYK" msgstr "CMYK" -#: ../src/widgets/sp-color-selector.cpp:64 +#: ../src/widgets/sp-color-selector.cpp:42 msgid "Unnamed" msgstr "未命名" -#: ../src/widgets/sp-xmlview-attr-list.cpp:64 +#: ../src/widgets/sp-xmlview-attr-list.cpp:59 msgid "Value" msgstr "數值" -#: ../src/widgets/sp-xmlview-content.cpp:179 +#: ../src/widgets/sp-xmlview-content.cpp:151 msgid "Type text in a text node" msgstr "在文字節點裡輸入文字" @@ -26522,7 +28187,7 @@ msgstr "內徑:" msgid "Radius of the innermost revolution (relative to the spiral size)" msgstr "最內層的旋轉半徑 (相對於螺旋形的大小)" -#: ../src/widgets/spiral-toolbar.cpp:290 ../src/widgets/star-toolbar.cpp:565 +#: ../src/widgets/spiral-toolbar.cpp:290 ../src/widgets/star-toolbar.cpp:567 msgid "" "Reset shape parameters to defaults (use Inkscape Preferences > Tools to " "change defaults)" @@ -26662,179 +28327,180 @@ msgid "" "the original object" msgstr "噴灑物件的縮放變化量;0% 代表除了原始物件外縮放量都相同" -#: ../src/widgets/star-toolbar.cpp:102 +#: ../src/widgets/star-toolbar.cpp:103 msgid "Star: Change number of corners" msgstr "星形:變更頂角數量" -#: ../src/widgets/star-toolbar.cpp:155 +#: ../src/widgets/star-toolbar.cpp:156 msgid "Star: Change spoke ratio" msgstr "星形:變更輪輻比" -#: ../src/widgets/star-toolbar.cpp:200 +#: ../src/widgets/star-toolbar.cpp:201 msgid "Make polygon" msgstr "製作多邊形" -#: ../src/widgets/star-toolbar.cpp:200 +#: ../src/widgets/star-toolbar.cpp:201 msgid "Make star" msgstr "製作星形" -#: ../src/widgets/star-toolbar.cpp:239 +#: ../src/widgets/star-toolbar.cpp:240 msgid "Star: Change rounding" msgstr "星形:變更圓角" -#: ../src/widgets/star-toolbar.cpp:279 +#: ../src/widgets/star-toolbar.cpp:280 msgid "Star: Change randomization" msgstr "星形:變更隨機" -#: ../src/widgets/star-toolbar.cpp:463 +#: ../src/widgets/star-toolbar.cpp:465 msgid "Regular polygon (with one handle) instead of a star" msgstr "規則多邊形 (具有一個控制點) 而非星形" -#: ../src/widgets/star-toolbar.cpp:470 +#: ../src/widgets/star-toolbar.cpp:472 msgid "Star instead of a regular polygon (with one handle)" msgstr "星形而非規則多邊形 (具有一個控制點)" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "triangle/tri-star" msgstr "三角形 / 三角星" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "square/quad-star" msgstr "四邊形 / 四角星" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "pentagon/five-pointed star" msgstr "五邊形 / 五角星" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "hexagon/six-pointed star" msgstr "六邊形 / 六角星" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Corners" msgstr "頂角" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Corners:" msgstr "頂角:" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Number of corners of a polygon or star" msgstr "多邊形或星形的頂角數量" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "thin-ray star" msgstr "光芒星" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "pentagram" msgstr "五角形" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "hexagram" msgstr "六角形" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "heptagram" msgstr "七角形" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "octagram" msgstr "八角形" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "regular polygon" msgstr "規則多邊形" -#: ../src/widgets/star-toolbar.cpp:510 +#: ../src/widgets/star-toolbar.cpp:512 msgid "Spoke ratio" msgstr "輪輻比" -#: ../src/widgets/star-toolbar.cpp:510 +#: ../src/widgets/star-toolbar.cpp:512 msgid "Spoke ratio:" msgstr "輪輻比:" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/star-toolbar.cpp:513 +#: ../src/widgets/star-toolbar.cpp:515 msgid "Base radius to tip radius ratio" msgstr "基礎半徑和尖端半徑的比率" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "stretched" msgstr "伸展" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "twisted" msgstr "扭曲" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "slightly pinched" msgstr "輕微地擠壓" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "NOT rounded" msgstr "無圓角" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "slightly rounded" msgstr "輕微地圓角" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "visibly rounded" msgstr "明顯地圓角" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "well rounded" msgstr "適當地圓角" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "amply rounded" msgstr "充分地圓角" -#: ../src/widgets/star-toolbar.cpp:531 ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:533 ../src/widgets/star-toolbar.cpp:548 msgid "blown up" msgstr "放大" -#: ../src/widgets/star-toolbar.cpp:534 +#: ../src/widgets/star-toolbar.cpp:536 msgid "Rounded:" msgstr "圓角:" -#: ../src/widgets/star-toolbar.cpp:534 +#: ../src/widgets/star-toolbar.cpp:536 msgid "How much rounded are the corners (0 for sharp)" msgstr "頂角圓角化的程度 (0 代表尖銳)" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "NOT randomized" msgstr "不隨機" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "slightly irregular" msgstr "輕微地不規則" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "visibly randomized" msgstr "明顯地隨機" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "strongly randomized" msgstr "強烈地隨機" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Randomized" msgstr "隨機" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Randomized:" msgstr "隨機:" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Scatter randomly the corners and angles" msgstr "隨機散佈頂角和角度" -#: ../src/widgets/stroke-style.cpp:192 -msgid "Stroke width" -msgstr "邊框寬度" +#: ../src/widgets/stroke-marker-selector.cpp:388 +msgctxt "Marker" +msgid "None" +msgstr "無" #: ../src/widgets/stroke-style.cpp:194 msgctxt "Stroke width" @@ -26900,9 +28566,8 @@ msgstr "線段:" #. TRANSLATORS: Path markers are an SVG feature that allows you to attach arbitrary shapes #. (arrowheads, bullets, faces, whatever) to the start, end, or middle nodes of a path. #: ../src/widgets/stroke-style.cpp:352 -#, fuzzy msgid "Markers:" -msgstr "麥克筆" +msgstr "標記:" #: ../src/widgets/stroke-style.cpp:358 msgid "Start Markers are drawn on the first node of a path or shape" @@ -26922,14 +28587,13 @@ msgstr "在路徑或形狀的最後一個節點上繪製終點標記" msgid "Set markers" msgstr "設定標記" -#: ../src/widgets/stroke-style.cpp:1024 ../src/widgets/stroke-style.cpp:1109 +#: ../src/widgets/stroke-style.cpp:1032 ../src/widgets/stroke-style.cpp:1117 msgid "Set stroke style" msgstr "設定邊框樣式" -#: ../src/widgets/stroke-style.cpp:1197 -#, fuzzy +#: ../src/widgets/stroke-style.cpp:1205 msgid "Set marker color" -msgstr "設定邊框顏色" +msgstr "設定標記顏色" #: ../src/widgets/swatch-selector.cpp:137 msgid "Change swatch color" @@ -26983,192 +28647,190 @@ msgstr "文字:變更旋轉" msgid "Text: Change orientation" msgstr "文字:變更方向" -#: ../src/widgets/text-toolbar.cpp:1221 +#: ../src/widgets/text-toolbar.cpp:1223 msgid "Font Family" msgstr "字族" -#: ../src/widgets/text-toolbar.cpp:1222 +#: ../src/widgets/text-toolbar.cpp:1224 msgid "Select Font Family (Alt-X to access)" msgstr "選擇字族 (按 Alt+X 存取)" #. Focus widget #. Enable entry completion -#: ../src/widgets/text-toolbar.cpp:1232 +#: ../src/widgets/text-toolbar.cpp:1234 msgid "Select all text with this font-family" -msgstr "" +msgstr "選擇所有屬於該字族的文字" -#: ../src/widgets/text-toolbar.cpp:1236 +#: ../src/widgets/text-toolbar.cpp:1238 msgid "Font not found on system" msgstr "系統上找不到字型" -#: ../src/widgets/text-toolbar.cpp:1295 -#, fuzzy +#: ../src/widgets/text-toolbar.cpp:1297 msgid "Font Style" -msgstr "字型大小" +msgstr "字型樣式" -#: ../src/widgets/text-toolbar.cpp:1296 -#, fuzzy +#: ../src/widgets/text-toolbar.cpp:1298 msgid "Font style" -msgstr "字型大小" +msgstr "字型樣式" #. Name -#: ../src/widgets/text-toolbar.cpp:1313 +#: ../src/widgets/text-toolbar.cpp:1315 msgid "Toggle Superscript" msgstr "切換上標" #. Label -#: ../src/widgets/text-toolbar.cpp:1314 +#: ../src/widgets/text-toolbar.cpp:1316 msgid "Toggle superscript" msgstr "切換上標" #. Name -#: ../src/widgets/text-toolbar.cpp:1326 +#: ../src/widgets/text-toolbar.cpp:1328 msgid "Toggle Subscript" msgstr "切換下標" #. Label -#: ../src/widgets/text-toolbar.cpp:1327 +#: ../src/widgets/text-toolbar.cpp:1329 msgid "Toggle subscript" msgstr "切換下標" -#: ../src/widgets/text-toolbar.cpp:1368 +#: ../src/widgets/text-toolbar.cpp:1370 msgid "Justify" msgstr "左右對齊" #. Name -#: ../src/widgets/text-toolbar.cpp:1375 +#: ../src/widgets/text-toolbar.cpp:1377 msgid "Alignment" msgstr "對齊" #. Label -#: ../src/widgets/text-toolbar.cpp:1376 +#: ../src/widgets/text-toolbar.cpp:1378 msgid "Text alignment" msgstr "文字對齊" -#: ../src/widgets/text-toolbar.cpp:1403 +#: ../src/widgets/text-toolbar.cpp:1405 msgid "Horizontal" msgstr "橫向" -#: ../src/widgets/text-toolbar.cpp:1410 +#: ../src/widgets/text-toolbar.cpp:1412 msgid "Vertical" msgstr "直向" #. Label -#: ../src/widgets/text-toolbar.cpp:1417 +#: ../src/widgets/text-toolbar.cpp:1419 msgid "Text orientation" msgstr "文字方向" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1440 +#: ../src/widgets/text-toolbar.cpp:1442 msgid "Smaller spacing" msgstr "縮小間距" -#: ../src/widgets/text-toolbar.cpp:1440 ../src/widgets/text-toolbar.cpp:1471 -#: ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1442 ../src/widgets/text-toolbar.cpp:1473 +#: ../src/widgets/text-toolbar.cpp:1504 msgctxt "Text tool" msgid "Normal" msgstr "標準" -#: ../src/widgets/text-toolbar.cpp:1440 +#: ../src/widgets/text-toolbar.cpp:1442 msgid "Larger spacing" msgstr "加大間距" #. name -#: ../src/widgets/text-toolbar.cpp:1445 +#: ../src/widgets/text-toolbar.cpp:1447 msgid "Line Height" msgstr "行高" #. label -#: ../src/widgets/text-toolbar.cpp:1446 +#: ../src/widgets/text-toolbar.cpp:1448 msgid "Line:" msgstr "行:" #. short label -#: ../src/widgets/text-toolbar.cpp:1447 +#: ../src/widgets/text-toolbar.cpp:1449 msgid "Spacing between lines (times font size)" msgstr "每一行的間隔距離 (字型大小的倍數)" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1471 ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1473 ../src/widgets/text-toolbar.cpp:1504 msgid "Negative spacing" msgstr "負間距" -#: ../src/widgets/text-toolbar.cpp:1471 ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1473 ../src/widgets/text-toolbar.cpp:1504 msgid "Positive spacing" msgstr "正間距" #. name -#: ../src/widgets/text-toolbar.cpp:1476 +#: ../src/widgets/text-toolbar.cpp:1478 msgid "Word spacing" msgstr "單字間距" #. label -#: ../src/widgets/text-toolbar.cpp:1477 +#: ../src/widgets/text-toolbar.cpp:1479 msgid "Word:" msgstr "單字:" #. short label -#: ../src/widgets/text-toolbar.cpp:1478 +#: ../src/widgets/text-toolbar.cpp:1480 msgid "Spacing between words (px)" msgstr "單字之間的距離 (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1507 +#: ../src/widgets/text-toolbar.cpp:1509 msgid "Letter spacing" msgstr "字距:" #. label -#: ../src/widgets/text-toolbar.cpp:1508 +#: ../src/widgets/text-toolbar.cpp:1510 msgid "Letter:" msgstr "字母:" #. short label -#: ../src/widgets/text-toolbar.cpp:1509 +#: ../src/widgets/text-toolbar.cpp:1511 msgid "Spacing between letters (px)" msgstr "字母之間的距離 (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1538 +#: ../src/widgets/text-toolbar.cpp:1540 msgid "Kerning" msgstr "字母緊排" #. label -#: ../src/widgets/text-toolbar.cpp:1539 +#: ../src/widgets/text-toolbar.cpp:1541 msgid "Kern:" msgstr "字母緊排:" #. short label -#: ../src/widgets/text-toolbar.cpp:1540 +#: ../src/widgets/text-toolbar.cpp:1542 msgid "Horizontal kerning (px)" msgstr "水平字母緊排 (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1569 +#: ../src/widgets/text-toolbar.cpp:1571 msgid "Vertical Shift" msgstr "垂直位移" #. label -#: ../src/widgets/text-toolbar.cpp:1570 +#: ../src/widgets/text-toolbar.cpp:1572 msgid "Vert:" msgstr "垂直:" #. short label -#: ../src/widgets/text-toolbar.cpp:1571 +#: ../src/widgets/text-toolbar.cpp:1573 msgid "Vertical shift (px)" msgstr "垂直位移 (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1600 +#: ../src/widgets/text-toolbar.cpp:1602 msgid "Letter rotation" msgstr "字母旋轉" #. label -#: ../src/widgets/text-toolbar.cpp:1601 +#: ../src/widgets/text-toolbar.cpp:1603 msgid "Rot:" msgstr "旋轉:" #. short label -#: ../src/widgets/text-toolbar.cpp:1602 +#: ../src/widgets/text-toolbar.cpp:1604 msgid "Character rotation (degrees)" msgstr "字元旋轉 (度)" @@ -27550,13 +29212,12 @@ msgid "Use the pressure of the input device to alter the force of tweak action" msgstr "使用輸入裝置的壓力來改變微調動作的力道" #: ../share/extensions/convert2dashes.py:93 -#, fuzzy msgid "" "The selected object is not a path.\n" "Try using the procedure Path->Object to Path." msgstr "" -"第一個選取的物件不是一個路徑。\n" -"試著執行「路徑->物件轉成路徑」的步驟。" +"選取的物件不是路徑。\n" +"試著使用「路徑->物件轉成路徑」功能。" #: ../share/extensions/dimension.py:109 msgid "Please select an object." @@ -27605,6 +29266,8 @@ msgid "" "%d ENTITIES of type POLYLINE encountered and ignored. Please try to convert " "to Release 13 format using QCad." msgstr "" +"發現 %d 個折線類型實體且程式會忽略這些實體。請試著使用 QCad 轉換成 13 版本格" +"式。" #: ../share/extensions/dxf_outlines.py:49 msgid "" @@ -27618,12 +29281,12 @@ msgstr "" msgid "" "Error: Field 'Layer match name' must be filled when using 'By name match' " "option" -msgstr "" +msgstr "錯誤:當使用「匯出名稱符合的圖層」選項時,必須填寫「圖層符合名稱」欄位" #: ../share/extensions/dxf_outlines.py:341 -#, fuzzy, python-format +#, python-format msgid "Warning: Layer '%s' not found!" -msgstr "圖層移到最上層" +msgstr "警告:找不到圖層「%s」!" #: ../share/extensions/embedimage.py:84 msgid "" @@ -27663,22 +29326,20 @@ msgid "Unable to find image data." msgstr "無法找到圖片資料。" #: ../share/extensions/extrude.py:43 -#, fuzzy msgid "Need at least 2 paths selected" -msgstr "若沒有選取任何路徑則自動選取全部路徑" +msgstr "至少需要選取 2 個路徑" #: ../share/extensions/funcplot.py:48 msgid "x-interval cannot be zero. Please modify 'Start X' or 'End X'" -msgstr "" +msgstr "x 間距不能為零。請修改「起始 X」或「結束 X」" #: ../share/extensions/funcplot.py:60 msgid "y-interval cannot be zero. Please modify 'Y top' or 'Y bottom'" -msgstr "" +msgstr "y 間距不能為零。請修改「Y 頂端」或「Y 底端」" #: ../share/extensions/funcplot.py:315 -#, fuzzy msgid "Please select a rectangle" -msgstr "請選取一個物件。" +msgstr "請選取一個矩形" #: ../share/extensions/gcodetools.py:3321 #: ../share/extensions/gcodetools.py:4526 @@ -27689,8 +29350,8 @@ msgid "No paths are selected! Trying to work on all available paths." msgstr "沒有選取任何路徑!試著套用在全部可用的路徑上。" #: ../share/extensions/gcodetools.py:3324 -msgid "Noting is selected. Please select something." -msgstr "沒有選取任何項目。請選取某個項目。" +msgid "Nothing is selected. Please select something." +msgstr "沒有選取任何物件。請選取任一個物件。" #: ../share/extensions/gcodetools.py:3864 msgid "" @@ -27778,8 +29439,7 @@ msgstr "" msgid "" "Warning! Tool's and default tool's parameter's (%s) types are not the same " "( type('%s') != type('%s') )." -msgstr "" -"警告!刀具和預設刀具的參數 (%s) 類型不相同 ( 類型('%s') != 類型('%s'))。" +msgstr "警告!刀具和預設刀具的參數 (%s) 類型不相同 ( 類型('%s') != 類型('%s'))。" #: ../share/extensions/gcodetools.py:4374 #, python-format @@ -27808,7 +29468,7 @@ msgstr "" #: ../share/extensions/gcodetools.py:4667 msgid "" -"Noting is selected. Please select something to convert to drill point " +"Nothing is selected. Please select something to convert to drill point " "(dxfpoint) or clear point sign." msgstr "沒有選取任何物件。請選取物件以轉換成鑽尖 (dxfpoint) 或清除鑽尖標記。" @@ -27914,16 +29574,16 @@ msgid "" "Failed to import the subprocess module. Please report this as a bug at: " "https://bugs.launchpad.net/inkscape." msgstr "" +"匯入次處理 (subprocess) 模組失敗。請到此回報程式錯誤 (bug):https://bugs." +"launchpad.net/inkscape。" #: ../share/extensions/generate_voronoi.py:36 -#, fuzzy msgid "Python version is: " -msgstr "轉成參考線" +msgstr "Python 版本:" #: ../share/extensions/generate_voronoi.py:94 -#, fuzzy msgid "Please select an object" -msgstr "請選取一個物件。" +msgstr "請選取一個物件" #: ../share/extensions/gimp_xcf.py:39 msgid "Gimp must be installed and set in your path variable." @@ -27939,35 +29599,32 @@ msgstr "此擴充功能需要至少一個非空白的圖層。" #: ../share/extensions/guillotine.py:250 msgid "The sliced bitmaps have been saved as:" -msgstr "" +msgstr "切片完的點陣圖已儲存成:" #: ../share/extensions/hpgl_decoder.py:43 -#, fuzzy msgid "Movements" -msgstr "移動漸層" +msgstr "移動" #: ../share/extensions/hpgl_decoder.py:44 -#, fuzzy msgid "Pen #" -msgstr "筆的質量" +msgstr "筆 #" #. issue error if no hpgl data found #: ../share/extensions/hpgl_input.py:58 -#, fuzzy msgid "No HPGL data found." -msgstr "找不到" +msgstr "找不到 HPGL 資料。" #: ../share/extensions/hpgl_input.py:66 msgid "" "The HPGL data contained unknown (unsupported) commands, there is a " "possibility that the drawing is missing some content." -msgstr "" +msgstr "此 HPGL 資料含有不明 (不支援) 的指令,這可能會讓圖畫遺失某些內容。" #. issue error if no paths found #: ../share/extensions/hpgl_output.py:58 msgid "" "No paths where found. Please convert all objects you want to save into paths." -msgstr "" +msgstr "找不到路徑。請將要儲存的物件全部轉換成路徑。" #: ../share/extensions/inkex.py:109 #, python-format @@ -27988,16 +29645,14 @@ msgstr "" "%s" #: ../share/extensions/inkex.py:162 -#, fuzzy, python-format +#, python-format msgid "Unable to open specified file: %s" -msgstr "" -"無法寫入指定的檔案!\n" -"%s" +msgstr "無法開啟指定的檔案:%s" #: ../share/extensions/inkex.py:171 -#, fuzzy, python-format +#, python-format msgid "Unable to open object member file: %s" -msgstr "無法找到標記的位置:%s" +msgstr "無法開啟物件成員檔案:%s" #: ../share/extensions/inkex.py:276 #, python-format @@ -28025,145 +29680,154 @@ msgid "" "update the JessyInk script.\n" "\n" msgstr "" +"此 JessyInk 腳本沒有安裝在這個 SVG 檔案中或者與 JessyInk 擴充功能版本不同。請" +"從「擴充功能」的「JessyInk」子選單裡選擇「安裝 / 更新...」來安裝或更新此 " +"JessyInk 腳本。\n" +"\n" #: ../share/extensions/jessyInk_autoTexts.py:48 -#, fuzzy msgid "" "To assign an effect, please select an object.\n" "\n" -msgstr "請選取一個物件。" +msgstr "" +"要指定一種特效,請先選取一個物件。\n" +"\n" #: ../share/extensions/jessyInk_autoTexts.py:54 msgid "" "Node with id '{0}' is not a suitable text node and was therefore ignored.\n" "\n" msgstr "" +"含有識別碼「{0}」的節點不是合適的文字節點,因此忽略該節點。\n" +"\n" #: ../share/extensions/jessyInk_effects.py:53 msgid "" "No object selected. Please select the object you want to assign an effect to " "and then press apply.\n" -msgstr "" +msgstr "沒有選取物件。請選取您要指定特效的物件並按套用。\n" #: ../share/extensions/jessyInk_export.py:82 msgid "Could not find Inkscape command.\n" -msgstr "" +msgstr "找不到 Inkscape 指令。\n" #: ../share/extensions/jessyInk_masterSlide.py:56 msgid "Layer not found. Removed current master slide selection.\n" -msgstr "" +msgstr "找不到圖層。已移除目前母投影片的選取狀態。\n" #: ../share/extensions/jessyInk_masterSlide.py:58 msgid "" "More than one layer with this name found. Removed current master slide " "selection.\n" -msgstr "" +msgstr "找到了多個該名稱的圖層。已移除目前母投影片的選取狀態。\n" #: ../share/extensions/jessyInk_summary.py:69 msgid "JessyInk script version {0} installed." -msgstr "" +msgstr "已安裝 JessyInk 腳本版本 {0}。" #: ../share/extensions/jessyInk_summary.py:71 msgid "JessyInk script installed." -msgstr "" +msgstr "已安裝 JessyInk 腳本。" #: ../share/extensions/jessyInk_summary.py:83 -#, fuzzy msgid "" "\n" "Master slide:" -msgstr "投影片母片" +msgstr "" +"\n" +"投影片母片:" #: ../share/extensions/jessyInk_summary.py:89 msgid "" "\n" "Slide {0!s}:" msgstr "" +"\n" +"投影片 {0!s}:" #: ../share/extensions/jessyInk_summary.py:94 -#, fuzzy msgid "{0}Layer name: {1}" -msgstr "圖層名稱:" +msgstr "{0}圖層名稱:{1}" #: ../share/extensions/jessyInk_summary.py:102 msgid "{0}Transition in: {1} ({2!s} s)" -msgstr "" +msgstr "{0}轉入特效: {1} ({2!s} s)" #: ../share/extensions/jessyInk_summary.py:104 -#, fuzzy msgid "{0}Transition in: {1}" -msgstr "轉場效果" +msgstr "{0}轉入特效: {1}" #: ../share/extensions/jessyInk_summary.py:111 msgid "{0}Transition out: {1} ({2!s} s)" -msgstr "" +msgstr "{0}轉出特效: {1} ({2!s} s)" #: ../share/extensions/jessyInk_summary.py:113 -#, fuzzy msgid "{0}Transition out: {1}" -msgstr "轉場效果" +msgstr "{0}轉出特效: {1}" #: ../share/extensions/jessyInk_summary.py:120 -#, fuzzy msgid "" "\n" "{0}Auto-texts:" -msgstr "自動文字" +msgstr "" +"\n" +"{0}自動化文字:" #: ../share/extensions/jessyInk_summary.py:123 msgid "{0}\t\"{1}\" (object id \"{2}\") will be replaced by \"{3}\"." -msgstr "" +msgstr "{0}\t\"{1}\" (物見識別碼 \"{2}\") 將會用 \"{3}\" 取代。" #: ../share/extensions/jessyInk_summary.py:168 msgid "" "\n" "{0}Initial effect (order number {1}):" msgstr "" +"\n" +"{0}初始特效 (序號 {1}):" #: ../share/extensions/jessyInk_summary.py:170 msgid "" "\n" "{0}Effect {1!s} (order number {2}):" msgstr "" +"\n" +"{0}特效 {1!s} (序號 {2}):" #: ../share/extensions/jessyInk_summary.py:174 msgid "{0}\tView will be set according to object \"{1}\"" -msgstr "" +msgstr "{0}\t視角會依據物件 \"{1}\" 設定" #: ../share/extensions/jessyInk_summary.py:176 msgid "{0}\tObject \"{1}\"" -msgstr "" +msgstr "{0}\t物件 \"{1}\"" #: ../share/extensions/jessyInk_summary.py:179 -#, fuzzy msgid " will appear" -msgstr "填補面積" +msgstr "將會出現" #: ../share/extensions/jessyInk_summary.py:181 msgid " will disappear" -msgstr "" +msgstr "將會消失" #: ../share/extensions/jessyInk_summary.py:184 msgid " using effect \"{0}\"" -msgstr "" +msgstr " 使用特效 \"{0}\"" #: ../share/extensions/jessyInk_summary.py:187 msgid " in {0!s} s" -msgstr "" +msgstr " 單位為 {0!s} 秒" #: ../share/extensions/jessyInk_transitions.py:55 -#, fuzzy msgid "Layer not found.\n" -msgstr "圖層移到最上層" +msgstr "找不到圖層。\n" #: ../share/extensions/jessyInk_transitions.py:57 msgid "More than one layer with this name found.\n" -msgstr "" +msgstr "找到多個該名稱的圖層。\n" #: ../share/extensions/jessyInk_transitions.py:70 -#, fuzzy msgid "Please enter a layer name.\n" -msgstr "你必須輸入檔名" +msgstr "請輸入圖層名稱。\n" #: ../share/extensions/jessyInk_video.py:54 #: ../share/extensions/jessyInk_video.py:59 @@ -28171,17 +29835,18 @@ msgid "" "Could not obtain the selected layer for inclusion of the video element.\n" "\n" msgstr "" +"無法取得包含影片元件的選取圖層。\n" +"\n" #: ../share/extensions/jessyInk_view.py:75 -#, fuzzy msgid "More than one object selected. Please select only one object.\n" -msgstr "選取多個物件。無法從多個物件取得樣式。" +msgstr "選取多個物件。請只選取單一個物件。\n" #: ../share/extensions/jessyInk_view.py:79 msgid "" "No object selected. Please select the object you want to assign a view to " "and then press apply.\n" -msgstr "" +msgstr "沒有選取物件。請選取您要指定視角的物件並按套用。\n" #: ../share/extensions/markers_strokepaint.py:83 #, python-format @@ -28194,19 +29859,17 @@ msgid "unable to locate marker: %s" msgstr "無法找到標記的位置:%s" #: ../share/extensions/measure.py:50 -#, fuzzy msgid "" "Failed to import the numpy modules. These modules are required by this " "extension. Please install them and try again. On a Debian-like system this " "can be done with the command, sudo apt-get install python-numpy." msgstr "" -"無法匯入 numpy 或 numpy.linalg 模組。這個擴充功能需要這些模組。請安裝這些模組" -"後再試一次。在 Debian-like 系統上可以執行 sudo apt-get install python-numpy " -"指令來安裝模組。" +"無法匯入 numpy 模組。此擴充功能需要這些模組。請安裝這些模組後再試一次。在 " +"Debian-like 系統上可執行 sudo apt-get install python-numpy 指令來安裝模組。" #: ../share/extensions/measure.py:112 msgid "Area is zero, cannot calculate Center of Mass" -msgstr "" +msgstr "面積為零,無法計算質心" #: ../share/extensions/pathalongpath.py:208 #: ../share/extensions/pathscatter.py:228 @@ -28293,17 +29956,17 @@ msgstr "" #: ../share/extensions/plotter.py:66 msgid "" "No paths where found. Please convert all objects you want to plot into paths." -msgstr "" +msgstr "該處找不到路徑。請將你想要繪製的物件全部轉換成路徑。" #: ../share/extensions/plotter.py:143 msgid "pySerial is not installed." -msgstr "" +msgstr "尚未安裝 pySerial。" #: ../share/extensions/plotter.py:163 msgid "" "Could not open port. Please check that your plotter is running, connected " "and the settings are correct." -msgstr "" +msgstr "無法開啟連接埠。請檢查你的繪圖機是否運作中並且連線和設定值都是正確的。" #: ../share/extensions/polyhedron_3d.py:65 msgid "" @@ -28346,38 +30009,36 @@ msgstr "內部錯誤。沒有選擇檢視類型\n" #: ../share/extensions/print_win32_vector.py:41 msgid "sorry, this will run only on Windows, exiting..." -msgstr "" +msgstr "抱歉,這只能在 Windows 上執行,離開中..." #: ../share/extensions/print_win32_vector.py:179 -#, fuzzy msgid "Failed to open default printer" -msgstr "設定 CairoRenderContext 失敗" +msgstr "開啟預設印表機失敗" #: ../share/extensions/render_barcode_datamatrix.py:202 msgid "Unrecognised DataMatrix size" -msgstr "" +msgstr "無法辨識的 DataMatrix 尺寸" #. we have an invalid bit value #: ../share/extensions/render_barcode_datamatrix.py:643 msgid "Invalid bit value, this is a bug!" -msgstr "" +msgstr "無效的位元值,這是程式錯誤!" #. abort if converting blank text #: ../share/extensions/render_barcode_datamatrix.py:678 msgid "Please enter an input string" -msgstr "" +msgstr "請輸入一個輸入字串" #. abort if converting blank text #: ../share/extensions/render_barcode_qrcode.py:1054 -#, fuzzy msgid "Please enter an input text" -msgstr "你必須輸入檔名" +msgstr "請輸入一個輸入文字" #: ../share/extensions/replace_font.py:133 msgid "" "Couldn't find anything using that font, please ensure the spelling and " "spacing is correct." -msgstr "" +msgstr "找不到任何使用該字型的項目,請確認拼寫和間距是否正確。" #: ../share/extensions/replace_font.py:140 #: ../share/extensions/svg_and_media_zip_output.py:193 @@ -28401,21 +30062,20 @@ msgstr "" "%s" #: ../share/extensions/replace_font.py:196 -#, fuzzy msgid "There was nothing selected" -msgstr "沒有選取項目" +msgstr "沒有選取任何項目" #: ../share/extensions/replace_font.py:244 msgid "Please enter a search string in the find box." -msgstr "" +msgstr "請在尋找欄位中輸入搜尋字串。" #: ../share/extensions/replace_font.py:248 msgid "Please enter a replacement font in the replace with box." -msgstr "" +msgstr "請在取代欄位中輸入取代字型。" #: ../share/extensions/replace_font.py:253 msgid "Please enter a replacement font in the replace all box." -msgstr "" +msgstr "請在全部取代欄位中輸入取代字型。" #: ../share/extensions/summersnight.py:44 msgid "" @@ -28432,9 +30092,8 @@ msgstr "無法找出檔案的位置: %s" #: ../share/extensions/svgcalendar.py:266 #: ../share/extensions/svgcalendar.py:288 -#, fuzzy msgid "You must select a correct system encoding." -msgstr "你必須最少選擇兩個元件。" +msgstr "你必須選擇正確的系統編碼。" #: ../share/extensions/uniconv-ext.py:56 #: ../share/extensions/uniconv_output.py:122 @@ -28448,22 +30107,22 @@ msgstr "請選取物件!" #: ../share/extensions/web-set-att.py:58 #: ../share/extensions/web-transmit-att.py:54 msgid "You must select at least two elements." -msgstr "你必須最少選擇兩個元件。" +msgstr "你必須最少選取兩個元件。" #: ../share/extensions/webslicer_create_group.py:57 msgid "" "You must create and select some \"Slicer rectangles\" before trying to group." -msgstr "" +msgstr "您必須在試圖群組前先建立並選取一些「切片矩形」。" #: ../share/extensions/webslicer_create_group.py:72 msgid "" "You must to select some \"Slicer rectangles\" or other \"Layout groups\"." -msgstr "" +msgstr "您必須選取一些「切片矩形」或其他「版面群組」。" #: ../share/extensions/webslicer_create_group.py:76 #, python-format msgid "Oops... The element \"%s\" is not in the Web Slicer layer" -msgstr "" +msgstr "哎喲... 此元件「%s」不在網頁切片圖層裡" #: ../share/extensions/webslicer_export.py:57 msgid "You must give a directory to export the slices." @@ -28497,7 +30156,7 @@ msgstr "你必須安裝 ImageMagick 處理 JPG 和 GIF。" #. lines of longitude are odd : abort #: ../share/extensions/wireframe_sphere.py:116 msgid "Please enter an even number of lines of longitude." -msgstr "" +msgstr "請輸入偶數的經線數。" #. vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99 #: ../share/extensions/addnodes.inx.h:1 @@ -28512,10 +30171,6 @@ msgstr "分割方式:" msgid "By max. segment length" msgstr "依照線段最大長度" -#: ../share/extensions/addnodes.inx.h:4 -msgid "By number of segments" -msgstr "依照線段數量" - #: ../share/extensions/addnodes.inx.h:5 msgid "Maximum segment length (px):" msgstr "線段最大長度 (px):" @@ -28564,112 +30219,94 @@ msgid "Cleans the cruft out of Adobe Illustrator SVGs before opening" msgstr "開啟前清除 Adobe 插圖 SVG 裡冗贅的部份" #: ../share/extensions/ccx_input.inx.h:1 -#, fuzzy msgid "Corel DRAW Compressed Exchange files input (UC)" -msgstr "Corel DRAW 壓縮的交換格式檔輸入" +msgstr "Corel DRAW 壓縮的交換格式檔輸入 (UC)" #: ../share/extensions/ccx_input.inx.h:2 -#, fuzzy msgid "Corel DRAW Compressed Exchange files (UC) (*.ccx)" -msgstr "Corel DRAW 壓縮的交換格式檔 (.ccx)" +msgstr "Corel DRAW 壓縮的交換格式檔 (UC) (*.ccx)" #: ../share/extensions/ccx_input.inx.h:3 -#, fuzzy msgid "Open compressed exchange files saved in Corel DRAW (UC)" -msgstr "開啟用 Corel DRAW 儲存的壓縮交換格式檔" +msgstr "開啟用 Corel DRAW 儲存的壓縮交換格式檔 (UC)" #: ../share/extensions/cdr_input.inx.h:1 -#, fuzzy msgid "Corel DRAW Input (UC)" -msgstr "Corel DRAW 輸入" +msgstr "Corel DRAW 輸入 (UC)" #: ../share/extensions/cdr_input.inx.h:2 -#, fuzzy msgid "Corel DRAW 7-X4 files (UC) (*.cdr)" -msgstr "Corel DRAW 7-X4 檔 (*.cdr)" +msgstr "Corel DRAW 7-X4 檔 (UC) (*.cdr)" #: ../share/extensions/cdr_input.inx.h:3 -#, fuzzy msgid "Open files saved in Corel DRAW 7-X4 (UC)" -msgstr "開啟用 Corel DRAW 7-X4 儲存的檔案" +msgstr "開啟用 Corel DRAW 7-X4 儲存的檔案 (UC)" #: ../share/extensions/cdt_input.inx.h:1 -#, fuzzy msgid "Corel DRAW templates input (UC)" -msgstr "Corel DRAW 範本輸入" +msgstr "Corel DRAW 範本輸入 (UC)" #: ../share/extensions/cdt_input.inx.h:2 -#, fuzzy msgid "Corel DRAW 7-13 template files (UC) (*.cdt)" -msgstr "Corel DRAW 7-13 範本檔 (.cdt)" +msgstr "Corel DRAW 7-13 範本檔 (UC) (*.cdt)" #: ../share/extensions/cdt_input.inx.h:3 -#, fuzzy msgid "Open files saved in Corel DRAW 7-13 (UC)" -msgstr "開啟用 Corel DRAW 7-13 儲存的檔案" +msgstr "開啟用 Corel DRAW 7-13 儲存的檔案 (UC)" #: ../share/extensions/cgm_input.inx.h:1 msgid "Computer Graphics Metafile files input" msgstr "電腦繪圖前設檔輸入" #: ../share/extensions/cgm_input.inx.h:2 -#, fuzzy msgid "Computer Graphics Metafile files (*.cgm)" -msgstr "電腦繪圖前設檔 (.cgm)" +msgstr "電腦繪圖前設檔 (*.cgm)" #: ../share/extensions/cgm_input.inx.h:3 msgid "Open Computer Graphics Metafile files" msgstr "開啟電腦繪圖前設檔" #: ../share/extensions/cmx_input.inx.h:1 -#, fuzzy msgid "Corel DRAW Presentation Exchange files input (UC)" -msgstr "Corel DRAW 簡報交換格式檔輸入" +msgstr "Corel DRAW 簡報交換格式檔輸入 (UC)" #: ../share/extensions/cmx_input.inx.h:2 -#, fuzzy msgid "Corel DRAW Presentation Exchange files (UC) (*.cmx)" -msgstr "Corel DRAW 簡報交換格式檔 (.cmx)" +msgstr "Corel DRAW 簡報交換格式檔 (UC) (*.cmx)" #: ../share/extensions/cmx_input.inx.h:3 -#, fuzzy msgid "Open presentation exchange files saved in Corel DRAW (UC)" -msgstr "開啟用 Corel DRAW 儲存的簡報交換格式檔" +msgstr "開啟用 Corel DRAW 儲存的簡報交換格式檔 (UC)" #: ../share/extensions/color_HSL_adjust.inx.h:1 -#, fuzzy msgid "HSL Adjust" -msgstr "HSB 調整" +msgstr "HSL 調整" #: ../share/extensions/color_HSL_adjust.inx.h:3 -#, fuzzy msgid "Hue (°)" -msgstr "色相旋轉 (°):" +msgstr "色相 (°)" #: ../share/extensions/color_HSL_adjust.inx.h:4 -#, fuzzy msgid "Random hue" -msgstr "隨機樹" +msgstr "隨機改變色相" #: ../share/extensions/color_HSL_adjust.inx.h:6 -#, fuzzy, no-c-format +#, no-c-format msgid "Saturation (%)" -msgstr "飽和度:" +msgstr "飽和度 (%)" #: ../share/extensions/color_HSL_adjust.inx.h:7 -#, fuzzy msgid "Random saturation" -msgstr "調整飽和度" +msgstr "隨機改變飽和度" #: ../share/extensions/color_HSL_adjust.inx.h:9 -#, fuzzy, no-c-format +#, no-c-format msgid "Lightness (%)" -msgstr "亮度:" +msgstr "亮度 (%)" #: ../share/extensions/color_HSL_adjust.inx.h:10 -#, fuzzy msgid "Random lightness" -msgstr "顆粒亮度:" +msgstr "隨機改變亮度" #: ../share/extensions/color_HSL_adjust.inx.h:13 #, no-c-format @@ -28683,6 +30320,13 @@ msgid "" " * Random Hue/Saturation/Lightness: randomize the parameter's value.\n" " " msgstr "" +"用選取物件的色彩 HSL 表示法調整色相、飽和度和亮度。\n" +"選項:\n" +" * 色相:以度為單位旋轉(頭尾循環)。\n" +" * 飽和度:相加/相減 % (最小=-100、最大=100)。\n" +" * 亮度:相加/相減 % (最小=-100、最大=100)。\n" +" * 色相/飽和度/亮度隨機變化:參數的數值隨機變化。\n" +" " #: ../share/extensions/color_blackandwhite.inx.h:1 msgid "Black and White" @@ -28690,7 +30334,7 @@ msgstr "黑白" #: ../share/extensions/color_blackandwhite.inx.h:2 msgid "Threshold Color (1-255):" -msgstr "" +msgstr "臨界顏色 (1-255):" #: ../share/extensions/color_brighter.inx.h:1 msgid "Brighter" @@ -28829,17 +30473,16 @@ msgid "Convert to Dashes" msgstr "轉成破折號" #: ../share/extensions/dhw_input.inx.h:1 -#, fuzzy msgid "DHW file input" -msgstr "Windows 後設檔案輸入" +msgstr "DHW 檔案輸入" #: ../share/extensions/dhw_input.inx.h:2 msgid "ACECAD Digimemo File (*.dhw)" -msgstr "" +msgstr "ACECAD Digimemo 檔案 (*.dhw)" #: ../share/extensions/dhw_input.inx.h:3 msgid "Open files from ACECAD Digimemo" -msgstr "" +msgstr "從 ACECAD Digimemo 開啟檔案" #: ../share/extensions/dia.inx.h:1 msgid "Dia Input" @@ -28858,8 +30501,7 @@ msgstr "" msgid "" "In order to import Dia files, Dia itself must be installed. You can get Dia " "at http://live.gnome.org/Dia" -msgstr "" -"想要匯入 Dia 檔案,必須安裝 Dia。你可在 http://live.gnome.org/Dia 取得該程式" +msgstr "想要匯入 Dia 檔案,必須安裝 Dia。你可在 http://live.gnome.org/Dia 取得該程式" #: ../share/extensions/dia.inx.h:4 msgid "Dia Diagram (*.dia)" @@ -28882,7 +30524,7 @@ msgid "Y Offset:" msgstr "Y 偏移:" #: ../share/extensions/dimension.inx.h:4 -msgid "Bounding box type :" +msgid "Bounding box type:" msgstr "邊界框類型:" #: ../share/extensions/dimension.inx.h:5 @@ -29161,14 +30803,14 @@ msgstr "文字字型:" msgid "" "- AutoCAD Release 13 and newer.\n" "- assume dxf drawing is in mm.\n" -"- assume svg drawing is in pixels, at 90 dpi.\n" +"- assume svg drawing is in pixels, at 96 dpi.\n" "- scale factor and origin apply only to manual scaling.\n" "- layers are preserved only on File->Open, not Import.\n" "- limited support for BLOCKS, use AutoCAD Explode Blocks instead, if needed." msgstr "" "- AutoCAD 版本 13 及更新版本。\n" "- 假設 dxf 圖畫的單位為 mm。\n" -"- 假設 svg 圖畫單位為、像素,解析度為 90 dpi。\n" +"- 假設 svg 圖畫單位為、像素,解析度為 96 dpi。\n" "- 縮放係數和原點只套用到手動縮放。\n" "- 圖層只保存在 檔案->開啟 上,而不匯入。\n" "- 僅限支援圖塊,需要時改為使用 AutoCAD 分解圖塊。" @@ -29202,14 +30844,12 @@ msgid "Character Encoding" msgstr "字元編碼" #: ../share/extensions/dxf_outlines.inx.h:7 -#, fuzzy msgid "Layer export selection" -msgstr "刪除選取" +msgstr "圖層匯出選取範圍" #: ../share/extensions/dxf_outlines.inx.h:8 -#, fuzzy msgid "Layer match name" -msgstr "圖層名稱:" +msgstr "圖層符合名稱" #: ../share/extensions/dxf_outlines.inx.h:9 msgid "pt" @@ -29277,25 +30917,22 @@ msgid "UTF 8" msgstr "UTF 8" #: ../share/extensions/dxf_outlines.inx.h:21 -#, fuzzy msgid "All (default)" -msgstr "(預設)" +msgstr "全部 (預設)" #: ../share/extensions/dxf_outlines.inx.h:22 -#, fuzzy msgid "Visible only" -msgstr "可見色" +msgstr "只匯出可見圖層" #: ../share/extensions/dxf_outlines.inx.h:23 msgid "By name match" -msgstr "" +msgstr "名稱符合的圖層" #: ../share/extensions/dxf_outlines.inx.h:25 -#, fuzzy msgid "" "- AutoCAD Release 14 DXF format.\n" "- The base unit parameter specifies in what unit the coordinates are output " -"(90 px = 1 in).\n" +"(96 px = 1 in).\n" "- Supported element types\n" " - paths (lines and splines)\n" " - rectangles\n" @@ -29307,8 +30944,8 @@ msgid "" "- You can choose to export all layers, only visible ones or by name match " "(case insensitive and use comma ',' as separator)" msgstr "" -"- AutoCAD 發佈的 14 DXF 格式。\n" -"- 基本單位參數可指定用哪一種單位的坐標作為輸出 (90 像素 = 1 英寸)。\n" +"- AutoCAD 版本 14 DXF 格式。\n" +"- 基本單位參數可指定用哪一種單位的坐標作為輸出 (96 像素 = 1 英寸)。\n" "- 支援元件類型。\n" " - 路徑 (直線和雲形線)。\n" " - 矩形\n" @@ -29317,7 +30954,8 @@ msgstr "" "Inkscape 無法讀取。\n" "- 多折線 (LWPOLYLINE) 輸出是一種多段連接的折線,要使用舊版的線 (LINE) 輸出請" "停用這個選項。\n" -"- 你可以選擇要匯出全部圖層或者只匯出可見的圖層" +"- 你可以選擇要匯出全部圖層、只匯出可見的圖層或名稱符合的圖層 (英文區分大小寫" +"並用逗號「,」將項目區隔開)" #: ../share/extensions/dxf_outlines.inx.h:34 msgid "Desktop Cutting Plotter (AutoCAD DXF R14) (*.dxf)" @@ -29378,26 +31016,98 @@ msgstr "嵌入圖片" #: ../share/extensions/embedimage.inx.h:2 #: ../share/extensions/embedselectedimages.inx.h:2 msgid "Embed only selected images" -msgstr "只嵌入選擇的圖片" +msgstr "只內嵌選擇的圖片" #: ../share/extensions/embedselectedimages.inx.h:1 -#, fuzzy msgid "Embed Selected Images" -msgstr "只嵌入選擇的圖片" - -#: ../share/extensions/empty_page.inx.h:1 -msgid "Empty Page" -msgstr "" +msgstr "內嵌選擇的圖片" + +#: ../share/extensions/empty_business_card.inx.h:1 +msgid "Business Card" +msgstr "名片" + +#: ../share/extensions/empty_business_card.inx.h:2 +msgid "Business card size:" +msgstr "名片尺寸:" + +#: ../share/extensions/empty_desktop.inx.h:1 +msgid "Desktop" +msgstr "桌面" + +#: ../share/extensions/empty_desktop.inx.h:2 +msgid "Desktop size:" +msgstr "桌面大小:" + +#. Maximum size is '16k' +#: ../share/extensions/empty_desktop.inx.h:4 +#: ../share/extensions/empty_generic.inx.h:2 +#: ../share/extensions/empty_video.inx.h:4 +msgid "Custom Width:" +msgstr "自訂寬度:" + +#: ../share/extensions/empty_desktop.inx.h:5 +#: ../share/extensions/empty_generic.inx.h:3 +#: ../share/extensions/empty_video.inx.h:5 +msgid "Custom Height:" +msgstr "自訂高度:" + +#: ../share/extensions/empty_dvd_cover.inx.h:1 +msgid "DVD Cover" +msgstr "DVD 封面" + +#: ../share/extensions/empty_dvd_cover.inx.h:2 +msgid "DVD spine width:" +msgstr "DVD 脊背標籤寬度:" + +#: ../share/extensions/empty_dvd_cover.inx.h:3 +msgid "DVD cover bleed (mm):" +msgstr "DVD 封面出血 (公釐):" + +#: ../share/extensions/empty_generic.inx.h:1 +msgid "Generic Canvas" +msgstr "一般畫布" + +#: ../share/extensions/empty_generic.inx.h:4 +msgid "SVG Unit:" +msgstr "SVG 單位:" + +#: ../share/extensions/empty_generic.inx.h:5 +msgid "Canvas background:" +msgstr "畫布背景:" + +#: ../share/extensions/empty_generic.inx.h:6 +#: ../share/extensions/empty_page.inx.h:5 +msgid "Hide border" +msgstr "隱藏邊界" + +#: ../share/extensions/empty_icon.inx.h:1 +msgid "Icon" +msgstr "圖示" + +#: ../share/extensions/empty_icon.inx.h:2 +msgid "Icon size:" +msgstr "圖示尺寸:" #: ../share/extensions/empty_page.inx.h:2 -#, fuzzy msgid "Page size:" -msgstr "頁面尺寸(_A):" +msgstr "頁面尺寸:" #: ../share/extensions/empty_page.inx.h:3 msgid "Page orientation:" msgstr "頁面方向:" +#: ../share/extensions/empty_page.inx.h:4 +msgid "Page background:" +msgstr "頁面背景:" + +#: ../share/extensions/empty_video.inx.h:1 +msgid "Video Screen" +msgstr "影片螢幕" + +#: ../share/extensions/empty_video.inx.h:2 +msgid "Video size:" +msgstr "影片尺寸:" + #: ../share/extensions/eps_input.inx.h:1 msgid "EPS Input" msgstr "EPS 輸入" @@ -29613,9 +31323,8 @@ msgid "First derivative:" msgstr "一階導數:" #: ../share/extensions/funcplot.inx.h:34 -#, fuzzy msgid "Clip with rectangle" -msgstr "矩形寬度" +msgstr "用矩形裁剪" #: ../share/extensions/funcplot.inx.h:35 #: ../share/extensions/param_curves.inx.h:28 @@ -29644,11 +31353,11 @@ msgid "" "engravers Plotters etc. To get more info visit developers page at http://www." "cnc-club.ru/gcodetools" msgstr "" -"Gcodetools 開發作為將 Inkscape 路徑轉變成簡單的 Gcode 程式碼。Gcode 為 CNC 機" -"械廣泛使用的專用格式。因此 Gcodetools 讓你能夠把 Inkscape 當作 CAM 程式使用。" -"此擴充模組可以搭配許多機械類型:銑床、車床、雷射與電漿切割機、雕刻銑削以及雕" -"刻繪圖機等等。造訪開發人員網頁 http://www.cnc-club.ru/gcodetools 得知更多詳細" -"情形" +"Gcodetools 開發作為將 Inkscape 路徑轉變成簡單 Gcode 程式碼的工具。Gcode 為 " +"CNC 機械廣泛使用的專用格式。因此 Gcodetools 讓你能夠把 Inkscape 當作 CAM 程式" +"使用。此擴充模組可以搭配許多機械類型:銑床、車床、雷射與電漿切割機、雕刻銑削" +"以及雕刻繪圖機等等。造訪開發人員網頁 http://www.cnc-club.ru/gcodetools 得知更" +"多詳細情形" #: ../share/extensions/gcodetools_about.inx.h:4 #: ../share/extensions/gcodetools_area.inx.h:54 @@ -29995,6 +31704,16 @@ msgstr "產生日誌檔" msgid "Full path to log file:" msgstr "日誌檔的完整路徑:" +#: ../share/extensions/gcodetools_area.inx.h:48 +#: ../share/extensions/gcodetools_dxf_points.inx.h:20 +#: ../share/extensions/gcodetools_engraving.inx.h:26 +#: ../share/extensions/gcodetools_graffiti.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:41 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 +msgctxt "GCode postprocessor" +msgid "None" +msgstr "無" + #: ../share/extensions/gcodetools_area.inx.h:49 #: ../share/extensions/gcodetools_dxf_points.inx.h:21 #: ../share/extensions/gcodetools_engraving.inx.h:27 @@ -30242,14 +31961,12 @@ msgid "" msgstr "這項功能可修改路徑使其能夠用矩形刀具進行切削。" #: ../share/extensions/gcodetools_orientation_points.inx.h:1 -#, fuzzy msgid "Orientation points" -msgstr "方向" +msgstr "方向點" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:1 -#, fuzzy msgid "Prepare path for plasma" -msgstr "預備電漿或雷射切割刀的路徑" +msgstr "預備電漿切割刀的路徑" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2 msgid "Prepare path for plasma or laser cuters" @@ -30405,12 +32122,10 @@ msgid "Save Background" msgstr "儲存背景" #: ../share/extensions/gimp_xcf.inx.h:6 -#, fuzzy msgid "File Resolution:" -msgstr "解析度:" +msgstr "檔案解析度:" #: ../share/extensions/gimp_xcf.inx.h:8 -#, fuzzy msgid "" "This extension exports the document to Gimp XCF format according to the " "following options:\n" @@ -30426,9 +32141,10 @@ msgid "" msgstr "" "此擴充功能可根據下列選項將文件匯出成 GIMP XCF 格式:\n" " * 儲存參考線:將全部參考線轉換成 GIMP 參考線。\n" -" * 儲存格線:將首個方形格線轉換成 GIMP 格線 (注意,預設的 Inkscape 格線在 " -"GIMP 中顯示非常的寬。\n" +" * 儲存格線:將第一個方形格線轉換成 GIMP 格線 (注意,預設的 Inkscape 格線" +"在 GIMP 中顯示非常的寬。\n" " * 儲存背景:加入文件背景到每個轉換的圖層。\n" +" * 檔案解析度:XCF 檔案解析度,單位為每英寸多少點 (DPI)。\n" "\n" "每個第一層級的圖層會轉換成 GIMP 圖層。次圖層會依照本身的第一層級母體圖層建立" "關聯並轉換成單一 GIMP 圖層。" @@ -30647,14 +32363,12 @@ msgid "Guides creator" msgstr "參考線建立工具" #: ../share/extensions/guides_creator.inx.h:2 -#, fuzzy msgid "Regular guides" -msgstr "矩形格線" +msgstr "一般參考線" #: ../share/extensions/guides_creator.inx.h:3 -#, fuzzy msgid "Guides preset:" -msgstr "參考線建立工具" +msgstr "參考線前置設定:" #: ../share/extensions/guides_creator.inx.h:6 msgid "Start from edges" @@ -30677,87 +32391,77 @@ msgid "Rule-of-third" msgstr "第三定律" #: ../share/extensions/guides_creator.inx.h:11 -#, fuzzy msgid "Diagonal guides" -msgstr "貼齊參考線" +msgstr "對角參考線" #: ../share/extensions/guides_creator.inx.h:12 -#, fuzzy msgid "Upper left corner" -msgstr "頁面頂點" +msgstr "左上角" #: ../share/extensions/guides_creator.inx.h:13 -#, fuzzy msgid "Upper right corner" -msgstr "頁面頂點" +msgstr "右上角" #: ../share/extensions/guides_creator.inx.h:14 -#, fuzzy msgid "Lower left corner" -msgstr "降低目前圖層" +msgstr "左下角" #: ../share/extensions/guides_creator.inx.h:15 -#, fuzzy msgid "Lower right corner" -msgstr "降低目前圖層" +msgstr "右下角" #: ../share/extensions/guides_creator.inx.h:16 -#, fuzzy msgid "Margins" -msgstr "邊距框" +msgstr "邊距" #: ../share/extensions/guides_creator.inx.h:17 msgid "Margins preset:" -msgstr "" +msgstr "邊距前置設定:" #: ../share/extensions/guides_creator.inx.h:18 -#, fuzzy msgid "Header margin:" -msgstr "頁面邊距" +msgstr "頁首邊距:" #: ../share/extensions/guides_creator.inx.h:19 -#, fuzzy msgid "Footer margin:" -msgstr "頂端(_O):" +msgstr "頁尾邊距:" #: ../share/extensions/guides_creator.inx.h:20 -#, fuzzy msgid "Left margin:" -msgstr "左邊距" +msgstr "左邊距:" #: ../share/extensions/guides_creator.inx.h:21 -#, fuzzy msgid "Right margin:" -msgstr "右邊距" +msgstr "右邊距:" #: ../share/extensions/guides_creator.inx.h:22 -#, fuzzy msgid "Left book page" -msgstr "左邊角度:" +msgstr "書籍左頁面" #: ../share/extensions/guides_creator.inx.h:23 -#, fuzzy msgid "Right book page" -msgstr "右邊角度:" +msgstr "書籍右頁面" + +#: ../share/extensions/guides_creator.inx.h:24 +msgctxt "Margin" +msgid "None" +msgstr "無" #: ../share/extensions/guillotine.inx.h:1 msgid "Guillotine" msgstr "切片工具" #: ../share/extensions/guillotine.inx.h:2 -#, fuzzy msgid "Directory to save images to:" -msgstr "要儲存圖像的目錄" +msgstr "儲存圖片的目錄:" #: ../share/extensions/guillotine.inx.h:3 -#, fuzzy msgid "Image name (without extension):" -msgstr "影像名稱 (不含副檔名)" +msgstr "圖片名稱 (不含副檔名):" #: ../share/extensions/guillotine.inx.h:4 -#, fuzzy msgid "Ignore these settings and use export hints" -msgstr "忽略這些設定值並使用匯出提示?" +msgstr "忽略這些設定值並使用匯出提示" #: ../share/extensions/handles.inx.h:1 msgid "Draw Handles" @@ -30765,12 +32469,11 @@ msgstr "繪製控制柄" #: ../share/extensions/hershey.inx.h:1 msgid "Hershey Text" -msgstr "" +msgstr "Hershey 文字" #: ../share/extensions/hershey.inx.h:2 -#, fuzzy msgid "Render Text" -msgstr "圖形潤算" +msgstr "繪算文字" #: ../share/extensions/hershey.inx.h:3 #: ../share/extensions/render_alphabetsoup.inx.h:2 @@ -30780,124 +32483,104 @@ msgid "Text:" msgstr "文字:" #: ../share/extensions/hershey.inx.h:4 -#, fuzzy msgid "Action: " msgstr "動作:" #: ../share/extensions/hershey.inx.h:5 -#, fuzzy msgid "Font face: " -msgstr "字型大小:" +msgstr " 字型面: " #: ../share/extensions/hershey.inx.h:6 -#, fuzzy msgid "Typeset that text" -msgstr "輸入文字" +msgstr "文字排版" #: ../share/extensions/hershey.inx.h:7 -#, fuzzy msgid "Write glyph table" -msgstr "編輯字形的名稱" +msgstr "寫入字形表" #: ../share/extensions/hershey.inx.h:8 -#, fuzzy msgid "Sans 1-stroke" -msgstr "取消邊框設定" +msgstr "無襯線 1-筆劃" #: ../share/extensions/hershey.inx.h:9 -#, fuzzy msgid "Sans bold" -msgstr "使用粗體" +msgstr "無襯線粗體" #: ../share/extensions/hershey.inx.h:10 -#, fuzzy msgid "Serif medium" -msgstr "中等" +msgstr "襯線中號" #: ../share/extensions/hershey.inx.h:11 msgid "Serif medium italic" -msgstr "" +msgstr "襯線中號斜體" #: ../share/extensions/hershey.inx.h:12 msgid "Serif bold italic" -msgstr "" +msgstr "襯線粗斜體" #: ../share/extensions/hershey.inx.h:13 -#, fuzzy msgid "Serif bold" -msgstr "使用粗體" +msgstr "襯線粗體" #: ../share/extensions/hershey.inx.h:14 -#, fuzzy msgid "Script 1-stroke" -msgstr "設定邊框" +msgstr "書寫體 1-筆劃" #: ../share/extensions/hershey.inx.h:15 -#, fuzzy msgid "Script 1-stroke (alt)" -msgstr "粗-細畫筆 (快)" +msgstr "書寫體 1-筆劃" #: ../share/extensions/hershey.inx.h:16 -#, fuzzy msgid "Script medium" -msgstr "腳本識別碼" +msgstr "書寫體中號" #: ../share/extensions/hershey.inx.h:17 -#, fuzzy msgid "Gothic English" -msgstr "哥德文" +msgstr "哥德體英文" #: ../share/extensions/hershey.inx.h:18 -#, fuzzy msgid "Gothic German" -msgstr "哥德文" +msgstr "哥德體德文" #: ../share/extensions/hershey.inx.h:19 -#, fuzzy msgid "Gothic Italian" -msgstr "哥德文" +msgstr "哥德義大利文" #: ../share/extensions/hershey.inx.h:20 -#, fuzzy msgid "Greek 1-stroke" -msgstr "設定邊框" +msgstr "希臘 1-筆劃" #: ../share/extensions/hershey.inx.h:21 -#, fuzzy msgid "Greek medium" -msgstr "中等" +msgstr "希臘中號" #: ../share/extensions/hershey.inx.h:23 -#, fuzzy msgid "Japanese" -msgstr "爪哇文" +msgstr "日文" #: ../share/extensions/hershey.inx.h:24 -#, fuzzy msgid "Astrology" -msgstr "形態" +msgstr "佔星" #: ../share/extensions/hershey.inx.h:25 msgid "Math (lower)" -msgstr "" +msgstr "數學 (小寫)" #: ../share/extensions/hershey.inx.h:26 -#, fuzzy msgid "Math (upper)" -msgstr "路徑 (垂直)" +msgstr "數學 (大寫)" #: ../share/extensions/hershey.inx.h:28 -#, fuzzy msgid "Meteorology" -msgstr "形態" +msgstr "氣象" #: ../share/extensions/hershey.inx.h:29 msgid "Music" -msgstr "" +msgstr "音樂" #: ../share/extensions/hershey.inx.h:30 msgid "Symbolic" -msgstr "" +msgstr "符號" #: ../share/extensions/hershey.inx.h:31 msgid "" @@ -30906,11 +32589,14 @@ msgid "" "\n" "\n" msgstr "" +" \n" +"\n" +"\n" +"\n" #: ../share/extensions/hershey.inx.h:36 -#, fuzzy msgid "About..." -msgstr "關於" +msgstr "關於..." #: ../share/extensions/hershey.inx.h:37 msgid "" @@ -30930,11 +32616,22 @@ msgid "" "For additional information, please visit:\n" " www.evilmadscientist.com/go/hershey" msgstr "" +"\n" +"此擴充功能會用繪圖機的「Hershey」字型\n" +"繪算文字的線條,來自電腦字集技術所貢獻\n" +"的 NBS SP-424 1976-04:歐美字型和圖形符\n" +"號的 Hershey 規範表。\n" +"\n" +"這些不是傳統的字型「外框」,而是「單筆\n" +"劃」字型,或是由筆劃 (簍空) 構成字元外型\n" +"的「雕刻」字型。\n" +"\n" +"請造訪下面網站以得知更多額外的資訊:\n" +" www.evilmadscientist.com/go/hershey" #: ../share/extensions/hpgl_input.inx.h:1 -#, fuzzy msgid "HPGL Input" -msgstr "WPG 輸入" +msgstr "HPGL 輸入" #: ../share/extensions/hpgl_input.inx.h:2 msgid "" @@ -30942,13 +32639,14 @@ msgid "" "other HPGL files please change their file extension to .plt, make sure you " "have UniConverter installed and open them again." msgstr "" +"請注意你只能開啟用 Inkscape 寫入的 HPGL 檔案,要開啟其他 HPGL 檔案請先將副檔" +"名改成 .plt,且確認你已安裝 UniConverter 套件並再重新開啟檔案一次。" #: ../share/extensions/hpgl_input.inx.h:3 #: ../share/extensions/hpgl_output.inx.h:4 #: ../share/extensions/plotter.inx.h:23 -#, fuzzy msgid "Resolution X (dpi):" -msgstr "解析度 (dpi)" +msgstr "解析度 X (dpi):" #: ../share/extensions/hpgl_input.inx.h:4 #: ../share/extensions/hpgl_output.inx.h:5 @@ -30956,14 +32654,13 @@ msgstr "解析度 (dpi)" msgid "" "The amount of steps the plotter moves if it moves for 1 inch on the X axis " "(Default: 1016.0)" -msgstr "" +msgstr "若在 X 軸方向移動 1 英寸則繪圖機移動的步階數 (預設:「1016.0」)" #: ../share/extensions/hpgl_input.inx.h:5 #: ../share/extensions/hpgl_output.inx.h:6 #: ../share/extensions/plotter.inx.h:25 -#, fuzzy msgid "Resolution Y (dpi):" -msgstr "解析度 (dpi)" +msgstr "解析度 Y (dpi):" #: ../share/extensions/hpgl_input.inx.h:6 #: ../share/extensions/hpgl_output.inx.h:7 @@ -30971,15 +32668,15 @@ msgstr "解析度 (dpi)" msgid "" "The amount of steps the plotter moves if it moves for 1 inch on the Y axis " "(Default: 1016.0)" -msgstr "" +msgstr "若在 Y 軸方向移動 1 英寸則繪圖機移動的步階數 (預設:「1016.0」)" #: ../share/extensions/hpgl_input.inx.h:7 msgid "Show movements between paths" -msgstr "" +msgstr "顯示路徑之間的移動數" #: ../share/extensions/hpgl_input.inx.h:8 msgid "Check this to show movements between paths (Default: Unchecked)" -msgstr "" +msgstr "勾選此項可顯示路徑之間的移動數 (預設:不勾選)" #: ../share/extensions/hpgl_input.inx.h:9 #: ../share/extensions/hpgl_output.inx.h:34 @@ -30987,9 +32684,8 @@ msgid "HP Graphics Language file (*.hpgl)" msgstr "惠普圖形語言檔 (*.hpgl)" #: ../share/extensions/hpgl_input.inx.h:10 -#, fuzzy msgid "Import an HP Graphics Language file" -msgstr "匯出到惠普圖形語言檔" +msgstr "匯入惠普圖形語言檔" #: ../share/extensions/hpgl_output.inx.h:1 msgid "HPGL Output" @@ -31001,28 +32697,28 @@ msgid "" "Please use the plotter extension (Extensions menu) to plot directly over a " "serial connection." msgstr "" +"請確認你要繪製的物件全部都已轉換成路徑。請使用繪圖機擴充功能 (擴充功能選單) " +"經由序列埠連線直接繪製圖形。" #: ../share/extensions/hpgl_output.inx.h:3 #: ../share/extensions/plotter.inx.h:22 -#, fuzzy msgid "Plotter Settings " -msgstr "PDF 匯入設定值" +msgstr "繪圖機設定值" #: ../share/extensions/hpgl_output.inx.h:8 #: ../share/extensions/plotter.inx.h:27 -#, fuzzy msgid "Pen number:" -msgstr "筆號" +msgstr "筆號:" #: ../share/extensions/hpgl_output.inx.h:9 #: ../share/extensions/plotter.inx.h:28 msgid "The number of the pen (tool) to use (Standard: '1')" -msgstr "" +msgstr "要使用的筆號 (刀具) (標準:「1」)" #: ../share/extensions/hpgl_output.inx.h:10 #: ../share/extensions/plotter.inx.h:29 msgid "Pen force (g):" -msgstr "" +msgstr "筆壓 (克重):" #: ../share/extensions/hpgl_output.inx.h:11 #: ../share/extensions/plotter.inx.h:30 @@ -31030,11 +32726,13 @@ msgid "" "The amount of force pushing down the pen in grams, set to 0 to omit command; " "most plotters ignore this command (Default: 0)" msgstr "" +"筆下壓的力道,單位為克重,設定為 0 表示省略指令;大多數的繪圖機會忽略該指令 " +"(預設:0)" #: ../share/extensions/hpgl_output.inx.h:12 #: ../share/extensions/plotter.inx.h:31 msgid "Pen speed (cm/s or mm/s):" -msgstr "" +msgstr "筆速 (公分/秒或公釐/秒):" #: ../share/extensions/hpgl_output.inx.h:13 msgid "" @@ -31042,61 +32740,58 @@ msgid "" "(depending on your plotter model), set to 0 to omit command; most plotters " "ignore this command (Default: 0)" msgstr "" +"筆移動的速度,單位為每秒多少公分或公釐 (取決於你的繪圖機),設定為 0 表示省略" +"指令;大多數的繪圖機會忽略該指令 (預設:0)" #: ../share/extensions/hpgl_output.inx.h:14 -#, fuzzy msgid "Rotation (°, Clockwise):" -msgstr "順時針旋轉" +msgstr "旋轉 (°, 順時針):" #: ../share/extensions/hpgl_output.inx.h:15 #: ../share/extensions/plotter.inx.h:34 msgid "Rotation of the drawing (Default: 0°)" -msgstr "" +msgstr "圖畫的旋轉角度 (預設:0°)" #: ../share/extensions/hpgl_output.inx.h:16 #: ../share/extensions/plotter.inx.h:35 -#, fuzzy msgid "Mirror X axis" -msgstr "鏡像 Y 軸" +msgstr "鏡像 X 軸" #: ../share/extensions/hpgl_output.inx.h:17 #: ../share/extensions/plotter.inx.h:36 msgid "Check this to mirror the X axis (Default: Unchecked)" -msgstr "" +msgstr "勾選此項可依照 X 軸鏡射 (預設:不勾選)" #: ../share/extensions/hpgl_output.inx.h:18 #: ../share/extensions/plotter.inx.h:37 -#, fuzzy msgid "Mirror Y axis" msgstr "鏡像 Y 軸" #: ../share/extensions/hpgl_output.inx.h:19 #: ../share/extensions/plotter.inx.h:38 msgid "Check this to mirror the Y axis (Default: Unchecked)" -msgstr "" +msgstr "勾選此項可依照 Y 軸鏡射 (預設:不勾選)" #: ../share/extensions/hpgl_output.inx.h:20 #: ../share/extensions/plotter.inx.h:39 -#, fuzzy msgid "Center zero point" -msgstr "置中" +msgstr "置中零點" #: ../share/extensions/hpgl_output.inx.h:21 #: ../share/extensions/plotter.inx.h:40 msgid "" "Check this if your plotter uses a centered zero point (Default: Unchecked)" -msgstr "" +msgstr "若想要讓繪圖機將零點置中請勾選此項 (預設:不勾選)" #: ../share/extensions/hpgl_output.inx.h:22 #: ../share/extensions/plotter.inx.h:41 -#, fuzzy msgid "Plot Features " -msgstr "氈毛羽化" +msgstr "圖畫羽化" #: ../share/extensions/hpgl_output.inx.h:23 #: ../share/extensions/plotter.inx.h:42 msgid "Overcut (mm):" -msgstr "" +msgstr "過切 (公釐):" #: ../share/extensions/hpgl_output.inx.h:24 #: ../share/extensions/plotter.inx.h:43 @@ -31104,38 +32799,37 @@ msgid "" "The distance in mm that will be cut over the starting point of the path to " "prevent open paths, set to 0.0 to omit command (Default: 1.00)" msgstr "" +"將會切割超過路徑起點多少距離以避免開放路徑,單位為公釐,設定為 0 表示省略指" +"令 (預設:「1.00」)" #: ../share/extensions/hpgl_output.inx.h:25 #: ../share/extensions/plotter.inx.h:44 -#, fuzzy msgid "Tool offset (mm):" -msgstr "水平偏移 (px):" +msgstr "刀具偏移 (公釐):" #: ../share/extensions/hpgl_output.inx.h:26 #: ../share/extensions/plotter.inx.h:45 msgid "" "The offset from the tool tip to the tool axis in mm, set to 0.0 to omit " "command (Default: 0.25)" -msgstr "" +msgstr "刀具尖端到刀具軸的偏移,單位為公釐,設定為 0 表示省略指令 (預設:「0.25」)" #: ../share/extensions/hpgl_output.inx.h:27 #: ../share/extensions/plotter.inx.h:46 -#, fuzzy msgid "Use precut" -msgstr "系統預設" +msgstr "使用預切" #: ../share/extensions/hpgl_output.inx.h:28 #: ../share/extensions/plotter.inx.h:47 msgid "" "Check this to cut a small line before the real drawing starts to correctly " "align the tool orientation. (Default: Checked)" -msgstr "" +msgstr "勾選此項可於真正開始繪製前先切割細線以正確地對齊刀具方向。(預設:勾選)" #: ../share/extensions/hpgl_output.inx.h:29 #: ../share/extensions/plotter.inx.h:48 -#, fuzzy msgid "Curve flatness:" -msgstr "平坦度:" +msgstr "曲線平坦度:" #: ../share/extensions/hpgl_output.inx.h:30 #: ../share/extensions/plotter.inx.h:49 @@ -31143,12 +32837,13 @@ msgid "" "Curves are divided into lines, this number controls how fine the curves will " "be reproduced, the smaller the finer (Default: '1.2')" msgstr "" +"曲線要細分的線段數量,此數量會控制曲線重新產生的精細程度,數值愈小則愈精細 " +"(預設:「1.2」)" #: ../share/extensions/hpgl_output.inx.h:31 #: ../share/extensions/plotter.inx.h:50 -#, fuzzy msgid "Auto align" -msgstr "對齊" +msgstr "自動對齊" #: ../share/extensions/hpgl_output.inx.h:32 #: ../share/extensions/plotter.inx.h:51 @@ -31157,6 +32852,8 @@ msgid "" "if used). If unchecked you have to make sure that all parts of your drawing " "are within the document border! (Default: Checked)" msgstr "" +"勾選此項會讓圖畫自動對齊零點 (若有設定偏移則會加上偏移值)。若不勾選你必須自己" +"確認圖繪內容全部都在文件邊界內!(預設:勾選)" #: ../share/extensions/hpgl_output.inx.h:33 #: ../share/extensions/plotter.inx.h:54 @@ -31164,29 +32861,28 @@ msgid "" "All these settings depend on the plotter you use, for more information " "please consult the manual or homepage for your plotter." msgstr "" +"這些設定值全都取決於你使用的繪圖機,請查詢繪圖機的使用手冊或網站取得更詳細的" +"資訊。" #: ../share/extensions/hpgl_output.inx.h:35 -#, fuzzy msgid "Export an HP Graphics Language file" -msgstr "匯出到惠普圖形語言檔" +msgstr "匯出惠普圖形語言檔" #: ../share/extensions/ink2canvas.inx.h:1 -#, fuzzy msgid "Convert to html5 canvas" -msgstr "轉成破折號" +msgstr "轉換成 html5 畫布" #: ../share/extensions/ink2canvas.inx.h:2 msgid "HTML 5 canvas (*.html)" -msgstr "" +msgstr "HTML 5 畫布 (*.html)" #: ../share/extensions/ink2canvas.inx.h:3 msgid "HTML 5 canvas code" -msgstr "" +msgstr "HTML 5 畫布程式碼" #: ../share/extensions/inkscape_follow_link.inx.h:1 -#, fuzzy msgid "Follow Link" -msgstr "跟隨連結(_F)" +msgstr "追隨連結" #: ../share/extensions/inkscape_help_askaquestion.inx.h:1 msgid "Ask Us a Question" @@ -31198,9 +32894,8 @@ msgstr "命令列選項" #. i18n. Please don't translate it unless a page exists in your language #: ../share/extensions/inkscape_help_commandline.inx.h:3 -#, fuzzy msgid "http://inkscape.org/doc/inkscape-man.html" -msgstr "http://inkscape.org/doc/keys048.html" +msgstr "http://inkscape.org/doc/inkscape-man.html" #: ../share/extensions/inkscape_help_faq.inx.h:1 msgid "FAQ" @@ -31208,9 +32903,8 @@ msgstr "常見問題" #. i18n. Please don't translate it unless a page exists in your language #: ../share/extensions/inkscape_help_faq.inx.h:3 -#, fuzzy msgid "http://wiki.inkscape.org/wiki/index.php/FAQ" -msgstr "http://inkscape.org/doc/keys048.html" +msgstr "http://wiki.inkscape.org/wiki/index.php/FAQ" #: ../share/extensions/inkscape_help_keys.inx.h:1 msgid "Keys and Mouse Reference" @@ -31228,7 +32922,7 @@ msgstr "Inkscape 使用手冊" #. i18n. Please don't translate it unless a page exists in your language #: ../share/extensions/inkscape_help_manual.inx.h:3 msgid "http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php" -msgstr "" +msgstr "http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php" #: ../share/extensions/inkscape_help_relnotes.inx.h:1 msgid "New in This Version" @@ -31236,9 +32930,8 @@ msgstr "本版新功能" #. i18n. Please don't translate it unless a page exists in your language #: ../share/extensions/inkscape_help_relnotes.inx.h:3 -#, fuzzy msgid "http://wiki.inkscape.org/wiki/index.php/Release_notes/0.91" -msgstr "http://inkscape.org/doc/keys048.html" +msgstr "http://wiki.inkscape.org/wiki/index.php/Release_notes/0.91" #: ../share/extensions/inkscape_help_reportabug.inx.h:1 msgid "Report a Bug" @@ -31270,7 +32963,7 @@ msgstr "內插樣式" #: ../share/extensions/interp_att_g.inx.h:1 msgid "Interpolate Attribute in a group" -msgstr "在群組裡的插入屬性" +msgstr "群組中插入屬性" #: ../share/extensions/interp_att_g.inx.h:3 msgid "Attribute to Interpolate:" @@ -31321,16 +33014,12 @@ msgstr "如果選擇「其他」,必須知道 SVG 屬性以辨別這裡的這 #: ../share/extensions/interp_att_g.inx.h:20 msgid "Integer Number" -msgstr "整體數量" +msgstr "整數" #: ../share/extensions/interp_att_g.inx.h:21 msgid "Float Number" msgstr "浮動數" -#: ../share/extensions/interp_att_g.inx.h:22 -msgid "Tag" -msgstr "標籤" - #: ../share/extensions/interp_att_g.inx.h:23 #: ../share/extensions/polyhedron_3d.inx.h:33 msgid "Style" @@ -31359,7 +33048,7 @@ msgstr "" #: ../share/extensions/jessyInk_autoTexts.inx.h:1 msgid "Auto-texts" -msgstr "自動文字" +msgstr "自動化文字" #: ../share/extensions/jessyInk_autoTexts.inx.h:2 #: ../share/extensions/jessyInk_effects.inx.h:2 @@ -31372,7 +33061,7 @@ msgstr "設定值" #: ../share/extensions/jessyInk_autoTexts.inx.h:3 msgid "Auto-Text:" -msgstr "自動文字:" +msgstr "自動化文字:" #: ../share/extensions/jessyInk_autoTexts.inx.h:4 msgid "None (remove)" @@ -31396,7 +33085,7 @@ msgid "" "JessyInk presentation. Please see code.google.com/p/jessyink for more " "details." msgstr "" -"這個擴充功能可以讓你安裝、更新和移除 JessyInk 簡報的自動文字。請見 code." +"這個擴充功能可以讓你安裝、更新和移除 JessyInk 簡報的自動化文字。請見 code." "google.com/p/jessyink 得知更多詳細資訊。" #: ../share/extensions/jessyInk_autoTexts.inx.h:10 @@ -31697,7 +33386,7 @@ msgstr "圖層名稱:" #: ../share/extensions/jessyInk_masterSlide.inx.h:4 msgid "If no layer name is supplied, the master slide is unset." -msgstr "若沒有提供任何圖層名稱,會取消設定投影片母片。" +msgstr "若沒有提供任何圖層名稱,投影片母片為未設定狀態。" #: ../share/extensions/jessyInk_masterSlide.inx.h:6 msgid "" @@ -31790,7 +33479,7 @@ msgstr "移除轉場效果" #: ../share/extensions/jessyInk_uninstall.inx.h:7 msgid "Remove auto-texts" -msgstr "移除自動文字" +msgstr "移除自動化文字" #: ../share/extensions/jessyInk_uninstall.inx.h:8 msgid "Remove views" @@ -32052,7 +33741,7 @@ msgstr "" #: ../share/extensions/lorem_ipsum.inx.h:1 msgid "Lorem ipsum" -msgstr "無意義版文" +msgstr "亂數假文" #: ../share/extensions/lorem_ipsum.inx.h:3 msgid "Number of paragraphs:" @@ -32072,9 +33761,9 @@ msgid "" "text. If a flowed text is selected, Lorem Ipsum is added to it; otherwise a " "new flowed text object, the size of the page, is created in a new layer." msgstr "" -"這個特效可以製作標準的「無意義版文 (Lorem Ipsum)」偽拉丁文佔位符號文稿。如果" -"選取一個流動文字,Lorem Ipsum 會被加到裡面;否則會在新圖層建立新的流動文字物" -"件 (頁面的大小) 。" +"這個特效可以製作標準的「亂數假文 (Lorem Ipsum)」偽拉丁文佔位符號文稿。如果選" +"取一個流動文字,Lorem Ipsum 會被加到裡面;否則會在新圖層建立新的流動文字物件 " +"(頁面的大小) 。" #: ../share/extensions/markers_strokepaint.inx.h:1 msgid "Color Markers" @@ -32129,13 +33818,12 @@ msgid "Measurement Type: " msgstr "測量類型:" #: ../share/extensions/measure.inx.h:4 -#, fuzzy msgid "Text Orientation: " -msgstr "文字方向" +msgstr "文字方向:" #: ../share/extensions/measure.inx.h:5 msgid "Angle [with Fixed Angle option only] (°):" -msgstr "" +msgstr "角度 [只和固定角度選項一起使用] (°):" #: ../share/extensions/measure.inx.h:6 msgid "Font size (px):" @@ -32163,25 +33851,22 @@ msgid "Area" msgstr "面積" #: ../share/extensions/measure.inx.h:13 -#, fuzzy msgctxt "measure extension" msgid "Center of Mass" -msgstr "筆的質量" +msgstr "質心" #: ../share/extensions/measure.inx.h:14 -#, fuzzy msgctxt "measure extension" msgid "Text On Path" msgstr "路徑文字" #: ../share/extensions/measure.inx.h:15 -#, fuzzy msgctxt "measure extension" msgid "Fixed Angle" -msgstr "筆尖角度" +msgstr "固定角度" #: ../share/extensions/measure.inx.h:18 -#, fuzzy, no-c-format +#, no-c-format msgid "" "This effect measures the length, area, or center-of-mass of the selected " "paths. Length and area are added as a text object with the selected units. " @@ -32199,9 +33884,10 @@ msgid "" "Bezier curves. If a circle is used, the area may be too high by as much as " "0.03%." msgstr "" -"此特效可依照選擇的單位來測量所選路徑的長度或面積,並作為文字物件加入。\n" -" \n" -" * 顯示格式可以是特定角度的路徑文字或單獨文字。\n" +"此特效可依照選擇的單位來測量所選路徑的長度、面積或質心,長度和面積會以文字物" +"件加入。而質心會以 X 型符號標示。\n" +"\n" +" * 顯示格式可以是特定角度的路徑文字或獨立文字。\n" " * 可用精密字段控制有效數字的位數。\n" " * 偏移量字段控制從文字到路徑的間隔。\n" " * 比例係數可以被使用在比例圖中製作尺寸。例如,如果圖畫裡的 1 公分等於真實中" @@ -32211,7 +33897,7 @@ msgstr "" #: ../share/extensions/merge_styles.inx.h:1 msgid "Merge Styles into CSS" -msgstr "" +msgstr "將樣式合併到 CSS 中" #: ../share/extensions/merge_styles.inx.h:2 msgid "" @@ -32220,15 +33906,16 @@ msgid "" "inline style attributes. Please use a name which best describes the kinds of " "objects and their common context for best effect." msgstr "" +"所有選取的節點會群組在一起並將它們的共同樣式屬性建立新的類別,此類別會取代現" +"有的內部樣式屬性。請用最能描素這些物件和其共通內容的命名來歸類這些物件。" #: ../share/extensions/merge_styles.inx.h:3 msgid "New Class Name:" -msgstr "" +msgstr "新類別名稱:" #: ../share/extensions/merge_styles.inx.h:4 -#, fuzzy msgid "Stylesheet" -msgstr "樣式" +msgstr "樣式表" #: ../share/extensions/motion.inx.h:1 msgid "Motion" @@ -32267,29 +33954,24 @@ msgid "End t-value:" msgstr "結束 t 值:" #: ../share/extensions/param_curves.inx.h:5 -#, fuzzy msgid "Multiply t-range by 2*pi" -msgstr "以「2*pi」乘上 t 範圍:" +msgstr "「2*圓周率」乘以 t 範圍" #: ../share/extensions/param_curves.inx.h:6 -#, fuzzy msgid "X-value of rectangle's left:" -msgstr "矩形左邊的 x 值:" +msgstr "矩形左邊的 X 值:" #: ../share/extensions/param_curves.inx.h:7 -#, fuzzy msgid "X-value of rectangle's right:" -msgstr "矩形右邊的 x 值:" +msgstr "矩形右邊的 X 值:" #: ../share/extensions/param_curves.inx.h:8 -#, fuzzy msgid "Y-value of rectangle's bottom:" -msgstr "矩形底端的 y 值:" +msgstr "矩形底端的 Y 值:" #: ../share/extensions/param_curves.inx.h:9 -#, fuzzy msgid "Y-value of rectangle's top:" -msgstr "矩形頂端的 y 值:" +msgstr "矩形頂端的 Y 值:" #: ../share/extensions/param_curves.inx.h:10 msgid "Samples:" @@ -32307,14 +33989,12 @@ msgstr "" "永遠以數字決定第一個衍生物件。" #: ../share/extensions/param_curves.inx.h:26 -#, fuzzy msgid "X-Function:" -msgstr "x 函數:" +msgstr "X 函數:" #: ../share/extensions/param_curves.inx.h:27 -#, fuzzy msgid "Y-Function:" -msgstr "x 函數:" +msgstr "Y 函數:" #: ../share/extensions/pathalongpath.inx.h:1 msgid "Pattern along Path" @@ -32362,18 +34042,13 @@ msgid "Ribbon" msgstr "緞帶" #: ../share/extensions/pathalongpath.inx.h:17 -#, fuzzy msgid "" "This effect scatters or bends a pattern along arbitrary \"skeleton\" paths. " "The pattern is the topmost object in the selection. Groups of paths, shapes " "or clones are allowed." msgstr "" -"這個特效可沿著任意「骨架」路徑散佈圖案。圖案必須在選取區的最上層。可以是路" -"徑、形狀、仿製物件的群組。" - -#: ../share/extensions/pathscatter.inx.h:1 -msgid "Scatter" -msgstr "散佈" +"這個特效可沿著任意「骨架」路徑散佈或彎曲圖案。圖案必須在選取區的最上層。可以" +"是路徑、形狀、仿製物件的群組。" #: ../share/extensions/pathscatter.inx.h:3 msgid "Follow path orientation" @@ -32496,10 +34171,6 @@ msgstr "出血 (英寸):" msgid "Note: Bond Weight # calculations are a best-guess estimate." msgstr "備註:證卷用紙重量 # 計算是最佳估測。" -#: ../share/extensions/perspective.inx.h:1 -msgid "Perspective" -msgstr "透視" - #: ../share/extensions/pixelsnap.inx.h:1 msgid "PixelSnap" msgstr "像素貼齊" @@ -32514,98 +34185,103 @@ msgstr "" #: ../share/extensions/plotter.inx.h:1 msgid "Plot" -msgstr "" +msgstr "繪圖檔" #: ../share/extensions/plotter.inx.h:2 msgid "" "Please make sure that all objects you want to plot are converted to paths." -msgstr "" +msgstr "請確認你要繪製的所有物件都已經轉換成路徑。" #: ../share/extensions/plotter.inx.h:3 -#, fuzzy msgid "Connection Settings " -msgstr "連接關係" +msgstr "連線設定值" #: ../share/extensions/plotter.inx.h:4 -#, fuzzy msgid "Serial port:" -msgstr "垂直點:" +msgstr "序列連接埠:" #: ../share/extensions/plotter.inx.h:5 msgid "" "The port of your serial connection, on Windows something like 'COM1', on " "Linux something like: '/dev/ttyUSB0' (Default: COM1)" msgstr "" +"你的序列連接埠,Windows 系統上格式為「COM1」之類的,Linux 系統上則像「/dev/" +"ttyUSB0」(預設:「COM1」)" #: ../share/extensions/plotter.inx.h:6 -#, fuzzy msgid "Serial baud rate:" -msgstr "垂直模糊:" +msgstr "序列連線鮑率:" #: ../share/extensions/plotter.inx.h:7 msgid "The Baud rate of your serial connection (Default: 9600)" -msgstr "" +msgstr "你的序列連線鮑率 (預設:「9600」)" #: ../share/extensions/plotter.inx.h:8 -#, fuzzy msgid "Flow control:" -msgstr "錄放控制" +msgstr "錄放控制:" #: ../share/extensions/plotter.inx.h:9 msgid "" "The Software / Hardware flow control of your serial connection (Default: " "Software)" -msgstr "" +msgstr "序列連線的軟體 / 硬體錄放控制 (預設:「軟體」)" #: ../share/extensions/plotter.inx.h:10 -#, fuzzy msgid "Command language:" -msgstr "第二語言:" +msgstr "指令語言:" #: ../share/extensions/plotter.inx.h:11 msgid "The command language to use (Default: HPGL)" -msgstr "" +msgstr "要使用的指令語言 (預設:HPGL)" #: ../share/extensions/plotter.inx.h:12 msgid "Software (XON/XOFF)" -msgstr "" +msgstr "軟體 (XON/XOFF)" #: ../share/extensions/plotter.inx.h:13 -#, fuzzy msgid "Hardware (RTS/CTS)" -msgstr "硬體" +msgstr "硬體 (RTS/CTS)" #: ../share/extensions/plotter.inx.h:14 msgid "Hardware (DSR/DTR + RTS/CTS)" -msgstr "" +msgstr "硬體 (DSR/DTR + RTS/CTS)" + +#: ../share/extensions/plotter.inx.h:15 +msgctxt "Flow control" +msgid "None" +msgstr "無" #: ../share/extensions/plotter.inx.h:16 msgid "HPGL" -msgstr "" +msgstr "HPGL" #: ../share/extensions/plotter.inx.h:17 msgid "DMPL" -msgstr "" +msgstr "DMPL" #: ../share/extensions/plotter.inx.h:18 msgid "KNK Zing (HPGL variant)" -msgstr "" +msgstr "KNK Zing (HPGL 衍生型)" #: ../share/extensions/plotter.inx.h:19 msgid "" "Using wrong settings can under certain circumstances cause Inkscape to " "freeze. Always save your work before plotting!" msgstr "" +"使用錯誤的設定值會在某種情形下導致 Inkscape 程式停止回應。請務必在繪圖前先儲" +"存你的檔案!" #: ../share/extensions/plotter.inx.h:20 msgid "" "This can be a physical serial connection or a USB-to-Serial bridge. Ask your " "plotter manufacturer for drivers if needed." msgstr "" +"這可以是實體序列連接埠連線或 USB / 序列連接埠轉接。若需要請詢問你的繪圖機廠" +"商。" #: ../share/extensions/plotter.inx.h:21 msgid "Parallel (LPT) connections are not supported." -msgstr "" +msgstr "不支援並聯連線 (LPT)。" #: ../share/extensions/plotter.inx.h:32 msgid "" @@ -32613,22 +34289,24 @@ msgid "" "(depending on your plotter model), set to 0 to omit command. Most plotters " "ignore this command. (Default: 0)" msgstr "" +"筆移動的速度,單位為每秒多少公分或公釐 (取決於你的繪圖機),設定為 0 表示省略" +"指令。大多數的繪圖機會忽略該指令。(預設:0)" #: ../share/extensions/plotter.inx.h:33 -#, fuzzy msgid "Rotation (°, clockwise):" -msgstr "順時針旋轉" +msgstr "旋轉 (°, 順時針):" #: ../share/extensions/plotter.inx.h:52 -#, fuzzy msgid "Show debug information" -msgstr "記憶體使用資訊" +msgstr "顯示除錯資訊" #: ../share/extensions/plotter.inx.h:53 msgid "" "Check this to get verbose information about the plot without actually " "sending something to the plotter (A.k.a. data dump) (Default: Unchecked)" msgstr "" +"勾選此項能不需要傳送任何資料到繪圖機就取得繪圖的詳細資訊 (亦稱為資料傾印) (預" +"設:不勾選)" #: ../share/extensions/plt_input.inx.h:1 msgid "AutoCAD Plot Input" @@ -32860,9 +34538,8 @@ msgid "View Previous Glyph" msgstr "檢視上一個字形" #: ../share/extensions/print_win32_vector.inx.h:1 -#, fuzzy msgid "Win32 Vector Print" -msgstr "Windows 32 位元列印" +msgstr "Win32 向量列印" #: ../share/extensions/printing_marks.inx.h:1 msgid "Printing Marks" @@ -32924,14 +34601,6 @@ msgstr "X 方向最大位移值 (px):" msgid "Maximum displacement in Y (px):" msgstr "Y 方向最大位移值 (px):" -#: ../share/extensions/radiusrand.inx.h:5 -msgid "Shift nodes" -msgstr "移動節點" - -#: ../share/extensions/radiusrand.inx.h:6 -msgid "Shift node handles" -msgstr "移動節點控柄" - #: ../share/extensions/radiusrand.inx.h:7 msgid "Use normal distribution" msgstr "使用正常分布" @@ -32989,10 +34658,6 @@ msgstr "QR Code" msgid "See http://www.denso-wave.com/qrcode/index-e.html for details" msgstr "造訪 http://www.denso-wave.com/qrcode/index-e.html 了解更多詳細資訊" -#: ../share/extensions/render_barcode_qrcode.inx.h:5 -msgid "Auto" -msgstr "自動" - #: ../share/extensions/render_barcode_qrcode.inx.h:6 msgid "" "With \"Auto\", the size of the barcode depends on the length of the text and " @@ -33028,24 +34693,20 @@ msgid "Square size (px):" msgstr "正方形大小 (px):" #: ../share/extensions/render_gear_rack.inx.h:1 -#, fuzzy msgid "Rack Gear" -msgstr "齒輪" +msgstr "齒條" #: ../share/extensions/render_gear_rack.inx.h:2 -#, fuzzy msgid "Rack Length:" -msgstr "長度:" +msgstr "齒條長度:" #: ../share/extensions/render_gear_rack.inx.h:3 -#, fuzzy msgid "Tooth Spacing:" -msgstr "水平間距:" +msgstr "輪齒間距:" #: ../share/extensions/render_gear_rack.inx.h:4 -#, fuzzy msgid "Contact Angle:" -msgstr "內接三角形 (Contact Triangle)" +msgstr "連接角度:" #: ../share/extensions/render_gear_rack.inx.h:6 #: ../share/extensions/render_gears.inx.h:1 @@ -33069,9 +34730,8 @@ msgid "Diameter of center hole (0 for none):" msgstr "中央空心直徑 (0 表示沒有空心):" #: ../share/extensions/render_gears.inx.h:10 -#, fuzzy msgid "Unit of measurement for both circular pitch and center diameter." -msgstr "周節與中心半徑兩者的量測單位" +msgstr "周節與中心直徑的量測單位" #: ../share/extensions/replace_font.inx.h:1 msgid "Replace font" @@ -33082,14 +34742,12 @@ msgid "Find and Replace font" msgstr "尋找和取代字型" #: ../share/extensions/replace_font.inx.h:3 -#, fuzzy msgid "Find font: " -msgstr "尋找此字型:" +msgstr "尋找字型:" #: ../share/extensions/replace_font.inx.h:4 -#, fuzzy msgid "Replace with: " -msgstr "並用此取代:" +msgstr "用該字型取代:" #: ../share/extensions/replace_font.inx.h:5 msgid "Replace all fonts with: " @@ -33246,7 +34904,7 @@ msgstr "移除註解" #: ../share/extensions/scour.inx.h:11 msgid "Work around renderer bugs" -msgstr "避開圖形潤算引擎程式錯誤" +msgstr "避開圖形繪算引擎程式錯誤" #: ../share/extensions/scour.inx.h:12 msgid "Enable viewboxing" @@ -33272,9 +34930,14 @@ msgstr "空格" msgid "Tab" msgstr "定位字元" +#: ../share/extensions/scour.inx.h:18 +msgctxt "Indent" +msgid "None" +msgstr "無" + #: ../share/extensions/scour.inx.h:19 msgid "Ids" -msgstr "識別名稱" +msgstr "識別碼" #: ../share/extensions/scour.inx.h:20 msgid "Remove unused ID names for elements" @@ -33301,7 +34964,7 @@ msgid "Help (Options)" msgstr "說明 (選項)" #: ../share/extensions/scour.inx.h:27 -#, fuzzy, no-c-format +#, no-c-format msgid "" "This extension optimizes the SVG file according to the following options:\n" " * Shorten color names: convert all colors to #RRGGBB or #RGB format.\n" @@ -33331,21 +34994,21 @@ msgid "" "Space to use one space per nesting level, or Tab to use one tab per nesting " "level." msgstr "" -"此擴充功能可根據下列選項最佳化 SVG 檔案:\n" +"此擴充功能可以根據下列選項最佳化 SVG 檔案:\n" " * 縮短顏色名稱:將全部顏色轉換成 #RRGGBB 或 #RGB 格式。\n" -" * 將 CSS 屬性轉換成 XML 屬性:從 <style> 標籤和進線樣式=\"\" 宣告轉" -"換成 XML 屬性。\n" -" * 折疊群組:移除沒用到的 <g> 元件,讓這些內容提升一個層級。需要已設" -"定「移除元件沒用到的 ID 名稱」。\n" -" * 建立相似屬性的群組:建立 <g> 群組讓元件至少共有一種屬性 (例如,填" +" * 將 CSS 屬性轉換成 XML 屬性:將樣式從樣式標籤和進線樣式=\"\" 宣告轉換成 " +"XML 屬性。\n" +" * 折疊群組:移除沒用到的 g 元件,讓這些內容提升一個層級。需要已設定「移除" +"元件沒用到的 ID 名稱」。\n" +" * 建立相似屬性的群組:建立 g 元件以讓執行的元件至少共有一種屬性 (例如,填" "色、邊框不透明度...)。\n" " * 內嵌點陣圖:將點陣圖內嵌為 base64 編碼資料網址。\n" " * 保留軟體資料:不移除 Inkscape、Sodipodi 或 Adobe Illustrator 元件和屬" "性。\n" -" * 移除中繼資料:移除 <metadata> 標籤和裡面的所有資訊,這些資訊可能" -"包含授權中繼資料、不支援 SVG 瀏覽器的備用方案等。\n" -" * 移除註解:移除 <!-- --> 標籤。\n" -" * 避開圖形潤算引擎程式錯誤:稍微放大 SVG 資料,可避開 librsvg 圖形潤算引" +" * 移除中繼資料:移除中繼資料標籤和裡面的所有資訊,這些資訊可能包含授權中" +"繼資料、不支援 SVG 瀏覽器的備用方案等。\n" +" * 移除註解:移除註解標籤。\n" +" * 避開圖形繪算引擎程式錯誤:稍微放大 SVG 資料,可避開 librsvg 圖形繪算引" "擎裡的一個程式錯誤,該功能用在 GNOME 桌面的視覺效果和其他各種應用程式。\n" " * 啟用檢視框:影像尺寸變為 100%/100% 並引進檢視框。\n" " * 坐標的有效位數:以此有效位數輸出所有坐標。例如,若有效位數指定為 3,那" @@ -33356,7 +35019,7 @@ msgstr "" #: ../share/extensions/scour.inx.h:40 msgid "Help (Ids)" -msgstr "說明 (識別名稱)" +msgstr "說明 (識別碼)" #: ../share/extensions/scour.inx.h:41 msgid "" @@ -33376,7 +35039,7 @@ msgid "" "all unused ID names, but if all of your preserved ID names start with the " "same prefix (e.g. #flag-mx, #flag-pt), you may use this option." msgstr "" -"識別碼指定選項:\n" +"識別碼專屬選項:\n" " * 移除沒用到的元件 ID 名稱:移除所有未參考的 ID 屬性。\n" " * 縮短識別碼:縮短全部 ID 屬性的長度,指定最短長度到參考多數的元件。例" "如,#linearGradient5621,被參考 100 次,那麼就變成 #a。\n" @@ -33396,6 +35059,28 @@ msgstr "最佳化的 SVG (*.svg)" msgid "Scalable Vector Graphics" msgstr "可縮放向量圖形" +#: ../share/extensions/seamless_pattern.inx.h:1 +msgid "Seamless Pattern" +msgstr "無縫圖樣" + +#: ../share/extensions/seamless_pattern.inx.h:2 +#: ../share/extensions/seamless_pattern_procedural.inx.h:2 +msgid "Custom Width (px.):" +msgstr "自訂寬度 (px):" + +#: ../share/extensions/seamless_pattern.inx.h:3 +#: ../share/extensions/seamless_pattern_procedural.inx.h:3 +msgid "Custom Height (px.):" +msgstr "自訂高度 (px):" + +#: ../share/extensions/seamless_pattern.inx.h:4 +msgid "This extension overwrite current document" +msgstr "此擴充功能會覆寫目前的文件" + +#: ../share/extensions/seamless_pattern_procedural.inx.h:1 +msgid "Seamless Pattern Procedural" +msgstr "程序式無縫圖樣" + #: ../share/extensions/setup_typography_canvas.inx.h:1 msgid "1 - Setup Typography Canvas" msgstr "1 - 設定印刷畫布" @@ -33426,9 +35111,8 @@ msgstr "sK1 向量圖形檔輸入" #: ../share/extensions/sk1_input.inx.h:2 #: ../share/extensions/sk1_output.inx.h:2 -#, fuzzy msgid "sK1 vector graphics files (*.sk1)" -msgstr "sK1 向量圖形檔 (.sk1)" +msgstr "sK1 向量圖形檔 (*.sk1)" #: ../share/extensions/sk1_input.inx.h:3 msgid "Open files saved in sK1 vector graphics editor" @@ -33551,7 +35235,7 @@ msgstr "XAML 輸出" #: ../share/extensions/svg2xaml.inx.h:2 msgid "Silverlight compatible XAML" -msgstr "" +msgstr "Silverlight 相容 XAML" #: ../share/extensions/svg2xaml.inx.h:3 ../share/extensions/xaml2svg.inx.h:2 msgid "Microsoft XAML (*.xaml)" @@ -33604,9 +35288,8 @@ msgid "Show week number" msgstr "顯示週次" #: ../share/extensions/svgcalendar.inx.h:7 -#, fuzzy msgid "Week start day:" -msgstr "一週開始日期" +msgstr "一週開始日期:" #: ../share/extensions/svgcalendar.inx.h:8 msgid "Weekend:" @@ -33735,31 +35418,30 @@ msgid "Load only the first 30 glyphs (Recommended)" msgstr "只載入前 30 個字形 (建議)" #: ../share/extensions/synfig_output.inx.h:1 -#, fuzzy msgid "Synfig Output" -msgstr "SVG 輸出" +msgstr "Synfig 輸出" #: ../share/extensions/synfig_output.inx.h:2 msgid "Synfig Animation (*.sif)" -msgstr "" +msgstr "Synfig 動畫 (*.sif)" #: ../share/extensions/synfig_output.inx.h:3 msgid "Synfig Animation written using the sif-file exporter extension" -msgstr "" +msgstr "使用 sif 檔案匯出器擴充功能寫入 Synfig 動畫" #: ../share/extensions/tar_layers.inx.h:1 msgid "Collection of SVG files One per root layer" -msgstr "" +msgstr "圖層個別 SVG 的彙整壓縮檔" #: ../share/extensions/tar_layers.inx.h:2 msgid "Layers as Separate SVG (*.tar)" -msgstr "" +msgstr "圖層另存成個別 SVG (*.tar)" #: ../share/extensions/tar_layers.inx.h:3 msgid "" "Each layer split into it's own svg file and collected as a tape archive (tar " "file)" -msgstr "" +msgstr "每個圖層分別儲存成自己的 SVG 檔案並彙整為單一壓縮檔 (tar 檔案)" #: ../share/extensions/text_braille.inx.h:1 msgid "Convert to Braille" @@ -33823,9 +35505,8 @@ msgstr "小寫" #. false #: ../share/extensions/text_merge.inx.h:15 -#, fuzzy msgid "Keep style" -msgstr "設定文字樣式" +msgstr "樣式保留不變" #: ../share/extensions/text_randomcase.inx.h:1 msgid "rANdOm CasE" @@ -34036,8 +35717,7 @@ msgstr "在所有其他裡將第一次選擇設定為屬性" msgid "" "This effect adds a feature visible (or usable) only on a SVG enabled web " "browser (like Firefox)." -msgstr "" -"這個特效增加的功能只可見 (或可用) 於支援 SVG 的網頁瀏覽器 (如 firefox)。" +msgstr "這個特效增加的功能只可見 (或可用) 於支援 SVG 的網頁瀏覽器 (如 firefox)。" #: ../share/extensions/web-set-att.inx.h:27 msgid "" @@ -34089,8 +35769,7 @@ msgstr "第一個選擇傳輸到全部其他" msgid "" "This effect transmits one or more attributes from the first selected element " "to the second when an event occurs." -msgstr "" -"當一個事件發生時,這個特效傳輸一個或多個屬性從第一個選擇的元件到第二個。" +msgstr "當一個事件發生時,這個特效傳輸一個或多個屬性從第一個選擇的元件到第二個。" #: ../share/extensions/web-transmit-att.inx.h:26 msgid "" @@ -34143,15 +35822,15 @@ msgid "" "it). To use this, you must to select some \"Slicer rectangles\" first." msgstr "" "版面群組只會有助於生成良好的程式碼 (假如你需要的話)。要使用這項功能,你必須先" -"選擇一些「切割矩形 (Slicer rectangle)」。" +"選擇一些「切片矩形 (Slicer rectangle)」。" #: ../share/extensions/webslicer_create_group.inx.h:14 msgid "Slicer" -msgstr "切割" +msgstr "切片" #: ../share/extensions/webslicer_create_rect.inx.h:1 msgid "Create a slicer rectangle" -msgstr "建立切割矩形" +msgstr "建立切片矩形" #: ../share/extensions/webslicer_create_rect.inx.h:4 msgid "DPI:" @@ -34297,11 +35976,10 @@ msgid "With HTML and CSS" msgstr "包含 HTML 和 CSS" #: ../share/extensions/webslicer_export.inx.h:7 -#, fuzzy msgid "" "All sliced images, and optionally - code, will be generated as you had " "configured and saved to one directory." -msgstr "全部切割的影像和選擇性程式碼會依照你的設定生成並儲存到一個目錄。" +msgstr "切片的所有影像和選擇性程式碼會依照你的設定生成並儲存到一個目錄。" #: ../share/extensions/whirl.inx.h:1 msgid "Whirl" @@ -34349,1391 +36027,1323 @@ msgstr "用於美工圖形的流行圖形檔案格式" msgid "XAML Input" msgstr "XAML 輸入" -#~ msgid "Smart Jelly" -#~ msgstr "智慧型果凍" - -#~ msgid "Same as Matte jelly but with more controls" -#~ msgstr "同於霧面果凍,但有更多的控制選項" - -#~ msgid "Metal Casting" -#~ msgstr "金屬鑄造" - -#~ msgid "Smooth drop-like bevel with metallic finish" -#~ msgstr "類似下落的平滑斜角,帶有金屬光澤" - -#~ msgid "Apparition" -#~ msgstr "幻影" - -#~ msgid "Edges are partly feathered out" -#~ msgstr "邊緣部份逐漸消失" +#~ msgid "A4 Landscape Page" +#~ msgstr "A4 橫頁" -#~ msgid "Jigsaw Piece" -#~ msgstr "鋸片" +#~ msgid "Empty A4 landscape sheet" +#~ msgstr "空白 A4 橫頁" -#~ msgid "Low, sharp bevel" -#~ msgstr "低且銳利的斜角" +#~ msgid "A4 paper sheet empty landscape" +#~ msgstr "A4 空白橫向紙張" -#~ msgid "Rubber Stamp" -#~ msgstr "橡皮章" +#~ msgid "A4 Page" +#~ msgstr "A4 頁面" -#~ msgid "Random whiteouts inside" -#~ msgstr "隨機白色內部" +#~ msgid "Empty A4 sheet" +#~ msgstr "空白 A4 頁面" -#~ msgid "Ink Bleed" -#~ msgstr "墨水暈開" +#~ msgid "A4 paper sheet empty" +#~ msgstr "A4 空白紙張" -#~ msgid "Protrusions" -#~ msgstr "突出" +#~ msgid "Black Opaque" +#~ msgstr "黑色不透明" -#~ msgid "Inky splotches underneath the object" -#~ msgstr "物件底下有墨水的汙點" +#~ msgid "Empty black page" +#~ msgstr "空的黑色頁面" -#~ msgid "Fire" -#~ msgstr "火燄" +#~ msgid "black opaque empty" +#~ msgstr "黑色不透明空頁面" -#~ msgid "Edges of object are on fire" -#~ msgstr "使物件邊緣著火" +#~ msgid "White Opaque" +#~ msgstr "白色不透明" -#~ msgid "Bloom" -#~ msgstr "塊鋼" +#~ msgid "Empty white page" +#~ msgstr "空的白色頁面" -#~ msgid "Soft, cushion-like bevel with matte highlights" -#~ msgstr "柔和、帶有霧面光澤、類似橡皮軟墊的斜角" +#~ msgid "white opaque empty" +#~ msgstr "白色不透明空頁面" -#~ msgid "Ridged Border" -#~ msgstr "脊形邊框" +#~ msgid "Empty business card template." +#~ msgstr "空白名片範本。" -#~ msgid "Ridged border with inner bevel" -#~ msgstr "帶有內斜角的脊形邊框" +#~ msgid "business card empty 85x54" +#~ msgstr "空白名片 85x54" -#~ msgid "Ripple" -#~ msgstr "波紋" +#~ msgid "Business Card 90x50mm" +#~ msgstr "名片 90x50 公釐" -#~ msgid "Horizontal rippling of edges" -#~ msgstr "邊緣的水平波紋" +#~ msgid "business card empty 90x50" +#~ msgstr "空白名片 90x50" -#~ msgid "Speckle" -#~ msgstr "斑點" +#~ msgid "CD Cover 300dpi" +#~ msgstr "CD 封面 300dpi" -#~ msgid "Fill object with sparse translucent specks" -#~ msgstr "用稀疏半透明的斑紋填入物件" +#~ msgid "Empty CD box cover." +#~ msgstr "空白 CD 盒封面。" -#~ msgid "Oil Slick" -#~ msgstr "浮油" +#~ msgid "CD cover disc disk 300dpi box" +#~ msgstr "CD 光碟盒封面 300dpi" -#~ msgid "Rainbow-colored semitransparent oily splotches" -#~ msgstr "彩虹顏色的半透明油汙" +#~ msgid "DVD Cover Regular 300dpi " +#~ msgstr "DVD 封面一般 300dpi" -#~ msgid "Frost" -#~ msgstr "霜" +#~ msgid "Template for both-sides DVD covers." +#~ msgstr "雙面 DVD 封面的範本。" -#~ msgid "Flake-like white splotches" -#~ msgstr "類似薄片的白色斑點" +#~ msgid "DVD cover regular 300dpi" +#~ msgstr "DVD 封面一般 300dpi" -#~ msgid "Leopard Fur" -#~ msgstr "豹紋" +#~ msgid "DVD Cover Slim 300dpi " +#~ msgstr "DVD 封面薄型 300dpi" -#~ msgid "Materials" -#~ msgstr "材質" +#~ msgid "Template for both-sides DVD slim covers." +#~ msgstr "雙面 DVD 薄型封面的範本。" -#~ msgid "Leopard spots (loses object's own color)" -#~ msgstr "豹斑 (會喪失物件原有的顏色)" +#~ msgid "DVD cover slim 300dpi" +#~ msgstr "DVD 封面薄型 300dpi" -#~ msgid "Zebra" -#~ msgstr "斑馬" +#~ msgid "DVD Cover Superslim 300dpi " +#~ msgstr "DVD 封面超薄 300dpi" -#~ msgid "Irregular vertical dark stripes (loses object's own color)" -#~ msgstr "不規則的垂直黑條紋 (會喪失物件原有的顏色)" +#~ msgid "Template for both-sides DVD superslim covers." +#~ msgstr "雙面 DVD 超薄封面的範本。" -#~ msgid "Clouds" -#~ msgstr "雲" +#~ msgid "DVD cover superslim 300dpi" +#~ msgstr "DVD 封面超薄 300dpi" -#~ msgid "Airy, fluffy, sparse white clouds" -#~ msgstr "輕飄飄、蓬鬆、稀疏的白雲" +#~ msgid "DVD Cover Ultraslim 300dpi " +#~ msgstr "DVD 封面極薄 300dpi" -#~ msgid "Sharpen edges and boundaries within the object, force=0.15" -#~ msgstr "銳利化物件內部的邊緣和邊框,強度=0.15" +#~ msgid "Template for both-sides DVD ultraslim covers." +#~ msgstr "雙面 DVD 極薄封面的範本。" -#~ msgid "Sharpen More" -#~ msgstr "更加銳利" +#~ msgid "DVD cover ultraslim 300dpi" +#~ msgstr "DVD 封面極薄 300dpi" -#~ msgid "Sharpen edges and boundaries within the object, force=0.3" -#~ msgstr "銳利化物件內部的邊緣和邊框,強度=0.3" +#~ msgid "Desktop 1024x768" +#~ msgstr "桌面 1024x768" -#~ msgid "Oil painting" -#~ msgstr "油畫筆觸" +#~ msgid "Empty desktop size sheet" +#~ msgstr "空白桌面大小紙張" -#~ msgid "Simulate oil painting style" -#~ msgstr "模擬油畫筆觸風格" +#~ msgid "desktop 1024x768 wallpaper" +#~ msgstr "桌面 1024x768 桌布" -#~ msgid "Detect color edges and retrace them in grayscale" -#~ msgstr "偵測顏色邊緣並用灰階重新描繪" +#~ msgid "Desktop 1600x1200" +#~ msgstr "桌面 1600x1200" -#~ msgid "Blueprint" -#~ msgstr "藍圖" +#~ msgid "desktop 1600x1200 wallpaper" +#~ msgstr "桌面 1600x1200 桌布" -#~ msgid "Detect color edges and retrace them in blue" -#~ msgstr "偵測顏色邊緣並用藍色重新描繪" +#~ msgid "desktop 640x480 wallpaper" +#~ msgstr "桌面 640x480 桌布" -#~ msgid "Age" -#~ msgstr "陳舊" +#~ msgid "Desktop 800x600" +#~ msgstr "桌面 800x600" -#~ msgid "Imitate aged photograph" -#~ msgstr "模擬陳舊的相片" +#~ msgid "desktop 800x600 wallpaper" +#~ msgstr "桌面 800x600 桌布" -#~ msgid "Organic" -#~ msgstr "有機" +#~ msgid "Fontforge Glyph" +#~ msgstr "Fontforge 字形" -#~ msgid "Textures" -#~ msgstr "紋理" +#~ msgid "font fontforge glyph 1000x1000" +#~ msgstr "字型 Fontforge 字形 1000x1000" -#~ msgid "Bulging, knotty, slick 3D surface" -#~ msgstr "凸出、多節、光滑的立體表面" +#~ msgid "Icon 16x16" +#~ msgstr "圖示16x16" -#~ msgid "Barbed Wire" -#~ msgstr "鐵刺絲" +#~ msgid "Small 16x16 icon template." +#~ msgstr "16x16 小圖示範本。" -#~ msgid "Gray bevelled wires with drop shadows" -#~ msgstr "帶有下落式陰影的灰暗鐵刺絲" +#~ msgid "icon 16x16 empty" +#~ msgstr "圖示 16x16 空白" -#~ msgid "Swiss Cheese" -#~ msgstr "瑞士乳酪" +#~ msgid "Icon 32x32" +#~ msgstr "圖示 32x32" -#~ msgid "Random inner-bevel holes" -#~ msgstr "隨機內斜角孔洞" +#~ msgid "32x32 icon template." +#~ msgstr "32x32 圖示範本。" -#~ msgid "Blue Cheese" -#~ msgstr "藍紋乳酪" +#~ msgid "icon 32x32 empty" +#~ msgstr "圖示 32x32 空白" -#~ msgid "Marble-like bluish speckles" -#~ msgstr "類似大理石帶有藍色的斑紋" +#~ msgid "Icon 48x48" +#~ msgstr "圖示 48x48" -#~ msgid "Button" -#~ msgstr "按鈕" +#~ msgid "48x48 icon template." +#~ msgstr "4x48 圖示範本。" -#~ msgid "Soft bevel, slightly depressed middle" -#~ msgstr "柔和的斜角,中央輕微凹陷" +#~ msgid "icon 48x48 empty" +#~ msgstr "圖示 48x48 空白" -#~ msgid "Inset" -#~ msgstr "內凹" +#~ msgid "Icon 64x64" +#~ msgstr "圖示 64x64" -#~ msgid "Shadowy outer bevel" -#~ msgstr "朦朧的外斜角" +#~ msgid "64x64 icon template." +#~ msgstr "64x64 圖示範本。" -#~ msgid "Random paint streaks downwards" -#~ msgstr "隨機向下塗繪條紋" +#~ msgid "icon 64x64 empty" +#~ msgstr "圖示 64x64 空白" -#~ msgid "Jam Spread" -#~ msgstr "果醬塗抹" +#~ msgid "Letter Landscape" +#~ msgstr "橫式信紙" -#~ msgid "Glossy clumpy jam spread" -#~ msgstr "光滑塊狀的果醬塗抹" +#~ msgid "Standard letter landscape sheet - 792x612" +#~ msgstr "標準信紙橫向紙張 - 792x612" -#~ msgid "Pixel Smear" -#~ msgstr "像素塗抹" +#~ msgid "letter landscape 792x612 empty" +#~ msgstr "橫向信紙 792x612 空白" -#~ msgid "Van Gogh painting effect for bitmaps" -#~ msgstr "點陣圖的梵谷風格效果" +#~ msgid "Letter" +#~ msgstr "信紙" -#~ msgid "Cracked Glass" -#~ msgstr "碎裂玻璃" +#~ msgid "Standard letter sheet - 612x792" +#~ msgstr "標準信紙 - 612x792" -#~ msgid "Under a cracked glass" -#~ msgstr "在碎裂玻璃底下呈現的樣子" +#~ msgid "letter 612x792 empty" +#~ msgstr "信紙 612x792 空白" -#~ msgid "Bubbly Bumps" -#~ msgstr "發泡凹凸" +#~ msgid "No Borders" +#~ msgstr "無邊框" -#~ msgid "Flexible bubbles effect with some displacement" -#~ msgstr "帶有些許位移的高度彎曲氣泡效果" +#~ msgid "Empty sheet with no borders" +#~ msgstr "無邊框的空白紙張" -#~ msgid "Glowing Bubble" -#~ msgstr "發光泡泡" +#~ msgid "no borders empty" +#~ msgstr "無邊框空白" -#~ msgid "Ridges" -#~ msgstr "脊形" +#~ msgid "Video HDTV 1920x1080" +#~ msgstr "影片 HDTV 1920x1080" -#~ msgid "Bubble effect with refraction and glow" -#~ msgstr "伴隨折射和發光的泡泡效果" +#~ msgid "HDTV video template for 1920x1080 resolution." +#~ msgstr "1920x1080 解析度的 HDTV 影片範本。" -#~ msgid "Neon" -#~ msgstr "霓紅燈" +#~ msgid "HDTV video empty 1920x1080" +#~ msgstr "HDTV 影片空白 1920x1080" -#~ msgid "Neon light effect" -#~ msgstr "霓紅燈效果" +#~ msgid "Video NTSC 720x486" +#~ msgstr "影片 NTSC 720x486" -#~ msgid "Molten Metal" -#~ msgstr "熔化金屬" +#~ msgid "NTSC video template for 720x486 resolution." +#~ msgstr "720x486 解析度的 NTSC 影片範本。" -#~ msgid "Melting parts of object together, with a glossy bevel and a glow" -#~ msgstr "物件的一部份一起熔化,帶有光滑斜角和光暈" +#~ msgid "NTSC video empty 720x486" +#~ msgstr "NTSC 影片空白 720x486" -#~ msgid "Pressed Steel" -#~ msgstr "壓製鋼鐵" +#~ msgid "Video PAL 728x576" +#~ msgstr "影片 PAL 728x576" -#~ msgid "Pressed metal with a rolled edge" -#~ msgstr "帶有捲邊的被壓縮金屬" +#~ msgid "PAL video template for 728x576 resolution." +#~ msgstr "728x576 解析度的 PAL 影片範本。" -#~ msgid "Matte Bevel" -#~ msgstr "霧面斜角" +#~ msgid "PAL video empty 728x576" +#~ msgstr "PAL 影片空白 728x576" -#~ msgid "Soft, pastel-colored, blurry bevel" -#~ msgstr "柔和、粉色、模糊的斜角" +#~ msgid "Web Banner 468x60" +#~ msgstr "網頁橫幅廣告 468x60" -#~ msgid "Thin Membrane" -#~ msgstr "薄膜" +#~ msgid "Empty 468x60 web banner template." +#~ msgstr "空白 468x60 網頁橫幅廣告範本。" -#~ msgid "Thin like a soap membrane" -#~ msgstr "像肥皂膜一樣薄" +#~ msgid "web banner 468x60 empty" +#~ msgstr "網頁橫幅廣告 468x60 空白" -#~ msgid "Matte Ridge" -#~ msgstr "霧面脊形" +#~ msgid "Web Banner 728x90" +#~ msgstr "網頁橫幅廣告 728x90" -#~ msgid "Soft pastel ridge" -#~ msgstr "柔和的粉蠟脊形" +#~ msgid "Empty 728x90 web banner template." +#~ msgstr "空白 728x90 網頁橫幅廣告範本。" -#~ msgid "Glowing Metal" -#~ msgstr "發光金屬" +#~ msgid "web banner 728x90 empty" +#~ msgstr "網頁橫幅廣告 728x90 空白" -#~ msgid "Glowing metal texture" -#~ msgstr "發光金屬紋理" +#~ msgid "Select one path to clone." +#~ msgstr "請選取一個路徑進行仿製。" -#~ msgid "Leaves" -#~ msgstr "樹葉" +#~ msgid "Select one path to clone." +#~ msgstr "請選取路徑來進行仿製。" -#~ msgid "Leaves on the ground in Fall, or living foliage" -#~ msgstr "秋季地上的落葉,或生活中的葉子" +#~ msgctxt "Path handle tip" +#~ msgid "%s: drag to shape the segment (%s)" +#~ msgstr "%s:拖曳可改變線段的形狀 (%s)" -#~ msgid "Illuminated translucent plastic or glass effect" -#~ msgstr "被照亮的半透明塑膠或玻璃效果" +#~ msgid "Empty Page" +#~ msgstr "空白頁" -#~ msgid "Iridescent Beeswax" -#~ msgstr "虹彩蜂蠟" +#~ msgctxt "Symbol" +#~ msgid "Map Symbols" +#~ msgstr "地圖符號" -#~ msgid "Waxy texture which keeps its iridescence through color fill change" -#~ msgstr "蠟質紋理經由改變填色來保持本身的彩虹色" +#~ msgctxt "Symbol" +#~ msgid "Bed and Breakfast" +#~ msgstr "住宿與早餐" -#~ msgid "Eroded Metal" -#~ msgstr "腐蝕金屬" +#~ msgctxt "Symbol" +#~ msgid "Youth Hostel" +#~ msgstr "青年旅社" -#~ msgid "Eroded metal texture with ridges, grooves, holes and bumps" -#~ msgstr "帶有脊形、溝、孔洞和凹凸的腐蝕金屬紋理" +#~ msgctxt "Symbol" +#~ msgid "Motel" +#~ msgstr "汽車旅館" -#~ msgid "Cracked Lava" -#~ msgstr "破裂火山岩" +#~ msgctxt "Symbol" +#~ msgid "Hotel" +#~ msgstr "旅館" -#~ msgid "A volcanic texture, a little like leather" -#~ msgstr "火山岩紋理,有點像皮革" +#~ msgctxt "Symbol" +#~ msgid "Hostel" +#~ msgstr "旅社" -#~ msgid "Bark texture, vertical; use with deep colors" -#~ msgstr "樹皮紋理,垂直;伴隨深色使用" +#~ msgctxt "Symbol" +#~ msgid "Chalet" +#~ msgstr "小木屋" -#~ msgid "Lizard Skin" -#~ msgstr "蜥蜴表皮" +#~ msgctxt "Symbol" +#~ msgid "Caravan Park" +#~ msgstr "休旅車停車場" -#~ msgid "Stylized reptile skin texture" -#~ msgstr "爬蟲類表皮紋理風格" +#~ msgctxt "Symbol" +#~ msgid "Alpine Hut" +#~ msgstr "山間小屋" -#~ msgid "Stone Wall" -#~ msgstr "石牆" +#~ msgctxt "Symbol" +#~ msgid "Bench or Park" +#~ msgstr "長凳或公園" -#~ msgid "Stone wall texture to use with not too saturated colors" -#~ msgstr "帶有不太飽和色彩的石牆紋理" +#~ msgctxt "Symbol" +#~ msgid "Playground" +#~ msgstr "遊樂場" -#~ msgid "Silk Carpet" -#~ msgstr "絲織地毯" +#~ msgctxt "Symbol" +#~ msgid "Fountain" +#~ msgstr "噴泉" -#~ msgid "Silk carpet texture, horizontal stripes" -#~ msgstr "絲織地毯紋理,水平條紋" +#~ msgctxt "Symbol" +#~ msgid "Library" +#~ msgstr "圖書館" -#~ msgid "Refractive Gel A" -#~ msgstr "折射凝膠 A" +#~ msgctxt "Symbol" +#~ msgid "Town Hall" +#~ msgstr "鎮公所" -#~ msgid "Gel effect with light refraction" -#~ msgstr "有光線折射的凝膠效果" +#~ msgctxt "Symbol" +#~ msgid "Court" +#~ msgstr "法院" -#~ msgid "Refractive Gel B" -#~ msgstr "折射凝膠 B" +#~ msgctxt "Symbol" +#~ msgid "Fire Station / House" +#~ msgstr "消防局" -#~ msgid "Gel effect with strong refraction" -#~ msgstr "有強光折射的凝膠效果" +#~ msgctxt "Symbol" +#~ msgid "Police Station" +#~ msgstr "警察局" -#~ msgid "Metallized Paint" -#~ msgstr "金屬筆觸" +#~ msgctxt "Symbol" +#~ msgid "Prison" +#~ msgstr "監獄" -#~ msgid "" -#~ "Metallized effect with a soft lighting, slightly translucent at the edges" -#~ msgstr "柔和照明的金屬處理效果,邊緣呈現輕微的半透明" +#~ msgctxt "Symbol" +#~ msgid "Public Building" +#~ msgstr "公共建築" -#~ msgid "Dragee" -#~ msgstr "糖衣" +#~ msgctxt "Symbol" +#~ msgid "Survey Point" +#~ msgstr "調查點" -#~ msgid "Gel Ridge with a pearlescent look" -#~ msgstr "有珍珠般光澤外觀的凝膠脊形" +#~ msgctxt "Symbol" +#~ msgid "Toll Booth" +#~ msgstr "收費亭" -#~ msgid "Raised Border" -#~ msgstr "邊框隆起" +#~ msgctxt "Symbol" +#~ msgid "Lift Gate" +#~ msgstr "升降門" -#~ msgid "Strongly raised border around a flat surface" -#~ msgstr "一個平坦表面周圍的邊界強烈隆起" +#~ msgctxt "Symbol" +#~ msgid "Steps" +#~ msgstr "階梯" -#~ msgid "Metallized Ridge" -#~ msgstr "金屬脊形" +#~ msgctxt "Symbol" +#~ msgid "Stile" +#~ msgstr "牆邊階梯" -#~ msgid "Gel Ridge metallized at its top" -#~ msgstr "於凝膠脊形上做金屬噴鍍" +#~ msgctxt "Symbol" +#~ msgid "Kissing Gate" +#~ msgstr "窄門" -#~ msgid "Fat Oil" -#~ msgstr "脂肪油" +#~ msgctxt "Symbol" +#~ msgid "Gate" +#~ msgstr "大門" -#~ msgid "Fat oil with some adjustable turbulence" -#~ msgstr "可調整性紊亂的脂肪油" +#~ msgctxt "Symbol" +#~ msgid "Entrance" +#~ msgstr "入口" -#~ msgid "Black Hole" -#~ msgstr "黑洞" +#~ msgctxt "Symbol" +#~ msgid "Cycle Barrier" +#~ msgstr "自行車柵欄" -#~ msgid "Creates a black light inside and outside" -#~ msgstr "於內部和外部建立黑色光照" +#~ msgctxt "Symbol" +#~ msgid "Cattle Grid" +#~ msgstr "牲畜防越欄" -#~ msgid "Cubes" -#~ msgstr "方塊" +#~ msgctxt "Symbol" +#~ msgid "Bollard" +#~ msgstr "繫船栓" -#~ msgid "Scattered cubes; adjust the Morphology primitive to vary size" -#~ msgstr "散佈的立方體;調整形態基元可產生不同尺寸" +#~ msgctxt "Symbol" +#~ msgid "University" +#~ msgstr "大學" -#~ msgid "Peel Off" -#~ msgstr "脫落" +#~ msgctxt "Symbol" +#~ msgid "High/Secondary School" +#~ msgstr "高中/國中" -#~ msgid "Peeling painting on a wall" -#~ msgstr "一道牆上剝落油漆" +#~ msgctxt "Symbol" +#~ msgid "School" +#~ msgstr "學校" -#~ msgid "Gold Splatter" -#~ msgstr "黃金潑濺" +#~ msgctxt "Symbol" +#~ msgid "Kindergarten" +#~ msgstr "幼稚園" -#~ msgid "Splattered cast metal, with golden highlights" -#~ msgstr "潑濺的金屬鑄造,帶有黃金光澤" +#~ msgctxt "Symbol" +#~ msgid "Pub" +#~ msgstr "夜店" -#~ msgid "Gold Paste" -#~ msgstr "金箔黏貼" +#~ msgctxt "Symbol" +#~ msgid "Desserts/Cakes Shop" +#~ msgstr "點心/糕點鋪" -#~ msgid "Fat pasted cast metal, with golden highlights" -#~ msgstr "貼滿鑄造金屬,帶有黃金亮光" +#~ msgctxt "Symbol" +#~ msgid "Fast Food" +#~ msgstr "速食" -#~ msgid "Crumpled Plastic" -#~ msgstr "壓皺塑膠" +#~ msgctxt "Symbol" +#~ msgid "Public Tap/Water" +#~ msgstr "公共水龍頭" -#~ msgid "Crumpled matte plastic, with melted edge" -#~ msgstr "壓皺的霧面塑膠,帶有融化的邊緣" +#~ msgctxt "Symbol" +#~ msgid "Cafe" +#~ msgstr "咖啡館" -#~ msgid "Enamel Jewelry" -#~ msgstr "瓷釉珠寶" +#~ msgctxt "Symbol" +#~ msgid "Beer Garden" +#~ msgstr "啤酒花園" -#~ msgid "Slightly cracked enameled texture" -#~ msgstr "輕微碎裂的瓷釉紋理" +#~ msgctxt "Symbol" +#~ msgid "Wine Bar" +#~ msgstr "酒吧" -#~ msgid "Rough Paper" -#~ msgstr "粗糙紙張" +#~ msgctxt "Symbol" +#~ msgid "Opticians/Eye Doctors" +#~ msgstr "眼科醫生" -#~ msgid "Aquarelle paper effect which can be used for pictures as for objects" -#~ msgstr "水彩畫紙效果,可用於圖片 (將物件作為圖片)" +#~ msgctxt "Symbol" +#~ msgid "Dentist" +#~ msgstr "牙醫" -#~ msgid "Rough and Glossy" -#~ msgstr "粗糙和光滑" +#~ msgctxt "Symbol" +#~ msgid "Veterinarian" +#~ msgstr "獸醫" -#~ msgid "" -#~ "Crumpled glossy paper effect which can be used for pictures as for objects" -#~ msgstr "揉皺的銅版紙效果,可用於圖片 (將物件作為圖片)" +#~ msgctxt "Symbol" +#~ msgid "Drugs Dispensary" +#~ msgstr "藥局" -#~ msgid "Inner colorized shadow, outer black shadow" -#~ msgstr "內部彩色陰影,外部黑色陰影" +#~ msgctxt "Symbol" +#~ msgid "Pharmacy" +#~ msgstr "藥房" -#~ msgid "Air Spray" -#~ msgstr "氣槍噴灑" +#~ msgctxt "Symbol" +#~ msgid "Accident & Emergency" +#~ msgstr "急診" -#~ msgid "Convert to small scattered particles with some thickness" -#~ msgstr "依照厚度轉換成零散的小粒子" +#~ msgctxt "Symbol" +#~ msgid "Doctors" +#~ msgstr "醫生" -#~ msgid "Warm Inside" -#~ msgstr "內部溫暖" +#~ msgctxt "Symbol" +#~ msgid "Scrub Land" +#~ msgstr "灌木叢" -#~ msgid "Blurred colorized contour, filled inside" -#~ msgstr "模糊、著上色彩的輪廓,內部填滿" +#~ msgctxt "Symbol" +#~ msgid "Swamp" +#~ msgstr "沼澤" -#~ msgid "Cool Outside" -#~ msgstr "外部涼爽" +#~ msgctxt "Symbol" +#~ msgid "Hills" +#~ msgstr "丘陵" -#~ msgid "Blurred colorized contour, empty inside" -#~ msgstr "模糊、著上彩色的輪廓,內部清空" +#~ msgctxt "Symbol" +#~ msgid "Grass Land" +#~ msgstr "草原" -#~ msgid "Electronic Microscopy" -#~ msgstr "電子顯微鏡" +#~ msgctxt "Symbol" +#~ msgid "Deciduous Forest" +#~ msgstr "落葉林" -#~ msgid "" -#~ "Bevel, crude light, discoloration and glow like in electronic microscopy" -#~ msgstr "斜角、天然光線、變色和發光就像在電子顯微鏡裡" +#~ msgctxt "Symbol" +#~ msgid "Mixed Forest" +#~ msgstr "混合林" -#~ msgid "Tartan" -#~ msgstr "格紋" +#~ msgctxt "Symbol" +#~ msgid "Coniferous Forest" +#~ msgstr "針葉林" -#~ msgid "Checkered tartan pattern" -#~ msgstr "方格花紋圖樣" +#~ msgctxt "Symbol" +#~ msgid "Church or Place of Worship" +#~ msgstr "教堂或禮堂" -#~ msgid "Shaken Liquid" -#~ msgstr "晃動液體" +#~ msgctxt "Symbol" +#~ msgid "Bank" +#~ msgstr "銀行" -#~ msgid "Colorizable filling with flow inside like transparency" -#~ msgstr "內部像透明物流動的可著色填塗" +#~ msgctxt "Symbol" +#~ msgid "Power Lines" +#~ msgstr "電線" -#~ msgid "Soft Focus Lens" -#~ msgstr "柔焦鏡頭" +#~ msgctxt "Symbol" +#~ msgid "Watch Tower" +#~ msgstr "瞭望塔" -#~ msgid "Glowing image content without blurring it" -#~ msgstr "在不模糊化的情形下讓圖像內容覆上光暈" +#~ msgctxt "Symbol" +#~ msgid "Transmitter" +#~ msgstr "轉運站" -#~ msgid "Illuminated stained glass effect" -#~ msgstr "被照亮的彩色玻璃效果" +#~ msgctxt "Symbol" +#~ msgid "Village" +#~ msgstr "鄉村" -#~ msgid "Dark Glass" -#~ msgstr "暗色玻璃" +#~ msgctxt "Symbol" +#~ msgid "Town" +#~ msgstr "城鎮" -#~ msgid "Illuminated glass effect with light coming from beneath" -#~ msgstr "光源來自下方,被照亮的玻璃效果" +#~ msgctxt "Symbol" +#~ msgid "Hamlet" +#~ msgstr "部落" -#~ msgid "HSL Bumps Alpha" -#~ msgstr "透明 HSL 凹凸" +#~ msgctxt "Symbol" +#~ msgid "City" +#~ msgstr "城市" -#~ msgid "Same as HSL Bumps but with transparent highlights" -#~ msgstr "同於 HSL 凹凸,但帶有透明反光" +#~ msgctxt "Symbol" +#~ msgid "Peak" +#~ msgstr "高峰" -#~ msgid "Bubbly Bumps Alpha" -#~ msgstr "透明發泡凹凸" +#~ msgctxt "Symbol" +#~ msgid "Mountain Pass" +#~ msgstr "山口" -#~ msgid "Same as Bubbly Bumps but with transparent highlights" -#~ msgstr "同於發泡凹凸,但帶有透明反光" +#~ msgctxt "Symbol" +#~ msgid "Mine" +#~ msgstr "礦山" -#~ msgid "Torn Edges" -#~ msgstr "撕裂邊緣" +#~ msgctxt "Symbol" +#~ msgid "Military Complex" +#~ msgstr "軍事駐紮點" -#~ msgid "" -#~ "Displace the outside of shapes and pictures without altering their content" -#~ msgstr "移置形狀和圖片的外邊,不改變內容" +#~ msgctxt "Symbol" +#~ msgid "Embassy" +#~ msgstr "大使館" -#~ msgid "Roughen Inside" -#~ msgstr "內部粗糙化" +#~ msgctxt "Symbol" +#~ msgid "Toy Shop" +#~ msgstr "玩具店" -#~ msgid "Roughen all inside shapes" -#~ msgstr "內部的形狀全部粗糙化" +#~ msgctxt "Symbol" +#~ msgid "Supermarket" +#~ msgstr "超市" -#~ msgid "Evanescent" -#~ msgstr "逐漸消失" +#~ msgctxt "Symbol" +#~ msgid "Jewlers" +#~ msgstr "珠寶商" -#~ msgid "" -#~ "Blur the contents of objects, preserving the outline and adding " -#~ "progressive transparency at edges" -#~ msgstr "模糊物件的內容,保留輪廓並且於邊緣漸進地加上透明" +#~ msgctxt "Symbol" +#~ msgid "Hairdressers" +#~ msgstr "理髮師" -#~ msgid "Chalk and Sponge" -#~ msgstr "粉筆和海綿" +#~ msgctxt "Symbol" +#~ msgid "Greengrocer" +#~ msgstr "蔬果鋪" -#~ msgid "Low turbulence gives sponge look and high turbulence chalk" -#~ msgstr "低紊亂可產生海綿外觀,而高紊亂則產生粉筆外觀" +#~ msgctxt "Symbol" +#~ msgid "Gift Shop" +#~ msgstr "禮品店" -#~ msgid "People" -#~ msgstr "群眾" +#~ msgctxt "Symbol" +#~ msgid "Garden Center" +#~ msgstr "園藝中心" -#~ msgid "Colorized blotches, like a crowd of people" -#~ msgstr "彩色斑點,像一群人" +#~ msgctxt "Symbol" +#~ msgid "Florist" +#~ msgstr "花鋪商" -#~ msgid "Scotland" -#~ msgstr "蘇格蘭" +#~ msgctxt "Symbol" +#~ msgid "Real Estate" +#~ msgstr "不動產" -#~ msgid "Colorized mountain tops out of the fog" -#~ msgstr "穿出霧氣的彩色山峰群" +#~ msgctxt "Symbol" +#~ msgid "Hardware / DIY" +#~ msgstr "硬體 / DIY" -#~ msgid "Garden of Delights" -#~ msgstr "享樂花園" +#~ msgctxt "Symbol" +#~ msgid "Shop" +#~ msgstr "商店" -#~ msgid "" -#~ "Phantasmagorical turbulent wisps, like Hieronymus Bosch's Garden of " -#~ "Delights" -#~ msgstr "變幻無常的紛亂幽光,像希羅尼穆斯 ‧ 波希的享樂花園" +#~ msgctxt "Symbol" +#~ msgid "Confectioner" +#~ msgstr "糖果舖" -#~ msgid "Cutout Glow" -#~ msgstr "剪影光暈" +#~ msgctxt "Symbol" +#~ msgid "Computer Shop" +#~ msgstr "電腦專賣店" -#~ msgid "In and out glow with a possible offset and colorizable flood" -#~ msgstr "帶有合理的位移和可著色填塗的內外光暈" +#~ msgctxt "Symbol" +#~ msgid "Clothing" +#~ msgstr "服飾" -#~ msgid "Dark Emboss" -#~ msgstr "暗色浮雕" +#~ msgctxt "Symbol" +#~ msgid "Mechanic" +#~ msgstr "五金" -#~ msgid "Emboss effect : 3D relief where white is replaced by black" -#~ msgstr "浮雕效果:立體浮雕,用黑色取代白色" +#~ msgctxt "Symbol" +#~ msgid "Car Dealer" +#~ msgstr "汽車經銷商" -#~ msgid "Bubbly Bumps Matte" -#~ msgstr "霧面發泡凹凸" +#~ msgctxt "Symbol" +#~ msgid "Butcher" +#~ msgstr "屠夫" -#~ msgid "" -#~ "Same as Bubbly Bumps but with a diffuse light instead of a specular one" -#~ msgstr "同於發泡凹凸,但為擴散光線而非鏡面" +#~ msgctxt "Symbol" +#~ msgid "Meat Shop" +#~ msgstr "肉販" -#~ msgid "Blotting Paper" -#~ msgstr "吸墨紙" +#~ msgctxt "Symbol" +#~ msgid "Baker" +#~ msgstr "烘焙師" -#~ msgid "Inkblot on blotting paper" -#~ msgstr "吸墨紙上的墨跡" +#~ msgctxt "Symbol" +#~ msgid "Off License / Liquor Store" +#~ msgstr "販酒執照 / 酒品專賣店" -#~ msgid "Wax Print" -#~ msgstr "蠟染" +#~ msgctxt "Symbol" +#~ msgid "Tennis" +#~ msgstr "網球" -#~ msgid "Wax print on tissue texture" -#~ msgstr "棉紙上蠟染的紋理" +#~ msgctxt "Symbol" +#~ msgid "Outdoor Pool" +#~ msgstr "室外游泳池" -#~ msgid "Watercolor" -#~ msgstr "水彩" +#~ msgctxt "Symbol" +#~ msgid "Indoor Pool" +#~ msgstr "室內游泳池" -#~ msgid "Cloudy watercolor effect" -#~ msgstr "多雲水彩效果" +#~ msgctxt "Symbol" +#~ msgid "Skiing" +#~ msgstr "滑雪" -#~ msgid "Felt" -#~ msgstr "毛氈" +#~ msgctxt "Symbol" +#~ msgid "Leisure Center" +#~ msgstr "休閒中心" -#~ msgid "" -#~ "Felt like texture with color turbulence and slightly darker at the edges" -#~ msgstr "帶有顏色紛亂和邊緣輕微變暗的類似毛氈紋理" +#~ msgctxt "Symbol" +#~ msgid "Equine Sports" +#~ msgstr "馬術" -#~ msgid "Ink Paint" -#~ msgstr "墨水筆觸" +#~ msgctxt "Symbol" +#~ msgid "Rock Climbing" +#~ msgstr "攀岩" -#~ msgid "Ink paint on paper with some turbulent color shift" -#~ msgstr "帶有一些紊亂色彩位移在紙張上的墨水筆觸" +#~ msgctxt "Symbol" +#~ msgid "Gym" +#~ msgstr "體育館" -#~ msgid "Tinted Rainbow" -#~ msgstr "染色彩虹" +#~ msgctxt "Symbol" +#~ msgid "Archery" +#~ msgstr "射箭" -#~ msgid "Smooth rainbow colors melted along the edges and colorizable" -#~ msgstr "沿著邊緣和可著色的平滑彩虹色熔化" +#~ msgctxt "Symbol" +#~ msgid "Zoo" +#~ msgstr "動物園" -#~ msgid "Melted Rainbow" -#~ msgstr "熔化彩虹" +#~ msgctxt "Symbol" +#~ msgid "Wreck" +#~ msgstr "失事" -#~ msgid "Smooth rainbow colors slightly melted along the edges" -#~ msgstr "沿著邊緣的平滑彩虹色輕微熔化" +#~ msgctxt "Symbol" +#~ msgid "Water Wheel" +#~ msgstr "水車" -#~ msgid "Flex Metal" -#~ msgstr "彎曲金屬" +#~ msgctxt "Symbol" +#~ msgid "Point of Interest" +#~ msgstr "點位資訊" -#~ msgid "Bright, polished uneven metal casting, colorizable" -#~ msgstr "明亮、可著色、拋光的不均勻金屬鑄造" +#~ msgctxt "Symbol" +#~ msgid "Theater" +#~ msgstr "電影院" -#~ msgid "Wavy Tartan" -#~ msgstr "波狀格紋" +#~ msgctxt "Symbol" +#~ msgid "Monument" +#~ msgstr "紀念碑" -#~ msgid "Tartan pattern with a wavy displacement and bevel around the edges" -#~ msgstr "邊緣周圍產生波浪狀位移的格紋圖樣和斜角" +#~ msgctxt "Symbol" +#~ msgid "Beach" +#~ msgstr "海邊" -#~ msgid "3D Marble" -#~ msgstr "立體大理石" +#~ msgctxt "Symbol" +#~ msgid "Battle Location" +#~ msgstr "戰役點" -#~ msgid "3D warped marble texture" -#~ msgstr "立體、彎曲的大理石紋理" +#~ msgctxt "Symbol" +#~ msgid "Archaeology / Ruins" +#~ msgstr "考古 / 廢墟" -#~ msgid "3D Wood" -#~ msgstr "立體木頭" +#~ msgctxt "Symbol" +#~ msgid "Walking" +#~ msgstr "步行" -#~ msgid "3D warped, fibered wood texture" -#~ msgstr "立體、彎曲、纖維狀的木材紋理" +#~ msgctxt "Symbol" +#~ msgid "Train" +#~ msgstr "火車" -#~ msgid "3D Mother of Pearl" -#~ msgstr "立體珍珠母" +#~ msgctxt "Symbol" +#~ msgid "Underground Rail" +#~ msgstr "地鐵" -#~ msgid "3D warped, iridescent pearly shell texture" -#~ msgstr "立體、彎曲、彩虹色的珍珠殼紋理" +#~ msgctxt "Symbol" +#~ msgid "Bike Rental" +#~ msgstr "腳踏車出租" -#~ msgid "Tiger Fur" -#~ msgstr "虎皮" +#~ msgctxt "Symbol" +#~ msgid "Carpool" +#~ msgstr "共乘汽車" -#~ msgid "Tiger fur pattern with folds and bevel around the edges" -#~ msgstr "邊緣周圍有折疊和斜角的虎皮圖案" +#~ msgctxt "Symbol" +#~ msgid "Flood Gate" +#~ msgstr "洩洪閘" -#~ msgid "Black Light" -#~ msgstr "黑光" +#~ msgctxt "Symbol" +#~ msgid "Shipping" +#~ msgstr "航運" -#~ msgid "Light areas turn to black" -#~ msgstr "光亮區域轉為黑色" +#~ msgctxt "Symbol" +#~ msgid "Disabled Parking" +#~ msgstr "廢棄停車場" -#~ msgid "Film Grain" -#~ msgstr "底片顆粒" +#~ msgctxt "Symbol" +#~ msgid "Paid Parking" +#~ msgstr "收費停車場" -#~ msgid "Adds a small scale graininess" -#~ msgstr "加入小比例顆粒" +#~ msgctxt "Symbol" +#~ msgid "Bike Parking" +#~ msgstr "腳踏車停放處" -#~ msgid "Plaster Color" -#~ msgstr "彩色石膏" - -#~ msgid "Colored plaster emboss effect" -#~ msgstr "彩色石膏浮雕效果" - -#~ msgid "Velvet Bumps" -#~ msgstr "柔軟凹凸" - -#~ msgid "Gives Smooth Bumps velvet like" -#~ msgstr "產生像天鵝絨般柔軟的平滑凹凸" - -#~ msgid "Comics Cream" -#~ msgstr "漫畫式奶油" - -#~ msgid "Non realistic 3D shaders" -#~ msgstr "非逼真立體材質" - -#~ msgid "Comics shader with creamy waves transparency" -#~ msgstr "奶油狀波浪透明物的漫畫材質" - -#~ msgid "Chewing Gum" -#~ msgstr "口香糖" +#~ msgid "<no name found>" +#~ msgstr "<找不到名稱>" #~ msgid "" -#~ "Creates colorizable blotches which smoothly flow over the edges of the " -#~ "lines at their crossings" -#~ msgstr "於線條的交叉點上建立柔順流過其邊緣的可著色斑點" - -#~ msgid "Dark And Glow" -#~ msgstr "陰暗與發光" - -#~ msgid "Darkens the edge with an inner blur and adds a flexible glow" -#~ msgstr "內部模糊且帶有柔和光暈的加深邊緣" - -#~ msgid "Warped Rainbow" -#~ msgstr "環繞彩虹" - -#~ msgid "Smooth rainbow colors warped along the edges and colorizable" -#~ msgstr "沿著邊緣環繞平滑彩虹顏色" - -#~ msgid "Rough and Dilate" -#~ msgstr "粗糙和擴大" - -#~ msgid "Create a turbulent contour around" -#~ msgstr "於周圍製作紛亂的輪廓" - -#~ msgid "Old Postcard" -#~ msgstr "舊明信片" - -#~ msgid "Slightly posterize and draw edges like on old printed postcards" -#~ msgstr "輕微色調分離並繪製邊框就像舊式印刷的明信片一樣" - -#~ msgid "Dots Transparency" -#~ msgstr "透明圓點" - -#~ msgid "Gives a pointillist HSL sensitive transparency" -#~ msgstr "產生像 HSL 感光透明的點描畫" - -#~ msgid "Canvas Transparency" -#~ msgstr "透明畫布" - -#~ msgid "Gives a canvas like HSL sensitive transparency." -#~ msgstr "產生像 HSL 感光透明的畫布。" - -#~ msgid "Smear Transparency" -#~ msgstr "透明塗抹" - -#~ msgid "" -#~ "Paint objects with a transparent turbulence which turns around color edges" -#~ msgstr "用透明的紊亂來塗繪物件,扭轉彩色邊緣" - -#~ msgid "Thick Paint" -#~ msgstr "厚塗料" - -#~ msgid "Thick painting effect with turbulence" -#~ msgstr "伴隨紊亂的厚顏料塗繪效果" - -#~ msgid "Burst" -#~ msgstr "脹破" - -#~ msgid "Burst balloon texture crumpled and with holes" -#~ msgstr "氣球脹破紋理,被揉皺且帶有破洞" - -#~ msgid "Embossed Leather" -#~ msgstr "壓紋皮革" - -#~ msgid "" -#~ "Combine a HSL edges detection bump with a leathery or woody and " -#~ "colorizable texture" -#~ msgstr "皮革或木頭結合 HSL 邊緣偵測凹凸效果之可著色紋理" - -#~ msgid "Carnaval" -#~ msgstr "狂歡節" - -#~ msgid "White splotches evocating carnaval masks" -#~ msgstr "白色斑點喚起狂歡節面具" - -#~ msgid "Plastify" -#~ msgstr "塑膠化" - -#~ msgid "" -#~ "HSL edges detection bump with a wavy reflective surface effect and " -#~ "variable crumple" -#~ msgstr "波狀反射表面效果和多變壓皺結合 HSL 邊緣偵測凹凸效果" - -#~ msgid "Plaster" -#~ msgstr "石膏" - -#~ msgid "" -#~ "Combine a HSL edges detection bump with a matte and crumpled surface " -#~ "effect" -#~ msgstr "霧面、壓皺的表面結合 HSL 邊緣偵測凹凸效果" - -#~ msgid "Rough Transparency" -#~ msgstr "透明粗糙" - -#~ msgid "" -#~ "Adds a turbulent transparency which displaces pixels at the same time" -#~ msgstr "取代像素的同時加入紊亂透明" - -#~ msgid "Gouache" -#~ msgstr "不透明水彩" - -#~ msgid "Partly opaque water color effect with bleed" -#~ msgstr "有溢出情形的局部性不透明水彩效果" - -#~ msgid "Alpha Engraving" -#~ msgstr "透明版畫" - -#~ msgid "Gives a transparent engraving effect with rough line and filling" -#~ msgstr "產生帶有粗糙線條和填充的透明版畫效果" - -#~ msgid "Alpha Draw Liquid" -#~ msgstr "透明繪畫液體" - -#~ msgid "Gives a transparent fluid drawing effect with rough line and filling" -#~ msgstr "產生帶有粗糙線條和填充的透明流體繪畫效果" - -#~ msgid "Liquid Drawing" -#~ msgstr "液體繪畫" - -#~ msgid "Gives a fluid and wavy expressionist drawing effect to images" -#~ msgstr "使圖像產生液體和波浪的抽象主義繪畫效果" - -#~ msgid "Marbled Ink" -#~ msgstr "大理石油墨" - -#~ msgid "Marbled transparency effect which conforms to image detected edges" -#~ msgstr "按照圖像偵測邊緣產生的大理石透明效果" - -#~ msgid "Thick Acrylic" -#~ msgstr "厚壓克力顏料" - -#~ msgid "Thick acrylic paint texture with high texture depth" -#~ msgstr "高紋理深度的厚壓克力顏料" - -#~ msgid "Alpha Engraving B" -#~ msgstr "透明版畫 B" - -#~ msgid "" -#~ "Gives a controllable roughness engraving effect to bitmaps and materials" -#~ msgstr "使點陣圖和材料產生可著色的粗糙版畫效果" - -#~ msgid "Lapping" -#~ msgstr "研磨" - -#~ msgid "Something like a water noise" -#~ msgstr "有點像水雜訊" - -#~ msgid "Monochrome Transparency" -#~ msgstr "單色透明" - -#~ msgid "Convert to a colorizable transparent positive or negative" -#~ msgstr "轉成可著色的透明正相或反相" - -#~ msgid "Saturation Map" -#~ msgstr "飽和度分佈圖" - -#~ msgid "" -#~ "Creates an approximative semi-transparent and colorizable image of the " -#~ "saturation levels" -#~ msgstr "建立一個近似半透明且可著色的飽和度色階圖像" - -#~ msgid "Riddled" -#~ msgstr "佈滿" +#~ "Image looks too big. Process may take a while and is wise to save your " +#~ "document before continue.\n" +#~ "\n" +#~ "Continue the procedure (without saving)?" +#~ msgstr "" +#~ "影像尺寸太大。該過程可能會需要一些時間並且最好在繼續處理前先儲存你的文" +#~ "件。\n" +#~ "\n" +#~ "繼續處理動作嗎 (不儲存)?" -#~ msgid "Riddle the surface and add bump to images" -#~ msgstr "佈滿表面且將凹凸加入圖像" +#~ msgctxt "Symbol" +#~ msgid "Alternate Process" +#~ msgstr "交替流程" -#~ msgid "Wrinkled Varnish" -#~ msgstr "皺紋亮光漆" +#~ msgctxt "Symbol" +#~ msgid "Data I/O" +#~ msgstr "資料輸入 / 輸出" -#~ msgid "Thick glossy and translucent paint texture with high depth" -#~ msgstr "帶有高深度的光滑且稀疏之厚顏料紋理" +#~ msgctxt "Symbol" +#~ msgid "Card" +#~ msgstr "卡片" -#~ msgid "Canvas Bumps" -#~ msgstr "畫布凹凸" +#~ msgctxt "Symbol" +#~ msgid "Direct Access Storage" +#~ msgstr "直接儲存裝置" -#~ msgid "Canvas texture with an HSL sensitive height map" -#~ msgstr "帶有 HSL 感光高度貼圖的畫布紋理" +#~ msgctxt "Symbol" +#~ msgid "Thick Arrow" +#~ msgstr "粗箭頭" -#~ msgid "Canvas Bumps Matte" -#~ msgstr "霧面畫布凹凸" +#~ msgctxt "Symbol" +#~ msgid "Transfer" +#~ msgstr "傳送" -#~ msgid "" -#~ "Same as Canvas Bumps but with a diffuse light instead of a specular one" -#~ msgstr "同於畫布凹凸,但為擴散光線而非鏡面" +#~ msgctxt "Symbol" +#~ msgid "Flow Arrow" +#~ msgstr "流向箭頭" -#~ msgid "Canvas Bumps Alpha" -#~ msgstr "透明畫布凹凸" +#~ msgctxt "Symbol" +#~ msgid "Circle Arrow" +#~ msgstr "環形箭頭" -#~ msgid "Same as Canvas Bumps but with transparent highlights" -#~ msgstr "同於畫布凹凸,但帶有透明反光" +#~ msgid "Adobe PDF via poppler-cairo (*.pdf)" +#~ msgstr "用 poppler-cairo 處理的 Adobe PDF (*.pdf)" -#~ msgid "Bright Metal" -#~ msgstr "閃亮金屬" +#~ msgid "PDF Document" +#~ msgstr "PDF 文件" -#~ msgid "Bright metallic effect for any color" -#~ msgstr "任何顏色的閃亮金屬效果" +#~ msgid "_Export Bitmap..." +#~ msgstr "匯出點陣圖(_E)..." -#~ msgid "Deep Colors Plastic" -#~ msgstr "深色塑膠" +#~ msgid "Export this document or a selection as a bitmap image" +#~ msgstr "將文件或選取區匯出成點陣圖" -#~ msgid "Transparent plastic with deep colors" -#~ msgstr "深色的透明塑膠" +#~ msgid " Action: " +#~ msgstr " 動作: " -#~ msgid "Melted Jelly Matte" -#~ msgstr "霧面融化果凍" +#~ msgid "Set Resolution" +#~ msgstr "設定解析度" -#~ msgid "Matte bevel with blurred edges" -#~ msgstr "帶有邊緣模糊的霧面斜角" +#~ msgid "Set filter resolution" +#~ msgstr "設定濾鏡解析度" -#~ msgid "Melted Jelly" -#~ msgstr "融化果凍" +#~ msgid "Fill Area" +#~ msgstr "填充範圍" -#~ msgid "Glossy bevel with blurred edges" -#~ msgstr "帶有捲邊的光滑斜角" +#~ msgid "Fills object bounding box with color" +#~ msgstr "用顏色填充物件邊界框" -#~ msgid "Combined Lighting" -#~ msgstr "混合光照" +#~ msgctxt "Symbol" +#~ msgid "Intormation" +#~ msgstr "資訊" -#~ msgid "Tinfoil" -#~ msgstr "錫箔" +#~ msgid "Link or embed image:" +#~ msgstr "連結或內嵌圖片:" -#~ msgid "" -#~ "Metallic foil effect combining two lighting types and variable crumple" -#~ msgstr "混合兩種光照類型和多變壓皺的金屬錫效果" +#~ msgid "Scale image preference (image-rendering):" +#~ msgstr "縮放圖片偏好設定 (影像繪算):" -#~ msgid "Soft Colors" -#~ msgstr "柔和色彩" +#~ msgid "drawing%s" +#~ msgstr "繪圖%s" -#~ msgid "Adds a colorizable edges glow inside objects and pictures" -#~ msgstr "於物件和圖片內部加入可著色的邊緣光暈" +#~ msgid "Length left:" +#~ msgstr "左邊長度:" -#~ msgid "Relief Print" -#~ msgstr "凸版版畫" +#~ msgid "Specifies the left end of the bisector" +#~ msgstr "指定此平分線的左邊端點" -#~ msgid "Bumps effect with a bevel, color flood and complex lighting" -#~ msgstr "帶有斜角、填滿顏色和複雜光照的凹凸效果" +#~ msgid "Length right:" +#~ msgstr "右邊長度:" -#~ msgid "Growing Cells" -#~ msgstr "成長中的細胞" +#~ msgid "Specifies the right end of the bisector" +#~ msgstr "指定此平分線的右邊端點" -#~ msgid "Random rounded living cells like fill" -#~ msgstr "隨機圓形的活細胞外觀填充" +#~ msgid "Adjust the \"left\" end of the bisector" +#~ msgstr "調整此平分線的「左邊」端點" -#~ msgid "Fluorescence" -#~ msgstr "螢光" +#~ msgid "Adjust the \"right\" end of the bisector" +#~ msgstr "調整此平分線的「右邊」端點" -#~ msgid "Oversaturate colors which can be fluorescent in real world" -#~ msgstr "讓色彩過飽和可變成真實世界中的螢光物質" +#~ msgid "Null" +#~ msgstr "空" -#~ msgid "Pixellize" -#~ msgstr "像素化" +#~ msgid "Intersect" +#~ msgstr "交集" -#~ msgid "Pixel tools" -#~ msgstr "像素工具" +#~ msgid "Subtract A-B" +#~ msgstr "相減 A-B" -#~ msgid "Reduce or remove antialiasing around shapes" -#~ msgstr "形狀周圍減少或移除反鋸齒" +#~ msgid "Identity A" +#~ msgstr "相同 A" -#~ msgid "Set Resolution" -#~ msgstr "設定解析度" +#~ msgid "Subtract B-A" +#~ msgstr "相減 B-A" -#~ msgid "Set filter resolution" -#~ msgstr "設定濾鏡解析度" +#~ msgid "Identity B" +#~ msgstr "相同 B" -#~ msgid "Basic Diffuse Bump" -#~ msgstr "基本漫射凹凸" +#~ msgid "Path to which the original path will be boolop'ed." +#~ msgstr "路徑將對原始路徑作布林運算。" -#~ msgid "Matte emboss effect" -#~ msgstr "霧面浮雕效果" +#~ msgid "Boolop type:" +#~ msgstr "布林運算類型:" -#~ msgid "Basic Specular Bump" -#~ msgstr "基本反射凹凸" +#~ msgid "Determines which kind of boolop will be performed." +#~ msgstr "決定會實行哪一種布林運算。" -#~ msgid "Specular emboss effect" -#~ msgstr "反光浮雕效果" +#~ msgid "Angle of the first copy" +#~ msgstr "第一個複製路徑的角度" -#~ msgid "Basic Two Lights Bump" -#~ msgstr "基本雙光源凹凸" +#~ msgid "Rotation angle:" +#~ msgstr "旋轉角度:" -#~ msgid "Two types of lighting emboss effect" -#~ msgstr "兩種類型照明浮雕效果" +#~ msgid "Angle between two successive copies" +#~ msgstr "兩個連續複本之間的角度" -#~ msgid "Linen Canvas" -#~ msgstr "亞麻畫布" +#~ msgid "Number of copies:" +#~ msgstr "複製數量:" -#~ msgid "Painting canvas emboss effect" -#~ msgstr "油畫畫布浮雕效果" +#~ msgid "Number of copies of the original path" +#~ msgstr "原始路徑的複製數量" -#~ msgid "Plasticine" -#~ msgstr "塑像黏土" +#~ msgid "Origin" +#~ msgstr "原點" -#~ msgid "Matte modeling paste emboss effect" -#~ msgstr "霧面雕像塑造黏土浮雕效果" +#~ msgid "Origin of the rotation" +#~ msgstr "旋轉原點" -#~ msgid "Rough Canvas Painting" -#~ msgstr "粗糙油畫畫布" +#~ msgid "Adjust the starting angle" +#~ msgstr "調整開始角度" -#~ msgid "Paper Bump" -#~ msgstr "紙張凹凸" +#~ msgid "Adjust the rotation angle" +#~ msgstr "調整旋轉角度" -#~ msgid "Paper like emboss effect" -#~ msgstr "紙張外觀浮雕效果" +#~ msgid "Elliptic Pen" +#~ msgstr "橢圓筆尖" -#~ msgid "Jelly Bump" -#~ msgstr "果凍凹凸" +#~ msgid "Thick-Thin strokes (fast)" +#~ msgstr "粗-細畫筆 (快)" -#~ msgid "Convert pictures to thick jelly" -#~ msgstr "將影像轉變成粗厚果凍" +#~ msgid "Thick-Thin strokes (slow)" +#~ msgstr "粗-細畫筆 (慢)" -#~ msgid "Blend Opposites" -#~ msgstr "相反混合" +#~ msgid "Sharp" +#~ msgstr "尖銳" -#~ msgid "Blend an image with its hue opposite" -#~ msgstr "用本身的相反色相混合影像" +#~ msgid "Choose pen type" +#~ msgstr "選擇筆尖類型" -#~ msgid "Hue to White" -#~ msgstr "色相轉成白色" +#~ msgid "Pen width:" +#~ msgstr "筆寬:" -#~ msgid "Fades hue progressively to white" -#~ msgstr "將色相漸漸淡化成白色" +#~ msgid "Maximal stroke width" +#~ msgstr "最大畫筆寬度" -#~ msgid "" -#~ "Paint objects with a transparent turbulence which wraps around color edges" -#~ msgstr "用透明的紊亂來塗繪物件,顏色邊緣周圍會扭轉" +#~ msgid "Pen roundness:" +#~ msgstr "筆圓度:" -#~ msgid "Pointillism" -#~ msgstr "點描派" +#~ msgid "Min/Max width ratio" +#~ msgstr "最小/最大寬度比" -#~ msgid "Gives a turbulent pointillist HSL sensitive transparency" -#~ msgstr "產生紊亂點描風格的 HSL 感光透明" +#~ msgid "direction of thickest strokes (opposite = thinnest)" +#~ msgstr "最粗畫筆的方向 (相反 = 最細)" -#~ msgid "Silhouette Marbled" -#~ msgstr "大理石剪影" +#~ msgid "Choose start capping type" +#~ msgstr "選擇起點帽緣類型" -#~ msgid "Basic noise transparency texture" -#~ msgstr "基本雜訊透明紋理" +#~ msgid "Choose end capping type" +#~ msgstr "選擇末端帽緣類型" -#~ msgid "Fill Background" -#~ msgstr "填入背景" +#~ msgid "Grow for:" +#~ msgstr "逐漸擴張:" -#~ msgid "Adds a colorizable opaque background" -#~ msgstr "加入彩色不透明背景" +#~ msgid "Make the stroke thinner near it's start" +#~ msgstr "使畫筆靠近起點的部分較細" -#~ msgid "Flatten Transparency" -#~ msgstr "平面化透明度" +#~ msgid "Fade for:" +#~ msgstr "逐漸淡化:" -#~ msgid "Adds a white opaque background" -#~ msgstr "加入白色不透明背景" +#~ msgid "Make the stroke thinner near it's end" +#~ msgstr "使畫筆靠近末端的部分較細" -#~ msgid "Fill Area" -#~ msgstr "填充範圍" +#~ msgid "Round ends" +#~ msgstr "圓形端點" -#~ msgid "Fills object bounding box with color" -#~ msgstr "用顏色填充物件邊界框" +#~ msgid "Strokes end with a round end" +#~ msgstr "畫筆末端為圓端點" -#~ msgid "Blur Double" -#~ msgstr "雙倍模糊" +# 封端、帽緣、線段末端 +#~ msgid "Capping:" +#~ msgstr "帽緣" -#~ msgid "" -#~ "Overlays two copies with different blur amounts and modifiable blend and " -#~ "composite" -#~ msgstr "用不同模糊程度和可修改的混合及合成重疊兩個複製物件" +#~ msgid "left capping" +#~ msgstr "左帽緣" -#~ msgid "Image Drawing Basic" -#~ msgstr "基本影像繪畫" +#~ msgid "Control handle 0" +#~ msgstr "控制柄 0" -#~ msgid "Enhance and redraw color edges in 1 bit black and white" -#~ msgstr "加強並用 1 位元黑白重繪色彩邊緣" +#~ msgid "Control handle 1" +#~ msgstr "控制柄 1" -#~ msgid "Poster Draw" -#~ msgstr "海報繪畫" +#~ msgid "Control handle 2" +#~ msgstr "控制柄 2" -#~ msgid "Enhance and redraw edges around posterized areas" -#~ msgstr "加強和重繪海報化區域的邊緣" +#~ msgid "Control handle 3" +#~ msgstr "控制柄 3" -#~ msgid "Cross Noise Poster" -#~ msgstr "交疊雜訊海報" +#~ msgid "Control handle 4" +#~ msgstr "控制柄 4" -#~ msgid "Overlay with a small scale screen like noise" -#~ msgstr "用小尺寸縮放螢幕外觀的雜訊覆蓋" +#~ msgid "Control handle 5" +#~ msgstr "控制柄 5" -#~ msgid "Cross Noise Poster B" -#~ msgstr "交疊雜訊海報 B" +#~ msgid "Control handle 6" +#~ msgstr "控制柄 6" -#~ msgid "Adds a small scale screen like noise locally" -#~ msgstr "加入類似局部性雜訊的小比例濾色" +#~ msgid "Control handle 7" +#~ msgstr "控制柄 7:" -#~ msgid "Poster Color Fun" -#~ msgstr "彩繪海報" +#~ msgid "Control handle 8" +#~ msgstr "控制柄 8" -#~ msgid "Poster Rough" -#~ msgstr "粗糙海報" +#~ msgid "Control handle 9:" +#~ msgstr "控制柄 9:" -#~ msgid "Adds roughness to one of the two channels of the Poster paint filter" -#~ msgstr "加入粗糙度到海報塗繪濾鏡兩個色版的其中一個" +#~ msgid "Control handle 9" +#~ msgstr "控制柄 9" -#~ msgid "Alpha Monochrome Cracked" -#~ msgstr "碎裂的透明單色" +#~ msgid "Control handle 10" +#~ msgstr "控制柄 10:" -#~ msgid "Basic noise fill texture; adjust color in Flood" -#~ msgstr "基本雜訊填充紋理;用填滿來調整顏色" +#~ msgid "Control handle 11:" +#~ msgstr "控制柄 11:" -#~ msgid "Alpha Turbulent" -#~ msgstr "透明紊亂" +#~ msgid "Control handle 11" +#~ msgstr "控制柄 11:" -#~ msgid "Colorize Turbulent" -#~ msgstr "彩色紊亂" +#~ msgid "Control handle 12" +#~ msgstr "控制柄 12" -#~ msgid "Cross Noise B" -#~ msgstr "交疊雜訊 B" +#~ msgid "Control handle 13" +#~ msgstr "控制柄 13" -#~ msgid "Adds a small scale crossy graininess" -#~ msgstr "加入小比例的交疊式顆粒" +#~ msgid "Control handle 14" +#~ msgstr "控制柄 14" -#~ msgid "Cross Noise" -#~ msgstr "交疊雜訊" +#~ msgid "Control handle 15" +#~ msgstr "控制柄 15:" -#~ msgid "Adds a small scale screen like graininess" -#~ msgstr "加入小比例螢幕外觀的顆粒" +#~ msgid "End type:" +#~ msgstr "端點類型:" -#~ msgid "Duotone Turbulent" -#~ msgstr "雙色紊亂" +#~ msgid "Determines on which side the line or line segment is infinite." +#~ msgstr "決定哪一邊的線或線段為無限長。" -#~ msgid "Light Eraser Cracked" -#~ msgstr "破裂的淺色橡皮擦" +#~ msgid "Discard original path?" +#~ msgstr "丟棄原本路徑?" -#~ msgid "Poster Turbulent" -#~ msgstr "海報紊亂" +#~ msgid "Check this to only keep the mirrored part of the path" +#~ msgstr "勾選這個以只保留路徑的鏡像部份" -#~ msgid "Tartan Smart" -#~ msgstr "智慧型格紋" +#~ msgid "Reflection line:" +#~ msgstr "反射線段:" -#~ msgid "Highly configurable checkered tartan pattern" -#~ msgstr "可變更許多設定的棋盤方格圖案" +#~ msgid "Line which serves as 'mirror' for the reflection" +#~ msgstr "直線作為反射的「鏡像」使用" -#~ msgid "Light Contour" -#~ msgstr "亮色輪廓" +#~ msgid "Handle to control the distance of the offset from the curve" +#~ msgstr "從曲線來操作控制偏移的距離" -#~ msgid "Uses vertical specular light to draw lines" -#~ msgstr "使用垂直反光繪製線條" +#~ msgid "Adjust the offset" +#~ msgstr "調整偏移" -#~ msgid "Liquid" -#~ msgstr "液體" +#~ msgid "Specifies the left end of the parallel" +#~ msgstr "指定此平行線的左邊端點" -#~ msgid "Colorizable filling with liquid transparency" -#~ msgstr "液態透明物的可著色填塗" +#~ msgid "Specifies the right end of the parallel" +#~ msgstr "指定此平行線的右邊端點" -#~ msgid "Aluminium" -#~ msgstr "鋁" +#~ msgid "Adjust the \"left\" end of the parallel" +#~ msgstr "調整此平行線的「左邊」端點" -#, fuzzy -#~ msgid "Aluminium effect with sharp brushed reflections" -#~ msgstr "帶有柔和折射的鋁金屬效果" +#~ msgid "Adjust the \"right\" end of the parallel" +#~ msgstr "調整此平行線的「右邊」端點" -#~ msgid "Comics" -#~ msgstr "漫畫" +#~ msgid "Scaling factor" +#~ msgstr "縮放比例" -#~ msgid "Comics cartoon drawing effect" -#~ msgstr "漫畫卡通繪畫效果" +#~ msgid "Display unit" +#~ msgstr "顯示單位" -#~ msgid "Comics Draft" -#~ msgstr "漫畫草圖" +#~ msgid "Print unit after path length" +#~ msgstr "列印單位依照路徑長度" -#~ msgid "Draft painted cartoon shading with a glassy look" -#~ msgstr "以光滑外觀的卡通明暗法繪製草圖" +#~ msgid "Scale x" +#~ msgstr "縮放 x" -#~ msgid "Comics Fading" -#~ msgstr "漫畫式褪色" +#~ msgid "Scale factor in x direction" +#~ msgstr "x 方向的縮放係數" -#~ msgid "Cartoon paint style with some fading at the edges" -#~ msgstr "邊緣些許褪色的卡通繪畫風格" +#~ msgid "Scale y" +#~ msgstr "縮放 y" -#~ msgid "Brushed Metal" -#~ msgstr "拋光金屬" +#~ msgid "Scale factor in y direction" +#~ msgstr "y 方向的縮放係數" -#~ msgid "Satiny metal surface effect" -#~ msgstr "光滑柔和金屬表面效果" +#~ msgid "Offset x" +#~ msgstr "偏移 x" -#~ msgid "Opaline" -#~ msgstr "蛋白石" +#~ msgid "Offset in x direction" +#~ msgstr "X 方向的偏移" -#~ msgid "Contouring version of smooth shader" -#~ msgstr "平滑材質的輪廓變形" +#~ msgid "Offset y" +#~ msgstr "偏移 y" -#~ msgid "Chrome" -#~ msgstr "鉻" +#~ msgid "Offset in y direction" +#~ msgstr "y 方向的偏移" -#~ msgid "Bright chrome effect" -#~ msgstr "亮色金屬鉻效果" +#~ msgid "Uses XY plane?" +#~ msgstr "使用 XY 平面?" -#~ msgid "Deep Chrome" -#~ msgstr "暗色鉻" +#~ msgid "" +#~ "If true, put the path on the left side of an imaginary box, otherwise on " +#~ "the right side" +#~ msgstr "如果是,放置此路徑於想像框的左邊,否則在右邊" -#~ msgid "Dark chrome effect" -#~ msgstr "暗色金屬鉻效果" +#~ msgid "Adjust the origin" +#~ msgstr "調整原點" -#~ msgid "Emboss Shader" -#~ msgstr "浮雕材質" +#~ msgid "Iterations:" +#~ msgstr "疊代:" -#~ msgid "Combination of satiny and emboss effect" -#~ msgstr "光滑柔和與浮雕兩者結合的效果" +#~ msgid "recursivity" +#~ msgstr "遞迴性" -#~ msgid "Sharp Metal" -#~ msgstr "耀眼金屬" +#~ msgid "Float parameter" +#~ msgstr "浮動參數" -#~ msgid "Chrome effect with darkened edges" -#~ msgstr "暗色邊緣的鉻金屬效果" +#~ msgid "just a real number like 1.4!" +#~ msgstr "僅為一個實數如 1.4 !" -#~ msgid "Brush Draw" -#~ msgstr "筆刷繪畫" +#~ msgid "Additional angle between tangent and curve" +#~ msgstr "切線和曲線間的附加角" -#~ msgid "Chrome Emboss" -#~ msgstr "鉻金屬浮雕" +#~ msgid "Location along curve:" +#~ msgstr "沿曲線位置:" -#~ msgid "Embossed chrome effect" -#~ msgstr "浮雕式鉻金屬效果" +#~ msgid "" +#~ "Location of the point of attachment along the curve (between 0.0 and " +#~ "number-of-segments)" +#~ msgstr "沿著曲線附著點的位置 (0.0 和線段數目之間)" -#~ msgid "Contour Emboss" -#~ msgstr "輪廓浮雕" +#~ msgid "Specifies the left end of the tangent" +#~ msgstr "指定此切線的左邊端點" -#~ msgid "Satiny and embossed contour effect" -#~ msgstr "輪廓變成光滑柔和的浮雕效果" +#~ msgid "Specifies the right end of the tangent" +#~ msgstr "指定此切線的右邊端點" -#~ msgid "Sharp Deco" -#~ msgstr "耀眼 Deco 風格" +#~ msgid "Adjust the point of attachment of the tangent" +#~ msgstr "調整此切線的附著點" -#, fuzzy -#~ msgid "Unrealistic reflections with sharp edges" -#~ msgstr "帶有銳利邊緣的不真實反射" +#~ msgid "Adjust the \"left\" end of the tangent" +#~ msgstr "調整此切線的「左邊」端點" -#~ msgid "Deep Metal" -#~ msgstr "深色金屬" +#~ msgid "Adjust the \"right\" end of the tangent" +#~ msgstr "調整此切線的「右邊」端點" -#~ msgid "Deep and dark metal shading" -#~ msgstr "深暗色金屬材質" +#~ msgid "Stack step:" +#~ msgstr "堆疊階層:" -#~ msgid "Aluminium Emboss" -#~ msgstr "鋁金屬浮雕" +#~ msgid "Point param:" +#~ msgstr "點參數:" -#~ msgid "Satiny aluminium effect with embossing" -#~ msgstr "帶有浮雕的光滑柔和鋁金屬效果" +#~ msgid "Path param:" +#~ msgstr "路徑參數:" -#~ msgid "Refractive Glass" -#~ msgstr "折射玻璃" +#~ msgid "Label:" +#~ msgstr "標籤:" -#, fuzzy -#~ msgid "Double reflection through glass with some refraction" -#~ msgstr "經過玻璃帶有一些折射的兩次反射效果" +#~ msgid "Text label attached to the path" +#~ msgstr "文字標籤附屬於路徑" -#~ msgid "Frosted Glass" -#~ msgstr "磨砂玻璃" +#~ msgid "No groups converted to symbols." +#~ msgstr "沒有群組被轉換成符號。" -#~ msgid "Satiny glass effect" -#~ msgstr "光滑柔和的玻璃效果" +#~ msgid "Color" +#~ msgstr "色彩" -#, fuzzy -#~ msgid "Bump Engraving" -#~ msgstr "雕刻" +#~ msgid "Border" +#~ msgstr "邊界" -#, fuzzy -#~ msgid "Carving emboss effect" -#~ msgstr "紙張外觀浮雕效果" +#~ msgid "Align:" +#~ msgstr "對齊:" -#, fuzzy -#~ msgid "Chromolitho Alternate" -#~ msgstr "多彩雜訊" +#~ msgid "Ro_ws and Columns..." +#~ msgstr "表格排列(_W)..." -#, fuzzy -#~ msgid "Convoluted emboss effect" -#~ msgstr "彩色石膏浮雕效果" +#~ msgid "_Grid" +#~ msgstr "格線(_G)" #, fuzzy -#~ msgid "Emergence" -#~ msgstr "發散度" +#~ msgid "The amount of steps in one inch on the X axis. (Default: 1016.0)" +#~ msgstr "刀具尖端到刀具軸的偏移,單位為公釐 (標準:「0.25」)" #, fuzzy -#~ msgid "Create a two colors lithographic effect" -#~ msgstr "建立和套用複製原本路徑特效" +#~ msgid "The amount of steps in one inch on the Y axis. (Default: 1016.0)" +#~ msgstr "刀具尖端到刀具軸的偏移,單位為公釐 (標準:「0.25」)" #, fuzzy -#~ msgid "Paint Channels" -#~ msgstr "青色色版" +#~ msgid "Use overcut" +#~ msgstr "使用過切" #, fuzzy -#~ msgid "Posterized Light Eraser 4" -#~ msgstr "亮部橡皮擦" +#~ msgid "" +#~ "Check this to use overcut, if not checked the 'Overcut' parameter is " +#~ "unused. (Default: Checked)" +#~ msgstr "是否使用過切,如果不使用則「過切」參數沒有作用 (標準:「True」)" #, fuzzy -#~ msgid "Trichrome" -#~ msgstr "雙色" +#~ msgid "" +#~ "Check this to use the tool offset correction, if not checked the 'Tool " +#~ "offset' and 'Precut' parameters are unused. (Default: Checked)" +#~ msgstr "" +#~ "是否需要校正刀具偏差,若設定不需要則「刀具偏差」和「返回係數」兩項參數不會" +#~ "有任何作用 (標準:「True」)" #, fuzzy -#~ msgid "Contouring table" -#~ msgstr "內接三角形 (Contact Triangle)" +#~ msgid "" +#~ "Please note that using the tool offset correction will move your plot " +#~ "away from the zero point by one tool offset length." +#~ msgstr "此偏移能將你的圖畫從零點開始移動多少公釐 (標準:「0.00」)" #, fuzzy -#~ msgid "Blurred multiple contours for objects" -#~ msgstr "模糊、著上彩色的輪廓,內部清空" +#~ msgid "X offset (mm)" +#~ msgstr "X 偏移 (公釐):" #, fuzzy -#~ msgid "Posterized Blur" -#~ msgstr "基本海報風格" +#~ msgid "" +#~ "The offset to move your plot away from the zero point on the X axis in " +#~ "mm. (Default: '0.00')" +#~ msgstr "此偏移能將你的圖畫從零點開始移動多少公釐 (標準:「0.00」)" #, fuzzy -#~ msgid "Contouring discrete" -#~ msgstr "控制工具欄項目" +#~ msgid "Y offset (mm)" +#~ msgstr "Y 偏移 (公釐):" #, fuzzy -#~ msgid "Sharp multiple contour for objects" -#~ msgstr "貼齊物件中心" - -#~ msgid "Stripes 1:1" -#~ msgstr "條紋 1:1" - -#~ msgid "Stripes 1:1 white" -#~ msgstr "條紋 1:1 (白色)" - -#~ msgid "Stripes 1:1.5" -#~ msgstr "條紋 1:1.5" - -#~ msgid "Stripes 1:1.5 white" -#~ msgstr "條紋 1:1.5 (白色)" - -#~ msgid "Stripes 1:2" -#~ msgstr "條紋 1:2" - -#~ msgid "Stripes 1:2 white" -#~ msgstr "條紋 1:2 (白色)" - -#~ msgid "Stripes 1:3" -#~ msgstr "條紋 1:3" - -#~ msgid "Stripes 1:3 white" -#~ msgstr "條紋 1:3 (白色)" +#~ msgid "" +#~ "The offset to move your plot away from the zero point on the Y axis in " +#~ "mm. (Default: '0.00')" +#~ msgstr "此偏移能將你的圖畫從零點開始移動多少公釐 (標準:「0.00」)" -#~ msgid "Stripes 1:4" -#~ msgstr "條紋 1:4" +#~ msgid "Connection" +#~ msgstr "連線" -#~ msgid "Stripes 1:4 white" -#~ msgstr "條紋 1:4 (白色)" +#~ msgid "Plotter" +#~ msgstr "繪圖機" -#~ msgid "Stripes 1:5" -#~ msgstr "條紋 1:5" +#~ msgid "Flow text" +#~ msgstr "流動文字" -#~ msgid "Stripes 1:5 white" -#~ msgstr "條紋 1:5 (白色)" +#~ msgid "drawing-%d%s" +#~ msgstr "繪圖-%d%s" -#~ msgid "Stripes 1:8" -#~ msgstr "條紋 1:8" +#~ msgid "%s" +#~ msgstr "%s" -#~ msgid "Stripes 1:8 white" -#~ msgstr "條紋 1:8 (白色)" +#~ msgid "Adjust the bisector's \"left\" end" +#~ msgstr "調整平分線的「左邊」端點" -#~ msgid "Stripes 1:10" -#~ msgstr "條紋 1:10" +#~ msgid "Adjust the bisector's \"right\" end" +#~ msgstr "調整平分線的「左邊」端點" -#~ msgid "Stripes 1:10 white" -#~ msgstr "條紋 1:10 (白色)" +#~ msgid "2x2" +#~ msgstr "2x2" -#~ msgid "Stripes 1:16" -#~ msgstr "條紋 1:16" +#~ msgid "4x4" +#~ msgstr "4x4" -#~ msgid "Stripes 1:16 white" -#~ msgstr "條紋 1:16 (白色)" +#~ msgid "8x8" +#~ msgstr "8x8" -#~ msgid "Stripes 1:32" -#~ msgstr "條紋 1:32" +#~ msgid "Oversample bitmaps:" +#~ msgstr "過度取樣點陣圖:" -#~ msgid "Stripes 1:32 white" -#~ msgstr "條紋 1:32 (白色)" +#~ msgid "Always embed" +#~ msgstr "始終內嵌" -#~ msgid "Stripes 1:64" -#~ msgstr "條紋 1:64" +#~ msgid "Always link" +#~ msgstr "始終連結" -#~ msgid "Stripes 2:1" -#~ msgstr "條紋 2:1" +#~ msgid "Ask" +#~ msgstr "詢問" -#~ msgid "Stripes 2:1 white" -#~ msgstr "條紋 2:1 (白色)" +#~ msgid "Bitmap import quality:" +#~ msgstr "點陣圖匯入品質:" -#~ msgid "Stripes 4:1" -#~ msgstr "條紋 4:1" +#~ msgid " " +#~ msgstr " " -#~ msgid "Stripes 4:1 white" -#~ msgstr "條紋 4:1 (白色)" +#, fuzzy +#~ msgid "" +#~ "The offset to shift your plot away from the zero point in mm (Default: " +#~ "'0.00')" +#~ msgstr "此偏移能將你的圖畫從零點開始移動多少公釐 (標準:「0.00」)" -#~ msgid "Checkerboard" -#~ msgstr "棋盤格紋" +#~ msgid "(%d characters%s)" +#~ msgstr "(%d 字元%s)" -#~ msgid "Checkerboard white" -#~ msgstr "棋盤格紋 (白色)" +#~ msgid "Resolution (dpi):" +#~ msgstr "解析度 (dpi):" -#~ msgid "Packed circles" -#~ msgstr "塞滿圓圈" +#~ msgid "" +#~ "Orientation of the plot, change this if your plotter is plotting " +#~ "horizontal instead of vertical (Standard: '90°')" +#~ msgstr "圖畫方向,若你的繪圖機為水平繪製而非垂直請變更該選項 (標準:「90°」)" -#~ msgid "Polka dots, small" -#~ msgstr "圓點, 小" +#~ msgid "" +#~ "Whether to mirror the Y axis. Some plotters need this, some not. Look in " +#~ "your plotter manual or learn it by trial and error (Standard: 'False')" +#~ msgstr "" +#~ "是否要 Y 軸鏡射。某些繪圖機需要開啟此項,有些則不需要。查閱你的繪圖機使用" +#~ "手冊或藉由反覆試驗得知是否需要 (標準:「False」)" -#~ msgid "Polka dots, small white" -#~ msgstr "圓點, 小 (白色)" +#~ msgid "" +#~ "Whether the plotter needs the zero point to be in the center of the " +#~ "drawing. Some plotters need this, some not. Look in your plotter manual " +#~ "or learn it by trial and error (Standard: 'False')" +#~ msgstr "" +#~ "繪圖機是否需要將零點設在圖畫的中心。某些繪圖機需要此項設定,有些則不需要。" +#~ "查閱你的繪圖機使用手冊或藉由反覆測試得知是否需要 (標準:「False」)" -#~ msgid "Polka dots, medium" -#~ msgstr "圓點, 中" +#~ msgid "Correct tool offset" +#~ msgstr "校正刀具偏移" -#~ msgid "Polka dots, medium white" -#~ msgstr "圓點, 中 (白色)" +#~ msgid "Return Factor:" +#~ msgstr "返回係數:" -#~ msgid "Polka dots, large" -#~ msgstr "圓點, 大" +#~ msgid "" +#~ "The return factor multiplied by the tool offset is the length that is " +#~ "used to guide the tool back to the original path after an overcut is " +#~ "performed, you can only determine this value by experimentation " +#~ "(Standard: '2.50')" +#~ msgstr "" +#~ "返回係數會和刀具偏移相乘,過切執行後刀具回到原始路徑會使用相乘後得到的長" +#~ "度,你只能依經驗決定這項數值 (標準:「2.50」)" -#~ msgid "Polka dots, large white" -#~ msgstr "圓點, 大 (白色)" +#~ msgid "Plot invisible layers" +#~ msgstr "繪製隱形圖層" -#~ msgid "Wavy" -#~ msgstr "波浪" +#~ msgid "Plot invisible layers (Standard: 'False')" +#~ msgstr "繪製隱形圖層 (標準:「False」)" -#~ msgid "Wavy white" -#~ msgstr "波浪 (白色)" +#~ msgid "Send to Plotter also" +#~ msgstr "也傳送到繪圖機" -#~ msgid "Camouflage" -#~ msgstr "迷彩" +#~ msgid "" +#~ "Sends the generated HPGL data also via serial connection to your plotter " +#~ "(Standard: 'False')" +#~ msgstr "產生的 HPGL 資料也經由序列連線傳送到你的繪圖機 (標準:「False」)" -#~ msgid "Ermine" -#~ msgstr "貂皮" +#~ msgid "Baud Rate:" +#~ msgstr "鮑率:" -#~ msgid "Sand (bitmap)" -#~ msgstr "沙 (點陣圖)" +#~ msgid "Text Outline Input" +#~ msgstr "文字輪廓輸入" -#~ msgid "Cloth (bitmap)" -#~ msgstr "布料 (點陣圖)" +#~ msgid "Text Outline File (*.outline)" +#~ msgstr "文字輪廓檔 (*.outline)" -#~ msgid "Old paint (bitmap)" -#~ msgstr "老舊油漆 (點陣圖)" +#~ msgid "ASCII Text with outline markup" +#~ msgstr "含邊框標記的 ASCII 文字" -#~ msgid "Add a new connection point" -#~ msgstr "加入新的連接點" +#~ msgid "Text Input" +#~ msgstr "文字輸入" -#~ msgid "Move a connection point" -#~ msgstr "移動連接點" +#~ msgid "Text File (*.txt)" +#~ msgstr "文字檔 (*.txt)" -#~ msgid "Remove a connection point" -#~ msgstr "移除連接點" +#~ msgid "ASCII Text" +#~ msgstr "ASCII 文字" #~ msgid "Flowed text (%d character%s)" #~ msgid_plural "Flowed text (%d characters%s)" @@ -35748,115 +37358,97 @@ msgstr "XAML 輸入" #~ msgid "3D Box" #~ msgstr "立方體" -#~ msgid "Connection point: click or drag to create a new connector" -#~ msgstr "連接點:點擊或拖曳來建立新的連接線" - -#~ msgid "Connection point: click to select, drag to move" -#~ msgstr "連接點:點擊可選取,拖曳可移動" - -#~ msgid "Connection point drag cancelled." -#~ msgstr "已取消拖曳連接點。" - -#~ msgid "T_ype: " -#~ msgstr "類型(_Y):" - -#~ msgid "Search in all object types" -#~ msgstr "搜尋所有物件類型" - -#~ msgid "Search all shapes" -#~ msgstr "搜尋所有形狀" - -#~ msgid "All shapes" -#~ msgstr "所有形狀" - -#~ msgid "_Text:" -#~ msgstr "文字(_T):" - -#~ msgid "Find objects by their text content (exact or partial match)" -#~ msgstr "用文字內容來搜尋物件 (完全或部份符合)" - -#~ msgid "" -#~ "Find objects by the value of the id attribute (exact or partial match)" -#~ msgstr "用 ID 屬性的數值來搜尋物件 (完全或部份相符)" - -#~ msgid "_Style:" -#~ msgstr "樣式(_S):" - -#~ msgid "" -#~ "Find objects by the value of the style attribute (exact or partial match)" -#~ msgstr "用樣式屬性的數值來搜尋物件 (完全或部份相符)" +#~ msgctxt "Web" +#~ msgid "Link" +#~ msgstr "連結" -#~ msgid "_Attribute:" -#~ msgstr "屬性(_A):" +#~ msgid "Polyline" +#~ msgstr "折線" -#~ msgid "Find objects by the name of an attribute (exact or partial match)" -#~ msgstr "用屬性名稱來搜尋物件 (完全或部份相符)" +#~ msgctxt "Object" +#~ msgid "Text" +#~ msgstr "文字" -#~ msgid "Search in s_election" -#~ msgstr "搜尋選取範圍(_E)" +#~ msgctxt "Object" +#~ msgid "Clone" +#~ msgstr "仿製" -#~ msgid "Search in current _layer" -#~ msgstr "搜尋目前的圖層(_L)" +#~ msgid "%i object of type %s" +#~ msgid_plural "%i objects of type %s" +#~ msgstr[0] "%i 個物件類型為 %s" +#~ msgstr[1] "%i個物件類型為%s" -#~ msgid "Include l_ocked" -#~ msgstr "包含鎖定物件(_O)" +#~ msgid "%i object of types %s, %s" +#~ msgid_plural "%i objects of types %s, %s" +#~ msgstr[0] "%i 個物件類型為 %s%s" +#~ msgstr[1] "%i個物件類型為%s%s" -#~ msgid "Clear values" -#~ msgstr "清除數值" +#~ msgid "%i object of types %s, %s, %s" +#~ msgid_plural "%i objects of types %s, %s, %s" +#~ msgstr[0] "%i 個物件類型為 %s%s%s" +#~ msgstr[1] "%i個物件類型為%s%s%s" -#~ msgid "Select objects matching all of the fields you filled in" -#~ msgstr "選擇符合你輸入全部條件的物件" +#~ msgid "%i object of %i types" +#~ msgid_plural "%i objects of %i types" +#~ msgstr[0] "%i個物件 %i 種類型" +#~ msgstr[1] "%i個物件 %i 種類型" -#~ msgid "Crop:" -#~ msgstr "裁剪:" +#~ msgid "Link to %s" +#~ msgstr "連結 到 %s" -#~ msgid "Red:" -#~ msgstr "紅:" +#~ msgid "Ellipse" +#~ msgstr "橢圓形" -#~ msgid "Green:" -#~ msgstr "綠:" +#~ msgid "Circle" +#~ msgstr "圓形" -#~ msgid "Blue:" -#~ msgstr "藍:" +#~ msgid "Arc" +#~ msgstr "" -#~ msgid "Lightness:" -#~ msgstr "亮度:" +#~ msgid "Image with bad reference: %s" +#~ msgstr "圖片含有不良參考: %s" -#~ msgid "Alpha:" -#~ msgstr "透明:" +#~ msgid "Line" +#~ msgstr "" -#~ msgid "Level:" -#~ msgstr "等級:" +#~ msgid "Linked offset, %s by %f pt" +#~ msgstr "連結偏移,%s 偏移 %f pt" -#~ msgid "Contrast:" -#~ msgstr "對比:" +#~ msgid "Dynamic offset, %s by %f pt" +#~ msgstr "動態偏移,%s 偏移 %f pt" -#~ msgid "Composite:" -#~ msgstr "合成:" +#~ msgid "Path (%i node, path effect: %s)" +#~ msgid_plural "Path (%i nodes, path effect: %s)" +#~ msgstr[0] "路徑 (%i 節點, 路徑特效: %s)" +#~ msgstr[1] "路徑 (%i 節點, 路徑特效: %s)" -#~ msgid "Colors:" -#~ msgstr "顏色:" +#~ msgid "Path (%i node)" +#~ msgid_plural "Path (%i nodes)" +#~ msgstr[0] "路徑 (%i 節點)" +#~ msgstr[1] "路徑 (%i 節點)" -#~ msgid "Glow:" -#~ msgstr "光暈:" +#~ msgid "Rectangle" +#~ msgstr "矩形" -#~ msgid "Simplify:" -#~ msgstr "簡化:" +#~ msgid "Polygon with %d vertex" +#~ msgid_plural "Polygon with %d vertices" +#~ msgstr[0] "多邊形具備 %d 個頂點" +#~ msgstr[1] "多邊形具備 %d 個頂點" -#~ msgid "Blur:" -#~ msgstr "模糊:" +#~ msgid "Orphaned cloned character data" +#~ msgstr "被遺棄的仿製字元資料" -#~ msgid "Blur type:" -#~ msgstr "模糊類型:" +#~ msgid "Text span" +#~ msgstr "文字不換行區塊" -#~ msgid "Link or embed image:" -#~ msgstr "連結或內嵌圖片:" +#~ msgid "'%s' Symbol" +#~ msgstr "「%s」符號" -#~ msgid "drawing-%d%s" -#~ msgstr "繪圖-%d%s" +#~ msgid "Clone of: %s" +#~ msgstr "%s 的仿製物件" -#~ msgid "%s" -#~ msgstr "%s" +#~ msgid "Orphaned clone" +#~ msgstr "被遺棄的仿製物件" #~ msgid "Pt" #~ msgstr "Pt" @@ -35915,13 +37507,6 @@ msgstr "XAML 輸入" #~ msgid "Ex squares" #~ msgstr "半方 (Ex)" -#, fuzzy -#~ msgid "Specifies the shape of the path's corners" -#~ msgstr "指定此平行線的右邊端點" - -#~ msgid "Whiteboa_rd" -#~ msgstr "白板(_R)" - #~ msgid "Name by which this document is formally known" #~ msgstr "這份文件的正式名稱" @@ -35960,159 +37545,12 @@ msgstr "XAML 輸入" #~ msgid "Extent or scope of this document" #~ msgstr "這份文件的特定範圍" -#~ msgctxt "Web" -#~ msgid "Link" -#~ msgstr "連結" - -#~ msgid "Polyline" -#~ msgstr "折線" - -#, fuzzy -#~ msgctxt "Object" -#~ msgid "Text" -#~ msgstr "文字" - -#~ msgctxt "Object" -#~ msgid "Clone" -#~ msgstr "仿製" - -#~ msgid "%i object of type %s" -#~ msgid_plural "%i objects of type %s" -#~ msgstr[0] "%i 個物件類型為 %s" -#~ msgstr[1] "%i個物件類型為%s" - -#~ msgid "%i object of types %s, %s" -#~ msgid_plural "%i objects of types %s, %s" -#~ msgstr[0] "%i 個物件類型為 %s%s" -#~ msgstr[1] "%i個物件類型為%s%s" - -#~ msgid "%i object of types %s, %s, %s" -#~ msgid_plural "%i objects of types %s, %s, %s" -#~ msgstr[0] "%i 個物件類型為 %s%s%s" -#~ msgstr[1] "%i個物件類型為%s%s%s" - -#~ msgid "%i object of %i types" -#~ msgid_plural "%i objects of %i types" -#~ msgstr[0] "%i個物件 %i 種類型" -#~ msgstr[1] "%i個物件 %i 種類型" - -#~ msgid "Link to %s" -#~ msgstr "連結 到 %s" - -#~ msgid "Ellipse" -#~ msgstr "橢圓形" - -#~ msgid "Circle" -#~ msgstr "圓形" - -#~ msgid "Segment" -#~ msgstr "線段" - -#~ msgid "Arc" -#~ msgstr "" - -#~ msgid "Image with bad reference: %s" -#~ msgstr "圖片含有不良參考: %s" - -#~ msgid "Line" -#~ msgstr "" - -#~ msgid "Linked offset, %s by %f pt" -#~ msgstr "連結偏移,%s 偏移 %f pt" - -#~ msgid "Dynamic offset, %s by %f pt" -#~ msgstr "動態偏移,%s 偏移 %f pt" - -#~ msgid "Path (%i node, path effect: %s)" -#~ msgid_plural "Path (%i nodes, path effect: %s)" -#~ msgstr[0] "路徑 (%i 節點, 路徑特效: %s)" -#~ msgstr[1] "路徑 (%i 節點, 路徑特效: %s)" - -#~ msgid "Path (%i node)" -#~ msgid_plural "Path (%i nodes)" -#~ msgstr[0] "路徑 (%i 節點)" -#~ msgstr[1] "路徑 (%i 節點)" - -#~ msgid "Rectangle" -#~ msgstr "矩形" - -#~ msgid "Polygon with %d vertex" -#~ msgid_plural "Polygon with %d vertices" -#~ msgstr[0] "多邊形具備 %d 個頂點" -#~ msgstr[1] "多邊形具備 %d 個頂點" - -#~ msgid "Orphaned cloned character data" -#~ msgstr "被遺棄的仿製字元資料" - -#~ msgid "Text span" -#~ msgstr "文字不換行區塊" - -#~ msgid "Clone of: %s" -#~ msgstr "%s 的仿製物件" - -#~ msgid "Orphaned clone" -#~ msgstr "被遺棄的仿製物件" - -#~ msgid "" -#~ "Color and transparency of the page background (also used for bitmap " -#~ "export)" -#~ msgstr "頁面背景的顏色與透明度 (也用於點陣圖匯出)" - -#, fuzzy -#~ msgid "Color" -#~ msgstr "多邊形" - -#~ msgid "Border" -#~ msgstr "邊界" - -#~ msgid "" -#~ "The feDiffuseLighting and feSpecularLighting filter primitives " -#~ "create \"embossed\" shadings. The input's alpha channel is used to " -#~ "provide depth information: higher opacity areas are raised toward the " -#~ "viewer and lower opacity areas recede away from the viewer." -#~ msgstr "" -#~ "此擴散光 (feDiffuseLighting) 和反射光 (feSpecularLighting) 濾鏡基元" -#~ "用來製作「浮凸的」明暗變化。輸入的透明色版用以提供深度資訊:較高的不透明範" -#~ "圍會加強浮凸的視覺效果,而較低不透明範圍則會減弱。" - #~ msgid "Allow relative coordinates" #~ msgstr "使用相對坐標" #~ msgid "If set, relative coordinates may be used in path data" #~ msgstr "若設定,路徑資料可以使用相對坐標" -#~ msgid "Left mouse button pans when Space is pressed" -#~ msgstr "按著空白鍵時滑鼠左鍵可平移畫布" - -#~ msgid "" -#~ "When on, pressing and holding Space and dragging with left mouse button " -#~ "pans canvas (as in Adobe Illustrator); when off, Space temporarily " -#~ "switches to Selector tool (default)" -#~ msgstr "" -#~ "若開啟,按下或按住空白鍵時按著滑鼠左鍵拖曳可平移畫布 (如同 Adobe " -#~ "Illustrator 的操作);而關閉時,空白鍵可暫時切換到選取工具 (預設)" - -#~ msgid "2x2" -#~ msgstr "2x2" - -#~ msgid "4x4" -#~ msgstr "4x4" - -#~ msgid "8x8" -#~ msgstr "8x8" - -#~ msgid "Oversample bitmaps:" -#~ msgstr "過度取樣點陣圖:" - -#~ msgid "Always embed" -#~ msgstr "始終內嵌" - -#~ msgid "Always link" -#~ msgstr "始終連結" - -#~ msgid "Ask" -#~ msgstr "詢問" - #~ msgid "_Execute Javascript" #~ msgstr "執行 Javascript(_E)" @@ -36128,90 +37566,17 @@ msgstr "XAML 輸入" #~ msgid "Errors" #~ msgstr "錯誤" -#~ msgid "Align:" -#~ msgstr "對齊:" - -#~ msgid "O:%.3g" -#~ msgstr "不透明度:%.3g" - -#~ msgid "O:.%d" -#~ msgstr "不透明度:.%d" - -#~ msgid "_Export Bitmap..." -#~ msgstr "匯出點陣圖(_E)..." - -#~ msgid "Export this document or a selection as a bitmap image" -#~ msgstr "將文件或選取區匯出成點陣圖" - -#~ msgid "Ro_ws and Columns..." -#~ msgstr "表格排列(_W)..." - -#~ msgid "_Grid" -#~ msgstr "格線(_G)" - -#, fuzzy -#~ msgid " and " -#~ msgstr "內外陰影" - #~ msgid "S_cripts..." #~ msgstr "腳本(_C)..." #~ msgid "Run scripts" #~ msgstr "執行腳本" -#~ msgid "Save..." -#~ msgstr "儲存..." - -#~ msgid "EditMode" -#~ msgstr "編輯模式" - -#~ msgid "Switch between connection point editing and connector drawing mode" -#~ msgstr "切換連接點編輯和連接線繪製模式" - -#~ msgid "New connection point" -#~ msgstr "新增連接點" - -#~ msgid "Add a new connection point to the currently selected item" -#~ msgstr "加入新連接點到目前選取的項目" - -#~ msgid "Remove connection point" -#~ msgstr "移除連接點" - -#~ msgid "Remove the currently selected connection point" -#~ msgstr "移除目前選取的連接點" - -#~ msgid "%s%s: %d (outline%s) - Inkscape" -#~ msgstr "%s%s: %d (輪廓%s) - Inkscape " - -#~ msgid "%s%s: %d (no filters%s) - Inkscape" -#~ msgstr "%s%s: %d (無濾鏡%s) - Inkscape" - -#~ msgid "%s%s (outline%s) - Inkscape" -#~ msgstr "%s%s (輪廓%s) - Inkscape" - -#~ msgid "%s%s (no filters%s) - Inkscape" -#~ msgstr "%s%s (無濾鏡%s) - Inkscape" - -#~ msgid "Edit:" -#~ msgstr "編輯:" - -#~ msgid "_Start Markers:" -#~ msgstr "起點標記(_S):" - -#~ msgid "_Mid Markers:" -#~ msgstr "中間標記(_M):" - -#~ msgid "_End Markers:" -#~ msgstr "終點標記(_E):" - -#~ msgid "Failed to find font matching: %s\n" -#~ msgstr "無法找到符合的字型:%s\n" - -#~ msgid "keep only visible layers" -#~ msgstr "只保留可見圖層" +#~ msgid "Preset:" +#~ msgstr "前置設定:" -#~ msgid "1/10" -#~ msgstr "1/10" +#~ msgid "Vertical guide each:" +#~ msgstr "每條垂直參考線:" #~ msgid "1/2" #~ msgstr "1/2" @@ -36237,35 +37602,120 @@ msgstr "XAML 輸入" #~ msgid "1/9" #~ msgstr "1/9" +#~ msgid "1/10" +#~ msgstr "1/10" + #~ msgid "Horizontal guide each:" #~ msgstr "每條水平參考線:" -#~ msgid "Preset:" -#~ msgstr "前置設定:" +#~ msgid "Preview scale: " +#~ msgstr "預覽比例:" -#~ msgid "Vertical guide each:" -#~ msgstr "每條垂直參考線:" +#~ msgid "Fit" +#~ msgstr "調整" -#~ msgid "Plot invisible layers" -#~ msgstr "繪製隱形圖層" +#~ msgid "Fit to width" +#~ msgstr "符合寬度" -#~ msgid "X-origin (px)" -#~ msgstr "X 原點 (px)" +#~ msgid "Fit to height" +#~ msgstr "符合高度" -#~ msgid "Y-origin (px)" -#~ msgstr "Y 原點 (px)" +#~ msgid "Preview size: " +#~ msgstr "預覽尺寸:" + +#~ msgid "_Start Markers:" +#~ msgstr "起點標記(_S):" + +#~ msgid "_Mid Markers:" +#~ msgstr "中間標記(_M):" + +#~ msgid "_End Markers:" +#~ msgstr "終點標記(_E):" + +#~ msgid "T_ype: " +#~ msgstr "類型(_Y):" + +#~ msgid "Search in all object types" +#~ msgstr "搜尋所有物件類型" + +#~ msgid "Search all shapes" +#~ msgstr "搜尋所有形狀" + +#~ msgid "All shapes" +#~ msgstr "所有形狀" + +#~ msgid "Crop:" +#~ msgstr "裁剪:" + +#~ msgid "Red:" +#~ msgstr "紅:" + +#~ msgid "Green:" +#~ msgstr "綠:" + +#~ msgid "Blue:" +#~ msgstr "藍:" + +#~ msgid "Lightness:" +#~ msgstr "亮度:" + +#~ msgid "Alpha:" +#~ msgstr "透明:" + +#~ msgid "Level:" +#~ msgstr "等級:" + +#~ msgid "Contrast:" +#~ msgstr "對比:" + +#~ msgid "Colors:" +#~ msgstr "顏色:" + +#~ msgid "Glow:" +#~ msgstr "光暈:" + +#~ msgid "Simplify:" +#~ msgstr "簡化:" + +#~ msgid "Blur:" +#~ msgstr "模糊:" + +#~ msgid "Whiteboa_rd" +#~ msgstr "白板(_R)" + +#~ msgid "Select only one group to convert to symbol." +#~ msgstr "只選取一個群組轉換成符號。" + +#~ msgid "Select original (Shift+D) to convert to symbol." +#~ msgstr "選取原始物件 (Shift+D) 轉換成符號。" + +#~ msgid "Group selection first to convert to symbol." +#~ msgstr "將第一個選取的群組轉換成符號。" + +#~ msgid "" +#~ "The feDiffuseLighting and feSpecularLighting filter primitives " +#~ "create \"embossed\" shadings. The input's alpha channel is used to " +#~ "provide depth information: higher opacity areas are raised toward the " +#~ "viewer and lower opacity areas recede away from the viewer." +#~ msgstr "" +#~ "此擴散光 (feDiffuseLighting) 和反射光 (feSpecularLighting) 濾鏡基元" +#~ "用來製作「浮凸的」明暗變化。輸入的透明色版用以提供深度資訊:較高的不透明範" +#~ "圍會加強浮凸的視覺效果,而較低不透明範圍則會減弱。" + +#~ msgid "Failed to find font matching: %s\n" +#~ msgstr "無法找到符合的字型:%s\n" + +#~ msgid "keep only visible layers" +#~ msgstr "只保留可見圖層" #~ msgid "hpgl output flatness" #~ msgstr "HP 圖形語言輸出平坦度" -#~ msgid "ASCII Text with outline markup" -#~ msgstr "含邊框標記的 ASCII 文字" - -#~ msgid "Text Outline File (*.outline)" -#~ msgstr "文字輪廓檔 (*.outline)" +#~ msgid "X-origin (px)" +#~ msgstr "X 原點 (px)" -#~ msgid "Text Outline Input" -#~ msgstr "文字輪廓輸入" +#~ msgid "Y-origin (px)" +#~ msgstr "Y 原點 (px)" #~ msgid "y-Function:" #~ msgstr "y 函數:" @@ -36278,23 +37728,142 @@ msgstr "XAML 輸入" #~ "這個特效可沿著任意「骨架」路徑彎曲圖案物件。此圖案必須是選取範圍的最上層物" #~ "件。(可以是路徑 / 形狀 / 仿製物件的群組...)" -#~ msgid "ASCII Text" -#~ msgstr "ASCII 文字" +#~ msgid "Composite:" +#~ msgstr "合成:" -#~ msgid "Text File (*.txt)" -#~ msgstr "文字檔 (*.txt)" +#~ msgid "Blur type:" +#~ msgstr "模糊類型:" -#~ msgid "Text Input" -#~ msgstr "文字輸入" +#~ msgid "Move a connection point" +#~ msgstr "移動連接點" -#~ msgid "Dark mode" -#~ msgstr "暗色模式" +#~ msgid "Remove a connection point" +#~ msgstr "移除連接點" -#~ msgid "[Unstable!] Power stroke" -#~ msgstr "[不穩定!] 神奇邊框" +#~ msgid "Connection point: click or drag to create a new connector" +#~ msgstr "連接點:點擊或拖曳來建立新的連接線" -#~ msgid "[Unstable!] Clone original path" -#~ msgstr "[不穩定!] 複製原本路徑" +#~ msgid "Connection point: click to select, drag to move" +#~ msgstr "連接點:點擊可選取,拖曳可移動" + +#~ msgid "Connection point drag cancelled." +#~ msgstr "已取消拖曳連接點。" + +#~ msgid "_Text:" +#~ msgstr "文字(_T):" + +#~ msgid "Find objects by their text content (exact or partial match)" +#~ msgstr "用文字內容來搜尋物件 (完全或部份符合)" + +#~ msgid "" +#~ "Find objects by the value of the id attribute (exact or partial match)" +#~ msgstr "用 ID 屬性的數值來搜尋物件 (完全或部份相符)" + +#~ msgid "_Style:" +#~ msgstr "樣式(_S):" + +#~ msgid "" +#~ "Find objects by the value of the style attribute (exact or partial match)" +#~ msgstr "用樣式屬性的數值來搜尋物件 (完全或部份相符)" + +#~ msgid "_Attribute:" +#~ msgstr "屬性(_A):" + +#~ msgid "Find objects by the name of an attribute (exact or partial match)" +#~ msgstr "用屬性名稱來搜尋物件 (完全或部份相符)" + +#~ msgid "Search in s_election" +#~ msgstr "搜尋選取範圍(_E)" + +#~ msgid "Search in current _layer" +#~ msgstr "搜尋目前的圖層(_L)" + +#~ msgid "Include l_ocked" +#~ msgstr "包含鎖定物件(_O)" + +#~ msgid "Clear values" +#~ msgstr "清除數值" + +#~ msgid "Select objects matching all of the fields you filled in" +#~ msgstr "選擇符合你輸入全部條件的物件" + +#~ msgid "EditMode" +#~ msgstr "編輯模式" + +#~ msgid "Switch between connection point editing and connector drawing mode" +#~ msgstr "切換連接點編輯和連接線繪製模式" + +#~ msgid "New connection point" +#~ msgstr "新增連接點" + +#~ msgid "Add a new connection point to the currently selected item" +#~ msgstr "加入新連接點到目前選取的項目" + +#~ msgid "Remove connection point" +#~ msgstr "移除連接點" + +#~ msgid "Remove the currently selected connection point" +#~ msgstr "移除目前選取的連接點" + +#~ msgid "" +#~ "Color and transparency of the page background (also used for bitmap " +#~ "export)" +#~ msgstr "頁面背景的顏色與透明度 (也用於點陣圖匯出)" + +#~ msgid "Left mouse button pans when Space is pressed" +#~ msgstr "按著空白鍵時滑鼠左鍵可平移畫布" + +#~ msgid "" +#~ "When on, pressing and holding Space and dragging with left mouse button " +#~ "pans canvas (as in Adobe Illustrator); when off, Space temporarily " +#~ "switches to Selector tool (default)" +#~ msgstr "" +#~ "若開啟,按下或按住空白鍵時按著滑鼠左鍵拖曳可平移畫布 (如同 Adobe " +#~ "Illustrator 的操作);而關閉時,空白鍵可暫時切換到選取工具 (預設)" + +#~ msgid "(grayscale) " +#~ msgstr "(灰階)" + +#~ msgid "(print colors preview) " +#~ msgstr "(列印色彩預覽)" + +#~ msgid "%s%s: %d (outline%s) - Inkscape" +#~ msgstr "%s%s: %d (輪廓%s) - Inkscape " + +#~ msgid "%s%s: %d (no filters%s) - Inkscape" +#~ msgstr "%s%s: %d (無濾鏡%s) - Inkscape" + +#~ msgid "%s%s (outline%s) - Inkscape" +#~ msgstr "%s%s (輪廓%s) - Inkscape" + +#~ msgid "%s%s (no filters%s) - Inkscape" +#~ msgstr "%s%s (無濾鏡%s) - Inkscape" + +#~ msgid " and " +#~ msgstr " 且 " + +#~ msgid "Save..." +#~ msgstr "儲存..." + +#~ msgid "Edit:" +#~ msgstr "編輯:" + +#~ msgid "O:%.3g" +#~ msgstr "不透明度:%.3g" + +#~ msgid "O:.%d" +#~ msgstr "不透明度:.%d" + +#, fuzzy +#~ msgid "Majenta" +#~ msgstr "洋紅" + +#~ msgid "Specifies the shape of the path's corners" +#~ msgstr "指定路徑轉折部份的形狀" + +#~ msgctxt "Filesystem" +#~ msgid "_Path:" +#~ msgstr "路徑(_P):" #~ msgid "The directory where autosaves will be written" #~ msgstr "自動儲存寫入的目錄" @@ -36302,17 +37871,30 @@ msgstr "XAML 輸入" #~ msgid "_Description" #~ msgstr "描述(_D)" -#~ msgid "_Blur:" -#~ msgstr "模糊(_B):" +#~ msgid "Neon Draw Alternate" +#~ msgstr "交替式霓虹圖畫" -#~ msgid "Bitmap size" -#~ msgstr "點陣圖大小" +#~ msgid "Draw an image with neon or chalk lines" +#~ msgstr "使用霓虹或粉筆線條繪製影像" -#~ msgid "Grid line _color:" -#~ msgstr "格線顏色(_C):" +#~ msgid "White to Transparency" +#~ msgstr "白色轉成透明" -#~ msgid "Grid line color" -#~ msgstr "格線顏色" +#~ msgid "" +#~ "Make the image progressively transparent without alterating its lightness" +#~ msgstr "不改變本身亮度的情形下讓影像逐漸變透明" + +#~ msgid "Dark mode" +#~ msgstr "暗色模式" + +#~ msgid "[Unstable!] Power stroke" +#~ msgstr "[不穩定!] 神奇邊框" + +#~ msgid "[Unstable!] Clone original path" +#~ msgstr "[不穩定!] 複製原本路徑" + +#~ msgid "Bitmap size" +#~ msgstr "點陣圖大小" #~ msgid "Export area is drawing" #~ msgstr "匯出範圍為繪圖部份" @@ -36320,24 +37902,12 @@ msgstr "XAML 輸入" #~ msgid "Export area is page" #~ msgstr "匯出範圍為整個頁面" -#~ msgid "Vacuum <defs>" -#~ msgstr "清空 <defs>" - -#~ msgid "_Select Same Fill and Stroke" -#~ msgstr "選取相同填充和邊框(_S)" - -#~ msgid "%s%s. %s." -#~ msgstr "%s%s。%s。" +#~ msgid "Selec_t Same" +#~ msgstr "選取相同物件(_T)" #~ msgid "Back_ground:" #~ msgstr "背景(_G)" -#~ msgid "Color Management" -#~ msgstr "色彩管理" - -#~ msgid "Add" -#~ msgstr "加入" - #~ msgid "Re_place:" #~ msgstr "取代(_P):" @@ -36347,6 +37917,67 @@ msgstr "XAML 輸入" #~ msgid "Te_xt" #~ msgstr "文字(_X)" +#~ msgid "Attribute _value" +#~ msgstr "屬性值(_V)" + +#~ msgid "Font size (px)" +#~ msgstr "字型大小 (px)" + +#~ msgid "_Select Same Fill and Stroke" +#~ msgstr "選取相同填充和邊框(_S)" + +#~ msgctxt "Measurement tool" +#~ msgid "Measure" +#~ msgstr "量測" + +#~ msgid "Toggle Bold" +#~ msgstr "切換粗體" + +#~ msgid "Toggle bold or normal weight" +#~ msgstr "切換粗體或一般" + +#~ msgid "Toggle Italic/Oblique" +#~ msgstr "切換斜體 / 傾斜體" + +#~ msgid "Toggle italic/oblique style" +#~ msgstr "切換斜體 (italic) / 傾斜體 (oblique) 樣式" + +#~ msgid "Grid line _color:" +#~ msgstr "格線顏色(_C):" + +#~ msgid "Grid line color" +#~ msgstr "格線顏色" + +#~ msgid "Add" +#~ msgstr "加入" + +#~ msgid "Major grid line emphasizing" +#~ msgstr "強調主要格線" + +#~ msgid "Don't emphasize gridlines when zoomed out" +#~ msgstr "格線不要隨著畫面放大而變粗" + +#~ msgid "Grid line color:" +#~ msgstr "格線顏色:" + +#~ msgid "_Find..." +#~ msgstr "尋找(_F)..." + +#~ msgid "By:" +#~ msgstr "取代成:" + +#~ msgid "Replace text" +#~ msgstr "取代文字" + +#~ msgid "Vacuum <defs>" +#~ msgstr "清空 <defs>" + +#~ msgid "%s%s. %s." +#~ msgstr "%s%s。%s。" + +#~ msgid "Color Management" +#~ msgstr "色彩管理" + #~ msgid "Attribute _Name" #~ msgstr "屬性名稱(_N)" @@ -36362,15 +37993,6 @@ msgstr "XAML 輸入" #~ msgid "Text Replace" #~ msgstr "文字取代" -#~ msgid "Major grid line emphasizing" -#~ msgstr "強調主要格線" - -#~ msgid "Don't emphasize gridlines when zoomed out" -#~ msgstr "格線不要隨著畫面放大而變粗" - -#~ msgid "Grid line color:" -#~ msgstr "格線顏色:" - #~ msgid "Effect list" #~ msgstr "特效清單" @@ -36383,24 +38005,6 @@ msgstr "XAML 輸入" #~ msgid "In_kscape Preferences..." #~ msgstr "In_kscape 偏好設定..." -#~ msgid "_Find..." -#~ msgstr "尋找(_F)..." - -#~ msgid "Font size (px)" -#~ msgstr "字型大小 (px)" - -#~ msgid "Toggle Bold" -#~ msgstr "切換粗體" - -#~ msgid "Toggle bold or normal weight" -#~ msgstr "切換粗體或一般" - -#~ msgid "Toggle Italic/Oblique" -#~ msgstr "切換斜體 / 傾斜體" - -#~ msgid "Toggle italic/oblique style" -#~ msgstr "切換斜體 (italic) / 傾斜體 (oblique) 樣式" - #~ msgid "Angle 0" #~ msgstr "角度 0" @@ -36452,12 +38056,6 @@ msgstr "XAML 輸入" #~ msgid "Display Format: " #~ msgstr "顯示格式:" -#~ msgid "By:" -#~ msgstr "取代成:" - -#~ msgid "Replace text" -#~ msgstr "取代文字" - #~ msgid "Image effects" #~ msgstr "影像特效" @@ -36660,9 +38258,6 @@ msgstr "XAML 輸入" #~ msgid "Multiple gradients" #~ msgstr "多重漸層" -#~ msgid "No objects" -#~ msgstr "沒有物件" - #~ msgid "Affect:" #~ msgstr "影響:" @@ -36678,12 +38273,6 @@ msgstr "XAML 輸入" #~ msgid "Snap to bounding box corners" #~ msgstr "貼齊到邊界框頂點" -#~ msgid "Snap to cusp nodes" -#~ msgstr "貼齊尖銳節點" - -#~ msgid "Snap to smooth nodes" -#~ msgstr "貼齊平滑節點" - #~ msgid "LaTeX formula" #~ msgstr "LaTeX 公式" @@ -36776,9 +38365,6 @@ msgstr "XAML 輸入" #~ "Smooth the outside of shapes and pictures without altering their contents" #~ msgstr "平滑形狀和圖片的外邊,不改變內容" -#~ msgid "Noise transparency" -#~ msgstr "雜訊透明" - #~ msgid "HSL Bumps, matte" #~ msgstr "HSL 凹凸, 霧面" @@ -36965,12 +38551,6 @@ msgstr "XAML 輸入" #~ msgid "link" #~ msgstr "連結" -#~ msgid "Iconify" -#~ msgstr "縮成圖示" - -#~ msgid "Label:" -#~ msgstr "標籤:" - #~ msgid "Print Previe_w" #~ msgstr "列印預覽(_W)" @@ -37092,12 +38672,6 @@ msgstr "XAML 輸入" #~ msgid "Font" #~ msgstr "字型" -#~ msgid "Type" -#~ msgstr "類型" - -#~ msgid "Radius" -#~ msgstr "半徑" - #~ msgid "pdfinput|medium" #~ msgstr "中" @@ -37256,9 +38830,6 @@ msgstr "XAML 輸入" #~ msgid "%s: %d (print colors preview) - Inkscape" #~ msgstr "%s: %d (列印色彩預覽) - Inkscape" -#~ msgid "%s (print colors preview) - Inkscape" -#~ msgstr "%s (列印色彩預覽) - Inkscape" - #~ msgid "fontselector|Style" #~ msgstr "樣式" @@ -37417,294 +38988,6 @@ msgstr "XAML 輸入" #~ msgid "Inkboard session (%1 to %2)" #~ msgstr "Inkboard 執行階段 (%1 到 %2)" -#~ msgid "Length left" -#~ msgstr "左邊長度" - -#~ msgid "Specifies the left end of the bisector" -#~ msgstr "指定此平分線的左邊端點" - -#~ msgid "Length right" -#~ msgstr "右邊長度" - -#~ msgid "Specifies the right end of the bisector" -#~ msgstr "指定此平分線的右邊端點" - -#~ msgid "Adjust the \"left\" end of the bisector" -#~ msgstr "調整此平分線的「左邊」端點" - -#~ msgid "Adjust the \"right\" of the bisector" -#~ msgstr "調整此平分線的「右邊」端點" - -#~ msgid "Null" -#~ msgstr "空" - -#~ msgid "Subtract A-B" -#~ msgstr "相減 A-B" - -#~ msgid "Identity A" -#~ msgstr "相同 A" - -#~ msgid "Subtract B-A" -#~ msgstr "相減 B-A" - -#~ msgid "Identity B" -#~ msgstr "相同 B" - -#~ msgid "2nd path" -#~ msgstr "第二個路徑" - -#~ msgid "Path to which the original path will be boolop'ed." -#~ msgstr "路徑將對原始路徑作布林運算。" - -#~ msgid "Determines which kind of boolop will be performed." -#~ msgstr "決定會實行哪一種布林運算。" - -#, fuzzy -#~ msgid "Rotation angle" -#~ msgstr "旋轉控制" - -#~ msgid "Angle between two successive copies" -#~ msgstr "兩個連續複本之間的角度" - -#~ msgid "Number of copies" -#~ msgstr "複本數量:" - -#~ msgid "Number of copies of the original path" -#~ msgstr "原始路徑的複本數量" - -#~ msgid "Origin" -#~ msgstr "原點" - -#~ msgid "Adjust the starting angle" -#~ msgstr "調整開始角度" - -#~ msgid "Adjust the rotation angle" -#~ msgstr "調整旋轉角度" - -#~ msgid "Elliptic Pen" -#~ msgstr "橢圓筆尖" - -#~ msgid "Thick-Thin strokes (slow)" -#~ msgstr "粗-細畫筆 (慢)" - -#~ msgid "Sharp" -#~ msgstr "尖銳" - -#~ msgid "Method" -#~ msgstr "方式" - -#~ msgid "Choose pen type" -#~ msgstr "選擇筆尖類型" - -#~ msgid "Maximal stroke width" -#~ msgstr "最大畫筆寬度" - -#~ msgid "Pen roundness" -#~ msgstr "圓筆尖" - -#~ msgid "Min/Max width ratio" -#~ msgstr "最小/最大寬度比" - -#~ msgid "direction of thickest strokes (opposite = thinest)" -#~ msgstr "最粗畫筆的方向 (相對的 = 最細)" - -#~ msgid "Choose start capping type" -#~ msgstr "選擇起點帽緣類型" - -#~ msgid "Choose end capping type" -#~ msgstr "選擇末端帽緣類型" - -#~ msgid "Grow for" -#~ msgstr "逐漸擴張" - -#~ msgid "Make the stroke thiner near it's start" -#~ msgstr "使畫筆靠近起點的部份較細" - -#~ msgid "Make the stroke thiner near it's end" -#~ msgstr "使畫筆靠近末端的部份較細" - -#~ msgid "Round ends" -#~ msgstr "圓角端點" - -#~ msgid "Strokes end with a round end" -#~ msgstr "畫筆末端為圓端點" - -#~ msgid "left capping" -#~ msgstr "左帽緣" - -#, fuzzy -#~ msgid "Control handle 0" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 1" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 2" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 3" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 4" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 5" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 6" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 7" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 8" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 9" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 10" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 11" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 12" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 13" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 14" -#~ msgstr "聊天室控制(_H):" - -#, fuzzy -#~ msgid "Control handle 15" -#~ msgstr "聊天室控制(_H):" - -#~ msgid "Determines on which side the line or line segment is infinite." -#~ msgstr "決定哪一邊的線或線段為無限長。" - -#~ msgid "Check this to only keep the mirrored part of the path" -#~ msgstr "勾選這個以只保留路徑的鏡像部份" - -#~ msgid "Line which serves as 'mirror' for the reflection" -#~ msgstr "直線作為反射的「鏡像」使用" - -#~ msgid "Handle to control the distance of the offset from the curve" -#~ msgstr "從曲線來操作控制偏移的距離" - -#~ msgid "Specifies the left end of the parallel" -#~ msgstr "指定此平行線的左邊端點" - -#~ msgid "Adjust the \"left\" end of the parallel" -#~ msgstr "調整此平行線的「左邊」端點" - -#~ msgid "Adjust the \"right\" end of the parallel" -#~ msgstr "調整此平行線的「右邊」端點" - -#~ msgid "Print unit after path length" -#~ msgstr "列印單位依照路徑長度" - -#~ msgid "Adjust the bisector's \"left\" end" -#~ msgstr "調整平分線的「左邊」端點" - -#~ msgid "Adjust the bisector's \"right\" end" -#~ msgstr "調整平分線的「左邊」端點" - -#~ msgid "Scale x" -#~ msgstr "縮放 x" - -#~ msgid "Scale factor in x direction" -#~ msgstr "x 方向的縮放係數" - -#~ msgid "Scale y" -#~ msgstr "縮放 y" - -#~ msgid "Scale factor in y direction" -#~ msgstr "y 方向的縮放係數" - -#~ msgid "Offset in x direction" -#~ msgstr "X 方向的偏移" - -#~ msgid "Offset y" -#~ msgstr "偏移 y" - -#~ msgid "Offset in y direction" -#~ msgstr "y 方向的偏移" - -#~ msgid "Uses XY plane?" -#~ msgstr "使用 XY 平面?" - -#~ msgid "" -#~ "If true, put the path on the left side of an imaginary box, otherwise on " -#~ "the right side" -#~ msgstr "如果是,放置此路徑於想像框的左邊,否則在右邊" - -#~ msgid "Adjust the origin" -#~ msgstr "調整原點" - -#~ msgid "Iterations" -#~ msgstr "疊代" - -#~ msgid "recursivity" -#~ msgstr "遞迴性" - -#~ msgid "Float parameter" -#~ msgstr "浮動參數" - -#~ msgid "just a real number like 1.4!" -#~ msgstr "僅為一個實數如 1.4 !" - -#~ msgid "Additional angle between tangent and curve" -#~ msgstr "切線和曲線間的附加角" - -#~ msgid "" -#~ "Location of the point of attachment along the curve (between 0.0 and " -#~ "number-of-segments)" -#~ msgstr "沿著曲線附著點的位置 (0.0 和線段數目之間)" - -#~ msgid "Specifies the left end of the tangent" -#~ msgstr "指定此切線的左邊端點" - -#~ msgid "Specifies the right end of the tangent" -#~ msgstr "指定此切線的右邊端點" - -#~ msgid "Adjust the point of attachment of the tangent" -#~ msgstr "調整此切線的附著點" - -#~ msgid "Adjust the \"left\" end of the tangent" -#~ msgstr "調整此切線的「左邊」端點" - -#~ msgid "Adjust the \"right\" end of the tangent" -#~ msgstr "調整此切線的「右邊」端點" - -#~ msgid "Stack step" -#~ msgstr "堆疊階層" - -#~ msgid "point param" -#~ msgstr "點參數" - -#~ msgid "path param" -#~ msgstr "路徑參數" - -#~ msgid "Text label attached to the path" -#~ msgstr "文字標籤附屬於路徑" - #, fuzzy #~ msgid "Transform Handles:" #~ msgstr "改變漸層" @@ -38267,10 +39550,6 @@ msgstr "XAML 輸入" #~ msgid "Mean:" #~ msgstr "中間" -#, fuzzy -#~ msgid "The mean of the spray action" -#~ msgstr "微調作用的力道" - #, fuzzy #~ msgid "(minimum standard_deviation)" #~ msgstr "標準差:" -- cgit v1.2.3 From e865deb80f860dd58365749a1c24865a6ac244f1 Mon Sep 17 00:00:00 2001 From: Firas Hanife <> Date: Tue, 18 Nov 2014 18:51:11 +0100 Subject: Translation. Italian translation update by Firas Hanife. Fixed bugs: - https://launchpad.net/bugs/1363245 (bzr r13731) --- po/it.po | 732 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 341 insertions(+), 391 deletions(-) diff --git a/po/it.po b/po/it.po index 267b7bbe7..6c45abfa1 100644 --- a/po/it.po +++ b/po/it.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Inkscape 0.91\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-10-26 18:38+0100\n" -"PO-Revision-Date: 2009-10-11 17:07+0100\n" +"POT-Creation-Date: 2014-11-18 18:45+0100\n" +"PO-Revision-Date: 2014-11-18 18:00+0100\n" "Last-Translator: Firas Hanife \n" "Language-Team: \n" "Language: it\n" @@ -1949,7 +1949,7 @@ msgstr "Taglia, aggiunge un'ombra interna e colora alcune parti di un'immagine" #: ../share/filters/filters.svg.h:814 msgid "Litho" -msgstr "Lito" +msgstr "Litografico" #: ../share/filters/filters.svg.h:816 msgid "Create a two colors lithographic effect" @@ -4463,7 +4463,7 @@ msgstr "Cover DVD Normale 300dpi " #: ../share/templates/templates.h:1 msgid "Template for both-sides DVD covers." -msgstr "Modello per cover DVD fronte-retro" +msgstr "Modello per cover DVD fronte-retro." #: ../share/templates/templates.h:1 msgid "DVD cover regular 300dpi" @@ -5554,12 +5554,12 @@ msgstr "Canale «Nero»" #: ../src/extension/internal/bitmap/channel.cpp:58 #: ../src/extension/internal/bitmap/levelChannel.cpp:62 msgid "Opacity Channel" -msgstr "Canale «Opacità»" +msgstr "Canale «Opacità-1»" #: ../src/extension/internal/bitmap/channel.cpp:59 #: ../src/extension/internal/bitmap/levelChannel.cpp:63 msgid "Matte Channel" -msgstr "Opacità canale" +msgstr "Canale «Opacità-2»" #: ../src/extension/internal/bitmap/channel.cpp:66 msgid "Extract specific channel from image" @@ -5661,7 +5661,7 @@ msgstr "Rilievo" #: ../src/extension/internal/bitmap/emboss.cpp:47 msgid "Emboss selected bitmap(s); highlight edges with 3D effect" msgstr "" -"Mette in rilievo le bitmap selezionate; esalta gli spigoli con un effetto 3D." +"Mette in rilievo le bitmap selezionate; esalta gli spigoli con un effetto 3D" #: ../src/extension/internal/bitmap/enhance.cpp:35 msgid "Enhance" @@ -5731,7 +5731,7 @@ msgid "" "to the full color range" msgstr "" "Livella le bitmap selezionate riportando i valori che cadono nell'intervallo " -"selezionato a tutta la scala cromatica." +"selezionato a tutta la scala cromatica" #: ../src/extension/internal/bitmap/levelChannel.cpp:52 msgid "Level (with Channel)" @@ -6291,9 +6291,8 @@ msgstr "Azimut (°)" #: ../src/extension/internal/filter/bevels.h:58 #: ../src/extension/internal/filter/bevels.h:139 #: ../src/extension/internal/filter/bevels.h:223 -#, fuzzy msgid "Lighting color" -msgstr "Colore di evidenziazione" +msgstr "Colore illuminazione" #: ../src/extension/internal/filter/bevels.h:62 #: ../src/extension/internal/filter/bevels.h:143 @@ -6363,16 +6362,15 @@ msgstr "Gelatina opaca" #: ../src/extension/internal/filter/blurs.h:187 #: ../src/extension/internal/filter/color.h:74 msgid "Brightness" -msgstr "Luminosità" +msgstr "Brillantezza" #: ../src/extension/internal/filter/bevels.h:147 msgid "Bulging, matte jelly covering" msgstr "Protruso, coperto con gel opaco" #: ../src/extension/internal/filter/bevels.h:217 -#, fuzzy msgid "Specular Light" -msgstr "Illuminazione speculare" +msgstr "Luce speculare" #: ../src/extension/internal/filter/blurs.h:56 #: ../src/extension/internal/filter/blurs.h:189 @@ -6564,16 +6562,14 @@ msgid "Normal" msgstr "Normale" #: ../src/extension/internal/filter/blurs.h:344 -#, fuzzy msgid "Blend to background" -msgstr "Rimuovi sfondo" +msgstr "Miscela a sfondo" #: ../src/extension/internal/filter/blurs.h:354 msgid "Blur eroded by white or transparency" msgstr "" #: ../src/extension/internal/filter/bumps.h:80 -#, fuzzy msgid "Bump" msgstr "Rugosità" @@ -6584,15 +6580,13 @@ msgstr "Semplificazione immagine" #: ../src/extension/internal/filter/bumps.h:85 #: ../src/extension/internal/filter/bumps.h:314 -#, fuzzy msgid "Bump simplification" -msgstr "Soglia per la semplificazione:" +msgstr "Semplificazione rugosità" #: ../src/extension/internal/filter/bumps.h:87 #: ../src/extension/internal/filter/bumps.h:316 -#, fuzzy msgid "Bump source" -msgstr "Rugosità" +msgstr "Sorgente rugosità" #: ../src/extension/internal/filter/bumps.h:88 #: ../src/extension/internal/filter/bumps.h:317 @@ -6634,9 +6628,8 @@ msgid "Blue" msgstr "Blu" #: ../src/extension/internal/filter/bumps.h:91 -#, fuzzy msgid "Bump from background" -msgstr "Rimuovi sfondo" +msgstr "Rugosità da sfondo" #: ../src/extension/internal/filter/bumps.h:94 msgid "Lighting type:" @@ -6672,7 +6665,7 @@ msgstr "Altezza" #: ../src/widgets/sp-color-scales.cpp:462 ../src/widgets/tweak-toolbar.cpp:318 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" -msgstr "Chiarezza" +msgstr "Luminosità" #: ../src/extension/internal/filter/bumps.h:100 #: ../src/extension/internal/filter/bumps.h:331 @@ -6760,23 +6753,20 @@ msgid "Cone angle" msgstr "Angolo del cono" #: ../src/extension/internal/filter/bumps.h:127 -#, fuzzy msgid "Image color" msgstr "Colore immagine" #: ../src/extension/internal/filter/bumps.h:128 -#, fuzzy msgid "Color bump" -msgstr "Colore" +msgstr "Colore rugosità" #: ../src/extension/internal/filter/bumps.h:145 msgid "All purposes bump filter" -msgstr "" +msgstr "Filtro rugosità per vari utilizzi" #: ../src/extension/internal/filter/bumps.h:309 -#, fuzzy msgid "Wax Bump" -msgstr "Rugosità" +msgstr "Rugosità cera" #: ../src/extension/internal/filter/bumps.h:320 msgid "Background:" @@ -6789,7 +6779,6 @@ msgid "Image" msgstr "Immagine" #: ../src/extension/internal/filter/bumps.h:323 -#, fuzzy msgid "Blurred image" msgstr "Immagini sfocata" @@ -6807,22 +6796,18 @@ msgid "Lighting blend:" msgstr "Miscela illuminazione:" #: ../src/extension/internal/filter/bumps.h:341 -#, fuzzy msgid "Highlight blend:" msgstr "Miscela evidenziazione:" #: ../src/extension/internal/filter/bumps.h:350 -#, fuzzy msgid "Bump color" -msgstr "Rilascia colore" +msgstr "Colore rugosità" #: ../src/extension/internal/filter/bumps.h:351 -#, fuzzy msgid "Revert bump" -msgstr "Ricarica" +msgstr "Inverti rugosità" #: ../src/extension/internal/filter/bumps.h:352 -#, fuzzy msgid "Transparency type:" msgstr "Tipo trasparenza:" @@ -6841,7 +6826,7 @@ msgstr "In" #: ../src/extension/internal/filter/bumps.h:365 msgid "Turns an image to jelly" -msgstr "" +msgstr "Converte un'immagine in gelatina" #: ../src/extension/internal/filter/color.h:72 msgid "Brilliance" @@ -7268,7 +7253,6 @@ msgid "Colored nights" msgstr "Ombra colorata" #: ../src/extension/internal/filter/color.h:1590 -#, fuzzy msgid "Hue to background" msgstr "Tonalità a sfondo" @@ -7491,7 +7475,7 @@ msgstr "Smussa spigoli e angoli delle forme" #: ../src/extension/internal/filter/morphology.h:166 msgid "Outline" -msgstr "Scheletro" +msgstr "Contorno" #: ../src/extension/internal/filter/morphology.h:170 msgid "Fill image" @@ -7502,7 +7486,6 @@ msgid "Hide image" msgstr "Nascondi immagine" #: ../src/extension/internal/filter/morphology.h:172 -#, fuzzy msgid "Composite type:" msgstr "Tipo composizione:" @@ -7530,7 +7513,6 @@ msgid "Outside" msgstr "Esterna" #: ../src/extension/internal/filter/morphology.h:182 -#, fuzzy msgid "Overlayed" msgstr "Sovrapposta" @@ -7548,7 +7530,7 @@ msgstr "Erosione 1" #: ../src/extension/internal/filter/morphology.h:187 msgid "Width 2" -msgstr "Larghezza 2:" +msgstr "Larghezza 2" #: ../src/extension/internal/filter/morphology.h:188 msgid "Dilatation 2" @@ -7571,9 +7553,8 @@ msgid "Stroke opacity:" msgstr "Opacità contorno:" #: ../src/extension/internal/filter/morphology.h:206 -#, fuzzy msgid "Adds a colorizable outline" -msgstr "Aggiunge uno scheletro colorabile" +msgstr "Aggiunge un contorno colorabile" #: ../src/extension/internal/filter/overlays.h:56 msgid "Noise Fill" @@ -7645,23 +7626,20 @@ msgstr "Texture semplice di disturbo di riempimento e trasparenza" #: ../src/extension/internal/filter/paint.h:71 msgid "Chromolitho" -msgstr "" +msgstr "Cromolitografico" #: ../src/extension/internal/filter/paint.h:75 #: ../share/extensions/jessyInk_keyBindings.inx.h:16 -#, fuzzy msgid "Drawing mode" -msgstr "Disegno" +msgstr "Modalità disegno" #: ../src/extension/internal/filter/paint.h:76 -#, fuzzy msgid "Drawing blend:" -msgstr "Disegno cancellato" +msgstr "Miscela disegno:" #: ../src/extension/internal/filter/paint.h:84 -#, fuzzy msgid "Dented" -msgstr "centro" +msgstr "Riduci" #: ../src/extension/internal/filter/paint.h:88 #: ../src/extension/internal/filter/paint.h:699 @@ -7669,14 +7647,12 @@ msgid "Noise reduction" msgstr "Riduzione rumore" #: ../src/extension/internal/filter/paint.h:91 -#, fuzzy msgid "Grain" -msgstr "Grana" +msgstr "Grani" #: ../src/extension/internal/filter/paint.h:92 -#, fuzzy msgid "Grain mode" -msgstr "Disegno" +msgstr "Modalità grani" #: ../src/extension/internal/filter/paint.h:97 #: ../src/extension/internal/filter/transparency.h:207 @@ -7686,11 +7662,11 @@ msgstr "Espansione" #: ../src/extension/internal/filter/paint.h:100 msgid "Grain blend:" -msgstr "" +msgstr "Miscela grani:" #: ../src/extension/internal/filter/paint.h:116 msgid "Chromo effect with customizable edge drawing and graininess" -msgstr "" +msgstr "Effetto cromolitografico con disegno e granularità personalizzabile" #: ../src/extension/internal/filter/paint.h:232 msgid "Cross Engraving" @@ -7813,9 +7789,8 @@ msgid "Noise blend:" msgstr "Miscela rumore:" #: ../src/extension/internal/filter/paint.h:708 -#, fuzzy msgid "Grain lightness" -msgstr "Luminosità" +msgstr "Luminosità grani" #: ../src/extension/internal/filter/paint.h:716 msgid "Points color" @@ -7830,14 +7805,12 @@ msgid "Convert image to a transparent point engraving" msgstr "Converte l'immagine in una trasparente incisione a punti" #: ../src/extension/internal/filter/paint.h:850 -#, fuzzy msgid "Poster Paint" -msgstr "Costante:" +msgstr "Colora poster" #: ../src/extension/internal/filter/paint.h:856 -#, fuzzy msgid "Transfer type:" -msgstr "Tipo operazione booleana" +msgstr "Tipo trasferimento:" #: ../src/extension/internal/filter/paint.h:857 msgid "Poster" @@ -7856,14 +7829,12 @@ msgid "Simplify (secondary)" msgstr "Semplifica (secondario)" #: ../src/extension/internal/filter/paint.h:870 -#, fuzzy msgid "Pre-saturation" -msgstr "Saturazione" +msgstr "Pre-saturazione" #: ../src/extension/internal/filter/paint.h:871 -#, fuzzy msgid "Post-saturation" -msgstr "Saturazione" +msgstr "Post-saturazione" #: ../src/extension/internal/filter/paint.h:872 msgid "Simulate antialiasing" @@ -8026,9 +7997,8 @@ msgid "Replace RGB with transparency" msgstr "Rimpiazza RGB con trasparenza" #: ../src/extension/internal/filter/transparency.h:205 -#, fuzzy msgid "Light Eraser" -msgstr "Sovraesposto" +msgstr "Cancella luce" #: ../src/extension/internal/filter/transparency.h:209 #: ../src/extension/internal/filter/transparency.h:283 @@ -8052,9 +8022,8 @@ msgid "Cutout" msgstr "Taglio" #: ../src/extension/internal/filter/transparency.h:353 -#, fuzzy msgid "Repaint anything visible monochrome" -msgstr "Ridipinge tutto monocromo" +msgstr "Ridipinge tutto il visibile in monocromomatico" #: ../src/extension/internal/gdkpixbuf-input.cpp:184 #, c-format @@ -8219,7 +8188,7 @@ msgstr "Spostamento verticale:" #: ../share/extensions/triangle.inx.h:14 #: ../share/extensions/wireframe_sphere.inx.h:8 msgid "Render" -msgstr "Render" +msgstr "Rendering" #: ../src/extension/internal/grid.cpp:221 #: ../src/ui/dialog/document-properties.cpp:155 @@ -8948,9 +8917,8 @@ msgid "Radial gradient mid stop" msgstr "Passaggio intermedio del gradiente lineare" #: ../src/gradient-drag.cpp:106 ../src/ui/tools/mesh-tool.cpp:103 -#, fuzzy msgid "Mesh gradient corner" -msgstr "Centro del gradiente radiale" +msgstr "Angolo del gradiente a maglia" #: ../src/gradient-drag.cpp:107 ../src/ui/tools/mesh-tool.cpp:104 msgid "Mesh gradient handle" @@ -9196,7 +9164,7 @@ msgstr "Seleziona stesso" #. Select same fill and stroke #: ../src/interface.cpp:1671 msgid "Fill and Stroke" -msgstr "Riempimento e Contorni" +msgstr "Riempimento e contorni" #. Select same fill color #: ../src/interface.cpp:1678 @@ -9408,11 +9376,10 @@ msgid "Resizable" msgstr "Ridimensionabile" #: ../src/libgdl/gdl-dock-item.c:315 -#, fuzzy msgid "If set, the dock item can be resized when docked in a GtkPanel widget" msgstr "" "Se attivo, l'elemento del pannello può essere ridimensionato quando " -"incorniciato in un pannello" +"agganciato a un widget GtkPanel" #: ../src/libgdl/gdl-dock-item.c:322 msgid "Item behavior" @@ -9512,13 +9479,12 @@ msgstr "" "sono tutti sbloccati; -1 indica inconsistenza tra gli oggetti" #: ../src/libgdl/gdl-dock-master.c:157 ../src/libgdl/gdl-switcher.c:737 -#, fuzzy msgid "Switcher Style" -msgstr "Stile campioni" +msgstr "Stile icone pannelli" #: ../src/libgdl/gdl-dock-master.c:158 ../src/libgdl/gdl-switcher.c:738 msgid "Switcher buttons style" -msgstr "Stile dei bottoni di scambio" +msgstr "Stile dei bottoni delle icone dei pannelli" #: ../src/libgdl/gdl-dock-master.c:783 #, c-format @@ -10174,7 +10140,7 @@ msgstr "_Passi:" #: ../src/live_effects/lpe-interpolate.cpp:32 msgid "Determines the number of steps from start to end path." -msgstr "Determina il numero di passi dall'inizio alla fine del tracciato" +msgstr "Determina il numero di passi dall'inizio alla fine del tracciato." #: ../src/live_effects/lpe-interpolate.cpp:33 msgid "E_quidistant spacing" @@ -10398,12 +10364,11 @@ msgstr "Arrotondati" #. {LINEJOIN_EXTRP_MITER, N_("Extrapolated"), "extrapolated"}, // disabled because doesn't work well #: ../src/live_effects/lpe-powerstroke.cpp:224 msgid "Extrapolated arc" -msgstr "" +msgstr "Arco estrapolato" #: ../src/live_effects/lpe-powerstroke.cpp:225 -#, fuzzy msgid "Miter" -msgstr "Spigolo vivo" +msgstr "Vivi" #: ../src/live_effects/lpe-powerstroke.cpp:226 #: ../src/widgets/pencil-toolbar.cpp:103 @@ -10411,18 +10376,17 @@ msgid "Spiro" msgstr "Spiro" #: ../src/live_effects/lpe-powerstroke.cpp:232 -#, fuzzy msgid "Offset points" -msgstr "Tracciato estruso" +msgstr "Punti proiezione" #: ../src/live_effects/lpe-powerstroke.cpp:233 -#, fuzzy msgid "Sort points" -msgstr "Orientamento" +msgstr "Ordina punti" #: ../src/live_effects/lpe-powerstroke.cpp:233 msgid "Sort offset points according to their time value along the curve" msgstr "" +"Ordina i punti della proiezione secondo la loro posizione lungo la curva" #: ../src/live_effects/lpe-powerstroke.cpp:234 msgid "Interpolator type:" @@ -11259,14 +11223,14 @@ msgid "PDF_VERSION" msgstr "VERSIONE_PDF" #: ../src/main.cpp:424 -#, fuzzy msgid "" "Export PDF/PS/EPS without text. Besides the PDF/PS/EPS, a LaTeX file is " "exported, putting the text on top of the PDF/PS/EPS file. Include the result " "in LaTeX like: \\input{latexfile.tex}" msgstr "" "Esporta PDF/PS/EPS senza testo. Oltre al PDF/PS/EPS, viene esportato un file " -"LaTeX, mettendo il testo sopra al file PDF/PS/EPS. " +"LaTeX, mettendo il testo sopra al file PDF/PS/EPS. Include il risultato in " +"LaTeX come: \\input{latexfile.tex}" #: ../src/main.cpp:429 msgid "Export document to an Enhanced Metafile (EMF) File" @@ -11377,7 +11341,7 @@ msgstr "OBJECT-ID" #: ../src/main.cpp:521 msgid "Start Inkscape in interactive shell mode." -msgstr "Avvia Inkscape in modalità interattiva per terminale" +msgstr "Avvia Inkscape in modalità interattiva per terminale." #: ../src/main.cpp:871 ../src/main.cpp:1283 msgid "" @@ -12395,7 +12359,6 @@ msgid " in %s" msgstr " in %s" #: ../src/selection-describer.cpp:167 -#, fuzzy msgid " hidden in definitions" msgstr " nascosto nelle definizioni" @@ -12413,8 +12376,8 @@ msgstr " nel gruppo senza nome (%s)" #, fuzzy, c-format msgid " in %i parent (%s)" msgid_plural " in %i parents (%s)" -msgstr[0] " in %i parente (%s)" -msgstr[1] " in %i parenti (%s)" +msgstr[0] " in %i genitore (%s)" +msgstr[1] " in %i genitori (%s)" #: ../src/selection-describer.cpp:176 #, c-format @@ -12613,7 +12576,6 @@ msgid "Flowed Text" msgstr "Testo dinamico" #: ../src/sp-flowtext.cpp:291 -#, fuzzy msgid "Linked Flowed Text" msgstr "Testo dinamico collegato" @@ -12670,7 +12632,7 @@ msgid "embedded" msgstr "integrato" #: ../src/sp-image.cpp:533 -#, fuzzy, c-format +#, c-format msgid "[bad reference]: %s" msgstr "[riferimento errato]: %s" @@ -13212,13 +13174,13 @@ msgstr "" "selezionato; trascina le maniglie per modificare il gradiente." #: ../src/tools-switch.cpp:105 -#, fuzzy msgid "" "Drag or double click to create a mesh on selected objects, " "drag handles to adjust meshes." msgstr "" -"Trascina o doppio clic per creare un gradiente sull'oggetto " -"selezionato; trascina le maniglie per modificare il gradiente." +"Trascina o doppio clic per creare un gradiente a maglia " +"sull'oggetto selezionato, trascina le maniglie per modificare il " +"gradiente." #: ../src/tools-switch.cpp:106 msgid "" @@ -13659,7 +13621,7 @@ msgstr "Modifica profilo" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:53 msgid "Profile name:" -msgstr "Nome profilo" +msgstr "Nome profilo:" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:80 msgid "Save" @@ -14367,7 +14329,7 @@ msgstr "Sparpaglia cloni in serie" #: ../src/ui/dialog/clonetiler.cpp:2148 msgid "Select one object whose tiled clones to remove." -msgstr "Seleziona un oggetto da cui rimuovere i cloni in serie" +msgstr "Seleziona un oggetto da cui rimuovere i cloni in serie." #: ../src/ui/dialog/clonetiler.cpp:2171 msgid "Delete tiled clones" @@ -14705,7 +14667,7 @@ msgstr "_Rimuovi" #: ../src/ui/dialog/document-properties.cpp:147 msgid "Remove selected grid." -msgstr "Rimuove la griglia selezionata" +msgstr "Rimuove la griglia selezionata." #: ../src/ui/dialog/document-properties.cpp:154 #: ../src/widgets/toolbox.cpp:1835 @@ -14885,7 +14847,6 @@ msgid "Remove grid" msgstr "Rimuovi griglia" #: ../src/ui/dialog/document-properties.cpp:1761 -#, fuzzy msgid "Changed document unit" msgstr "Unità documento cambiata" @@ -15354,12 +15315,10 @@ msgid "Intercept" msgstr "Interfaccia" #: ../src/ui/dialog/filter-effects-dialog.cpp:1045 -#, fuzzy msgid "Amplitude" msgstr "Ampiezza" #: ../src/ui/dialog/filter-effects-dialog.cpp:1046 -#, fuzzy msgid "Exponent" msgstr "Esponente" @@ -15590,7 +15549,7 @@ msgid "" msgstr "" "Se viene impostata l'operazione matematica, ogni pixel sarà il risultato " "della formula k1*i1*i2 + k2*i1 + k3*i2 + k4, in cui i1 e i2 sono i valori " -"dei pixel rispettivamente del primo e del secondo input" +"dei pixel rispettivamente del primo e del secondo input." #: ../src/ui/dialog/filter-effects-dialog.cpp:2855 msgid "K2:" @@ -15979,7 +15938,7 @@ msgstr "" "Il filtro feMerge compone varie immagini temporanee in una unica. Per " "il suo funzionamento sfrutta una semplice composizione delle trasparenze. " "Questo è equivalente all'uso di vari filtri feBlend in modalità 'normale', o " -"vari feComposite in modalità 'sovrapposizione'" +"vari feComposite in modalità 'sovrapposizione'." #: ../src/ui/dialog/filter-effects-dialog.cpp:2992 msgid "" @@ -15989,7 +15948,7 @@ msgid "" msgstr "" "Il filtro feMorphology fornisce meccanismi di dilatazione ed " "erosione. Per oggetti monocromatici, la dilatazione li rende più larghi " -"mentre l'erosione più sottili" +"mentre l'erosione più sottili." #: ../src/ui/dialog/filter-effects-dialog.cpp:2996 msgid "" @@ -16120,7 +16079,7 @@ msgstr "Includi _nascosti" #: ../src/ui/dialog/find.cpp:85 msgid "Include hidden objects in search" -msgstr "Include nella ricerca gli oggetti nascosti" +msgstr "Include gli oggetti nascosti nella ricerca" #: ../src/ui/dialog/find.cpp:86 msgid "Include loc_ked" @@ -16128,7 +16087,7 @@ msgstr "Includi blo_ccati" #: ../src/ui/dialog/find.cpp:86 msgid "Include locked objects in search" -msgstr "Include nella selezione gli oggetti bloccati" +msgstr "Include gli oggetti bloccati nella ricerca" #: ../src/ui/dialog/find.cpp:88 msgid "General" @@ -16816,14 +16775,12 @@ msgid "Mathematical Operators" msgstr "Operatori matematici" #: ../src/ui/dialog/glyphs.cpp:224 -#, fuzzy msgid "Miscellaneous Technical" msgstr "Vari tecnici" #: ../src/ui/dialog/glyphs.cpp:225 -#, fuzzy msgid "Control Pictures" -msgstr "Contributori" +msgstr "Immagini controllo" #: ../src/ui/dialog/glyphs.cpp:226 msgid "Optical Character Recognition" @@ -16831,16 +16788,15 @@ msgstr "" #: ../src/ui/dialog/glyphs.cpp:227 msgid "Enclosed Alphanumerics" -msgstr "" +msgstr "Alfanumerici chiusi" #: ../src/ui/dialog/glyphs.cpp:228 -#, fuzzy msgid "Box Drawing" -msgstr "Disegno" +msgstr "Disegno linee/scatola" #: ../src/ui/dialog/glyphs.cpp:229 msgid "Block Elements" -msgstr "" +msgstr "Elementi blocco" #: ../src/ui/dialog/glyphs.cpp:230 msgid "Geometric Shapes" @@ -16863,9 +16819,8 @@ msgid "Supplemental Arrows-A" msgstr "Supplemento Frecce A" #: ../src/ui/dialog/glyphs.cpp:235 -#, fuzzy msgid "Braille Patterns" -msgstr "Muovi motivi" +msgstr "Motivi Braille" #: ../src/ui/dialog/glyphs.cpp:236 msgid "Supplemental Arrows-B" @@ -16905,11 +16860,11 @@ msgstr "Supplemento Punteggiatura" #: ../src/ui/dialog/glyphs.cpp:248 msgid "CJK Radicals Supplement" -msgstr "" +msgstr "Supplemento radicali CJK" #: ../src/ui/dialog/glyphs.cpp:249 msgid "Kangxi Radicals" -msgstr "" +msgstr "Radicali Kangxi" #: ../src/ui/dialog/glyphs.cpp:250 msgid "Ideographic Description Characters" @@ -16921,7 +16876,7 @@ msgstr "Simboli e Punteggiatura CJK" #: ../src/ui/dialog/glyphs.cpp:255 msgid "Hangul Compatibility Jamo" -msgstr "" +msgstr "Hangul compatibile Jamo" #: ../src/ui/dialog/glyphs.cpp:256 msgid "Kanbun" @@ -16932,33 +16887,32 @@ msgid "Bopomofo Extended" msgstr "Bopomofo esteso" #: ../src/ui/dialog/glyphs.cpp:258 -#, fuzzy msgid "CJK Strokes" -msgstr "Contorni" +msgstr "Tratti CJK" #: ../src/ui/dialog/glyphs.cpp:259 msgid "Katakana Phonetic Extensions" -msgstr "" +msgstr "Estensioni fonetiche Katakana" #: ../src/ui/dialog/glyphs.cpp:260 msgid "Enclosed CJK Letters and Months" -msgstr "" +msgstr "Lettere e Mesi CJK chiusi" #: ../src/ui/dialog/glyphs.cpp:261 msgid "CJK Compatibility" -msgstr "" +msgstr "Compatibilità CJK" #: ../src/ui/dialog/glyphs.cpp:262 msgid "CJK Unified Ideographs Extension A" -msgstr "" +msgstr "Ideogrammi CJK unificati estensione A" #: ../src/ui/dialog/glyphs.cpp:263 msgid "Yijing Hexagram Symbols" -msgstr "" +msgstr "Simboli esagramma Yijing" #: ../src/ui/dialog/glyphs.cpp:264 msgid "CJK Unified Ideographs" -msgstr "" +msgstr "Ideogrammi CJK unificati" #: ../src/ui/dialog/glyphs.cpp:265 msgid "Yi Syllables" @@ -16966,7 +16920,7 @@ msgstr "Sillabe Yi" #: ../src/ui/dialog/glyphs.cpp:266 msgid "Yi Radicals" -msgstr "" +msgstr "Radicali Yi" #: ../src/ui/dialog/glyphs.cpp:267 msgid "Lisu" @@ -17787,7 +17741,7 @@ msgstr "" "Quando impostato, le definizioni di gradiente vengono automaticamente " "duplicate quando modificate; deseleziona per abilitare la condivisione delle " "definizioni di gradiente, affinché la modifica di un oggetto condizioni gli " -"altri oggetti che usano lo stesso gradiente." +"altri oggetti che usano lo stesso gradiente" #: ../src/ui/dialog/inkscape-preferences.cpp:485 msgid "Use legacy Gradient Editor" @@ -18209,28 +18163,29 @@ msgstr "" #: ../src/ui/dialog/inkscape-preferences.cpp:599 msgid "Enable dynamic relayout for incomplete sections" -msgstr "" +msgstr "Abilita disposizione dinamica per sezioni incomplete" #: ../src/ui/dialog/inkscape-preferences.cpp:601 msgid "" "When on, will allow dynamic layout of components that are not completely " "finished being refactored" msgstr "" +"Quando attivo, permette la disposizione dinamica delle componenti che non " +"sono ancora state completate" #. show infobox #: ../src/ui/dialog/inkscape-preferences.cpp:604 -#, fuzzy msgid "Show filter primitives infobox (requires restart)" -msgstr "Mostra le informazioni sulle primitive dei filtri" +msgstr "" +"Mostra le informazioni sulle primitive dei filtri (richiede riapertura)" #: ../src/ui/dialog/inkscape-preferences.cpp:606 -#, fuzzy msgid "" "Show icons and descriptions for the filter primitives available at the " "filter effects dialog" msgstr "" "Mostra le icone e le descrizioni per le primitive dei filtri disponibili " -"nella finestra dei filtri." +"nella finestra dei filtri" #: ../src/ui/dialog/inkscape-preferences.cpp:609 #: ../src/ui/dialog/inkscape-preferences.cpp:617 @@ -18260,14 +18215,15 @@ msgstr "" "icone o entrambi" #: ../src/ui/dialog/inkscape-preferences.cpp:622 -#, fuzzy msgid "Switcher style (requires restart):" -msgstr "(richiede riapertura):" +msgstr "Stile icone pannelli (richiede riapertura):" #: ../src/ui/dialog/inkscape-preferences.cpp:623 msgid "" "Selects whether the dockbar switcher will show text labels, icons, or both" msgstr "" +"Seleziona se le icone dei pannelli raggruppati mostrano testo, icone o " +"entrambi" #. Windows #: ../src/ui/dialog/inkscape-preferences.cpp:627 @@ -18298,11 +18254,11 @@ msgstr "Fissabile" #: ../src/ui/dialog/inkscape-preferences.cpp:638 msgid "Native open/save dialogs" -msgstr "" +msgstr "Finestre apri/salva native" #: ../src/ui/dialog/inkscape-preferences.cpp:639 msgid "GTK open/save dialogs" -msgstr "" +msgstr "Finestre apri/salva GTK" #: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Dialogs are hidden in taskbar" @@ -18453,7 +18409,7 @@ msgid "" "sharing version controlled files." msgstr "" "Salva la vista dei documenti (ingrandimento e posizione). Si consiglia di " -"disabilitarla in caso di file condivisi controllati da versione" +"disabilitarla in caso di file condivisi controllati da versione." #: ../src/ui/dialog/inkscape-preferences.cpp:717 msgid "Whether dialog windows have a close button (requires restart)" @@ -18580,7 +18536,7 @@ msgstr "" #: ../src/ui/dialog/inkscape-preferences.cpp:847 msgid "Add default metadata to new documents" -msgstr "Aggiungi i metadati predefiniti ai nuovi documenti:" +msgstr "Aggiungi i metadati predefiniti ai nuovi documenti" #: ../src/ui/dialog/inkscape-preferences.cpp:849 msgid "" @@ -18650,7 +18606,7 @@ msgstr "" msgid "Switch tool based on tablet device (requires restart)" msgstr "" "Cambia strumento in base al dispositivo usato sulla tavoletta (richiede " -"riapertura):" +"riapertura)" #: ../src/ui/dialog/inkscape-preferences.cpp:869 msgid "" @@ -18719,7 +18675,7 @@ msgstr "Ottimizzato" #: ../src/ui/dialog/inkscape-preferences.cpp:891 msgid "Path string format:" -msgstr "" +msgstr "Formato stringa tracciato:" #: ../src/ui/dialog/inkscape-preferences.cpp:891 msgid "" @@ -18727,6 +18683,9 @@ msgid "" "relative coordinates, or optimized for string length (mixed absolute and " "relative coordinates)" msgstr "" +"I dati del tracciato devono essere scritti: solo con coordinate assolute, " +"solo con coordinate relative oppure ottimizzati per la lunghezza della " +"stringa (misto coordinate assolute e relative)" #: ../src/ui/dialog/inkscape-preferences.cpp:893 msgid "Force repeat commands" @@ -18768,20 +18727,21 @@ msgstr "" #. Add incorrect style properties options #: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Improper Attributes Actions" -msgstr "" +msgstr "Attributi impropri" #: ../src/ui/dialog/inkscape-preferences.cpp:909 #: ../src/ui/dialog/inkscape-preferences.cpp:917 #: ../src/ui/dialog/inkscape-preferences.cpp:925 -#, fuzzy msgid "Print warnings" -msgstr "Margini di stampa" +msgstr "Mostra avvisi" #: ../src/ui/dialog/inkscape-preferences.cpp:910 msgid "" "Print warning if invalid or non-useful attributes found. Database files " "located in inkscape_data_dir/attributes." msgstr "" +"Mostra avviso se vengono trovati attributi non validi o non utili. File " +"database localizzati in inkscape_data_dir/attributes." #: ../src/ui/dialog/inkscape-preferences.cpp:911 msgid "Remove attributes" @@ -18789,34 +18749,35 @@ msgstr "Rimuovi attributi" #: ../src/ui/dialog/inkscape-preferences.cpp:912 msgid "Delete invalid or non-useful attributes from element tag" -msgstr "" +msgstr "Elimina attributi non validi o non utili dal tag dell'elemento" #. Add incorrect style properties options #: ../src/ui/dialog/inkscape-preferences.cpp:915 msgid "Inappropriate Style Properties Actions" -msgstr "" +msgstr "Proprietà stile inappropriate" #: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "" "Print warning if inappropriate style properties found (i.e. 'font-family' " "set on a ). Database files located in inkscape_data_dir/attributes." msgstr "" +"Mostra avviso se vengono trovate proprietà stile inappropriate (es. " +"'carattere' impostato su un ). File database localizzati in " +"inkscape_data_dir/attributes." #: ../src/ui/dialog/inkscape-preferences.cpp:919 #: ../src/ui/dialog/inkscape-preferences.cpp:927 -#, fuzzy msgid "Remove style properties" -msgstr "Mostra le proprietà di questo triangolo" +msgstr "Rimuovi proprietà stile" #: ../src/ui/dialog/inkscape-preferences.cpp:920 -#, fuzzy msgid "Delete inappropriate style properties" -msgstr "Imposta proprietà delle guide" +msgstr "Elimina proprietà stile inappropriate" #. Add default or inherited style properties options #: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Non-useful Style Properties Actions" -msgstr "" +msgstr "Proprietà stile non utili" #: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "" @@ -18825,15 +18786,18 @@ msgid "" "same as would be inherited). Database files located in inkscape_data_dir/" "attributes." msgstr "" +"Mostra avviso se vengono trovate proprietà stile ridondanti (es. se una " +"proprietà ha il valore predefinito e un valore diverso non è ereditato o se " +"il valore è lo stesso se fosse ereditato). File database localizzati in " +"inkscape_data_dir/attributes." #: ../src/ui/dialog/inkscape-preferences.cpp:928 -#, fuzzy msgid "Delete redundant style properties" -msgstr "Imposta proprietà delle guide" +msgstr "Elimina proprietà stile ridondanti" #: ../src/ui/dialog/inkscape-preferences.cpp:930 msgid "Check Attributes and Style Properties on" -msgstr "" +msgstr "Controlla attributi e proprietà stile durante" #: ../src/ui/dialog/inkscape-preferences.cpp:932 msgid "Reading" @@ -18844,6 +18808,8 @@ msgid "" "Check attributes and style properties on reading in SVG files (including " "those internal to Inkscape which will slow down startup)" msgstr "" +"Controlla attributi e proprietà stile durante la lettura dei file SVG " +"(inclusi quelli interni a Inkscape che rallentano l'avvio)" #: ../src/ui/dialog/inkscape-preferences.cpp:934 msgid "Editing" @@ -18854,6 +18820,8 @@ msgid "" "Check attributes and style properties while editing SVG files (may slow down " "Inkscape, mostly useful for debugging)" msgstr "" +"Controlla attributi e proprietà stile durante la modifica dei file SVG (può " +"rallentare Inkscape, utile soprattutto per il debugging)" #: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "Writing" @@ -18862,6 +18830,7 @@ msgstr "Scrittura" #: ../src/ui/dialog/inkscape-preferences.cpp:937 msgid "Check attributes and style properties on writing out SVG files" msgstr "" +"Controlla attributi e proprietà stile durante la scrittura dei file SVG" #: ../src/ui/dialog/inkscape-preferences.cpp:939 msgid "SVG output" @@ -19115,11 +19084,11 @@ msgstr "" #: ../src/ui/dialog/inkscape-preferences.cpp:1137 msgid "Color stock markers the same color as object" -msgstr "" +msgstr "Colora marcatori dello stesso colore dell'oggetto" #: ../src/ui/dialog/inkscape-preferences.cpp:1138 msgid "Color custom markers the same color as object" -msgstr "" +msgstr "Colora marcatori personalizzati dello stesso colore dell'oggetto" #: ../src/ui/dialog/inkscape-preferences.cpp:1139 #: ../src/ui/dialog/inkscape-preferences.cpp:1349 @@ -19923,6 +19892,8 @@ msgid "" "Select a file of predefined shortcuts to use. Any customized shortcuts you " "create will be added seperately to " msgstr "" +"Seleziona un file di scorciatoie predefinite da usare. Qualsiasi scorciatoia " +"creata sarà aggiunta separatamente a " #: ../src/ui/dialog/inkscape-preferences.cpp:1490 msgid "Shortcut file:" @@ -20245,7 +20216,6 @@ msgid "Wheel" msgstr "Ruota" #: ../src/ui/dialog/input.cpp:1625 -#, fuzzy msgctxt "Input device axe" msgid "None" msgstr "Nessuno" @@ -20340,9 +20310,8 @@ msgid "Lock other layers" msgstr "Blocca altri livelli" #: ../src/ui/dialog/layers.cpp:721 -#, fuzzy msgid "Moved layer" -msgstr "Abbassa livello" +msgstr "Sposta livello" #: ../src/ui/dialog/layers.cpp:884 msgctxt "Layers" @@ -20350,25 +20319,21 @@ msgid "New" msgstr "Nuovo" #: ../src/ui/dialog/layers.cpp:889 -#, fuzzy msgctxt "Layers" msgid "Bot" msgstr "Fondo" #: ../src/ui/dialog/layers.cpp:895 -#, fuzzy msgctxt "Layers" msgid "Dn" -msgstr "Basso" +msgstr "Abbassa" #: ../src/ui/dialog/layers.cpp:901 -#, fuzzy msgctxt "Layers" msgid "Up" -msgstr "Alto" +msgstr "Alza" #: ../src/ui/dialog/layers.cpp:907 -#, fuzzy msgctxt "Layers" msgid "Top" msgstr "Cima" @@ -20429,7 +20394,7 @@ msgstr "Crea e applica l'effetto Clona tracciato originale" #: ../src/ui/dialog/livepatheffect-editor.cpp:505 msgid "Remove path effect" -msgstr "Rimuove effetti su tracciato" +msgstr "Rimuovi effetti su tracciato" #: ../src/ui/dialog/livepatheffect-editor.cpp:522 msgid "Move path effect up" @@ -20785,7 +20750,7 @@ msgstr "_Smussa angoli" #: ../src/ui/dialog/pixelartdialog.cpp:282 msgid "The Kopf-Lischinski algorithm" -msgstr "" +msgstr "Algoritmo Kopf-Lischinski" #: ../src/ui/dialog/pixelartdialog.cpp:289 msgid "Output" @@ -20841,7 +20806,7 @@ msgstr "Centro di rotazione dell'oggetto" #: ../src/ui/dialog/polar-arrange-tab.cpp:59 msgctxt "Polar arrange tab" msgid "Arrange on:" -msgstr "Ordina in base a:" +msgstr "Ordina secondo:" #: ../src/ui/dialog/polar-arrange-tab.cpp:63 msgctxt "Polar arrange tab" @@ -21014,7 +20979,7 @@ msgstr "L'oggetto selezionato non descrive un tracciato." #: ../src/ui/dialog/svg-fonts-dialog.cpp:536 msgid "No glyph selected in the SVGFonts dialog." -msgstr "Nessun glifo selezionato nella finestra SVGFonts" +msgstr "Nessun glifo selezionato nella finestra SVGFonts." #: ../src/ui/dialog/svg-fonts-dialog.cpp:547 #: ../src/ui/dialog/svg-fonts-dialog.cpp:586 @@ -21055,7 +21020,7 @@ msgstr "Dalla selezione..." #: ../src/ui/dialog/svg-fonts-dialog.cpp:709 msgid "Glyph name" -msgstr "Nome del glifo:" +msgstr "Nome del glifo" #: ../src/ui/dialog/svg-fonts-dialog.cpp:710 msgid "Matching string" @@ -21277,9 +21242,8 @@ msgid "Spacing between lines (percent of font size)" msgstr "Spaziatura tra le linee (percentuale dimensione carattere)" #: ../src/ui/dialog/text-edit.cpp:146 -#, fuzzy msgid "Text path offset" -msgstr "Regola la proiezione" +msgstr "Spostamento testo su tracciato" #: ../src/ui/dialog/text-edit.cpp:587 ../src/ui/dialog/text-edit.cpp:661 #: ../src/ui/tools/text-tool.cpp:1455 @@ -21970,9 +21934,8 @@ msgid "Symmetric node handle" msgstr "Maniglia nodo simmetrico" #: ../src/ui/tool/node.cpp:248 -#, fuzzy msgid "Auto-smooth node handle" -msgstr "Muovi maniglia del nodo" +msgstr "Maniglia nodo curvo automatico" #: ../src/ui/tool/node.cpp:432 msgctxt "Path handle tip" @@ -21992,7 +21955,7 @@ msgid "" "increments while rotating both handles" msgstr "" "Maiusc+Ctrl+Alt: mantieni lunghezza, aggancia l'angolo di rotazione " -"ogni &g° e ruota entrambe le maniglie" +"ogni %g° e ruota entrambe le maniglie" #: ../src/ui/tool/node.cpp:445 #, c-format @@ -22012,8 +21975,7 @@ msgstr "" #: ../src/ui/tool/node.cpp:454 msgctxt "Path handle tip" msgid "Alt: preserve handle length while dragging" -msgstr "" -"Alt: manitieni lunghezza della maniglia durante il trascinamento" +msgstr "Alt: mantieni lunghezza della maniglia durante il trascinamento" #: ../src/ui/tool/node.cpp:461 #, c-format @@ -22042,6 +22004,7 @@ msgstr "Maiusc: ruota entrambe le maniglie dello stesso angolo" msgctxt "Path handle tip" msgid "Auto node handle: drag to convert to smooth node (%s)" msgstr "" +"Maniglia nodo automatico: trascina per convertire in nodo curvo (%s)" #: ../src/ui/tool/node.cpp:480 #, c-format @@ -22070,6 +22033,8 @@ msgstr "Maiusc: clicca per commutare la selezione" msgctxt "Path node tip" msgid "Ctrl+Alt: move along handle lines, click to delete node" msgstr "" +"Ctrl+Alt: muovi lungo le linee della maniglia, clicca per eliminare " +"il nodo" #: ../src/ui/tool/node.cpp:1280 msgctxt "Path node tip" @@ -22119,19 +22084,16 @@ msgid "Symmetric node" msgstr "Nodo simmetrico" #: ../src/ui/tool/node.cpp:1321 -#, fuzzy msgid "Auto-smooth node" -msgstr "nodo curvo" +msgstr "Nodo curvo automatico" #: ../src/ui/tool/path-manipulator.cpp:821 -#, fuzzy msgid "Scale handle" -msgstr "Ridimensiona nodi" +msgstr "Ridimensiona maniglia" #: ../src/ui/tool/path-manipulator.cpp:845 -#, fuzzy msgid "Rotate handle" -msgstr "Ritira maniglia" +msgstr "Ruota maniglia" #. We need to call MPM's method because it could have been our last node #: ../src/ui/tool/path-manipulator.cpp:1384 @@ -22140,7 +22102,6 @@ msgid "Delete node" msgstr "Cancella nodo" #: ../src/ui/tool/path-manipulator.cpp:1392 -#, fuzzy msgid "Cycle node type" msgstr "Cambia tipo di nodo" @@ -22257,6 +22218,8 @@ msgctxt "Transform handle tip" msgid "" "Skew handle: drag to skew (shear) selection about the opposite handle" msgstr "" +"Maniglia di distorsione: trascina per distorcere la selezione attorno " +"alla maniglia opposta" #: ../src/ui/tool/transform-handle-set.cpp:594 #, c-format @@ -22274,6 +22237,8 @@ msgstr "Distorci verticalmente di %.2f°" msgctxt "Transform handle tip" msgid "Rotation center: drag to change the origin of transforms" msgstr "" +"Centro di rotazione: trascina per cambiare l'origine delle " +"trasformazioni" #: ../src/ui/tools/arc-tool.cpp:252 msgid "" @@ -22348,7 +22313,7 @@ msgstr "Creazione di una linea calligrafica" #: ../src/ui/tools/calligraphic-tool.cpp:977 msgid "Draw calligraphic stroke" -msgstr "Crea linee calligrafiche" +msgstr "Crea linea calligrafiche" #: ../src/ui/tools/connector-tool.cpp:499 msgid "Creating new connector" @@ -22617,18 +22582,18 @@ msgstr "Scegliere uno strumento di costruzione dalla barra degli strumenti." #. TRANSLATORS: Mind the space in front. This is part of a compound message #: ../src/ui/tools/mesh-tool.cpp:132 ../src/ui/tools/mesh-tool.cpp:143 -#, fuzzy, c-format +#, c-format msgid " out of %d mesh handle" msgid_plural " out of %d mesh handles" -msgstr[0] " con %d maniglia di gradiente" -msgstr[1] " con %d maniglie di gradiente" +msgstr[0] " su %d maniglia del gradiente a maglia" +msgstr[1] " su %d maniglie del gradiente a maglia" #: ../src/ui/tools/mesh-tool.cpp:150 -#, fuzzy, c-format +#, c-format msgid "%d mesh handle selected out of %d" msgid_plural "%d mesh handles selected out of %d" -msgstr[0] "%d maniglia di gradiente selezionata su %d" -msgstr[1] "%d maniglie di gradiente selezionate su %d" +msgstr[0] "%d maniglia del gradiente a maglia selezionata su %d" +msgstr[1] "%d maniglie del gradiente a maglia selezionate su %d" #. TRANSLATORS: The plural refers to number of selected objects #: ../src/ui/tools/mesh-tool.cpp:157 @@ -22673,9 +22638,8 @@ msgid "Create default mesh" msgstr "Crea maglia predefinita" #: ../src/ui/tools/mesh-tool.cpp:718 -#, fuzzy msgid "FIXMECtrl: snap mesh angle" -msgstr "Ctrl: fa scattare l'angolo" +msgstr "Ctrl: fa scattare l'angolo del gradiente a maglia" #: ../src/ui/tools/mesh-tool.cpp:719 #, fuzzy @@ -23464,14 +23428,14 @@ msgstr "Ridi_mensiona pagina a contenuto..." #: ../src/ui/widget/page-sizer.cpp:419 msgid "_Resize page to drawing or selection" -msgstr "_Ridimensiona la pagina al disegno o alla selezione" +msgstr "_Ridimensiona pagina a disegno o selezione" #: ../src/ui/widget/page-sizer.cpp:420 msgid "" "Resize the page to fit the current selection, or the entire drawing if there " "is no selection" msgstr "" -"Ridimensione la pagina per adattarsi alla selezione attuale, o all'intero " +"Ridimensiona la pagina per adattarsi alla selezione attuale, o all'intero " "disegno se non è stato selezionato nulla" #: ../src/ui/widget/page-sizer.cpp:488 @@ -23902,58 +23866,60 @@ msgid "Adjust alpha" msgstr "Modifica alpha" #: ../src/ui/widget/selected-style.cpp:1370 -#, fuzzy, c-format +#, c-format msgid "" "Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without " "modifiers to adjust hue" msgstr "" -"Modifica luminosità: prima era %.3g, ora %.3g (diff %.3g); con " -"Maiusc per modificare la saturazione, con Ctrl per il colore" +"Modifica alpha: prima era %.3g, ora %.3g (diff %.3g); con " +"Ctrl per modificare luminosità, con Maiusc per saturazione, " +"senza modificatori per colore" #: ../src/ui/widget/selected-style.cpp:1374 msgid "Adjust saturation" msgstr "Modifica saturazione" #: ../src/ui/widget/selected-style.cpp:1376 -#, fuzzy, c-format +#, c-format msgid "" "Adjusting saturation: was %.3g, now %.3g (diff %.3g); with " "Ctrl to adjust lightness, with Alt to adjust alpha, without " "modifiers to adjust hue" msgstr "" "Modifica saturazione: prima era %.3g, ora %.3g (diff %.3g); " -"con Ctrl per modificare la luminosità, senza modificatori per il " -"colore" +"con Ctrl per modificare luminosità, con Alt per alpha, senza " +"modificatori per colore" #: ../src/ui/widget/selected-style.cpp:1380 msgid "Adjust lightness" msgstr "Modifica luminosità" #: ../src/ui/widget/selected-style.cpp:1382 -#, fuzzy, c-format +#, c-format msgid "" "Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, without " "modifiers to adjust hue" msgstr "" "Modifica luminosità: prima era %.3g, ora %.3g (diff %.3g); con " -"Maiusc per modificare la saturazione, con Ctrl per il colore" +"Shift per modificare saturazione, con Alt per alpha, senza " +"modificatori per colore" #: ../src/ui/widget/selected-style.cpp:1386 msgid "Adjust hue" msgstr "Modifica colore" #: ../src/ui/widget/selected-style.cpp:1388 -#, fuzzy, c-format +#, c-format msgid "" "Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl " "to adjust lightness" msgstr "" "Modifica colore: prima era %.3g, ora %.3g (diff %.3g); con " -"Maiusc per modificare la saturazione, con Ctrl per la " -"luminosità" +"Maiusc per modificare saturazione, con Alt per alpha, con " +"Ctrl per luminosità" #: ../src/ui/widget/selected-style.cpp:1506 #: ../src/ui/widget/selected-style.cpp:1520 @@ -23964,15 +23930,13 @@ msgstr "Modifica larghezza contorno" #, c-format msgid "Adjusting stroke width: was %.3g, now %.3g (diff %.3g)" msgstr "" -"Modifica della larghezza contorno: era %.3g, ora è %.3g (diff " -"%.3g)" +"Modifica larghezza contorno: era %.3g, ora è %.3g (diff %.3g)" #. TRANSLATORS: "Link" means to _link_ two sliders together #: ../src/ui/widget/spin-scale.cpp:138 ../src/ui/widget/spin-slider.cpp:156 -#, fuzzy msgctxt "Sliders" msgid "Link" -msgstr "Linea" +msgstr "Collega" #: ../src/ui/widget/style-swatch.cpp:293 msgid "L Gradient" @@ -24050,7 +24014,7 @@ msgstr[0] "" "Maiusc per separare il solido selezionato" msgstr[1] "" "Punto di fuga a infinito condiviso da %d solidi; trascina con " -"Maiusc per separare i solidi selezionato" +"Maiusc per separare i solidi selezionati" #: ../src/vanishing-point.cpp:342 #, c-format @@ -24071,9 +24035,8 @@ msgid "File" msgstr "File" #: ../src/verbs.cpp:232 -#, fuzzy msgid "Context" -msgstr "Contrasto" +msgstr "Contesto" #: ../src/verbs.cpp:251 ../src/verbs.cpp:2223 #: ../share/extensions/jessyInk_view.inx.h:1 @@ -24254,7 +24217,6 @@ msgid "Unhide all objects in all layers" msgstr "Mostra tutti gli oggetti in ogni livello" #: ../src/verbs.cpp:2349 -#, fuzzy msgctxt "Verb" msgid "None" msgstr "Nessuno" @@ -24993,6 +24955,7 @@ msgstr "Vettorizza Pixel Art..." #: ../src/verbs.cpp:2552 msgid "Create paths using Kopf-Lischinski algorithm to vectorize pixel art" msgstr "" +"Crea tracciati usando l'algoritmo Kopf-Lischinski per la vettorizzazione" #: ../src/verbs.cpp:2553 msgid "Make a _Bitmap Copy" @@ -25433,12 +25396,11 @@ msgstr "Crea e modifica i gradienti" #: ../src/verbs.cpp:2674 msgctxt "ContextVerb" msgid "Mesh" -msgstr "" +msgstr "Gradiente a maglia" #: ../src/verbs.cpp:2675 -#, fuzzy msgid "Create and edit meshes" -msgstr "Crea e modifica i gradienti" +msgstr "Crea e modifica i gradienti a maglia" #: ../src/verbs.cpp:2676 msgctxt "ContextVerb" @@ -25621,14 +25583,12 @@ msgid "Open Preferences for the Gradient tool" msgstr "Apre le preferenze per lo strumento «Gradiente»" #: ../src/verbs.cpp:2721 -#, fuzzy msgid "Mesh Preferences" -msgstr "Impostazioni gomma" +msgstr "Preferenze gradiente a maglia" #: ../src/verbs.cpp:2722 -#, fuzzy msgid "Open Preferences for the Mesh tool" -msgstr "Apre le preferenze per lo strumento «Gomma»" +msgstr "Apre le preferenze per lo strumento «Gradiente a maglia»" #: ../src/verbs.cpp:2723 msgid "Zoom Preferences" @@ -25640,7 +25600,7 @@ msgstr "Apre le preferenze per lo strumento «Ingranditore»" #: ../src/verbs.cpp:2725 msgid "Measure Preferences" -msgstr "Preferenze Misura" +msgstr "Preferenze misura" #: ../src/verbs.cpp:2726 msgid "Open Preferences for the Measure tool" @@ -25654,7 +25614,6 @@ msgstr "Preferenze contagocce" msgid "Open Preferences for the Dropper tool" msgstr "Apre le preferenze per lo strumento «Contagocce»" -# -Luca #: ../src/verbs.cpp:2729 msgid "Connector Preferences" msgstr "Preferenze connettore" @@ -26171,14 +26130,15 @@ msgid "Edit SVG fonts" msgstr "Modifica font SVG" #: ../src/verbs.cpp:2863 -#, fuzzy msgid "Print Colors..." -msgstr "Stam_pa..." +msgstr "Colori Stampa..." #: ../src/verbs.cpp:2864 msgid "" "Select which color separations to render in Print Colors Preview rendermode" msgstr "" +"Seleziona quale separazione colori renderizzare nella modalità anteprima " +"colori stampa" #: ../src/verbs.cpp:2865 msgid "_Export PNG Image..." @@ -26269,13 +26229,12 @@ msgid "Using the Calligraphy pen tool" msgstr "Utilizzo del Pennino" #: ../src/verbs.cpp:2891 -#, fuzzy msgid "Inkscape: _Interpolate" -msgstr "Ink_scape: Forme" +msgstr "Inkscape: _Interpola" #: ../src/verbs.cpp:2892 msgid "Using the interpolate extension" -msgstr "" +msgstr "Utilizzo dell'estensione Interpola" #. "tutorial_interpolate" #: ../src/verbs.cpp:2893 @@ -26954,14 +26913,12 @@ msgid ", grayscale" msgstr ", scala di grigi" #: ../src/widgets/desktop-widget.cpp:830 -#, fuzzy msgid "print colors preview" -msgstr "Anteprima di stampa" +msgstr "anteprima colori stampa" #: ../src/widgets/desktop-widget.cpp:831 -#, fuzzy msgid ", print colors preview" -msgstr "Anteprima di stampa" +msgstr ", anteprima colori stampa" #: ../src/widgets/desktop-widget.cpp:832 msgid "outline" @@ -27523,7 +27480,6 @@ msgid "Number of columns in new mesh" msgstr "Numero di colonne nella nuova maglia" #: ../src/widgets/mesh-toolbar.cpp:293 -#, fuzzy msgid "Edit Fill" msgstr "Modifica riempimento" @@ -27533,7 +27489,6 @@ msgid "Edit fill mesh" msgstr "Modifica riempimento..." #: ../src/widgets/mesh-toolbar.cpp:305 -#, fuzzy msgid "Edit Stroke" msgstr "Modifica contorno" @@ -27568,9 +27523,8 @@ msgid "Insert node at min X" msgstr "Inserisci nodo alla X minima" #: ../src/widgets/node-toolbar.cpp:357 -#, fuzzy msgid "Insert new nodes at min X into selected segments" -msgstr "Inserisce nuovi nodi alla nel segmento selezionato" +msgstr "Inserisce nuovi nodi alla X minima nel segmento selezionato" #: ../src/widgets/node-toolbar.cpp:360 msgid "Insert min X" @@ -27581,9 +27535,8 @@ msgid "Insert node at max X" msgstr "Inserisci nodo alla X massima" #: ../src/widgets/node-toolbar.cpp:367 -#, fuzzy msgid "Insert new nodes at max X into selected segments" -msgstr "Inserisce nuovi nodi nel segmento selezionato" +msgstr "Inserisce nuovi nodi alla X massima nel segmento selezionato" #: ../src/widgets/node-toolbar.cpp:370 msgid "Insert max X" @@ -27594,9 +27547,8 @@ msgid "Insert node at min Y" msgstr "Inserisci nodo alla Y minima" #: ../src/widgets/node-toolbar.cpp:377 -#, fuzzy msgid "Insert new nodes at min Y into selected segments" -msgstr "Inserisce nuovi nodi nel segmento selezionato" +msgstr "Inserisce nuovi nodi alla Y minima nel segmento selezionato" #: ../src/widgets/node-toolbar.cpp:380 msgid "Insert min Y" @@ -27607,9 +27559,8 @@ msgid "Insert node at max Y" msgstr "Inserisci nodo alla Y massima" #: ../src/widgets/node-toolbar.cpp:387 -#, fuzzy msgid "Insert new nodes at max Y into selected segments" -msgstr "Inserisce nuovi nodi nel segmento selezionato" +msgstr "Inserisce nuovi nodi alla Y massima nel segmento selezionato" #: ../src/widgets/node-toolbar.cpp:390 msgid "Insert max Y" @@ -28030,32 +27981,28 @@ msgid "Make corners sharp" msgstr "Rende gli angoli spigolosi" #: ../src/widgets/ruler.cpp:192 -#, fuzzy msgid "The orientation of the ruler" msgstr "Orientazione del righello" #: ../src/widgets/ruler.cpp:202 -#, fuzzy msgid "Unit of the ruler" msgstr "Unità del righello" #: ../src/widgets/ruler.cpp:209 msgid "Lower" -msgstr "Abbassa" +msgstr "Inferiore" #: ../src/widgets/ruler.cpp:210 -#, fuzzy msgid "Lower limit of ruler" -msgstr "Sposta al livello precedente" +msgstr "Limite inferiore del righello" #: ../src/widgets/ruler.cpp:219 -#, fuzzy msgid "Upper" -msgstr "Contagocce" +msgstr "Superiore" #: ../src/widgets/ruler.cpp:220 msgid "Upper limit of ruler" -msgstr "" +msgstr "Limite superiore del righello" #: ../src/widgets/ruler.cpp:230 #, fuzzy @@ -28063,13 +28010,12 @@ msgid "Position of mark on the ruler" msgstr "Posizione lungo la curva" #: ../src/widgets/ruler.cpp:239 -#, fuzzy msgid "Max Size" msgstr "Dimensione massima" #: ../src/widgets/ruler.cpp:240 msgid "Maximum size of the ruler" -msgstr "" +msgstr "Dimensione massima del righello" #: ../src/widgets/select-toolbar.cpp:260 msgid "Transform by toolbar" @@ -28867,11 +28813,11 @@ msgstr "" msgid "Set markers" msgstr "Imposta delimitatori" -#: ../src/widgets/stroke-style.cpp:1030 ../src/widgets/stroke-style.cpp:1115 +#: ../src/widgets/stroke-style.cpp:1032 ../src/widgets/stroke-style.cpp:1117 msgid "Set stroke style" msgstr "Imposta stile contorno" -#: ../src/widgets/stroke-style.cpp:1203 +#: ../src/widgets/stroke-style.cpp:1205 msgid "Set marker color" msgstr "Imposta colore delimitatore" @@ -28912,14 +28858,12 @@ msgid "Text: Change letter-spacing" msgstr "Testo: Cambia spaziatura lettere" #: ../src/widgets/text-toolbar.cpp:667 -#, fuzzy msgid "Text: Change dx (kern)" -msgstr "Testo: Cambia dimensione carattere" +msgstr "Testo: Cambia crenatura orizzontale" #: ../src/widgets/text-toolbar.cpp:701 -#, fuzzy msgid "Text: Change dy" -msgstr "Testo: Cambia stile" +msgstr "Testo: Cambia spostamento verticale" #: ../src/widgets/text-toolbar.cpp:736 msgid "Text: Change rotate" @@ -29024,7 +28968,6 @@ msgstr "Spaziatura linee" #. label #: ../src/widgets/text-toolbar.cpp:1448 -#, fuzzy msgid "Line:" msgstr "Linea:" @@ -29049,7 +28992,6 @@ msgstr "Spaziatura parole" #. label #: ../src/widgets/text-toolbar.cpp:1479 -#, fuzzy msgid "Word:" msgstr "Parola:" @@ -29065,9 +29007,8 @@ msgstr "Spaziatura lettere" #. label #: ../src/widgets/text-toolbar.cpp:1510 -#, fuzzy msgid "Letter:" -msgstr "Sinistra:" +msgstr "Lettere:" #. short label #: ../src/widgets/text-toolbar.cpp:1511 @@ -29081,9 +29022,8 @@ msgstr "Crenatura" #. label #: ../src/widgets/text-toolbar.cpp:1541 -#, fuzzy msgid "Kern:" -msgstr "Nucleo:" +msgstr "Crenatura:" #. short label #: ../src/widgets/text-toolbar.cpp:1542 @@ -29097,9 +29037,8 @@ msgstr "Spostamento verticale" #. label #: ../src/widgets/text-toolbar.cpp:1572 -#, fuzzy msgid "Vert:" -msgstr "Inverti:" +msgstr "Verticale:" #. short label #: ../src/widgets/text-toolbar.cpp:1573 @@ -29113,9 +29052,8 @@ msgstr "Rotazione lettere" #. label #: ../src/widgets/text-toolbar.cpp:1603 -#, fuzzy msgid "Rot:" -msgstr "Ruolo:" +msgstr "Rotazione:" #. short label #: ../src/widgets/text-toolbar.cpp:1604 @@ -29645,7 +29583,7 @@ msgstr "" #: ../share/extensions/gcodetools.py:3324 msgid "Nothing is selected. Please select something." -msgstr "Nessun oggetto selezionato. Seleziona un oggetto" +msgstr "Nessun oggetto selezionato. Seleziona un oggetto." #: ../share/extensions/gcodetools.py:3864 #, fuzzy @@ -29958,6 +29896,11 @@ msgid "" "update the JessyInk script.\n" "\n" msgstr "" +"Lo script JessyInk non è installato in questo file SVG o ha una versione " +"differente rispetto all'estensione JessyInk. Seleziona \"Installa/Aggiorna.." +"\" dal menu \"JessyInk\" in \"Estensioni\" per installare o aggiornare lo " +"script JessyInk.\n" +"\n" #: ../share/extensions/jessyInk_autoTexts.py:48 msgid "" @@ -29981,6 +29924,8 @@ msgid "" "No object selected. Please select the object you want to assign an effect to " "and then press apply.\n" msgstr "" +"Nessun oggetto selezionato. Seleziona l'oggetto a cui assegnare l'effetto e " +"premi applica.\n" #: ../share/extensions/jessyInk_export.py:82 msgid "Could not find Inkscape command.\n" @@ -29988,35 +29933,40 @@ msgstr "" #: ../share/extensions/jessyInk_masterSlide.py:56 msgid "Layer not found. Removed current master slide selection.\n" -msgstr "" +msgstr "Livello non trovato. La diapositiva master attuale è stata rimossa.\n" #: ../share/extensions/jessyInk_masterSlide.py:58 msgid "" "More than one layer with this name found. Removed current master slide " "selection.\n" msgstr "" +"Trovato più di un livello con questo nome. La diapositiva master attuale è " +"stata rimossa.\n" #: ../share/extensions/jessyInk_summary.py:69 #, python-brace-format msgid "JessyInk script version {0} installed." -msgstr "" +msgstr "Installata versione {0} dello script JessyInk." #: ../share/extensions/jessyInk_summary.py:71 msgid "JessyInk script installed." msgstr "Script JessyInk installato." #: ../share/extensions/jessyInk_summary.py:83 -#, fuzzy msgid "" "\n" "Master slide:" -msgstr "Incolla dimensione" +msgstr "" +"\n" +"Diapositiva master:" #: ../share/extensions/jessyInk_summary.py:89 msgid "" "\n" "Slide {0!s}:" msgstr "" +"\n" +"Diapositiva {0!s}:" #: ../share/extensions/jessyInk_summary.py:94 #, python-brace-format @@ -30025,21 +29975,21 @@ msgstr "{0}Nome del livello: {1}" #: ../share/extensions/jessyInk_summary.py:102 msgid "{0}Transition in: {1} ({2!s} s)" -msgstr "" +msgstr "{0}Transizione in entrata: {1} ({2!s} s)" #: ../share/extensions/jessyInk_summary.py:104 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{0}Transition in: {1}" -msgstr "Trasformazione" +msgstr "{0}Transizione in entrata: {1}" #: ../share/extensions/jessyInk_summary.py:111 msgid "{0}Transition out: {1} ({2!s} s)" -msgstr "" +msgstr "{0}Transizione in uscita: {1} ({2!s} s)" #: ../share/extensions/jessyInk_summary.py:113 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{0}Transition out: {1}" -msgstr "Incolla effetto su tracciato" +msgstr "{0}Transizione in uscita: {1}" #: ../share/extensions/jessyInk_summary.py:120 #, python-brace-format @@ -30047,11 +29997,13 @@ msgid "" "\n" "{0}Auto-texts:" msgstr "" +"\n" +"{0}Testi automatici:" #: ../share/extensions/jessyInk_summary.py:123 #, python-brace-format msgid "{0}\t\"{1}\" (object id \"{2}\") will be replaced by \"{3}\"." -msgstr "" +msgstr "{0}\t\"{1}\" (id oggetto \"{2}\") sarà sostituito da \"{3}\"." #: ../share/extensions/jessyInk_summary.py:168 #, python-brace-format @@ -30059,12 +30011,16 @@ msgid "" "\n" "{0}Initial effect (order number {1}):" msgstr "" +"\n" +"{0}Effetto iniziale (numero ordine {1}):" #: ../share/extensions/jessyInk_summary.py:170 msgid "" "\n" "{0}Effect {1!s} (order number {2}):" msgstr "" +"\n" +"{0}Effetto {1!s} (numero ordine {2}):" #: ../share/extensions/jessyInk_summary.py:174 #, python-brace-format @@ -30074,25 +30030,24 @@ msgstr "" #: ../share/extensions/jessyInk_summary.py:176 #, python-brace-format msgid "{0}\tObject \"{1}\"" -msgstr "" +msgstr "{0}\tOggetto \"{1}\"" #: ../share/extensions/jessyInk_summary.py:179 -#, fuzzy msgid " will appear" -msgstr "Riempie aree delimitate" +msgstr " apparirà" #: ../share/extensions/jessyInk_summary.py:181 msgid " will disappear" -msgstr "" +msgstr " scomparirà" #: ../share/extensions/jessyInk_summary.py:184 #, python-brace-format msgid " using effect \"{0}\"" -msgstr "" +msgstr " usando l'effetto \"{0}\"" #: ../share/extensions/jessyInk_summary.py:187 msgid " in {0!s} s" -msgstr "" +msgstr " in {0!s} s" #: ../share/extensions/jessyInk_transitions.py:55 msgid "Layer not found.\n" @@ -30100,12 +30055,11 @@ msgstr "Livello non trovato.\n" #: ../share/extensions/jessyInk_transitions.py:57 msgid "More than one layer with this name found.\n" -msgstr "" +msgstr "Trovato più di un livello con questo nome.\n" #: ../share/extensions/jessyInk_transitions.py:70 -#, fuzzy msgid "Please enter a layer name.\n" -msgstr "Bisogna inserire il nome del file" +msgstr "Inserisci il nome di un livello.\n" #: ../share/extensions/jessyInk_video.py:54 #: ../share/extensions/jessyInk_video.py:59 @@ -30115,11 +30069,8 @@ msgid "" msgstr "" #: ../share/extensions/jessyInk_view.py:75 -#, fuzzy msgid "More than one object selected. Please select only one object.\n" -msgstr "" -"Più di un elemento selezionato. Impossibile prendere lo stile da più " -"oggetti." +msgstr "Più di un oggetto selezionato. Seleziona solo un oggetto.\n" #: ../share/extensions/jessyInk_view.py:79 msgid "" @@ -30138,16 +30089,15 @@ msgid "unable to locate marker: %s" msgstr "impossibile trovare il delimitatore: %s" #: ../share/extensions/measure.py:50 -#, fuzzy msgid "" "Failed to import the numpy modules. These modules are required by this " "extension. Please install them and try again. On a Debian-like system this " "can be done with the command, sudo apt-get install python-numpy." msgstr "" -"Errore nell'importare i moduili numpy o numpy.linalg. Tali moduli sono " -"necessari a quest'estensione. installarli e provare nuovamente. Su sistemi " -"derivati Debian questo può essere fatto col comando `sudo apt-get install " -"python-numpy`." +"Errore nell'importare i moduli numpy. Tali moduli sono necessari a " +"quest'estensione. Installarli e provare nuovamente. Su sistemi derivati da " +"Debian questo può essere fatto col comando `sudo apt-get install python-" +"numpy`." #: ../share/extensions/measure.py:112 msgid "Area is zero, cannot calculate Center of Mass" @@ -30331,17 +30281,19 @@ msgid "" "Couldn't find anything using that font, please ensure the spelling and " "spacing is correct." msgstr "" +"Non è stato trovato alcun testo con il carattere specificato, assicurati di " +"averlo digitato correttamente." #: ../share/extensions/replace_font.py:140 #: ../share/extensions/svg_and_media_zip_output.py:193 msgid "Didn't find any fonts in this document/selection." -msgstr "" +msgstr "Non è stato trovato alcun carattere in questo documento/selezione." #: ../share/extensions/replace_font.py:143 #: ../share/extensions/svg_and_media_zip_output.py:196 #, python-format msgid "Found the following font only: %s" -msgstr "" +msgstr "Trovato solamente il seguente carattere: %s" #: ../share/extensions/replace_font.py:145 #: ../share/extensions/svg_and_media_zip_output.py:198 @@ -30350,23 +30302,26 @@ msgid "" "Found the following fonts:\n" "%s" msgstr "" +"Trovati i seguenti caratteri:\n" +"%s" #: ../share/extensions/replace_font.py:196 -#, fuzzy msgid "There was nothing selected" msgstr "Nessuna selezione" #: ../share/extensions/replace_font.py:244 msgid "Please enter a search string in the find box." -msgstr "" +msgstr "Inserisci una stringa da trovare nella casella 'Trova carattere'." #: ../share/extensions/replace_font.py:248 msgid "Please enter a replacement font in the replace with box." -msgstr "" +msgstr "Inserisci un carattere sostitutivo nella casella 'Sostituisci con'." #: ../share/extensions/replace_font.py:253 msgid "Please enter a replacement font in the replace all box." msgstr "" +"Inserisci un carattere sostitutivo nella casella 'Sostituisci tutti i " +"caratteri con'." #: ../share/extensions/summersnight.py:44 msgid "" @@ -30383,7 +30338,6 @@ msgstr "Impossibile trovare il file: %s" #: ../share/extensions/svgcalendar.py:266 #: ../share/extensions/svgcalendar.py:288 -#, fuzzy msgid "You must select a correct system encoding." msgstr "Occorre selezionare un corretto sistema di encoding." @@ -30625,8 +30579,8 @@ msgstr "" "Modifica tonalità, saturazione e luminosità nella rappresentazione HSL del " "colore dell'oggetto selezionato.\n" "Opzioni:\n" -" * Tonalità: ruota in gradi (giro completo). * Saturazione: aggiungi/" -"sottrai % (min=-100, max=100).\n" +" * Tonalità: ruota in gradi (giro completo).\n" +" * Saturazione: aggiungi/sottrai % (min=-100, max=100).\n" " * Luminosità: aggiungi/sottrai % (min=-100, max=100).\n" " * Tonalità/Saturazione/Luminosità casuale: randomizza i parametri del " "valore.\n" @@ -30645,10 +30599,9 @@ msgid "Brighter" msgstr "Schiarisci" #: ../share/extensions/color_custom.inx.h:1 -#, fuzzy msgctxt "Custom color extension" msgid "Custom" -msgstr "Personalizzata" +msgstr "Personalizzato" #: ../share/extensions/color_custom.inx.h:3 msgid "Red Function:" @@ -30667,7 +30620,6 @@ msgid "Input (r,g,b) Color Range:" msgstr "Intervallo input colore (r,g,b):" #: ../share/extensions/color_custom.inx.h:8 -#, fuzzy msgid "" "Allows you to evaluate different functions for each channel.\n" "r, g and b are the normalized values of the red, green and blue channels. " @@ -30679,7 +30631,13 @@ msgid "" " Blue Function: g" msgstr "" "Permette di effettuare diverse funzioni per ogni canale.\n" -"r,g e b sono i valori normalizzati dei canali rosso, verde e blu. " +"r,g e b sono i valori normalizzati dei canali rosso, verde e blu. I valori " +"RGB risultanti sono bloccati automaticamente.\n" +" \n" +"Esempio (metà rosso, inverti verde e blu):\n" +" Funzione rosso: r*0.5 \n" +" Funzione verde: b \n" +" Funzione blu: g" #: ../share/extensions/color_darker.inx.h:1 msgid "Darker" @@ -31324,7 +31282,7 @@ msgstr "Larghezza sfocatura:" #: ../share/extensions/edge3d.inx.h:8 msgid "Blur height:" -msgstr "Altezza sfocatura" +msgstr "Altezza sfocatura:" #: ../share/extensions/embedimage.inx.h:1 msgid "Embed Images" @@ -31565,7 +31523,6 @@ msgid "Calculate first derivative numerically" msgstr "Calcola numericamente la derivata prima" #: ../share/extensions/funcplot.inx.h:33 -#, fuzzy msgid "First derivative:" msgstr "Derivata prima:" @@ -32321,9 +32278,8 @@ msgid "" msgstr "" #: ../share/extensions/generate_voronoi.inx.h:1 -#, fuzzy msgid "Voronoi Pattern" -msgstr "Muovi motivi" +msgstr "Motivo Voronoi" #: ../share/extensions/generate_voronoi.inx.h:3 msgid "Average size of cell (px):" @@ -32343,6 +32299,14 @@ msgid "" "join of the pattern at the edges. Use a negative border to reduce the size " "of the pattern and get an empty border." msgstr "" +"Genera un motivo di celle di Voronoi casuale. Il motivo sarà accessibile " +"dalla finestra «Riempimento e contorni». Devi selezionare un oggetto o un " +"gruppo.\n" +"\n" +"Se il bordo è zero, il motivo sarà discontinuo lungo gli spigoli. Usa un " +"bordo positivo, preferibilmente maggiore della dimensione della cella, per " +"ottenere un risultato liscio. Usa un bordo negativo per ridurre la " +"dimensione del motivo e un bordo vuoto." #: ../share/extensions/gimp_xcf.inx.h:1 msgid "GIMP XCF" @@ -32552,7 +32516,7 @@ msgstr "Sottodivisioni per divisioni circolari principali:" #: ../share/extensions/grid_polar.inx.h:12 msgid "Logarithmic Subdiv. (Base given by entry above)" -msgstr "Suddivisione logaritmica (base specificata nella voce precedente)." +msgstr "Suddivisione logaritmica (base specificata nella voce precedente)" #: ../share/extensions/grid_polar.inx.h:13 msgid "Major Circular Division Thickness (px):" @@ -32694,7 +32658,7 @@ msgstr "Nome immagine (senza estensione):" #: ../share/extensions/guillotine.inx.h:4 msgid "Ignore these settings and use export hints" -msgstr "" +msgstr "Ignora queste impostazioni e usa i parametri di esportazione" #: ../share/extensions/handles.inx.h:1 msgid "Draw Handles" @@ -32732,9 +32696,8 @@ msgid "Write glyph table" msgstr "Scrivi tabella caratteri" #: ../share/extensions/hershey.inx.h:8 -#, fuzzy msgid "Sans 1-stroke" -msgstr "Disattiva contorno" +msgstr "Sans 1-tratto" #: ../share/extensions/hershey.inx.h:9 msgid "Sans bold" @@ -32757,18 +32720,16 @@ msgid "Serif bold" msgstr "Serif grassetto" #: ../share/extensions/hershey.inx.h:14 -#, fuzzy msgid "Script 1-stroke" -msgstr "Imposta contorno" +msgstr "Script 1-tratto" #: ../share/extensions/hershey.inx.h:15 msgid "Script 1-stroke (alt)" -msgstr "" +msgstr "Script 1-tratto (alt)" #: ../share/extensions/hershey.inx.h:16 -#, fuzzy msgid "Script medium" -msgstr "Script" +msgstr "Script medio" #: ../share/extensions/hershey.inx.h:17 msgid "Gothic English" @@ -32783,9 +32744,8 @@ msgid "Gothic Italian" msgstr "Italiano gotico" #: ../share/extensions/hershey.inx.h:20 -#, fuzzy msgid "Greek 1-stroke" -msgstr "Imposta contorno" +msgstr "Greco 1-tratto" #: ../share/extensions/hershey.inx.h:21 msgid "Greek medium" @@ -33090,17 +33050,16 @@ msgid "Export an HP Graphics Language file" msgstr "Esporta un file HP Graphics Language" #: ../share/extensions/ink2canvas.inx.h:1 -#, fuzzy msgid "Convert to html5 canvas" -msgstr "Converti in tratti" +msgstr "Converti in html5 canvas" #: ../share/extensions/ink2canvas.inx.h:2 msgid "HTML 5 canvas (*.html)" -msgstr "" +msgstr "HTML 5 canvas (*.html)" #: ../share/extensions/ink2canvas.inx.h:3 msgid "HTML 5 canvas code" -msgstr "" +msgstr "Codice HTML 5 canvas" #: ../share/extensions/inkscape_follow_link.inx.h:1 #, fuzzy @@ -33384,7 +33343,7 @@ msgstr "" #: ../share/extensions/jessyInk_export.inx.h:1 msgid "JessyInk zipped pdf or png output" -msgstr "" +msgstr "JessyInk zip pdf o png" #: ../share/extensions/jessyInk_export.inx.h:4 msgid "Resolution:" @@ -33399,7 +33358,6 @@ msgid "PNG" msgstr "PNG" #: ../share/extensions/jessyInk_export.inx.h:8 -#, fuzzy msgid "" "This extension allows you to export a JessyInk presentation once you created " "an export layer in your browser. Please see code.google.com/p/jessyink for " @@ -33411,7 +33369,7 @@ msgstr "" #: ../share/extensions/jessyInk_export.inx.h:9 msgid "JessyInk zipped pdf or png output (*.zip)" -msgstr "" +msgstr "JessyInk zip pdf o png (*.zip)" #: ../share/extensions/jessyInk_export.inx.h:10 msgid "" @@ -33483,7 +33441,7 @@ msgstr "Aggiungi diapositiva:" #: ../share/extensions/jessyInk_keyBindings.inx.h:13 msgid "Toggle progress bar:" -msgstr "Abilita barra di avanzamento" +msgstr "Abilita barra di avanzamento:" #: ../share/extensions/jessyInk_keyBindings.inx.h:14 msgid "Reset timer:" @@ -33628,6 +33586,8 @@ msgid "" "This extension allows you to change the master slide JessyInk uses. Please " "see code.google.com/p/jessyink for more details." msgstr "" +"Questa estensione permette di cambiare la diapositiva master usata da " +"JessyInk. Visita code.google.com/p/jessyink per ulteriori dettagli." #: ../share/extensions/jessyInk_mouseHandler.inx.h:1 msgid "Mouse handler" @@ -33717,9 +33677,8 @@ msgid "Remove auto-texts" msgstr "Rimuovi testi automatici" #: ../share/extensions/jessyInk_uninstall.inx.h:8 -#, fuzzy msgid "Remove views" -msgstr "Rimuovi filtri" +msgstr "Rimuovi viste (Visualizza)" #: ../share/extensions/jessyInk_uninstall.inx.h:9 msgid "Please select the parts of JessyInk you want to uninstall/remove." @@ -33749,23 +33708,27 @@ msgstr "" "dettagli." #: ../share/extensions/jessyInk_view.inx.h:5 -#, fuzzy msgid "Remove view" -msgstr "Rimuovi rosso" +msgstr "Rimuovi visualizzazione" #: ../share/extensions/jessyInk_view.inx.h:6 msgid "Choose order number 0 to set the initial view of a slide." msgstr "" +"Cambia il numero ordine a 0 per impostare la vista iniziale della " +"diapositiva." #: ../share/extensions/jessyInk_view.inx.h:8 msgid "" "This extension allows you to set, update and remove views for a JessyInk " "presentation. Please see code.google.com/p/jessyink for more details." msgstr "" +"Questa estensione permette di impostare, aggiornare e rimuovere le " +"visualizzazioni (viste) della presentazione JessyInk. Visita google.com/p/" +"jessyink per ulteriori dettagli." #: ../share/extensions/layers2svgfont.inx.h:1 msgid "3 - Convert Glyph Layers to SVG Font" -msgstr "" +msgstr "3 - Converti livelli glifo in SVG Font" #: ../share/extensions/layers2svgfont.inx.h:2 #: ../share/extensions/new_glyph_layer.inx.h:3 @@ -33817,28 +33780,25 @@ msgid "Page margins" msgstr "Margini pagina" #: ../share/extensions/layout_nup.inx.h:11 -#, fuzzy msgid "Layout dimensions" -msgstr "Posizione casuale" +msgstr "Dimensioni layout" #: ../share/extensions/layout_nup.inx.h:13 -#, fuzzy msgid "Cols:" -msgstr "Colori" +msgstr "Colonne:" #: ../share/extensions/layout_nup.inx.h:14 msgid "Auto calculate layout size" -msgstr "" +msgstr "Calcola automaticamente dimensione layout" #: ../share/extensions/layout_nup.inx.h:15 #, fuzzy msgid "Layout padding" -msgstr "Posizione casuale" +msgstr "Padding layout" #: ../share/extensions/layout_nup.inx.h:16 -#, fuzzy msgid "Layout margins" -msgstr "Angolo sinistro" +msgstr "Margini layout" #: ../share/extensions/layout_nup.inx.h:17 #: ../share/extensions/printing_marks.inx.h:2 @@ -33875,6 +33835,7 @@ msgid "Margin box" msgstr "riquadro immagine" #: ../share/extensions/layout_nup.inx.h:25 +#, fuzzy msgid "" "\n" "Parameters:\n" @@ -33887,6 +33848,8 @@ msgid "" " * Layout padding: inner padding for each part of the layout.\n" " " msgstr "" +"\n" +"Parametri:\n" #: ../share/extensions/layout_nup.inx.h:36 #: ../share/extensions/perfectboundcover.inx.h:20 @@ -34004,7 +33967,7 @@ msgstr "" #: ../share/extensions/markers_strokepaint.inx.h:1 msgid "Color Markers" -msgstr "Colori delimitatori" +msgstr "Colore delimitatori" #: ../share/extensions/markers_strokepaint.inx.h:2 msgid "From object" @@ -34076,7 +34039,7 @@ msgstr "Precisione:" #: ../share/extensions/measure.inx.h:9 msgid "Scale Factor (Drawing:Real Length) = 1:" -msgstr "Fattore di riduzione (Disegno:Lughezza reale) = 1" +msgstr "Fattore di riduzione (Disegno:Lughezza reale) = 1:" #: ../share/extensions/measure.inx.h:10 msgid "Length Unit:" @@ -34166,18 +34129,16 @@ msgid "Magnitude:" msgstr "Ordine:" #: ../share/extensions/new_glyph_layer.inx.h:1 -#, fuzzy msgid "2 - Add Glyph Layer" -msgstr "2 - Aggiungi glifo" +msgstr "2 - Aggiungi livello glifo" #: ../share/extensions/new_glyph_layer.inx.h:2 -#, fuzzy msgid "Unicode character:" -msgstr "Carattere Unicode:" +msgstr "Carattere unicode:" #: ../share/extensions/next_glyph_layer.inx.h:1 msgid "View Next Glyph" -msgstr "" +msgstr "Visualizza glifo successivo" #: ../share/extensions/param_curves.inx.h:1 msgid "Parametric Curves" @@ -34295,7 +34256,7 @@ msgstr "" #: ../share/extensions/pathscatter.inx.h:3 msgid "Follow path orientation" -msgstr "Segui orientamento tracciato:" +msgstr "Segui orientamento tracciato" #: ../share/extensions/pathscatter.inx.h:4 msgid "Stretch spaces to fit skeleton length" @@ -34413,22 +34374,23 @@ msgstr "Margine (in):" #: ../share/extensions/perfectboundcover.inx.h:18 msgid "Note: Bond Weight # calculations are a best-guess estimate." -msgstr "Nota: i calcoli sul peso dichiaro sono frutto di una stima empirica" +msgstr "Nota: i calcoli sul peso dichiaro sono frutto di una stima empirica." #: ../share/extensions/perspective.inx.h:1 msgid "Perspective" msgstr "Prospettiva" #: ../share/extensions/pixelsnap.inx.h:1 -#, fuzzy msgid "PixelSnap" -msgstr "Pixel" +msgstr "Aggancia Pixel" #: ../share/extensions/pixelsnap.inx.h:2 msgid "" "Snap all paths in selection to pixels. Snaps borders to half-points and " "fills to full points." msgstr "" +"Aggancia tutti i tracciati nella selezione ai pixel. Aggancia i bordi ai " +"mezzi-punti e gli riempimenti a punti completi." #: ../share/extensions/plotter.inx.h:1 msgid "Plot" @@ -34512,7 +34474,7 @@ msgstr "DMPL" #: ../share/extensions/plotter.inx.h:18 msgid "KNK Zing (HPGL variant)" -msgstr "" +msgstr "KNK Zing (variante HPGL)" #: ../share/extensions/plotter.inx.h:19 msgid "" @@ -34777,9 +34739,8 @@ msgid "Mean" msgstr "Media" #: ../share/extensions/previous_glyph_layer.inx.h:1 -#, fuzzy msgid "View Previous Glyph" -msgstr "Effetto Precedente" +msgstr "Visualizza glifo precedente" #: ../share/extensions/print_win32_vector.inx.h:1 #, fuzzy @@ -34899,7 +34860,7 @@ msgstr "Data Matrix" #: ../share/extensions/render_barcode_datamatrix.inx.h:3 #: ../share/extensions/render_barcode_qrcode.inx.h:4 msgid "Size, in unit squares:" -msgstr "" +msgstr "Dimensione, in unità quadretto:" #: ../share/extensions/render_barcode_datamatrix.inx.h:4 msgid "Square Size (px):" @@ -35303,32 +35264,27 @@ msgstr "Scalable Vector Graphics" #: ../share/extensions/setup_typography_canvas.inx.h:1 msgid "1 - Setup Typography Canvas" -msgstr "" +msgstr "1 - Imposta canvas tipografico" #: ../share/extensions/setup_typography_canvas.inx.h:2 -#, fuzzy msgid "Em-size:" -msgstr "Dimensione:" +msgstr "Dimensione Em:" #: ../share/extensions/setup_typography_canvas.inx.h:3 -#, fuzzy msgid "Ascender:" -msgstr "Render" +msgstr "Ascendente:" #: ../share/extensions/setup_typography_canvas.inx.h:4 -#, fuzzy msgid "Caps Height:" -msgstr "Altezza barre:" +msgstr "Altezza della maiuscola:" #: ../share/extensions/setup_typography_canvas.inx.h:5 -#, fuzzy msgid "X-Height:" -msgstr "Altezza:" +msgstr "Altezza della x:" #: ../share/extensions/setup_typography_canvas.inx.h:6 -#, fuzzy msgid "Descender:" -msgstr "Dipendenza:" +msgstr "Discendente:" #: ../share/extensions/sk1_input.inx.h:1 msgid "sK1 vector graphics files input" @@ -35471,9 +35427,8 @@ msgid "Microsoft's GUI definition format" msgstr "Forma di definizione GUI di Microsoft" #: ../share/extensions/svg_and_media_zip_output.inx.h:1 -#, fuzzy msgid "Compressed Inkscape SVG with media export" -msgstr "Inkscape SVG compresso con altri media (*.zip)" +msgstr "Inkscape SVG compresso con altri media" #: ../share/extensions/svg_and_media_zip_output.inx.h:2 #, fuzzy @@ -35481,9 +35436,8 @@ msgid "Image zip directory:" msgstr "Cartella di lavoro non valida: %s" #: ../share/extensions/svg_and_media_zip_output.inx.h:3 -#, fuzzy msgid "Add font list" -msgstr "Aggiungi font" +msgstr "Aggiungi lista caratteri" #: ../share/extensions/svg_and_media_zip_output.inx.h:4 msgid "Compressed Inkscape SVG with media (*.zip)" @@ -35643,13 +35597,12 @@ msgstr "" "org/library/codecs.html#standard-encodings per maggiori informazioni." #: ../share/extensions/svgfont2layers.inx.h:1 -#, fuzzy msgid "Convert SVG Font to Glyph Layers" -msgstr "Inverti in tutti livelli" +msgstr "Converti SVG Font in livelli glifo" #: ../share/extensions/svgfont2layers.inx.h:2 msgid "Load only the first 30 glyphs (Recommended)" -msgstr "" +msgstr "Carica solo i primi 30 glifi (consigliato)" #: ../share/extensions/synfig_output.inx.h:1 msgid "Synfig Output" @@ -35857,9 +35810,8 @@ msgid "Attribute to set:" msgstr "Attributo da impostare:" #: ../share/extensions/web-set-att.inx.h:4 -#, fuzzy msgid "When should the set be done:" -msgstr "Quando attivare l'impostazione" +msgstr "Quando attivare l'impostazione:" #: ../share/extensions/web-set-att.inx.h:5 msgid "Value to set:" @@ -35871,9 +35823,8 @@ msgid "Compatibility with previews code to this event:" msgstr "Compatibilità di questo evento con codice di anteprima:" #: ../share/extensions/web-set-att.inx.h:7 -#, fuzzy msgid "Source and destination of setting:" -msgstr "Sorgente e destinazione dell'impostazione" +msgstr "Sorgente e destinazione dell'impostazione:" #: ../share/extensions/web-set-att.inx.h:8 #: ../share/extensions/web-transmit-att.inx.h:7 @@ -35961,7 +35912,7 @@ msgid "" "browser (like Firefox)." msgstr "" "Questo effetto aggiunge una caratteristica visibile (o usabile) solo su " -"browser web che supportino SVG (come Firefox)" +"browser web che supportino SVG (come Firefox)." #: ../share/extensions/web-set-att.inx.h:27 msgid "" @@ -36056,12 +36007,11 @@ msgstr "Colore di sfondo:" #: ../share/extensions/webslicer_create_group.inx.h:8 msgid "Pixel (fixed)" -msgstr "" +msgstr "Pixel (fisso)" #: ../share/extensions/webslicer_create_group.inx.h:9 -#, fuzzy msgid "Percent (relative to parent size)" -msgstr "Ridimensiona larghezza relativamente alla lunghezza" +msgstr "Percentuale (relativo alla dimensione)" #: ../share/extensions/webslicer_create_group.inx.h:10 msgid "Undefined (relative to non-floating content size)" -- cgit v1.2.3 From 7be365f943fa4204784b0358b21a338b22230d04 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Wed, 19 Nov 2014 19:36:52 +0100 Subject: remove extra commnets (bzr r13732) --- src/live_effects/parameter/filletchamferpointarray.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/live_effects/parameter/filletchamferpointarray.cpp b/src/live_effects/parameter/filletchamferpointarray.cpp index b23145db1..7d8c8e9b0 100644 --- a/src/live_effects/parameter/filletchamferpointarray.cpp +++ b/src/live_effects/parameter/filletchamferpointarray.cpp @@ -708,9 +708,7 @@ void FilletChamferPointArrayParamKnotHolderEntity::knot_set(Point const &p, if (!valid_index(_index)) { return; } - /// @todo how about item transforms??? Piecewise > const &pwd2 = _pparam->get_pwd2(); - //todo: add snapping double t = nearest_point(p, pwd2[_index]); Geom::Point const s = snap_knot_position(pwd2[_index].valueAt(t), state); t = nearest_point(s, pwd2[_index]); -- cgit v1.2.3 From 9083f4373a194a03aa028ef81ed95b910b92f7f7 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 19 Nov 2014 19:45:47 +0100 Subject: Windows 64-bit: fix linking cxxtests (missing deps) (bzr r13733) --- build-x64.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-x64.xml b/build-x64.xml index afe9db724..fd85735aa 100644 --- a/build-x64.xml +++ b/build-x64.xml @@ -628,6 +628,11 @@ ${devlibs}/bin/libexslt-0.dll ${pcl.cairo} ${pcl.cairomm-1.0} ${pcl.libwpg-0.2} ${pcl.libvisio-0.0} ${pcl.libcdr-0.0} + ${pcl.glibmm-2.4} + ${pcl.gtk+-2.0} + ${pcl.gdkmm-2.4} + ${pcl.pangomm-1.4} + ${pcl.cairomm-1.0} -liconv ${pcl.Magick++} ${pcl.fontconfig} ${pcl.freetype2} -- cgit v1.2.3 From 39eb601008ddcd01b4e05ec2d6efb49a7732d5e3 Mon Sep 17 00:00:00 2001 From: Alvin Penner Date: Wed, 19 Nov 2014 14:31:03 -0500 Subject: modify sequence of events. (Bug 1247801) Fixed bugs: - https://launchpad.net/bugs/1247801 (bzr r13735) --- src/ui/tools/freehand-base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/tools/freehand-base.cpp b/src/ui/tools/freehand-base.cpp index 6434c30d2..bd84e0efb 100644 --- a/src/ui/tools/freehand-base.cpp +++ b/src/ui/tools/freehand-base.cpp @@ -703,8 +703,8 @@ static void spdc_flush_white(FreehandBase *dc, SPCurve *gc) dc->selection->set(repr); Inkscape::GC::release(repr); item->transform = SP_ITEM(desktop->currentLayer())->i2doc_affine().inverse(); - item->doWriteTransform(item->getRepr(), item->transform, NULL, true); item->updateRepr(); + item->doWriteTransform(item->getRepr(), item->transform, NULL, true); } DocumentUndo::done(doc, SP_IS_PEN_CONTEXT(dc)? SP_VERB_CONTEXT_PEN : SP_VERB_CONTEXT_PENCIL, -- cgit v1.2.3 From f97613b94d629821f2d62fb19dce0f20cef2fc0a Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 19 Nov 2014 20:58:43 +0100 Subject: Tests: fix stringstream-test for outputting floating point numbers. At http://www.cplusplus.com/reference/ios/scientific/ I read that there are always three exponential digits (instead of the two that the test was testing for). If this is not standard, we should rewrite the tests. (bzr r13736) --- src/svg/stringstream-test.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/svg/stringstream-test.h b/src/svg/stringstream-test.h index ce32683f8..305cf6b8d 100644 --- a/src/svg/stringstream-test.h +++ b/src/svg/stringstream-test.h @@ -37,9 +37,9 @@ public: svg_test_float(-0.0625, "-0.0625"); svg_test_float(30.0, "30"); svg_test_float(12345678.0, "12345678"); - svg_test_float(3e9, "3e+09"); - svg_test_float(-3.5e9, "-3.5e+09"); - svg_test_float(32768e9, "3.2768e+13"); + svg_test_float(3e9, "3e+009"); + svg_test_float(-3.5e9, "-3.5e+009"); + svg_test_float(32768e9, "3.2768e+013"); svg_test_float(-10.5, "-10.5"); } -- cgit v1.2.3 From cb0223da226fadcedaaae8cadce0c52bb1eeca56 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 19 Nov 2014 21:34:11 +0100 Subject: units: remove a remnant from old code. There should be only one UnitTable instantiated. (bzr r13737) --- src/util/units.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/units.cpp b/src/util/units.cpp index eb4a313e0..3d635e2d2 100644 --- a/src/util/units.cpp +++ b/src/util/units.cpp @@ -206,7 +206,6 @@ bool Unit::compatibleWith(Unit const *u) const } bool Unit::compatibleWith(Glib::ustring const &u) const { - static UnitTable unit_table; return compatibleWith(unit_table.getUnit(u)); } -- cgit v1.2.3 From 4eb2ff6fe5e7138f5b1f52ddca47d828b9379950 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 19 Nov 2014 21:51:46 +0100 Subject: Win64: complimentary to rev13689, fix cxxtests on 64bit windows (bzr r13738) --- build-x64.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-x64.xml b/build-x64.xml index fd85735aa..64c975691 100644 --- a/build-x64.xml +++ b/build-x64.xml @@ -883,7 +883,8 @@ --> - + + + + + + + + + Build file for the Inkscape SVG editor. This file + was written for GTK-2.10 on Win32, but it should work + well for other types of builds with only minor adjustments. + Note that the default target is 'dist-all'. You can execute other + targets instead, by "btool {target}", like "btool compile", if + you want to save time, or "dist-inkscape" if you don't want inkview. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + namespace Inkscape { + char const *version_string = "${version} ${bzr.revision}"; + } + + + #ifndef _CONFIG_H_ + #define _CONFIG_H_ + + #ifndef WIN32 + #define WIN32 + #endif + + /*###################################### + ## This is for require-config.h, whose + ## purpose I cannot fathom. + ######################################*/ + + #define PACKAGE_TARNAME + + /*###################################### + #### RESOURCE DIRECTORIES + ######################################*/ + + #define INKSCAPE_DATADIR "." + #define PACKAGE_LOCALE_DIR "locale" + + + /*###################################### + #### OTHER DEFINITIONS + ######################################*/ + + #define GETTEXT_PACKAGE "inkscape" + + #define PACKAGE_STRING VERSION + + #define HAVE_GETOPT_H 1 + #define HAVE_STRING_H 1 + #define HAVE_LIBINTL_H 1 + #define HAVE_MALLOC_H 1 + #define HAVE_STDLIB_H 1 + #define HAVE_SYS_STAT_H 1 + #define HAVE_INTTYPES_H 1 + #define HAVE_OPENMP 1 + #define HAVE_TR1_UNORDERED_SET 1 + #define HAVE_STDINT_H 1 + + #define HAVE_LIBLCMS2 1 + + #define WITH_GTKMM_3_0 1 + //#define WITH_GLIBMM_2_32 1 + #define HAVE_GLIBMM_THREADS_H 1 + #define WITH_EXT_GDL 1 + #define WITH_GDL_3_6 1 + + #define ENABLE_NLS 1 + #define HAVE_BIND_TEXTDOMAIN_CODESET 1 + + /* keep binreloc off */ + #define BR_PTHREADS 0 + #undef ENABLE_BINRELOC + + /* CairoPDF options */ + #define HAVE_CAIRO_PDF 1 + #define PANGO_ENABLE_ENGINE 1 + #define RENDER_WITH_PANGO_CAIRO 1 + + #define HAVE_GTK_WINDOW_FULLSCREEN 1 + + /* internal interpreter */ + #define WITH_PYTHON 1 + + /* use poppler for pdf import? */ + #define HAVE_POPPLER 1 + #define HAVE_POPPLER_GLIB 1 + #define HAVE_POPPLER_CAIRO 1 + #define POPPLER_NEW_ERRORAPI 1 + #define POPPLER_NEW_GFXPATCH 1 + #define POPPLER_NEW_GFXFONT 1 + + /* do we want bitmap manipulation? */ + #define WITH_IMAGE_MAGICK 1 + + /* Exif and JPEG support for image resolution import */ + #define HAVE_EXIF 1 + #define HAVE_JPEG 1 + + /* Allow reading WordPerfect? */ + #define WITH_LIBWPG 1 + + /* Default to libwpg 0.2.x */ + #define WITH_LIBWPG02 1 + + /* Visio import filter */ + #define WITH_LIBVISIO 1 + + /* Corel Draw import filter */ + #define WITH_LIBCDR 1 + + /* Do we support SVG Fonts? */ + #define ENABLE_SVG_FONTS 1 + + /* Do we want experimental, unsupported, unguaranteed, etc., LivePathEffects enabled? */ + //#define LPE_ENABLE_TEST_EFFECTS 1 + + /* Do we want experimental, unsupported, unguaranteed, etc., SVG2 features enabled? */ + //#define WITH_SVG2 1 + //#define WITH_CSSCOMPOSITE 1 + //#define WITH_CSSBLEND 1 + //#define WITH_MESH 1 + + #define HAVE_ASPELL 1 + + #endif /* _CONFIG_H_ */ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -Wall -Wformat -Werror=format-security -Wextra -Wpointer-arith -Wcast-align -Wsign-compare -Wswitch + -Werror=return-type + + + -Wno-error=pointer-sign + -Wno-error=unused-parameter -Wno-error=unused-but-set-variable -Wno-error=strict-overflow -Wno-error=write-strings + + -Wno-error=format -Wno-error=format-extra-args + -Wno-unused-local-typedefs + -O2 + -mms-bitfields + -fopenmp + + + -std=gnu++11 -DCPP11 + -Woverloaded-virtual + + + + -DVERSION=\"${version}\" + -DHAVE_CONFIG_H + -D_INTL_REDIRECT_INLINE + -DHAVE_SSL + -DRELAYTOOL_SSL="static const int libssl_is_present=1; static int __attribute__((unused)) libssl_symbol_is_present(char *s){ return 1; }" + + -DGLIBMM_DISABLE_DEPRECATED + -DG_DISABLE_DEPRECATED + -DGTK_DISABLE_SINGLE_INCLUDES + + + -DGDKMM_DISABLE_DEPRECATED + -DGSEAL_ENABLE + + + -I${devlibs}/include + + ${pcc.gtkmm-3.0} + ${pcc.gdkmm-3.0} + ${pcc.gtk+-3.0} + ${pcc.gdk-3.0} + ${pcc.gdl-3.0} + ${pcc.glibmm-2.4} + ${pcc.pangomm-1.4} + ${pcc.cairomm-1.0} + + ${pcc.Magick++} + ${pcc.libxml-2.0} + ${pcc.freetype2} + ${pcc.cairo} + ${pcc.poppler} + -I${devlibs}/include/gc + ${pcc.libwpg-0.2} ${pcc.libvisio-0.0} ${pcc.libcdr-0.0} + -I${cxxtest} + + + + -I${devlibs}/python/include + + + + + + + + + + + + + + + + + + + + + + + + + --include-dir=${src} + + + + + -mwindows -m64 + -mthreads + + + + + + + + + + + + + + + + + -L${devlibs}/lib + ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} + ${pcl.pangoft2} ${pcl.gthread-2.0} + ${pcl.gtkmm-3.0} ${pcl.gdkmm-3.0} + ${pcl.gtk+-3.0} ${pcl.gdk-3.0} + ${pcl.gdl-3.0} + ${devlibs}/bin/libxml2-2.dll + ${devlibs}/bin/libxslt-1.dll + ${devlibs}/bin/libexslt-0.dll + ${pcl.cairo} ${pcl.cairomm-1.0} + ${pcl.libwpg-0.2} ${pcl.libvisio-0.0} ${pcl.libcdr-0.0} + ${pcl.glibmm-2.4} + ${pcl.pangomm-1.4} + ${pcl.cairomm-1.0} + -liconv + ${pcl.Magick++} + ${pcl.fontconfig} ${pcl.freetype2} + ${pcl.lcms2} + ${pcl.gsl} + -lpng -ljpeg -ltiff -lexif -lpopt -lz + -lgc + -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm + -lgomp -lwinpthread-1 + -laspell + -lmscms + + + + + + + + + + -mconsole + -mthreads + + + + + + + + + + + + + + --include-dir=${src} + + + + + -mwindows -m64 + -mthreads + + + + + + + + + + + + + + + + + + -L${devlibs}/lib + ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} + ${pcl.pangoft2} ${pcl.gthread-2.0} + ${pcl.gtkmm-3.0} ${pcl.gdkmm-3.0} + ${pcl.gtk+-3.0} ${pcl.gdk-3.0} + ${pcl.gdl-3.0} + ${devlibs}/bin/libxml2-2.dll + ${devlibs}/bin/libxslt-1.dll + ${devlibs}/bin/libexslt-0.dll + ${pcl.cairo} ${pcl.cairomm-1.0} + ${pcl.libwpg-0.2} ${pcl.libvisio-0.0} ${pcl.libcdr-0.0} + ${pcl.glibmm-2.4} + ${pcl.pangomm-1.4} + ${pcl.cairomm-1.0} + -liconv + ${pcl.Magick++} + ${pcl.fontconfig} ${pcl.freetype2} + ${pcl.lcms2} + ${pcl.gsl} + -lpng -ljpeg -ltiff -lexif -lpopt -lz + -lgc + -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm + -lgomp -lwinpthread-1 + -laspell + -lmscms + + + + + + + + + + + + -mconsole + -mthreads + + + + + + + + + + + + -L${devlibs}/lib + ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} + ${pcl.pangoft2} ${pcl.gthread-2.0} + ${pcl.gtkmm-3.0} ${pcl.gdkmm-3.0} + ${pcl.gtk+-3.0} ${pcl.gdk-3.0} + ${pcl.gdl-3.0} + ${devlibs}/bin/libxml2-2.dll + ${devlibs}/bin/libxslt-1.dll + ${devlibs}/bin/libexslt-0.dll + ${pcl.cairo} ${pcl.cairomm-1.0} + ${pcl.libwpg-0.2} ${pcl.libvisio-0.0} ${pcl.libcdr-0.0} + ${pcl.glibmm-2.4} + ${pcl.pangomm-1.4} + ${pcl.cairomm-1.0} + -liconv + ${pcl.Magick++} + ${pcl.fontconfig} ${pcl.freetype2} + ${pcl.lcms2} + ${pcl.gsl} + -lpng -ljpeg -ltiff -lexif -lpopt -lz + -lgc + -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm + -lgomp -lwinpthread-1 + -laspell + -lmscms + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[Settings] +gtk-font-name=Tahoma 8 +gtk-theme-name = Adwaita + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3 From d90ab1169c440127365212e344f158a33f077e4b Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Cenoz Date: Fri, 21 Nov 2014 13:13:24 +0100 Subject: Fixed a bug pointed by suv running from comand line, also removed another desktop call (bzr r13743) --- src/live_effects/lpe-perspective_path.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/live_effects/lpe-perspective_path.cpp b/src/live_effects/lpe-perspective_path.cpp index 5183a455f..901519b4f 100644 --- a/src/live_effects/lpe-perspective_path.cpp +++ b/src/live_effects/lpe-perspective_path.cpp @@ -23,7 +23,7 @@ #include "knot-holder-entity.h" #include "knotholder.h" #include "desktop.h" - +#include #include "inkscape.h" #include <2geom/path.h> @@ -97,7 +97,8 @@ LPEPerspectivePath::doBeforeEffect (SPLPEItem const* lpeitem) return; } Proj::TransfMat3x4 pmat = persp->perspective_impl->tmat; - pmat = pmat * SP_ACTIVE_DESKTOP->doc2dt(); + Geom::Affine doc2d = Geom::Scale(1, -1) * Geom::Translate(0, item->document->getHeight().value("px")); + pmat = pmat * doc2d; pmat.copy_tmat(tmat); item->apply_to_clippath(item); item->apply_to_mask(item); -- cgit v1.2.3 From ae9a95983fa77b2c34898f7dc096caac916403dc Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Fri, 21 Nov 2014 21:01:08 +0100 Subject: properly name the document units as "Document units" in the UI. The setting is not meant to mean "default units" although it seems to be treated as that *as well*. (bzr r13744) --- src/ui/dialog/document-properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp index 6064c2a5e..e6dfee81d 100644 --- a/src/ui/dialog/document-properties.cpp +++ b/src/ui/dialog/document-properties.cpp @@ -114,7 +114,7 @@ DocumentProperties::DocumentProperties() _rcb_shad(_("_Show border shadow"), _("If set, page border shows a shadow on its right and lower side"), "inkscape:showpageshadow", _wr, false), _rcp_bg(_("Back_ground color:"), _("Background color"), _("Color of the page background. Note: transparency setting ignored while editing but used when exporting to bitmap."), "pagecolor", "inkscape:pageopacity", _wr), _rcp_bord(_("Border _color:"), _("Page border color"), _("Color of the page border"), "bordercolor", "borderopacity", _wr), - _rum_deflt(_("Default _units:"), "inkscape:document-units", _wr), + _rum_deflt(_("Document _units:"), "inkscape:document-units", _wr), _page_sizer(_wr), //--------------------------------------------------------------- //General snap options -- cgit v1.2.3 From 8697e6040295a484ef497b1e89744d52bd444750 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Fri, 21 Nov 2014 21:59:29 +0100 Subject: build-x64-gtk3.xml : fix documentation (bzr r13745) --- build-x64-gtk3.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-x64-gtk3.xml b/build-x64-gtk3.xml index 1f377db8e..542125e56 100644 --- a/build-x64-gtk3.xml +++ b/build-x64-gtk3.xml @@ -34,8 +34,7 @@ Build file for the Inkscape SVG editor. This file - was written for GTK-2.10 on Win32, but it should work - well for other types of builds with only minor adjustments. + was written for GTK-3 on Win64. Note that the default target is 'dist-all'. You can execute other targets instead, by "btool {target}", like "btool compile", if you want to save time, or "dist-inkscape" if you don't want inkview. -- cgit v1.2.3 From 2d29b2d76243fa716f9de89bb66db99ea2fbbc15 Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Fri, 21 Nov 2014 22:05:30 +0100 Subject: Dutch translation update (bzr r13746) --- po/nl.po | 121 +++++++++++++++++++++++++++------------------------------------ 1 file changed, 52 insertions(+), 69 deletions(-) diff --git a/po/nl.po b/po/nl.po index 8a6c53dff..a949905e7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -904,190 +904,179 @@ msgstr "Alle binnenranden van vormen verruwen" #: ../share/filters/filters.svg.h:322 msgid "Evanescent" -msgstr "" +msgstr "Vergankelijk" #: ../share/filters/filters.svg.h:324 msgid "" "Blur the contents of objects, preserving the outline and adding progressive " "transparency at edges" -msgstr "" +msgstr "Inhoud van objecten vervagen, randen behouden met toenemende transparantie aan randen" #: ../share/filters/filters.svg.h:326 msgid "Chalk and Sponge" -msgstr "" +msgstr "Krijt en spons" #: ../share/filters/filters.svg.h:328 msgid "Low turbulence gives sponge look and high turbulence chalk" -msgstr "" +msgstr "Lage turbulentie voor sponslook en hoogturbulente kalk" #: ../share/filters/filters.svg.h:330 msgid "People" -msgstr "" +msgstr "Mensen" #: ../share/filters/filters.svg.h:332 msgid "Colorized blotches, like a crowd of people" -msgstr "" +msgstr "Gekleurde vlekken zoals een menigte mensen" #: ../share/filters/filters.svg.h:334 msgid "Scotland" -msgstr "" +msgstr "Schotland" #: ../share/filters/filters.svg.h:336 msgid "Colorized mountain tops out of the fog" -msgstr "" +msgstr "Gekleurde bergtoppen boven de mist" #: ../share/filters/filters.svg.h:338 -#, fuzzy msgid "Garden of Delights" -msgstr "Helderheid korrel" +msgstr "Tuin der Lusten" #: ../share/filters/filters.svg.h:340 msgid "" "Phantasmagorical turbulent wisps, like Hieronymus Bosch's Garden of Delights" -msgstr "" +msgstr "Fantastische turbulende streken, zoals bij Hieronymus Bosch's Tuin der Lusten" #: ../share/filters/filters.svg.h:342 -#, fuzzy msgid "Cutout Glow" -msgstr "Uitsnijding" +msgstr "Uitgesneden gloed" #: ../share/filters/filters.svg.h:344 msgid "In and out glow with a possible offset and colorizable flood" -msgstr "" +msgstr "Gloed langs binnen en buiten met eventuele offset en gekleurde vulling" #: ../share/filters/filters.svg.h:346 -#, fuzzy msgid "Dark Emboss" -msgstr "Reliëf" +msgstr "Donker reliëf" #: ../share/filters/filters.svg.h:348 msgid "Emboss effect : 3D relief where white is replaced by black" -msgstr "" +msgstr "Reliëf: 3D reliëf waar wit veranderd is in zwart" #: ../share/filters/filters.svg.h:350 -#, fuzzy msgid "Bubbly Bumps Matte" -msgstr "Vervormde bellen" +msgstr "Verhoging met matte bellen" #: ../share/filters/filters.svg.h:352 msgid "Same as Bubbly Bumps but with a diffuse light instead of a specular one" -msgstr "" +msgstr "Gelijkaardig aan verhoging met bellen met diffuus in plaats van direct licht" #: ../share/filters/filters.svg.h:354 msgid "Blotting Paper" -msgstr "" +msgstr "Vloeipapier" #: ../share/filters/filters.svg.h:356 -#, fuzzy msgid "Inkblot on blotting paper" -msgstr "Inktvlek op weefsel of ruw papier" +msgstr "Inktvlek op vloeipapier" #: ../share/filters/filters.svg.h:358 -#, fuzzy msgid "Wax Print" -msgstr "Afdrukken" +msgstr "Waxafdruk" #: ../share/filters/filters.svg.h:360 msgid "Wax print on tissue texture" -msgstr "" +msgstr "Waxafdruk op weefsel" #: ../share/filters/filters.svg.h:366 -#, fuzzy msgid "Watercolor" -msgstr "Kleur plakken" +msgstr "Aquarel" #: ../share/filters/filters.svg.h:368 msgid "Cloudy watercolor effect" -msgstr "" +msgstr "Aquareleffect" #: ../share/filters/filters.svg.h:370 msgid "Felt" -msgstr "" +msgstr "Vilt" #: ../share/filters/filters.svg.h:372 msgid "" "Felt like texture with color turbulence and slightly darker at the edges" -msgstr "" +msgstr "Viltachtige textuur met turbulente kleuren en iets donkerder aan de randen" #: ../share/filters/filters.svg.h:374 -#, fuzzy msgid "Ink Paint" msgstr "Olieverf" #: ../share/filters/filters.svg.h:376 msgid "Ink paint on paper with some turbulent color shift" -msgstr "" +msgstr "Olieverd op papier met enige turbulente kleurenshift" #: ../share/filters/filters.svg.h:378 msgid "Tinted Rainbow" -msgstr "" +msgstr "Getinte regenboog" #: ../share/filters/filters.svg.h:380 msgid "Smooth rainbow colors melted along the edges and colorizable" -msgstr "" +msgstr "Zachte regenboogkleuren in elkaar vloeiend langs de randen en aanpasbaar" #: ../share/filters/filters.svg.h:382 msgid "Melted Rainbow" -msgstr "" +msgstr "Gesmolten regenboog" #: ../share/filters/filters.svg.h:384 msgid "Smooth rainbow colors slightly melted along the edges" -msgstr "" +msgstr "Zachte regenboogkleuren licht in elkaar vloeiend langs de randen" #: ../share/filters/filters.svg.h:386 -#, fuzzy msgid "Flex Metal" -msgstr "Gesmolten metaal" +msgstr "Flexibel metaal" #: ../share/filters/filters.svg.h:388 msgid "Bright, polished uneven metal casting, colorizable" -msgstr "" +msgstr "Onregelmatige metalen vormen, helder en gepolijst, aanpasbaar" #: ../share/filters/filters.svg.h:390 msgid "Wavy Tartan" -msgstr "" +msgstr "Golvende tartan" #: ../share/filters/filters.svg.h:392 msgid "Tartan pattern with a wavy displacement and bevel around the edges" -msgstr "" +msgstr "Golvend tartanpatroon met verhoging aan de randen" #: ../share/filters/filters.svg.h:394 msgid "3D Marble" -msgstr "" +msgstr "3D marmer" #: ../share/filters/filters.svg.h:396 msgid "3D warped marble texture" -msgstr "" +msgstr "3D marmertextuur" #: ../share/filters/filters.svg.h:398 msgid "3D Wood" -msgstr "" +msgstr "3D hout" #: ../share/filters/filters.svg.h:400 msgid "3D warped, fibered wood texture" -msgstr "" +msgstr "3D houtvezeltextuur" #: ../share/filters/filters.svg.h:402 msgid "3D Mother of Pearl" -msgstr "" +msgstr "3D parelmoer" #: ../share/filters/filters.svg.h:404 msgid "3D warped, iridescent pearly shell texture" -msgstr "" +msgstr "3D iriserende parelmoerschelp" #: ../share/filters/filters.svg.h:406 -#, fuzzy msgid "Tiger Fur" -msgstr "Luipaardvacht" +msgstr "Tijgervacht" #: ../share/filters/filters.svg.h:408 msgid "Tiger fur pattern with folds and bevel around the edges" -msgstr "" +msgstr "Tijgervachtpatroon met vouwen en verhoging langs de randen" #: ../share/filters/filters.svg.h:410 -#, fuzzy msgid "Black Light" -msgstr "Zwart punt:" +msgstr "" #: ../share/filters/filters.svg.h:411 ../share/filters/filters.svg.h:575 #: ../share/filters/filters.svg.h:587 ../share/filters/filters.svg.h:627 @@ -1153,25 +1142,23 @@ msgstr "Kleur" #: ../share/filters/filters.svg.h:412 msgid "Light areas turn to black" -msgstr "" +msgstr "Lichte gebieden worden zwart" #: ../share/filters/filters.svg.h:414 -#, fuzzy msgid "Film Grain" -msgstr "Korrel" +msgstr "Filmkorrel" #: ../share/filters/filters.svg.h:416 msgid "Adds a small scale graininess" -msgstr "" +msgstr "Een kleine korrel toevoegen" #: ../share/filters/filters.svg.h:418 -#, fuzzy msgid "Plaster Color" -msgstr "Kleur plakken" +msgstr "Gekleurde gips" #: ../share/filters/filters.svg.h:420 msgid "Colored plaster emboss effect" -msgstr "" +msgstr "Gekleurd gipsreliëf" #: ../share/filters/filters.svg.h:422 msgid "Velvet Bumps" @@ -1204,7 +1191,7 @@ msgstr "" #: ../share/filters/filters.svg.h:430 msgid "Chewing Gum" -msgstr "" +msgstr "Kauwgom" #: ../share/filters/filters.svg.h:432 msgid "" @@ -1213,7 +1200,6 @@ msgid "" msgstr "" #: ../share/filters/filters.svg.h:434 -#, fuzzy msgid "Dark And Glow" msgstr "Schaduw en gloed" @@ -1238,27 +1224,24 @@ msgid "Create a turbulent contour around" msgstr "" #: ../share/filters/filters.svg.h:446 -#, fuzzy msgid "Old Postcard" -msgstr "Oud Perzisch" +msgstr "Oude postkaart" #: ../share/filters/filters.svg.h:448 msgid "Slightly posterize and draw edges like on old printed postcards" -msgstr "" +msgstr "Licht verzadigd en getekende randen zoals oude postkaarten" #: ../share/filters/filters.svg.h:450 -#, fuzzy msgid "Dots Transparency" -msgstr "Transparantie dialoogvenster" +msgstr "Transparant pointillisme" #: ../share/filters/filters.svg.h:452 msgid "Gives a pointillist HSL sensitive transparency" msgstr "" #: ../share/filters/filters.svg.h:454 -#, fuzzy msgid "Canvas Transparency" -msgstr "Transparantie kleurkanaal" +msgstr "" #: ../share/filters/filters.svg.h:456 msgid "Gives a canvas like HSL sensitive transparency." -- cgit v1.2.3 From 904df6e4627a051e8be635d20139a82fcd6ba283 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Fri, 21 Nov 2014 23:33:24 +0100 Subject: Win64: add High DPI awareness to the manifest (needs testing on non-highdpi system) (bzr r13747) --- src/inkscape-manifest-x64.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/inkscape-manifest-x64.xml b/src/inkscape-manifest-x64.xml index 38526cfe6..b5a6f11f2 100644 --- a/src/inkscape-manifest-x64.xml +++ b/src/inkscape-manifest-x64.xml @@ -1,5 +1,10 @@ + + + true + + Date: Sat, 22 Nov 2014 19:39:28 +0100 Subject: Revert old behavior: changing "Default units" changes *only* the displayed units. It should not change the units used in SVG. We will need to create another setting for that at some later point. (bzr r13748) --- src/attributes.cpp | 2 +- src/ui/dialog/document-properties.cpp | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/attributes.cpp b/src/attributes.cpp index d142d1a06..2b04843a7 100644 --- a/src/attributes.cpp +++ b/src/attributes.cpp @@ -115,7 +115,7 @@ static SPStyleProp const props[] = { {SP_ATTR_INKSCAPE_SNAP_BBOX_CORNER, "inkscape:bbox-nodes"}, {SP_ATTR_INKSCAPE_SNAP_PAGE_BORDER, "inkscape:snap-page"}, {SP_ATTR_INKSCAPE_CURRENT_LAYER, "inkscape:current-layer"}, - {SP_ATTR_INKSCAPE_DOCUMENT_UNITS, "inkscape:document-units"}, + {SP_ATTR_INKSCAPE_DOCUMENT_UNITS, "inkscape:document-units"}, // This setting sets the Display units, *not* the units used in SVG {SP_ATTR_UNITS, "units"}, {SP_ATTR_INKSCAPE_CONNECTOR_SPACING, "inkscape:connector-spacing"}, /* SPColorProfile */ diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp index e6dfee81d..9ab607ed2 100644 --- a/src/ui/dialog/document-properties.cpp +++ b/src/ui/dialog/document-properties.cpp @@ -114,7 +114,7 @@ DocumentProperties::DocumentProperties() _rcb_shad(_("_Show border shadow"), _("If set, page border shows a shadow on its right and lower side"), "inkscape:showpageshadow", _wr, false), _rcp_bg(_("Back_ground color:"), _("Background color"), _("Color of the page background. Note: transparency setting ignored while editing but used when exporting to bitmap."), "pagecolor", "inkscape:pageopacity", _wr), _rcp_bord(_("Border _color:"), _("Page border color"), _("Color of the page border"), "bordercolor", "borderopacity", _wr), - _rum_deflt(_("Document _units:"), "inkscape:document-units", _wr), + _rum_deflt(_("Display _units:"), "inkscape:document-units", _wr), _page_sizer(_wr), //--------------------------------------------------------------- //General snap options @@ -1708,7 +1708,10 @@ void DocumentProperties::onDocUnitChange() Inkscape::SVGOStringStream os; os << doc_unit->abbr; repr->setAttribute("inkscape:document-units", os.str().c_str()); - + + // Disable changing of SVG Units. The intent here is to change the units in the UI, not the units in SVG. + // This code should be moved (and fixed) once we have an "SVG Units" setting that sets what units are used in SVG data. +#if 0 // Set viewBox if (doc->getRoot()->viewBox_set) { gdouble scale = Inkscape::Util::Quantity::convert(1, old_doc_unit, doc_unit); @@ -1760,10 +1763,11 @@ void DocumentProperties::onDocUnitChange() prefs->setBool("/options/transform/rectcorners", transform_rectcorners); prefs->setBool("/options/transform/pattern", transform_pattern); prefs->setBool("/options/transform/gradient", transform_gradient); +#endif doc->setModifiedSinceSave(); - DocumentUndo::done(doc, SP_VERB_NONE, _("Changed document unit")); + DocumentUndo::done(doc, SP_VERB_NONE, _("Changed default display unit")); } } // namespace Dialog -- cgit v1.2.3 From c71f70751c5c7cfc1bab401d127e0ac646d8fc03 Mon Sep 17 00:00:00 2001 From: Masato HASHIMOTO <> Date: Sun, 23 Nov 2014 18:25:40 +0100 Subject: i18n. Fix for Bug #1388916 (There seem to be untranslatable strings in MapSymbolsNPS.svg) by Masato HASHIMOTO." Translation. PO template and French translation update. Fixed bugs: - https://launchpad.net/bugs/1388916 (bzr r13749) --- po/fr.po | 16521 +++++++++++++++++++++++--------------- po/inkscape.pot | 2084 ++--- share/symbols/MapSymbolsNPS.svg | 5 + 3 files changed, 10971 insertions(+), 7639 deletions(-) diff --git a/po/fr.po b/po/fr.po index 2bdf802ed..3e4b90237 100644 --- a/po/fr.po +++ b/po/fr.po @@ -17,18 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: inkscape\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-10-02 10:03+0200\n" -"PO-Revision-Date: 2014-10-02 10:31+0100\n" +"POT-Creation-Date: 2014-11-23 18:19+0100\n" +"PO-Revision-Date: 2014-11-23 18:21+0100\n" "Last-Translator: Nicolas Dufour \n" "Language-Team: \n" -"Language: \n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n>1);\n" -"X-Poedit-Language: French\n" -"X-Poedit-Country: FRANCE\n" "X-Poedit-Bookmarks: 46,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" +"X-Generator: Poedit 1.5.4\n" #: ../inkscape.desktop.in.h:1 msgid "Inkscape" @@ -54,28 +53,17 @@ msgstr "Nouveau dessin" msgid "Smart Jelly" msgstr "Gel tous usages" -#: ../share/filters/filters.svg.h:3 -#: ../share/filters/filters.svg.h:7 -#: ../share/filters/filters.svg.h:15 -#: ../share/filters/filters.svg.h:31 -#: ../share/filters/filters.svg.h:35 -#: ../share/filters/filters.svg.h:107 -#: ../share/filters/filters.svg.h:139 -#: ../share/filters/filters.svg.h:143 -#: ../share/filters/filters.svg.h:147 -#: ../share/filters/filters.svg.h:151 -#: ../share/filters/filters.svg.h:163 -#: ../share/filters/filters.svg.h:171 -#: ../share/filters/filters.svg.h:219 -#: ../share/filters/filters.svg.h:227 -#: ../share/filters/filters.svg.h:283 -#: ../share/filters/filters.svg.h:299 -#: ../share/filters/filters.svg.h:303 -#: ../share/filters/filters.svg.h:551 -#: ../share/filters/filters.svg.h:555 -#: ../share/filters/filters.svg.h:559 -#: ../share/filters/filters.svg.h:563 -#: ../share/filters/filters.svg.h:567 +#: ../share/filters/filters.svg.h:3 ../share/filters/filters.svg.h:7 +#: ../share/filters/filters.svg.h:15 ../share/filters/filters.svg.h:31 +#: ../share/filters/filters.svg.h:35 ../share/filters/filters.svg.h:107 +#: ../share/filters/filters.svg.h:139 ../share/filters/filters.svg.h:143 +#: ../share/filters/filters.svg.h:147 ../share/filters/filters.svg.h:151 +#: ../share/filters/filters.svg.h:163 ../share/filters/filters.svg.h:171 +#: ../share/filters/filters.svg.h:219 ../share/filters/filters.svg.h:227 +#: ../share/filters/filters.svg.h:283 ../share/filters/filters.svg.h:299 +#: ../share/filters/filters.svg.h:303 ../share/filters/filters.svg.h:551 +#: ../share/filters/filters.svg.h:555 ../share/filters/filters.svg.h:559 +#: ../share/filters/filters.svg.h:563 ../share/filters/filters.svg.h:567 #: ../src/extension/internal/filter/bevels.h:63 #: ../src/extension/internal/filter/bevels.h:144 #: ../src/extension/internal/filter/bevels.h:228 @@ -98,8 +86,7 @@ msgstr "Biseau doux en forme de goutte avec une finition métallisée" msgid "Apparition" msgstr "Apparition" -#: ../share/filters/filters.svg.h:11 -#: ../share/filters/filters.svg.h:323 +#: ../share/filters/filters.svg.h:11 ../share/filters/filters.svg.h:323 #: ../share/filters/filters.svg.h:655 #: ../src/extension/internal/filter/blurs.h:63 #: ../src/extension/internal/filter/blurs.h:132 @@ -125,38 +112,22 @@ msgstr "Biseau bas et net" msgid "Rubber Stamp" msgstr "Tampon en caoutchouc" -#: ../share/filters/filters.svg.h:19 -#: ../share/filters/filters.svg.h:43 -#: ../share/filters/filters.svg.h:47 -#: ../share/filters/filters.svg.h:51 -#: ../share/filters/filters.svg.h:59 -#: ../share/filters/filters.svg.h:63 -#: ../share/filters/filters.svg.h:95 -#: ../share/filters/filters.svg.h:99 -#: ../share/filters/filters.svg.h:103 -#: ../share/filters/filters.svg.h:287 -#: ../share/filters/filters.svg.h:291 -#: ../share/filters/filters.svg.h:331 -#: ../share/filters/filters.svg.h:335 -#: ../share/filters/filters.svg.h:339 -#: ../share/filters/filters.svg.h:391 -#: ../share/filters/filters.svg.h:407 -#: ../share/filters/filters.svg.h:451 -#: ../share/filters/filters.svg.h:455 -#: ../share/filters/filters.svg.h:459 -#: ../share/filters/filters.svg.h:475 -#: ../share/filters/filters.svg.h:487 -#: ../share/filters/filters.svg.h:583 -#: ../share/filters/filters.svg.h:643 -#: ../share/filters/filters.svg.h:683 -#: ../share/filters/filters.svg.h:687 -#: ../share/filters/filters.svg.h:691 -#: ../share/filters/filters.svg.h:695 -#: ../share/filters/filters.svg.h:699 -#: ../share/filters/filters.svg.h:703 -#: ../share/filters/filters.svg.h:707 -#: ../share/filters/filters.svg.h:711 -#: ../share/filters/filters.svg.h:715 +#: ../share/filters/filters.svg.h:19 ../share/filters/filters.svg.h:43 +#: ../share/filters/filters.svg.h:47 ../share/filters/filters.svg.h:51 +#: ../share/filters/filters.svg.h:59 ../share/filters/filters.svg.h:63 +#: ../share/filters/filters.svg.h:95 ../share/filters/filters.svg.h:99 +#: ../share/filters/filters.svg.h:103 ../share/filters/filters.svg.h:287 +#: ../share/filters/filters.svg.h:291 ../share/filters/filters.svg.h:331 +#: ../share/filters/filters.svg.h:335 ../share/filters/filters.svg.h:339 +#: ../share/filters/filters.svg.h:391 ../share/filters/filters.svg.h:407 +#: ../share/filters/filters.svg.h:451 ../share/filters/filters.svg.h:455 +#: ../share/filters/filters.svg.h:459 ../share/filters/filters.svg.h:475 +#: ../share/filters/filters.svg.h:487 ../share/filters/filters.svg.h:583 +#: ../share/filters/filters.svg.h:643 ../share/filters/filters.svg.h:683 +#: ../share/filters/filters.svg.h:687 ../share/filters/filters.svg.h:691 +#: ../share/filters/filters.svg.h:695 ../share/filters/filters.svg.h:699 +#: ../share/filters/filters.svg.h:703 ../share/filters/filters.svg.h:707 +#: ../share/filters/filters.svg.h:711 ../share/filters/filters.svg.h:715 #: ../share/filters/filters.svg.h:723 #: ../src/extension/internal/filter/overlays.h:80 msgid "Overlays" @@ -170,10 +141,8 @@ msgstr "Taches de liquide correcteur aléatoires" msgid "Ink Bleed" msgstr "Bavure d'encre" -#: ../share/filters/filters.svg.h:23 -#: ../share/filters/filters.svg.h:27 -#: ../share/filters/filters.svg.h:115 -#: ../share/filters/filters.svg.h:431 +#: ../share/filters/filters.svg.h:23 ../share/filters/filters.svg.h:27 +#: ../share/filters/filters.svg.h:115 ../share/filters/filters.svg.h:431 msgid "Protrusions" msgstr "Protubérances" @@ -209,14 +178,10 @@ msgstr "Contour en arête, avec un biseau intérieur" msgid "Ripple" msgstr "Ondulation" -#: ../share/filters/filters.svg.h:39 -#: ../share/filters/filters.svg.h:123 -#: ../share/filters/filters.svg.h:315 -#: ../share/filters/filters.svg.h:319 -#: ../share/filters/filters.svg.h:327 -#: ../share/filters/filters.svg.h:363 -#: ../share/filters/filters.svg.h:443 -#: ../share/filters/filters.svg.h:519 +#: ../share/filters/filters.svg.h:39 ../share/filters/filters.svg.h:123 +#: ../share/filters/filters.svg.h:315 ../share/filters/filters.svg.h:319 +#: ../share/filters/filters.svg.h:327 ../share/filters/filters.svg.h:363 +#: ../share/filters/filters.svg.h:443 ../share/filters/filters.svg.h:519 #: ../share/filters/filters.svg.h:635 #: ../src/extension/internal/filter/distort.h:96 #: ../src/extension/internal/filter/distort.h:205 @@ -255,20 +220,13 @@ msgstr "Taches blanches floconneuses" msgid "Leopard Fur" msgstr "Fourrure de léopard" -#: ../share/filters/filters.svg.h:55 -#: ../share/filters/filters.svg.h:175 -#: ../share/filters/filters.svg.h:179 -#: ../share/filters/filters.svg.h:183 -#: ../share/filters/filters.svg.h:191 -#: ../share/filters/filters.svg.h:211 -#: ../share/filters/filters.svg.h:239 -#: ../share/filters/filters.svg.h:243 -#: ../share/filters/filters.svg.h:247 -#: ../share/filters/filters.svg.h:255 -#: ../share/filters/filters.svg.h:387 -#: ../share/filters/filters.svg.h:395 -#: ../share/filters/filters.svg.h:399 -#: ../share/filters/filters.svg.h:403 +#: ../share/filters/filters.svg.h:55 ../share/filters/filters.svg.h:175 +#: ../share/filters/filters.svg.h:179 ../share/filters/filters.svg.h:183 +#: ../share/filters/filters.svg.h:191 ../share/filters/filters.svg.h:211 +#: ../share/filters/filters.svg.h:239 ../share/filters/filters.svg.h:243 +#: ../share/filters/filters.svg.h:247 ../share/filters/filters.svg.h:255 +#: ../share/filters/filters.svg.h:387 ../share/filters/filters.svg.h:395 +#: ../share/filters/filters.svg.h:399 ../share/filters/filters.svg.h:403 msgid "Materials" msgstr "Matières" @@ -282,7 +240,8 @@ msgstr "Zèbre" #: ../share/filters/filters.svg.h:60 msgid "Irregular vertical dark stripes (loses object's own color)" -msgstr "Bandes verticales sombres et irrégulières (l'objet perd sa propre couleur)" +msgstr "" +"Bandes verticales sombres et irrégulières (l'objet perd sa propre couleur)" #: ../share/filters/filters.svg.h:62 msgid "Clouds" @@ -297,10 +256,8 @@ msgstr "Nuages blancs touffus, épars et légers" msgid "Sharpen" msgstr "Netteté" -#: ../share/filters/filters.svg.h:67 -#: ../share/filters/filters.svg.h:71 -#: ../share/filters/filters.svg.h:87 -#: ../share/filters/filters.svg.h:295 +#: ../share/filters/filters.svg.h:67 ../share/filters/filters.svg.h:71 +#: ../share/filters/filters.svg.h:87 ../share/filters/filters.svg.h:295 #: ../share/filters/filters.svg.h:415 #: ../src/extension/internal/filter/image.h:62 msgid "Image Effects" @@ -322,24 +279,15 @@ msgstr "Renforcer les bords et frontières intérieures de l'objet, force=0,3" msgid "Oil painting" msgstr "Peinture à l'huile" -#: ../share/filters/filters.svg.h:75 -#: ../share/filters/filters.svg.h:79 -#: ../share/filters/filters.svg.h:83 -#: ../share/filters/filters.svg.h:447 -#: ../share/filters/filters.svg.h:495 -#: ../share/filters/filters.svg.h:499 -#: ../share/filters/filters.svg.h:503 -#: ../share/filters/filters.svg.h:507 -#: ../share/filters/filters.svg.h:515 -#: ../share/filters/filters.svg.h:659 -#: ../share/filters/filters.svg.h:663 -#: ../share/filters/filters.svg.h:667 -#: ../share/filters/filters.svg.h:671 -#: ../share/filters/filters.svg.h:675 -#: ../share/filters/filters.svg.h:679 -#: ../share/filters/filters.svg.h:719 -#: ../share/filters/filters.svg.h:803 -#: ../share/filters/filters.svg.h:815 +#: ../share/filters/filters.svg.h:75 ../share/filters/filters.svg.h:79 +#: ../share/filters/filters.svg.h:83 ../share/filters/filters.svg.h:447 +#: ../share/filters/filters.svg.h:495 ../share/filters/filters.svg.h:499 +#: ../share/filters/filters.svg.h:503 ../share/filters/filters.svg.h:507 +#: ../share/filters/filters.svg.h:515 ../share/filters/filters.svg.h:659 +#: ../share/filters/filters.svg.h:663 ../share/filters/filters.svg.h:667 +#: ../share/filters/filters.svg.h:671 ../share/filters/filters.svg.h:675 +#: ../share/filters/filters.svg.h:679 ../share/filters/filters.svg.h:719 +#: ../share/filters/filters.svg.h:803 ../share/filters/filters.svg.h:815 #: ../src/extension/internal/filter/paint.h:113 #: ../src/extension/internal/filter/paint.h:244 #: ../src/extension/internal/filter/paint.h:363 @@ -357,7 +305,7 @@ msgstr "Simule une peinture à l'huile" #. Pencil #: ../share/filters/filters.svg.h:78 -#: ../src/ui/dialog/inkscape-preferences.cpp:417 +#: ../src/ui/dialog/inkscape-preferences.cpp:420 msgid "Pencil" msgstr "Crayon" @@ -385,26 +333,16 @@ msgstr "Imite une photographie ancienne" msgid "Organic" msgstr "Relief organique" -#: ../share/filters/filters.svg.h:91 -#: ../share/filters/filters.svg.h:119 -#: ../share/filters/filters.svg.h:127 -#: ../share/filters/filters.svg.h:187 -#: ../share/filters/filters.svg.h:195 -#: ../share/filters/filters.svg.h:199 -#: ../share/filters/filters.svg.h:251 -#: ../share/filters/filters.svg.h:259 -#: ../share/filters/filters.svg.h:263 -#: ../share/filters/filters.svg.h:355 -#: ../share/filters/filters.svg.h:359 -#: ../share/filters/filters.svg.h:367 -#: ../share/filters/filters.svg.h:371 -#: ../share/filters/filters.svg.h:375 -#: ../share/filters/filters.svg.h:379 -#: ../share/filters/filters.svg.h:383 -#: ../share/filters/filters.svg.h:439 -#: ../share/filters/filters.svg.h:467 -#: ../share/filters/filters.svg.h:491 -#: ../share/filters/filters.svg.h:531 +#: ../share/filters/filters.svg.h:91 ../share/filters/filters.svg.h:119 +#: ../share/filters/filters.svg.h:127 ../share/filters/filters.svg.h:187 +#: ../share/filters/filters.svg.h:195 ../share/filters/filters.svg.h:199 +#: ../share/filters/filters.svg.h:251 ../share/filters/filters.svg.h:259 +#: ../share/filters/filters.svg.h:263 ../share/filters/filters.svg.h:355 +#: ../share/filters/filters.svg.h:359 ../share/filters/filters.svg.h:367 +#: ../share/filters/filters.svg.h:371 ../share/filters/filters.svg.h:375 +#: ../share/filters/filters.svg.h:379 ../share/filters/filters.svg.h:383 +#: ../share/filters/filters.svg.h:439 ../share/filters/filters.svg.h:467 +#: ../share/filters/filters.svg.h:491 ../share/filters/filters.svg.h:531 msgid "Textures" msgstr "Textures" @@ -448,10 +386,8 @@ msgstr "Biseau doux, légèrement enfoncé au milieu" msgid "Inset" msgstr "Incrustation" -#: ../share/filters/filters.svg.h:111 -#: ../share/filters/filters.svg.h:267 -#: ../share/filters/filters.svg.h:343 -#: ../share/filters/filters.svg.h:435 +#: ../share/filters/filters.svg.h:111 ../share/filters/filters.svg.h:267 +#: ../share/filters/filters.svg.h:343 ../share/filters/filters.svg.h:435 #: ../share/filters/filters.svg.h:811 #: ../src/extension/internal/filter/shadows.h:81 msgid "Shadows and Glows" @@ -497,34 +433,20 @@ msgstr "Sous un verre fissuré" msgid "Bubbly Bumps" msgstr "Bosselage bulleux" -#: ../share/filters/filters.svg.h:131 -#: ../share/filters/filters.svg.h:307 -#: ../share/filters/filters.svg.h:311 -#: ../share/filters/filters.svg.h:347 -#: ../share/filters/filters.svg.h:351 -#: ../share/filters/filters.svg.h:419 -#: ../share/filters/filters.svg.h:423 -#: ../share/filters/filters.svg.h:463 -#: ../share/filters/filters.svg.h:471 -#: ../share/filters/filters.svg.h:479 -#: ../share/filters/filters.svg.h:483 -#: ../share/filters/filters.svg.h:511 -#: ../share/filters/filters.svg.h:535 -#: ../share/filters/filters.svg.h:539 -#: ../share/filters/filters.svg.h:543 -#: ../share/filters/filters.svg.h:547 -#: ../share/filters/filters.svg.h:571 -#: ../share/filters/filters.svg.h:579 -#: ../share/filters/filters.svg.h:595 -#: ../share/filters/filters.svg.h:599 -#: ../share/filters/filters.svg.h:603 -#: ../share/filters/filters.svg.h:607 -#: ../share/filters/filters.svg.h:611 -#: ../share/filters/filters.svg.h:615 -#: ../share/filters/filters.svg.h:619 -#: ../share/filters/filters.svg.h:623 -#: ../share/filters/filters.svg.h:799 -#: ../share/filters/filters.svg.h:807 +#: ../share/filters/filters.svg.h:131 ../share/filters/filters.svg.h:307 +#: ../share/filters/filters.svg.h:311 ../share/filters/filters.svg.h:347 +#: ../share/filters/filters.svg.h:351 ../share/filters/filters.svg.h:419 +#: ../share/filters/filters.svg.h:423 ../share/filters/filters.svg.h:463 +#: ../share/filters/filters.svg.h:471 ../share/filters/filters.svg.h:479 +#: ../share/filters/filters.svg.h:483 ../share/filters/filters.svg.h:511 +#: ../share/filters/filters.svg.h:535 ../share/filters/filters.svg.h:539 +#: ../share/filters/filters.svg.h:543 ../share/filters/filters.svg.h:547 +#: ../share/filters/filters.svg.h:571 ../share/filters/filters.svg.h:579 +#: ../share/filters/filters.svg.h:595 ../share/filters/filters.svg.h:599 +#: ../share/filters/filters.svg.h:603 ../share/filters/filters.svg.h:607 +#: ../share/filters/filters.svg.h:611 ../share/filters/filters.svg.h:615 +#: ../share/filters/filters.svg.h:619 ../share/filters/filters.svg.h:623 +#: ../share/filters/filters.svg.h:799 ../share/filters/filters.svg.h:807 #: ../src/extension/internal/filter/bumps.h:142 #: ../src/extension/internal/filter/bumps.h:362 msgid "Bumps" @@ -538,12 +460,9 @@ msgstr "Effet de bulles flexible avec un peu de déplacement" msgid "Glowing Bubble" msgstr "Bulle brillante" -#: ../share/filters/filters.svg.h:135 -#: ../share/filters/filters.svg.h:155 -#: ../share/filters/filters.svg.h:159 -#: ../share/filters/filters.svg.h:203 -#: ../share/filters/filters.svg.h:207 -#: ../share/filters/filters.svg.h:215 +#: ../share/filters/filters.svg.h:135 ../share/filters/filters.svg.h:155 +#: ../share/filters/filters.svg.h:159 ../share/filters/filters.svg.h:203 +#: ../share/filters/filters.svg.h:207 ../share/filters/filters.svg.h:215 #: ../share/filters/filters.svg.h:223 msgid "Ridges" msgstr "Crêtes" @@ -612,10 +531,8 @@ msgstr "Texture de métal luisant" msgid "Leaves" msgstr "Feuilles" -#: ../share/filters/filters.svg.h:167 -#: ../share/filters/filters.svg.h:235 -#: ../share/filters/filters.svg.h:271 -#: ../share/filters/filters.svg.h:639 +#: ../share/filters/filters.svg.h:167 ../share/filters/filters.svg.h:235 +#: ../share/filters/filters.svg.h:271 ../share/filters/filters.svg.h:639 #: ../share/extensions/pathscatter.inx.h:1 msgid "Scatter" msgstr "Éparpiller" @@ -639,7 +556,9 @@ msgstr "Cire d'abeille irisée" #: ../share/filters/filters.svg.h:176 msgid "Waxy texture which keeps its iridescence through color fill change" -msgstr "Texture cireuse conservant ses reflets irisés au travers de variations de couleur de remplissage" +msgstr "" +"Texture cireuse conservant ses reflets irisés au travers de variations de " +"couleur de remplissage" #: ../share/filters/filters.svg.h:178 msgid "Eroded Metal" @@ -647,7 +566,8 @@ msgstr "Métal érodé" #: ../share/filters/filters.svg.h:180 msgid "Eroded metal texture with ridges, grooves, holes and bumps" -msgstr "Texture de métal érodé, avec des arêtes, des sillons, des trous et des bosses" +msgstr "" +"Texture de métal érodé, avec des arêtes, des sillons, des trous et des bosses" #: ../share/filters/filters.svg.h:182 msgid "Cracked Lava" @@ -679,7 +599,8 @@ msgstr "Mur de pierres" #: ../share/filters/filters.svg.h:196 msgid "Stone wall texture to use with not too saturated colors" -msgstr "Texture en mur de pierre à utiliser avec des couleurs pas trop saturées" +msgstr "" +"Texture en mur de pierre à utiliser avec des couleurs pas trop saturées" #: ../share/filters/filters.svg.h:198 msgid "Silk Carpet" @@ -710,8 +631,10 @@ msgid "Metallized Paint" msgstr "Peinture métallisée" #: ../share/filters/filters.svg.h:212 -msgid "Metallized effect with a soft lighting, slightly translucent at the edges" -msgstr "Effet métallisé avec une lumière douce, légèrement translucide sur les bords" +msgid "" +"Metallized effect with a soft lighting, slightly translucent at the edges" +msgstr "" +"Effet métallisé avec une lumière douce, légèrement translucide sur les bords" #: ../share/filters/filters.svg.h:214 msgid "Dragee" @@ -749,15 +672,12 @@ msgstr "Huile grasse avec quelques turbulences ajustables" msgid "Black Hole" msgstr "Trou noir" -#: ../share/filters/filters.svg.h:231 -#: ../share/filters/filters.svg.h:275 -#: ../share/filters/filters.svg.h:279 -#: ../share/filters/filters.svg.h:835 -#: ../share/filters/filters.svg.h:839 -#: ../share/filters/filters.svg.h:843 +#: ../share/filters/filters.svg.h:231 ../share/filters/filters.svg.h:275 +#: ../share/filters/filters.svg.h:279 ../share/filters/filters.svg.h:835 +#: ../share/filters/filters.svg.h:839 ../share/filters/filters.svg.h:843 #: ../src/extension/internal/filter/morphology.h:76 #: ../src/extension/internal/filter/morphology.h:203 -#: ../src/filter-enums.cpp:31 +#: ../src/filter-enums.cpp:32 msgid "Morphology" msgstr "Morphologie" @@ -771,7 +691,9 @@ msgstr "Cubes" #: ../share/filters/filters.svg.h:236 msgid "Scattered cubes; adjust the Morphology primitive to vary size" -msgstr "Cubes éparpillés ; pour changer la taille des cubes, ajuster la primitive Morphologie" +msgstr "" +"Cubes éparpillés ; pour changer la taille des cubes, ajuster la primitive " +"Morphologie" #: ../share/filters/filters.svg.h:238 msgid "Peel Off" @@ -819,15 +741,20 @@ msgstr "Papier à grain" #: ../share/filters/filters.svg.h:260 msgid "Aquarelle paper effect which can be used for pictures as for objects" -msgstr "Effet de papier à aquarelle, utilisable autant pour les images que pour les objets" +msgstr "" +"Effet de papier à aquarelle, utilisable autant pour les images que pour les " +"objets" #: ../share/filters/filters.svg.h:262 msgid "Rough and Glossy" msgstr "Plastique chiffonné" #: ../share/filters/filters.svg.h:264 -msgid "Crumpled glossy paper effect which can be used for pictures as for objects" -msgstr "Effet de papier brillant froissé, utilisable autant pour les images que pour les objets" +msgid "" +"Crumpled glossy paper effect which can be used for pictures as for objects" +msgstr "" +"Effet de papier brillant froissé, utilisable autant pour les images que pour " +"les objets" #: ../share/filters/filters.svg.h:266 msgid "In and Out" @@ -866,8 +793,11 @@ msgid "Electronic Microscopy" msgstr "Microscope électronique" #: ../share/filters/filters.svg.h:284 -msgid "Bevel, crude light, discoloration and glow like in electronic microscopy" -msgstr "Un biseau, lumière brute, décoloration et lueur comme avec un microscope électronique" +msgid "" +"Bevel, crude light, discoloration and glow like in electronic microscopy" +msgstr "" +"Un biseau, lumière brute, décoloration et lueur comme avec un microscope " +"électronique" #: ../share/filters/filters.svg.h:286 msgid "Tartan" @@ -883,7 +813,9 @@ msgstr "Liquide agité" #: ../share/filters/filters.svg.h:292 msgid "Colorizable filling with flow inside like transparency" -msgstr "Remplissage qu'il est possible de colorer, avec une transparence s'écoulant à l'intérieur" +msgstr "" +"Remplissage qu'il est possible de colorer, avec une transparence s'écoulant " +"à l'intérieur" #: ../share/filters/filters.svg.h:294 msgid "Soft Focus Lens" @@ -925,14 +857,13 @@ msgstr "Masque de bosselage bulleux" msgid "Same as Bubbly Bumps but with transparent highlights" msgstr "Identique à Bosselage bulleux, mais avec des reflets transparents" -#: ../share/filters/filters.svg.h:314 -#: ../share/filters/filters.svg.h:362 +#: ../share/filters/filters.svg.h:314 ../share/filters/filters.svg.h:362 msgid "Torn Edges" msgstr "Pourtour déchiré" -#: ../share/filters/filters.svg.h:316 -#: ../share/filters/filters.svg.h:364 -msgid "Displace the outside of shapes and pictures without altering their content" +#: ../share/filters/filters.svg.h:316 ../share/filters/filters.svg.h:364 +msgid "" +"Displace the outside of shapes and pictures without altering their content" msgstr "Déplace l'extérieur des formes et images sans en altérer le contenu" #: ../share/filters/filters.svg.h:318 @@ -948,8 +879,12 @@ msgid "Evanescent" msgstr "Évanescence" #: ../share/filters/filters.svg.h:324 -msgid "Blur the contents of objects, preserving the outline and adding progressive transparency at edges" -msgstr "Rend flou le contenu des objets, mais préserve le contour et ajoute une transparence progressive aux bords" +msgid "" +"Blur the contents of objects, preserving the outline and adding progressive " +"transparency at edges" +msgstr "" +"Rend flou le contenu des objets, mais préserve le contour et ajoute une " +"transparence progressive aux bords" #: ../share/filters/filters.svg.h:326 msgid "Chalk and Sponge" @@ -957,7 +892,9 @@ msgstr "Éponge et craie" #: ../share/filters/filters.svg.h:328 msgid "Low turbulence gives sponge look and high turbulence chalk" -msgstr "Une agitation légère donne l'aspect d'une éponge et une agitation forte de la craie" +msgstr "" +"Une agitation légère donne l'aspect d'une éponge et une agitation forte de " +"la craie" #: ../share/filters/filters.svg.h:330 msgid "People" @@ -980,8 +917,11 @@ msgid "Garden of Delights" msgstr "Jardin des délices" #: ../share/filters/filters.svg.h:340 -msgid "Phantasmagorical turbulent wisps, like Hieronymus Bosch's Garden of Delights" -msgstr "Volutes agitées et fantasmagoriques, comme Le Jardin des délices de Jérôme Bosch" +msgid "" +"Phantasmagorical turbulent wisps, like Hieronymus Bosch's Garden of Delights" +msgstr "" +"Volutes agitées et fantasmagoriques, comme Le Jardin des délices de " +"Jérôme Bosch" #: ../share/filters/filters.svg.h:342 msgid "Cutout Glow" @@ -989,7 +929,9 @@ msgstr "Découpe et flou" #: ../share/filters/filters.svg.h:344 msgid "In and out glow with a possible offset and colorizable flood" -msgstr "Lueur intérieure et extérieure avec possibilité de décaler et colorer le remplissage" +msgstr "" +"Lueur intérieure et extérieure avec possibilité de décaler et colorer le " +"remplissage" #: ../share/filters/filters.svg.h:346 msgid "Dark Emboss" @@ -997,7 +939,8 @@ msgstr "Bosselage sombre" #: ../share/filters/filters.svg.h:348 msgid "Emboss effect : 3D relief where white is replaced by black" -msgstr "Effet d'embossage : relief 3D avec lequel le blanc est remplacé par du noir" +msgstr "" +"Effet d'embossage : relief 3D avec lequel le blanc est remplacé par du noir" #: ../share/filters/filters.svg.h:350 msgid "Bubbly Bumps Matte" @@ -1005,7 +948,9 @@ msgstr "Bosselage bulleux mat" #: ../share/filters/filters.svg.h:352 msgid "Same as Bubbly Bumps but with a diffuse light instead of a specular one" -msgstr "Identique à Bosselage bulleux, mais avec une lumière diffuse et non pas spéculaire" +msgstr "" +"Identique à Bosselage bulleux, mais avec une lumière diffuse et non pas " +"spéculaire" #: ../share/filters/filters.svg.h:354 msgid "Blotting Paper" @@ -1036,8 +981,11 @@ msgid "Felt" msgstr "Feutre" #: ../share/filters/filters.svg.h:372 -msgid "Felt like texture with color turbulence and slightly darker at the edges" -msgstr "Texture de feutre avec de la turbulence de couleur et légèrement plus sombre sur les bords" +msgid "" +"Felt like texture with color turbulence and slightly darker at the edges" +msgstr "" +"Texture de feutre avec de la turbulence de couleur et légèrement plus sombre " +"sur les bords" #: ../share/filters/filters.svg.h:374 msgid "Ink Paint" @@ -1053,7 +1001,9 @@ msgstr "Arc-en-ciel teinté" #: ../share/filters/filters.svg.h:380 msgid "Smooth rainbow colors melted along the edges and colorizable" -msgstr "Couleurs arc-en-ciel douces, fondues le long des bords, et qu'il est possible de colorer" +msgstr "" +"Couleurs arc-en-ciel douces, fondues le long des bords, et qu'il est " +"possible de colorer" #: ../share/filters/filters.svg.h:382 msgid "Melted Rainbow" @@ -1069,7 +1019,8 @@ msgstr "Métal souple" #: ../share/filters/filters.svg.h:388 msgid "Bright, polished uneven metal casting, colorizable" -msgstr "Moulage de métal irrégulier, poli et brillant, qu'il est possible de colorer" +msgstr "" +"Moulage de métal irrégulier, poli et brillant, qu'il est possible de colorer" #: ../share/filters/filters.svg.h:390 msgid "Wavy Tartan" @@ -1077,7 +1028,8 @@ msgstr "Écossais ondoyant" #: ../share/filters/filters.svg.h:392 msgid "Tartan pattern with a wavy displacement and bevel around the edges" -msgstr "Motif écossais avec des déplacements ondulés et un biseau autour des bords" +msgstr "" +"Motif écossais avec des déplacements ondulés et un biseau autour des bords" #: ../share/filters/filters.svg.h:394 msgid "3D Marble" @@ -1115,14 +1067,10 @@ msgstr "Fourrure de tigre avec des plis et un biseau autour des bords" msgid "Black Light" msgstr "Lumière noire" -#: ../share/filters/filters.svg.h:411 -#: ../share/filters/filters.svg.h:575 -#: ../share/filters/filters.svg.h:587 -#: ../share/filters/filters.svg.h:627 -#: ../share/filters/filters.svg.h:631 -#: ../share/filters/filters.svg.h:819 -#: ../share/filters/filters.svg.h:827 -#: ../share/filters/filters.svg.h:831 +#: ../share/filters/filters.svg.h:411 ../share/filters/filters.svg.h:575 +#: ../share/filters/filters.svg.h:587 ../share/filters/filters.svg.h:627 +#: ../share/filters/filters.svg.h:631 ../share/filters/filters.svg.h:819 +#: ../share/filters/filters.svg.h:827 ../share/filters/filters.svg.h:831 #: ../src/extension/internal/bitmap/colorize.cpp:52 #: ../src/extension/internal/filter/bumps.h:101 #: ../src/extension/internal/filter/bumps.h:321 @@ -1154,9 +1102,8 @@ msgstr "Lumière noire" #: ../src/extension/internal/filter/paint.h:717 #: ../src/extension/internal/filter/shadows.h:73 #: ../src/extension/internal/filter/transparency.h:345 -#: ../src/filter-enums.cpp:66 -#: ../src/ui/dialog/clonetiler.cpp:832 -#: ../src/ui/dialog/clonetiler.cpp:983 +#: ../src/filter-enums.cpp:67 ../src/ui/dialog/clonetiler.cpp:833 +#: ../src/ui/dialog/clonetiler.cpp:984 #: ../src/ui/dialog/document-properties.cpp:157 #: ../share/extensions/color_HSL_adjust.inx.h:20 #: ../share/extensions/color_blackandwhite.inx.h:3 @@ -1214,39 +1161,35 @@ msgstr "Donne un bosselage doux semblable à du velours" msgid "Comics Cream" msgstr "Crème BD" -#: ../share/filters/filters.svg.h:427 -#: ../share/filters/filters.svg.h:727 -#: ../share/filters/filters.svg.h:731 -#: ../share/filters/filters.svg.h:735 -#: ../share/filters/filters.svg.h:739 -#: ../share/filters/filters.svg.h:743 -#: ../share/filters/filters.svg.h:747 -#: ../share/filters/filters.svg.h:751 -#: ../share/filters/filters.svg.h:755 -#: ../share/filters/filters.svg.h:759 -#: ../share/filters/filters.svg.h:763 -#: ../share/filters/filters.svg.h:767 -#: ../share/filters/filters.svg.h:771 -#: ../share/filters/filters.svg.h:775 -#: ../share/filters/filters.svg.h:779 -#: ../share/filters/filters.svg.h:783 -#: ../share/filters/filters.svg.h:787 -#: ../share/filters/filters.svg.h:791 +#: ../share/filters/filters.svg.h:427 ../share/filters/filters.svg.h:727 +#: ../share/filters/filters.svg.h:731 ../share/filters/filters.svg.h:735 +#: ../share/filters/filters.svg.h:739 ../share/filters/filters.svg.h:743 +#: ../share/filters/filters.svg.h:747 ../share/filters/filters.svg.h:751 +#: ../share/filters/filters.svg.h:755 ../share/filters/filters.svg.h:759 +#: ../share/filters/filters.svg.h:763 ../share/filters/filters.svg.h:767 +#: ../share/filters/filters.svg.h:771 ../share/filters/filters.svg.h:775 +#: ../share/filters/filters.svg.h:779 ../share/filters/filters.svg.h:783 +#: ../share/filters/filters.svg.h:787 ../share/filters/filters.svg.h:791 #: ../share/filters/filters.svg.h:795 msgid "Non realistic 3D shaders" msgstr "Ombrages 3D non réalistes" #: ../share/filters/filters.svg.h:428 msgid "Comics shader with creamy waves transparency" -msgstr "Ombrage de bande dessinée avec une transparence en ondulations crémeuses" +msgstr "" +"Ombrage de bande dessinée avec une transparence en ondulations crémeuses" #: ../share/filters/filters.svg.h:430 msgid "Chewing Gum" msgstr "Chewing-gum" #: ../share/filters/filters.svg.h:432 -msgid "Creates colorizable blotches which smoothly flow over the edges of the lines at their crossings" -msgstr "Crée des taches qu'il est possible de colorer, avec un écoulement homogène sur les croisements des lignes" +msgid "" +"Creates colorizable blotches which smoothly flow over the edges of the lines " +"at their crossings" +msgstr "" +"Crée des taches qu'il est possible de colorer, avec un écoulement homogène " +"sur les croisements des lignes" #: ../share/filters/filters.svg.h:434 msgid "Dark And Glow" @@ -1254,7 +1197,8 @@ msgstr "Ombre et lumière" #: ../share/filters/filters.svg.h:436 msgid "Darkens the edge with an inner blur and adds a flexible glow" -msgstr "Assombrit les bords avec un flou intérieur et ajoute une lueur flexible" +msgstr "" +"Assombrit les bords avec un flou intérieur et ajoute une lueur flexible" #: ../share/filters/filters.svg.h:438 msgid "Warped Rainbow" @@ -1262,7 +1206,9 @@ msgstr "Arc-en-ciel déformé" #: ../share/filters/filters.svg.h:440 msgid "Smooth rainbow colors warped along the edges and colorizable" -msgstr "Couleurs arc-en-ciel douces déformées le long des bords et qu'il est possible de colorer" +msgstr "" +"Couleurs arc-en-ciel douces déformées le long des bords et qu'il est " +"possible de colorer" #: ../share/filters/filters.svg.h:442 msgid "Rough and Dilate" @@ -1278,7 +1224,9 @@ msgstr "Vieille carte postale" #: ../share/filters/filters.svg.h:448 msgid "Slightly posterize and draw edges like on old printed postcards" -msgstr "Légère postérisation et contours dessinés, comme sur une vieille carte postale imprimée" +msgstr "" +"Légère postérisation et contours dessinés, comme sur une vieille carte " +"postale imprimée" #: ../share/filters/filters.svg.h:450 msgid "Dots Transparency" @@ -1301,8 +1249,11 @@ msgid "Smear Transparency" msgstr "Transparence barbouillée" #: ../share/filters/filters.svg.h:460 -msgid "Paint objects with a transparent turbulence which turns around color edges" -msgstr "Peint des objets avec une turbulence transparente tournant autour des bords colorés" +msgid "" +"Paint objects with a transparent turbulence which turns around color edges" +msgstr "" +"Peint des objets avec une turbulence transparente tournant autour des bords " +"colorés" #: ../share/filters/filters.svg.h:462 msgid "Thick Paint" @@ -1325,8 +1276,12 @@ msgid "Embossed Leather" msgstr "Cuir repoussé" #: ../share/filters/filters.svg.h:472 -msgid "Combine a HSL edges detection bump with a leathery or woody and colorizable texture" -msgstr "Combine un bosselage de type détection de contours TSL avec une texture de cuir ou de bois qu'il est possible de colorer" +msgid "" +"Combine a HSL edges detection bump with a leathery or woody and colorizable " +"texture" +msgstr "" +"Combine un bosselage de type détection de contours TSL avec une texture de " +"cuir ou de bois qu'il est possible de colorer" #: ../share/filters/filters.svg.h:474 msgid "Carnaval" @@ -1341,16 +1296,23 @@ msgid "Plastify" msgstr "Plastifier" #: ../share/filters/filters.svg.h:480 -msgid "HSL edges detection bump with a wavy reflective surface effect and variable crumple" -msgstr "Combine un bosselage de type détection de contours TSL avec un effet de surface ondulant et réflectif et un froissement variable" +msgid "" +"HSL edges detection bump with a wavy reflective surface effect and variable " +"crumple" +msgstr "" +"Combine un bosselage de type détection de contours TSL avec un effet de " +"surface ondulant et réflectif et un froissement variable" #: ../share/filters/filters.svg.h:482 msgid "Plaster" msgstr "Plâtre" #: ../share/filters/filters.svg.h:484 -msgid "Combine a HSL edges detection bump with a matte and crumpled surface effect" -msgstr "Combine un bosselage de type détection de contours TSL avec un effet de surface mat et froissé" +msgid "" +"Combine a HSL edges detection bump with a matte and crumpled surface effect" +msgstr "" +"Combine un bosselage de type détection de contours TSL avec un effet de " +"surface mat et froissé" #: ../share/filters/filters.svg.h:486 msgid "Rough Transparency" @@ -1358,7 +1320,8 @@ msgstr "Transparence agitée" #: ../share/filters/filters.svg.h:488 msgid "Adds a turbulent transparency which displaces pixels at the same time" -msgstr "Ajoute une transparence agitée qui déplace plusieurs pixels en même temps" +msgstr "" +"Ajoute une transparence agitée qui déplace plusieurs pixels en même temps" #: ../share/filters/filters.svg.h:490 msgid "Gouache" @@ -1374,7 +1337,8 @@ msgstr "Gravure transparente" #: ../share/filters/filters.svg.h:496 msgid "Gives a transparent engraving effect with rough line and filling" -msgstr "Donne un effet de gravure transparente avec un trait agité et un remplissage" +msgstr "" +"Donne un effet de gravure transparente avec un trait agité et un remplissage" #: ../share/filters/filters.svg.h:498 msgid "Alpha Draw Liquid" @@ -1382,7 +1346,9 @@ msgstr "Dessin transparent liquide" #: ../share/filters/filters.svg.h:500 msgid "Gives a transparent fluid drawing effect with rough line and filling" -msgstr "Donne un effet de dessin liquide et transparent avec un trait agité et un remplissage" +msgstr "" +"Donne un effet de dessin liquide et transparent avec un trait agité et un " +"remplissage" #: ../share/filters/filters.svg.h:502 msgid "Liquid Drawing" @@ -1406,15 +1372,18 @@ msgstr "Acrylique épaisse" #: ../share/filters/filters.svg.h:512 msgid "Thick acrylic paint texture with high texture depth" -msgstr "Texture de peinture acrylique épaisse avec beaucoup de profondeur de texture" +msgstr "" +"Texture de peinture acrylique épaisse avec beaucoup de profondeur de texture" #: ../share/filters/filters.svg.h:514 msgid "Alpha Engraving B" msgstr "Gravure transparente B" #: ../share/filters/filters.svg.h:516 -msgid "Gives a controllable roughness engraving effect to bitmaps and materials" -msgstr "Donne un effet de gravure agitée contrôlable aux bitmaps et aux matières" +msgid "" +"Gives a controllable roughness engraving effect to bitmaps and materials" +msgstr "" +"Donne un effet de gravure agitée contrôlable aux bitmaps et aux matières" #: ../share/filters/filters.svg.h:518 msgid "Lapping" @@ -1428,10 +1397,8 @@ msgstr "Un peu comme de l'eau agitée" msgid "Monochrome Transparency" msgstr "Monochrome transparent" -#: ../share/filters/filters.svg.h:523 -#: ../share/filters/filters.svg.h:527 -#: ../share/filters/filters.svg.h:647 -#: ../share/filters/filters.svg.h:651 +#: ../share/filters/filters.svg.h:523 ../share/filters/filters.svg.h:527 +#: ../share/filters/filters.svg.h:647 ../share/filters/filters.svg.h:651 #: ../share/filters/filters.svg.h:823 #: ../src/extension/internal/filter/transparency.h:70 #: ../src/extension/internal/filter/transparency.h:141 @@ -1443,15 +1410,21 @@ msgstr "Remplissage et transparence" #: ../share/filters/filters.svg.h:524 msgid "Convert to a colorizable transparent positive or negative" -msgstr "Convertit en un positif ou un négatif transparent qu'il est possible de colorer" +msgstr "" +"Convertit en un positif ou un négatif transparent qu'il est possible de " +"colorer" #: ../share/filters/filters.svg.h:526 msgid "Saturation Map" msgstr "Carte de saturation" #: ../share/filters/filters.svg.h:528 -msgid "Creates an approximative semi-transparent and colorizable image of the saturation levels" -msgstr "Crée une image approximative, semi-transparente et à colorer, des niveaux de saturation" +msgid "" +"Creates an approximative semi-transparent and colorizable image of the " +"saturation levels" +msgstr "" +"Crée une image approximative, semi-transparente et à colorer, des niveaux de " +"saturation" #: ../share/filters/filters.svg.h:530 msgid "Riddled" @@ -1467,7 +1440,9 @@ msgstr "Vernis ridé" #: ../share/filters/filters.svg.h:536 msgid "Thick glossy and translucent paint texture with high depth" -msgstr "Texture de peinture épaisse, brillante et translucide, avec beaucoup de profondeur" +msgstr "" +"Texture de peinture épaisse, brillante et translucide, avec beaucoup de " +"profondeur" #: ../share/filters/filters.svg.h:538 msgid "Canvas Bumps" @@ -1483,7 +1458,9 @@ msgstr "Bosselage toilé mat" #: ../share/filters/filters.svg.h:544 msgid "Same as Canvas Bumps but with a diffuse light instead of a specular one" -msgstr "Identique à Bosselage toilé, mais avec une lumière diffuse et non pas spéculaire" +msgstr "" +"Identique à Bosselage toilé, mais avec une lumière diffuse et non pas " +"spéculaire" #: ../share/filters/filters.svg.h:546 msgid "Canvas Bumps Alpha" @@ -1540,7 +1517,9 @@ msgstr "Papier aluminium" #: ../share/filters/filters.svg.h:572 msgid "Metallic foil effect combining two lighting types and variable crumple" -msgstr "Effet de papier d'aluminium combinant deux types de lumières et un froissement variable" +msgstr "" +"Effet de papier d'aluminium combinant deux types de lumières et un " +"froissement variable" #: ../share/filters/filters.svg.h:574 msgid "Soft Colors" @@ -1548,7 +1527,9 @@ msgstr "Couleurs douces" #: ../share/filters/filters.svg.h:576 msgid "Adds a colorizable edges glow inside objects and pictures" -msgstr "Ajoute une lueur pouvant être colorée sur le bord intérieur des objets et images" +msgstr "" +"Ajoute une lueur pouvant être colorée sur le bord intérieur des objets et " +"images" #: ../share/filters/filters.svg.h:578 msgid "Relief Print" @@ -1556,7 +1537,8 @@ msgstr "Impression en relief" #: ../share/filters/filters.svg.h:580 msgid "Bumps effect with a bevel, color flood and complex lighting" -msgstr "Biseau avec des bosselages, du remplissage de couleur et une lumière complexe" +msgstr "" +"Biseau avec des bosselages, du remplissage de couleur et une lumière complexe" #: ../share/filters/filters.svg.h:582 msgid "Growing Cells" @@ -1564,7 +1546,9 @@ msgstr "Cellules vivantes" #: ../share/filters/filters.svg.h:584 msgid "Random rounded living cells like fill" -msgstr "Remplissage avec des formes rondes et aléatoires ressemblant à des cellules vivantes" +msgstr "" +"Remplissage avec des formes rondes et aléatoires ressemblant à des cellules " +"vivantes" #: ../share/filters/filters.svg.h:586 msgid "Fluorescence" @@ -1614,8 +1598,7 @@ msgstr "Effets de bosselage utilisant deux types de lumières" msgid "Linen Canvas" msgstr "Toile de lin" -#: ../share/filters/filters.svg.h:608 -#: ../share/filters/filters.svg.h:616 +#: ../share/filters/filters.svg.h:608 ../share/filters/filters.svg.h:616 msgid "Painting canvas emboss effect" msgstr "Effet de bosselage façon toile de peinture" @@ -1670,8 +1653,11 @@ msgid "Swirl" msgstr "Tourbillon" #: ../share/filters/filters.svg.h:636 -msgid "Paint objects with a transparent turbulence which wraps around color edges" -msgstr "Peint des objets avec une turbulence transparente tournant autour des bords colorés" +msgid "" +"Paint objects with a transparent turbulence which wraps around color edges" +msgstr "" +"Peint des objets avec une turbulence transparente tournant autour des bords " +"colorés" #: ../share/filters/filters.svg.h:638 msgid "Pointillism" @@ -1711,8 +1697,12 @@ msgid "Blur Double" msgstr "Flou double" #: ../share/filters/filters.svg.h:656 -msgid "Overlays two copies with different blur amounts and modifiable blend and composite" -msgstr "Superpose deux copies avec un nouveau de flou différent et des primitives fondu et composite modifiables" +msgid "" +"Overlays two copies with different blur amounts and modifiable blend and " +"composite" +msgstr "" +"Superpose deux copies avec un nouveau de flou différent et des primitives " +"fondu et composite modifiables" #: ../share/filters/filters.svg.h:658 msgid "Image Drawing Basic" @@ -1720,7 +1710,7 @@ msgstr "Dessin d'image de base" #: ../share/filters/filters.svg.h:660 msgid "Enhance and redraw color edges in 1 bit black and white" -msgstr "" +msgstr "Souligne et redessine les bords colorés en noir et blanc 1 bit" #: ../share/filters/filters.svg.h:662 msgid "Poster Draw" @@ -1728,7 +1718,7 @@ msgstr "Dessin de poster" #: ../share/filters/filters.svg.h:664 msgid "Enhance and redraw edges around posterized areas" -msgstr "" +msgstr "Souligne et redessine les bords autours des zones postérisées" #: ../share/filters/filters.svg.h:666 msgid "Cross Noise Poster" @@ -1744,14 +1734,12 @@ msgid "Cross Noise Poster B" msgstr "Poster de bruit croisé B" #: ../share/filters/filters.svg.h:672 -#, fuzzy msgid "Adds a small scale screen like noise locally" -msgstr "Ajoute à l'image un grain de photo" +msgstr "Ajoute une petite zone de bruit localement" #: ../share/filters/filters.svg.h:674 -#, fuzzy msgid "Poster Color Fun" -msgstr "Coller la couleur" +msgstr "Affiche couleur amusante" #: ../share/filters/filters.svg.h:678 msgid "Poster Rough" @@ -1760,19 +1748,18 @@ msgstr "Poster brut" #: ../share/filters/filters.svg.h:680 msgid "Adds roughness to one of the two channels of the Poster paint filter" msgstr "" +"Ajouter de la rugosité à un des deux canaux du filtre Peinture et poster" #: ../share/filters/filters.svg.h:682 msgid "Alpha Monochrome Cracked" msgstr "Monochrome transparent craquelé" -#: ../share/filters/filters.svg.h:684 -#: ../share/filters/filters.svg.h:688 -#: ../share/filters/filters.svg.h:692 -#: ../share/filters/filters.svg.h:704 -#: ../share/filters/filters.svg.h:708 -#: ../share/filters/filters.svg.h:712 +#: ../share/filters/filters.svg.h:684 ../share/filters/filters.svg.h:688 +#: ../share/filters/filters.svg.h:692 ../share/filters/filters.svg.h:704 +#: ../share/filters/filters.svg.h:708 ../share/filters/filters.svg.h:712 msgid "Basic noise fill texture; adjust color in Flood" -msgstr "Texture de remplissage agité de base ; ajuster la couleur avec Remplissage" +msgstr "" +"Texture de remplissage agité de base ; ajuster la couleur avec Remplissage" #: ../share/filters/filters.svg.h:686 msgid "Alpha Turbulent" @@ -1787,18 +1774,16 @@ msgid "Cross Noise B" msgstr "Bruit croisé B" #: ../share/filters/filters.svg.h:696 -#, fuzzy msgid "Adds a small scale crossy graininess" -msgstr "Ajoute à l'image un grain de photo" +msgstr "Ajoute une petite zone de grain croisé" #: ../share/filters/filters.svg.h:698 msgid "Cross Noise" msgstr "Bruit croisé" #: ../share/filters/filters.svg.h:700 -#, fuzzy msgid "Adds a small scale screen like graininess" -msgstr "Ajoute à l'image un grain de photo" +msgstr "Ajoute une petite zone de grain " #: ../share/filters/filters.svg.h:702 msgid "Duotone Turbulent" @@ -1849,16 +1834,14 @@ msgid "Comics" msgstr "Bande dessinée" #: ../share/filters/filters.svg.h:732 -#, fuzzy msgid "Comics cartoon drawing effect" -msgstr "Dessin de bande dessinée au brossé fluide" +msgstr "Effet bande dessinée" #: ../share/filters/filters.svg.h:734 msgid "Comics Draft" msgstr "Ébauche BD" -#: ../share/filters/filters.svg.h:736 -#: ../share/filters/filters.svg.h:768 +#: ../share/filters/filters.svg.h:736 ../share/filters/filters.svg.h:768 msgid "Draft painted cartoon shading with a glassy look" msgstr "Ombrage d'ébauche de bande dessinée peinte avec un aspect vitrage" @@ -1943,9 +1926,8 @@ msgid "Sharp Deco" msgstr "Déco net" #: ../share/filters/filters.svg.h:780 -#, fuzzy msgid "Unrealistic reflections with sharp edges" -msgstr "Effet de chrome aux bords ombrés" +msgstr "Réflexions non réalistes avec des arêtes vives" #: ../share/filters/filters.svg.h:782 msgid "Deep Metal" @@ -1968,9 +1950,8 @@ msgid "Refractive Glass" msgstr "Gel réfringent" #: ../share/filters/filters.svg.h:792 -#, fuzzy msgid "Double reflection through glass with some refraction" -msgstr "Effet de gel avec réfringence forte" +msgstr "Double réflexion à travers verre avec une certaine réfraction" #: ../share/filters/filters.svg.h:794 msgid "Frosted Glass" @@ -1989,9 +1970,8 @@ msgid "Carving emboss effect" msgstr "Effet de bosselage gravé" #: ../share/filters/filters.svg.h:802 -#, fuzzy msgid "Chromolitho Alternate" -msgstr "Chromolitho" +msgstr "Chromolitho alternatif" #: ../share/filters/filters.svg.h:804 msgid "Old chromolithographic effect" @@ -2030,9 +2010,8 @@ msgid "Colorize separately the three color channels" msgstr "Coloration indépendante des trois canaux de couleur" #: ../share/filters/filters.svg.h:822 -#, fuzzy msgid "Posterized Light Eraser" -msgstr "Gomme lumière" +msgstr "Gomme lumière postérisée" #: ../share/filters/filters.svg.h:824 msgid "Create a semi transparent posterized image" @@ -2052,7 +2031,8 @@ msgstr "Simuler CMJ" #: ../share/filters/filters.svg.h:832 msgid "Render Cyan, Magenta and Yellow channels with a colorizable background" -msgstr "Rendu des canaux cyan, magenta et jaune avec un fond que l'on peut colorer" +msgstr "" +"Rendu des canaux cyan, magenta et jaune avec un fond que l'on peut colorer" #: ../share/filters/filters.svg.h:834 msgid "Contouring table" @@ -3078,7 +3058,7 @@ msgstr "rose clair (#FFB6C1)" #: ../share/palettes/palettes.h:166 msgctxt "Palette" msgid "rebeccapurple (#663399)" -msgstr "" +msgstr "Pourpre Rebecca (#663399)" #. Palette: ./Tango-Palette.gpl #: ../share/palettes/palettes.h:167 @@ -3426,467 +3406,398 @@ msgstr "Panneaux signalétiques AIGA" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:3 -#: ../share/symbols/symbols.h:4 -#: ../share/symbols/symbols.h:277 -#: ../share/symbols/symbols.h:278 +#: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4 +#: ../share/symbols/symbols.h:281 ../share/symbols/symbols.h:282 msgctxt "Symbol" msgid "Telephone" msgstr "Téléphone" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:5 -#: ../share/symbols/symbols.h:6 +#: ../share/symbols/symbols.h:5 ../share/symbols/symbols.h:6 msgctxt "Symbol" msgid "Mail" msgstr "Courriel" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:7 -#: ../share/symbols/symbols.h:8 +#: ../share/symbols/symbols.h:7 ../share/symbols/symbols.h:8 msgctxt "Symbol" msgid "Currency Exchange" msgstr "Bureau de change" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:9 -#: ../share/symbols/symbols.h:10 +#: ../share/symbols/symbols.h:9 ../share/symbols/symbols.h:10 msgctxt "Symbol" msgid "Currency Exchange - Euro" msgstr "Bureau de changes - Euro" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:11 -#: ../share/symbols/symbols.h:12 +#: ../share/symbols/symbols.h:11 ../share/symbols/symbols.h:12 msgctxt "Symbol" msgid "Cashier" msgstr "Caisse" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:13 -#: ../share/symbols/symbols.h:14 -#: ../share/symbols/symbols.h:213 -#: ../share/symbols/symbols.h:214 +#: ../share/symbols/symbols.h:13 ../share/symbols/symbols.h:14 +#: ../share/symbols/symbols.h:213 ../share/symbols/symbols.h:214 msgctxt "Symbol" msgid "First Aid" msgstr "Premiers secours" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:15 -#: ../share/symbols/symbols.h:16 +#: ../share/symbols/symbols.h:15 ../share/symbols/symbols.h:16 msgctxt "Symbol" msgid "Lost and Found" msgstr "Objets trouvés" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:17 -#: ../share/symbols/symbols.h:18 +#: ../share/symbols/symbols.h:17 ../share/symbols/symbols.h:18 msgctxt "Symbol" msgid "Coat Check" msgstr "Vestiaire" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:19 -#: ../share/symbols/symbols.h:20 +#: ../share/symbols/symbols.h:19 ../share/symbols/symbols.h:20 msgctxt "Symbol" msgid "Baggage Lockers" msgstr "Casiers à bagages" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:21 -#: ../share/symbols/symbols.h:22 +#: ../share/symbols/symbols.h:21 ../share/symbols/symbols.h:22 msgctxt "Symbol" msgid "Escalator" msgstr "Escalator montant" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:23 -#: ../share/symbols/symbols.h:24 +#: ../share/symbols/symbols.h:23 ../share/symbols/symbols.h:24 msgctxt "Symbol" msgid "Escalator Down" msgstr "Escalator descendant" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:25 -#: ../share/symbols/symbols.h:26 +#: ../share/symbols/symbols.h:25 ../share/symbols/symbols.h:26 msgctxt "Symbol" msgid "Escalator Up" msgstr "Escalator montant" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:27 -#: ../share/symbols/symbols.h:28 +#: ../share/symbols/symbols.h:27 ../share/symbols/symbols.h:28 msgctxt "Symbol" msgid "Stairs" msgstr "Escaliers" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:29 -#: ../share/symbols/symbols.h:30 +#: ../share/symbols/symbols.h:29 ../share/symbols/symbols.h:30 msgctxt "Symbol" msgid "Stairs Down" msgstr "Escaliers descendants" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:31 -#: ../share/symbols/symbols.h:32 +#: ../share/symbols/symbols.h:31 ../share/symbols/symbols.h:32 msgctxt "Symbol" msgid "Stairs Up" msgstr "Escaliers montants" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:33 -#: ../share/symbols/symbols.h:34 +#: ../share/symbols/symbols.h:33 ../share/symbols/symbols.h:34 msgctxt "Symbol" msgid "Elevator" msgstr "Ascenseur" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:35 -#: ../share/symbols/symbols.h:36 +#: ../share/symbols/symbols.h:35 ../share/symbols/symbols.h:36 msgctxt "Symbol" msgid "Toilets - Men" msgstr "Toilettes - Hommes" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:37 -#: ../share/symbols/symbols.h:38 +#: ../share/symbols/symbols.h:37 ../share/symbols/symbols.h:38 msgctxt "Symbol" msgid "Toilets - Women" msgstr "Toilettes - Femmes" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:39 -#: ../share/symbols/symbols.h:40 +#: ../share/symbols/symbols.h:39 ../share/symbols/symbols.h:40 msgctxt "Symbol" msgid "Toilets" msgstr "Toilettes" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:41 -#: ../share/symbols/symbols.h:42 +#: ../share/symbols/symbols.h:41 ../share/symbols/symbols.h:42 msgctxt "Symbol" msgid "Nursery" msgstr "Garderie" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:43 -#: ../share/symbols/symbols.h:44 +#: ../share/symbols/symbols.h:43 ../share/symbols/symbols.h:44 msgctxt "Symbol" msgid "Drinking Fountain" msgstr "Fontaine d'eau potable" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:45 -#: ../share/symbols/symbols.h:46 +#: ../share/symbols/symbols.h:45 ../share/symbols/symbols.h:46 msgctxt "Symbol" msgid "Waiting Room" msgstr "Salle d'attente" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:47 -#: ../share/symbols/symbols.h:48 -#: ../share/symbols/symbols.h:231 -#: ../share/symbols/symbols.h:232 +#: ../share/symbols/symbols.h:47 ../share/symbols/symbols.h:48 +#: ../share/symbols/symbols.h:231 ../share/symbols/symbols.h:232 msgctxt "Symbol" msgid "Information" msgstr "Information" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:49 -#: ../share/symbols/symbols.h:50 +#: ../share/symbols/symbols.h:49 ../share/symbols/symbols.h:50 msgctxt "Symbol" msgid "Hotel Information" msgstr "Espace information de l’hôtel" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:51 -#: ../share/symbols/symbols.h:52 +#: ../share/symbols/symbols.h:51 ../share/symbols/symbols.h:52 msgctxt "Symbol" msgid "Air Transportation" msgstr "Transport aérien" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:53 -#: ../share/symbols/symbols.h:54 +#: ../share/symbols/symbols.h:53 ../share/symbols/symbols.h:54 msgctxt "Symbol" msgid "Heliport" msgstr "Héliport" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:55 -#: ../share/symbols/symbols.h:56 +#: ../share/symbols/symbols.h:55 ../share/symbols/symbols.h:56 msgctxt "Symbol" msgid "Taxi" msgstr "Taxi" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:57 -#: ../share/symbols/symbols.h:58 +#: ../share/symbols/symbols.h:57 ../share/symbols/symbols.h:58 msgctxt "Symbol" msgid "Bus" msgstr "Bus" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:59 -#: ../share/symbols/symbols.h:60 +#: ../share/symbols/symbols.h:59 ../share/symbols/symbols.h:60 msgctxt "Symbol" msgid "Ground Transportation" msgstr "Transport routier" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:61 -#: ../share/symbols/symbols.h:62 +#: ../share/symbols/symbols.h:61 ../share/symbols/symbols.h:62 msgctxt "Symbol" msgid "Rail Transportation" msgstr "Transport ferroviaire" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:63 -#: ../share/symbols/symbols.h:64 +#: ../share/symbols/symbols.h:63 ../share/symbols/symbols.h:64 msgctxt "Symbol" msgid "Water Transportation" msgstr "Transport maritime" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:65 -#: ../share/symbols/symbols.h:66 +#: ../share/symbols/symbols.h:65 ../share/symbols/symbols.h:66 msgctxt "Symbol" msgid "Car Rental" msgstr "Location de voiture" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:67 -#: ../share/symbols/symbols.h:68 +#: ../share/symbols/symbols.h:67 ../share/symbols/symbols.h:68 msgctxt "Symbol" msgid "Restaurant" msgstr "Restaurant" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:69 -#: ../share/symbols/symbols.h:70 +#: ../share/symbols/symbols.h:69 ../share/symbols/symbols.h:70 msgctxt "Symbol" msgid "Coffeeshop" msgstr "Café" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:71 -#: ../share/symbols/symbols.h:72 +#: ../share/symbols/symbols.h:71 ../share/symbols/symbols.h:72 msgctxt "Symbol" msgid "Bar" msgstr "Bar" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:73 -#: ../share/symbols/symbols.h:74 +#: ../share/symbols/symbols.h:73 ../share/symbols/symbols.h:74 msgctxt "Symbol" msgid "Shops" msgstr "Boutiques" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:75 -#: ../share/symbols/symbols.h:76 +#: ../share/symbols/symbols.h:75 ../share/symbols/symbols.h:76 msgctxt "Symbol" msgid "Barber Shop - Beauty Salon" msgstr "Salon de beauté - salon de coiffure" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:77 -#: ../share/symbols/symbols.h:78 +#: ../share/symbols/symbols.h:77 ../share/symbols/symbols.h:78 msgctxt "Symbol" msgid "Barber Shop" msgstr "Salon de coiffure" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:79 -#: ../share/symbols/symbols.h:80 +#: ../share/symbols/symbols.h:79 ../share/symbols/symbols.h:80 msgctxt "Symbol" msgid "Beauty Salon" msgstr "Salon de beauté" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:81 -#: ../share/symbols/symbols.h:82 +#: ../share/symbols/symbols.h:81 ../share/symbols/symbols.h:82 msgctxt "Symbol" msgid "Ticket Purchase" msgstr "Achat de billets" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:83 -#: ../share/symbols/symbols.h:84 +#: ../share/symbols/symbols.h:83 ../share/symbols/symbols.h:84 msgctxt "Symbol" msgid "Baggage Check In" msgstr "Enregistrement des bagages" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:85 -#: ../share/symbols/symbols.h:86 +#: ../share/symbols/symbols.h:85 ../share/symbols/symbols.h:86 msgctxt "Symbol" msgid "Baggage Claim" msgstr "Réception des bagages" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:87 -#: ../share/symbols/symbols.h:88 +#: ../share/symbols/symbols.h:87 ../share/symbols/symbols.h:88 msgctxt "Symbol" msgid "Customs" msgstr "Douane" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:89 -#: ../share/symbols/symbols.h:90 +#: ../share/symbols/symbols.h:89 ../share/symbols/symbols.h:90 msgctxt "Symbol" msgid "Immigration" msgstr "Immigration" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:91 -#: ../share/symbols/symbols.h:92 +#: ../share/symbols/symbols.h:91 ../share/symbols/symbols.h:92 msgctxt "Symbol" msgid "Departing Flights" msgstr "Vols au départ" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:93 -#: ../share/symbols/symbols.h:94 +#: ../share/symbols/symbols.h:93 ../share/symbols/symbols.h:94 msgctxt "Symbol" msgid "Arriving Flights" msgstr "Vols à l'arrivée" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:95 -#: ../share/symbols/symbols.h:96 +#: ../share/symbols/symbols.h:95 ../share/symbols/symbols.h:96 msgctxt "Symbol" msgid "Smoking" msgstr "Fumeur" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:97 -#: ../share/symbols/symbols.h:98 +#: ../share/symbols/symbols.h:97 ../share/symbols/symbols.h:98 msgctxt "Symbol" msgid "No Smoking" msgstr "Non fumeur" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:99 -#: ../share/symbols/symbols.h:100 -#: ../share/symbols/symbols.h:241 -#: ../share/symbols/symbols.h:242 +#: ../share/symbols/symbols.h:99 ../share/symbols/symbols.h:100 +#: ../share/symbols/symbols.h:245 ../share/symbols/symbols.h:246 msgctxt "Symbol" msgid "Parking" msgstr "Parking" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:101 -#: ../share/symbols/symbols.h:102 +#: ../share/symbols/symbols.h:101 ../share/symbols/symbols.h:102 msgctxt "Symbol" msgid "No Parking" msgstr "Non fumeur" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:103 -#: ../share/symbols/symbols.h:104 +#: ../share/symbols/symbols.h:103 ../share/symbols/symbols.h:104 msgctxt "Symbol" msgid "No Dogs" msgstr "Interdit aux chiens" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:105 -#: ../share/symbols/symbols.h:106 +#: ../share/symbols/symbols.h:105 ../share/symbols/symbols.h:106 msgctxt "Symbol" msgid "No Entry" msgstr "Entrée interdite" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:107 -#: ../share/symbols/symbols.h:108 +#: ../share/symbols/symbols.h:107 ../share/symbols/symbols.h:108 msgctxt "Symbol" msgid "Exit" msgstr "Sortie" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:109 -#: ../share/symbols/symbols.h:110 +#: ../share/symbols/symbols.h:109 ../share/symbols/symbols.h:110 msgctxt "Symbol" msgid "Fire Extinguisher" msgstr "Extincteur" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:111 -#: ../share/symbols/symbols.h:112 +#: ../share/symbols/symbols.h:111 ../share/symbols/symbols.h:112 msgctxt "Symbol" msgid "Right Arrow" msgstr "Flèche vers la droite" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:113 -#: ../share/symbols/symbols.h:114 +#: ../share/symbols/symbols.h:113 ../share/symbols/symbols.h:114 msgctxt "Symbol" msgid "Forward and Right Arrow" msgstr "Flèche vers l'avant et la droite" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:115 -#: ../share/symbols/symbols.h:116 +#: ../share/symbols/symbols.h:115 ../share/symbols/symbols.h:116 msgctxt "Symbol" msgid "Up Arrow" msgstr "Flèche vers le haut" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:117 -#: ../share/symbols/symbols.h:118 +#: ../share/symbols/symbols.h:117 ../share/symbols/symbols.h:118 msgctxt "Symbol" msgid "Forward and Left Arrow" msgstr "Flèche vers l'avant et la gauche" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:119 -#: ../share/symbols/symbols.h:120 +#: ../share/symbols/symbols.h:119 ../share/symbols/symbols.h:120 msgctxt "Symbol" msgid "Left Arrow" msgstr "Flèche vers la gauche" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:121 -#: ../share/symbols/symbols.h:122 +#: ../share/symbols/symbols.h:121 ../share/symbols/symbols.h:122 msgctxt "Symbol" msgid "Left and Down Arrow" msgstr "Flèche vers le bas et la gauche" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:123 -#: ../share/symbols/symbols.h:124 +#: ../share/symbols/symbols.h:123 ../share/symbols/symbols.h:124 msgctxt "Symbol" msgid "Down Arrow" msgstr "Flèche vers le bas" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:125 -#: ../share/symbols/symbols.h:126 +#: ../share/symbols/symbols.h:125 ../share/symbols/symbols.h:126 msgctxt "Symbol" msgid "Right and Down Arrow" msgstr "Flèche vers la droite et le bas" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:127 -#: ../share/symbols/symbols.h:128 +#: ../share/symbols/symbols.h:127 ../share/symbols/symbols.h:128 msgctxt "Symbol" msgid "NPS Wheelchair Accessible - 1996" msgstr "Accessible en fauteuil roulant (NPS - 1996)" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:129 -#: ../share/symbols/symbols.h:130 +#: ../share/symbols/symbols.h:129 ../share/symbols/symbols.h:130 msgctxt "Symbol" msgid "NPS Wheelchair Accessible" msgstr "Accessible en fauteuil roulant (NPS)" #. Symbols: ./AigaSymbols.svg -#: ../share/symbols/symbols.h:131 -#: ../share/symbols/symbols.h:132 +#: ../share/symbols/symbols.h:131 ../share/symbols/symbols.h:132 msgctxt "Symbol" msgid "New Wheelchair Accessible" msgstr "Accessible en fauteuil roulant (Nouveau)" @@ -3959,7 +3870,6 @@ msgstr "Processus" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:144 -#, fuzzy msgctxt "Symbol" msgid "Input/Output" msgstr "Entrée/sortie" @@ -4008,10 +3918,9 @@ msgstr "Affichage" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:152 -#, fuzzy msgctxt "Symbol" msgid "Auxiliary Operation" -msgstr "Opération manuelle" +msgstr "Opération auxiliaire" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:153 @@ -4027,37 +3936,33 @@ msgstr "Extraction" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:155 -#, fuzzy msgctxt "Symbol" msgid "Terminal/Interrupt" -msgstr "Terminateur" +msgstr "Fin de processus" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:156 -#, fuzzy msgctxt "Symbol" msgid "Punched Card" -msgstr "Bande perforée" +msgstr "Carte perforée" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:157 -#, fuzzy msgctxt "Symbol" msgid "Punch Tape" msgstr "Bande perforée" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:158 -#, fuzzy msgctxt "Symbol" msgid "Online Storage" -msgstr "Stockage interne" +msgstr "Données stockées" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:159 msgctxt "Symbol" msgid "Keying" -msgstr "" +msgstr "Saisie" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:160 @@ -4073,23 +3978,21 @@ msgstr "Connecteur" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:162 -#, fuzzy msgctxt "Symbol" msgid "Off-Page Connector" -msgstr "Connecteur" +msgstr "Renvoi page suivante" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:163 -#, fuzzy msgctxt "Symbol" msgid "Transmittal Tape" -msgstr "Antenne" +msgstr "Bande de transmission" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:164 msgctxt "Symbol" msgid "Communication Link" -msgstr "Lien de communication" +msgstr "Traitement à distance" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:165 @@ -4107,7 +4010,7 @@ msgstr "Commentaire ou annotation" #: ../share/symbols/symbols.h:167 msgctxt "Symbol" msgid "Core" -msgstr "" +msgstr "Stockage interne" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:168 @@ -4119,21 +4022,19 @@ msgstr "Processus prédéfini" #: ../share/symbols/symbols.h:169 msgctxt "Symbol" msgid "Magnetic Disk (Database)" -msgstr "Disque magnétique (base de données)" +msgstr "Données séquentielles" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:170 -#, fuzzy msgctxt "Symbol" msgid "Magnetic Drum (Direct Access)" -msgstr "Disque magnétique (base de données)" +msgstr "Données directes" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:171 -#, fuzzy msgctxt "Symbol" msgid "Offline Storage" -msgstr "Stockage interne" +msgstr "Données hors ligne" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:172 @@ -4157,13 +4058,13 @@ msgstr "Temporisation" #: ../share/symbols/symbols.h:175 msgctxt "Symbol" msgid "Loop Limit Begin" -msgstr "" +msgstr "Limite de début de boucle" #. Symbols: ./FlowSymbols.svg #: ../share/symbols/symbols.h:176 msgctxt "Symbol" msgid "Loop Limit End" -msgstr "" +msgstr "Limite de fin de boucle" #. Symbols: ./LogicSymbols.svg #: ../share/symbols/symbols.h:177 @@ -4235,612 +4136,308 @@ msgstr "Porte non (petite)" #: ../share/symbols/symbols.h:188 msgctxt "Symbol" msgid "United States National Park Service Map Symbols" -msgstr "" +msgstr "Symboles du service des parcs nationaux des États-Unis" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:189 -#: ../share/symbols/symbols.h:190 +#: ../share/symbols/symbols.h:189 ../share/symbols/symbols.h:190 msgctxt "Symbol" msgid "Airport" msgstr "Aéroport" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:191 -#: ../share/symbols/symbols.h:192 +#: ../share/symbols/symbols.h:191 ../share/symbols/symbols.h:192 msgctxt "Symbol" msgid "Amphitheatre" msgstr "Amphithéâtre" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:193 -#: ../share/symbols/symbols.h:194 -#, fuzzy +#: ../share/symbols/symbols.h:193 ../share/symbols/symbols.h:194 msgctxt "Symbol" msgid "Bicycle Trail" -msgstr "Magasin de vélos" +msgstr "Piste cyclable" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:195 -#: ../share/symbols/symbols.h:196 +#: ../share/symbols/symbols.h:195 ../share/symbols/symbols.h:196 msgctxt "Symbol" msgid "Boat Launch" -msgstr "" +msgstr "Cale de mise à l'eau" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:197 -#: ../share/symbols/symbols.h:198 +#: ../share/symbols/symbols.h:197 ../share/symbols/symbols.h:198 msgctxt "Symbol" msgid "Boat Tour" -msgstr "" +msgstr "Excursion en bateau" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:199 -#: ../share/symbols/symbols.h:200 +#: ../share/symbols/symbols.h:199 ../share/symbols/symbols.h:200 msgctxt "Symbol" msgid "Bus Stop" msgstr "Arrêt de bus" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:201 -#: ../share/symbols/symbols.h:202 -#, fuzzy +#: ../share/symbols/symbols.h:201 ../share/symbols/symbols.h:202 msgctxt "Symbol" msgid "Campfire" -msgstr "Camping" +msgstr "Feu de camp" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:203 -#: ../share/symbols/symbols.h:204 -#, fuzzy +#: ../share/symbols/symbols.h:203 ../share/symbols/symbols.h:204 msgctxt "Symbol" msgid "Campground" -msgstr "Arrondi de la terminaison" +msgstr "Terrain de camping" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:205 -#: ../share/symbols/symbols.h:206 +#: ../share/symbols/symbols.h:205 ../share/symbols/symbols.h:206 msgctxt "Symbol" msgid "CanoeAccess" -msgstr "" +msgstr "Accès en canoë" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:207 -#: ../share/symbols/symbols.h:208 +#: ../share/symbols/symbols.h:207 ../share/symbols/symbols.h:208 msgctxt "Symbol" msgid "Crosscountry Ski Trail" -msgstr "" +msgstr "Piste de ski de fond" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:209 -#: ../share/symbols/symbols.h:210 +#: ../share/symbols/symbols.h:209 ../share/symbols/symbols.h:210 msgctxt "Symbol" msgid "Downhill Skiing" -msgstr "" +msgstr "Ski alpin" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:211 -#: ../share/symbols/symbols.h:212 -#, fuzzy +#: ../share/symbols/symbols.h:211 ../share/symbols/symbols.h:212 msgctxt "Symbol" msgid "Drinking Water" msgstr "Fontaine d'eau potable" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:215 -#: ../share/symbols/symbols.h:216 -#, fuzzy +#: ../share/symbols/symbols.h:215 ../share/symbols/symbols.h:216 msgctxt "Symbol" msgid "Fishing" -msgstr "Poissonnier" +msgstr "Pêche" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:217 -#: ../share/symbols/symbols.h:218 +#: ../share/symbols/symbols.h:217 ../share/symbols/symbols.h:218 msgctxt "Symbol" msgid "Food Service" -msgstr "" +msgstr "Restauration" #. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:219 ../share/symbols/symbols.h:220 +msgctxt "Symbol" +msgid "Four Wheel Drive Road" +msgstr "Route pour véhicule tout-terrain" + #. Symbols: ./MapSymbolsNPS.svg -#. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:221 -#: ../share/symbols/symbols.h:222 -#, fuzzy +#: ../share/symbols/symbols.h:221 ../share/symbols/symbols.h:222 msgctxt "Symbol" msgid "Gas Station" -msgstr "Gare routière" +msgstr "Station service" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:223 -#: ../share/symbols/symbols.h:224 -#, fuzzy +#: ../share/symbols/symbols.h:223 ../share/symbols/symbols.h:224 msgctxt "Symbol" msgid "Golfing" msgstr "Golf" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:225 -#: ../share/symbols/symbols.h:226 +#: ../share/symbols/symbols.h:225 ../share/symbols/symbols.h:226 msgctxt "Symbol" msgid "Horseback Riding" -msgstr "" +msgstr "Équitation" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:227 -#: ../share/symbols/symbols.h:228 +#: ../share/symbols/symbols.h:227 ../share/symbols/symbols.h:228 msgctxt "Symbol" msgid "Hospital" msgstr "Hôpital" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:229 -#: ../share/symbols/symbols.h:230 +#: ../share/symbols/symbols.h:229 ../share/symbols/symbols.h:230 msgctxt "Symbol" msgid "Ice Skating" msgstr "Patinoire" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:233 -#: ../share/symbols/symbols.h:234 +#: ../share/symbols/symbols.h:233 ../share/symbols/symbols.h:234 msgctxt "Symbol" msgid "Litter Receptacle" -msgstr "" +msgstr "Poubelle" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:235 -#: ../share/symbols/symbols.h:236 +#: ../share/symbols/symbols.h:235 ../share/symbols/symbols.h:236 msgctxt "Symbol" msgid "Lodging" -msgstr "" +msgstr "Hébergement" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:237 -#: ../share/symbols/symbols.h:238 +#: ../share/symbols/symbols.h:237 ../share/symbols/symbols.h:238 msgctxt "Symbol" msgid "Marina" msgstr "Marina" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:239 -#: ../share/symbols/symbols.h:240 +#: ../share/symbols/symbols.h:239 ../share/symbols/symbols.h:240 +msgctxt "Symbol" +msgid "Motorbike Trail" +msgstr "Piste pour moto" + +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:241 ../share/symbols/symbols.h:242 +msgctxt "Symbol" +msgid "Radiator Water" +msgstr "Liquide de refroidissement" + +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:243 ../share/symbols/symbols.h:244 msgctxt "Symbol" msgid "Recycling" msgstr "Recyclage" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:243 -#: ../share/symbols/symbols.h:244 -#, fuzzy +#: ../share/symbols/symbols.h:247 ../share/symbols/symbols.h:248 msgctxt "Symbol" msgid "Pets On Leash" -msgstr "Texte suivant un chemin" +msgstr "Animaux en laisse" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:245 -#: ../share/symbols/symbols.h:246 -#, fuzzy +#: ../share/symbols/symbols.h:249 ../share/symbols/symbols.h:250 msgctxt "Symbol" msgid "Picnic Area" -msgstr "Parc, zone de pique-nique" +msgstr "Zone de pique-nique" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:247 -#: ../share/symbols/symbols.h:248 +#: ../share/symbols/symbols.h:251 ../share/symbols/symbols.h:252 msgctxt "Symbol" msgid "Post Office" msgstr "Bureau de poste" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:249 -#: ../share/symbols/symbols.h:250 -#, fuzzy +#: ../share/symbols/symbols.h:253 ../share/symbols/symbols.h:254 msgctxt "Symbol" msgid "Ranger Station" -msgstr "Station d'essence" +msgstr "Garde forestier" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:251 -#: ../share/symbols/symbols.h:252 -#, fuzzy +#: ../share/symbols/symbols.h:255 ../share/symbols/symbols.h:256 msgctxt "Symbol" msgid "RV Campground" -msgstr "Arrondi de la terminaison" +msgstr "Terrain de caravaning" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:253 -#: ../share/symbols/symbols.h:254 +#: ../share/symbols/symbols.h:257 ../share/symbols/symbols.h:258 msgctxt "Symbol" msgid "Restrooms" -msgstr "" +msgstr "Toilettes" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:255 -#: ../share/symbols/symbols.h:256 +#: ../share/symbols/symbols.h:259 ../share/symbols/symbols.h:260 msgctxt "Symbol" msgid "Sailing" msgstr "Voile" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:257 -#: ../share/symbols/symbols.h:258 +#: ../share/symbols/symbols.h:261 ../share/symbols/symbols.h:262 msgctxt "Symbol" msgid "Sanitary Disposal Station" -msgstr "" +msgstr "Aire de service pour camping-car" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:259 -#: ../share/symbols/symbols.h:260 -#, fuzzy +#: ../share/symbols/symbols.h:263 ../share/symbols/symbols.h:264 msgctxt "Symbol" msgid "Scuba Diving" msgstr "Plongée" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:261 -#: ../share/symbols/symbols.h:262 +#: ../share/symbols/symbols.h:265 ../share/symbols/symbols.h:266 msgctxt "Symbol" msgid "Self Guided Trail" -msgstr "" +msgstr "Sentier balisé" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:263 -#: ../share/symbols/symbols.h:264 +#: ../share/symbols/symbols.h:267 ../share/symbols/symbols.h:268 msgctxt "Symbol" msgid "Shelter" msgstr "Abri" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:265 -#: ../share/symbols/symbols.h:266 -#, fuzzy +#: ../share/symbols/symbols.h:269 ../share/symbols/symbols.h:270 msgctxt "Symbol" msgid "Showers" -msgstr "Afficher :" +msgstr "Douches" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:267 -#: ../share/symbols/symbols.h:268 -#, fuzzy +#: ../share/symbols/symbols.h:271 ../share/symbols/symbols.h:272 msgctxt "Symbol" msgid "Sledding" -msgstr "Lors de la lecture" +msgstr "Luge" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:269 -#: ../share/symbols/symbols.h:270 +#: ../share/symbols/symbols.h:273 ../share/symbols/symbols.h:274 msgctxt "Symbol" msgid "SnowmobileTrail" -msgstr "" +msgstr "Sentier pour motoneige" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:271 -#: ../share/symbols/symbols.h:272 -#, fuzzy +#: ../share/symbols/symbols.h:275 ../share/symbols/symbols.h:276 msgctxt "Symbol" msgid "Stable" -msgstr "Table" +msgstr "Écurie" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:273 -#: ../share/symbols/symbols.h:274 -#, fuzzy +#: ../share/symbols/symbols.h:277 ../share/symbols/symbols.h:278 msgctxt "Symbol" msgid "Store" -msgstr "Données stockées" +msgstr "Boutique" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:275 -#: ../share/symbols/symbols.h:276 +#: ../share/symbols/symbols.h:279 ../share/symbols/symbols.h:280 msgctxt "Symbol" msgid "Swimming" msgstr "Natation" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:279 -#: ../share/symbols/symbols.h:280 -#, fuzzy +#: ../share/symbols/symbols.h:283 ../share/symbols/symbols.h:284 msgctxt "Symbol" msgid "Emergency Telephone" -msgstr "Téléphone" +msgstr "Téléphone de secours" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:281 -#: ../share/symbols/symbols.h:282 -#, fuzzy +#: ../share/symbols/symbols.h:285 ../share/symbols/symbols.h:286 msgctxt "Symbol" msgid "Trailhead" -msgstr "Braille" +msgstr "Départ de randonnée" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:283 -#: ../share/symbols/symbols.h:284 -#, fuzzy +#: ../share/symbols/symbols.h:287 ../share/symbols/symbols.h:288 msgctxt "Symbol" msgid "Wheelchair Accessible" -msgstr "Accessible en fauteuil roulant (NPS)" +msgstr "Accessible en fauteuil roulant" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:285 -#: ../share/symbols/symbols.h:286 +#: ../share/symbols/symbols.h:289 ../share/symbols/symbols.h:290 msgctxt "Symbol" msgid "Wind Surfing" msgstr "Planche à voile" #. Symbols: ./MapSymbolsNPS.svg -#. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:220 -#: ../share/symbols/symbols.h:219 +#: ../share/symbols/symbols.h:291 msgctxt "Symbol" -msgid "Four Wheel Drive Road)," -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "A4 Landscape Page" -msgstr "Page A4 paysage" - -#: ../share/templates/templates.h:1 -msgid "Empty A4 landscape sheet" -msgstr "Feuille A4 vierge, au format paysage" - -#: ../share/templates/templates.h:1 -msgid "A4 paper sheet empty landscape" -msgstr "Feuille de papier A4 vierge au format paysage" - -#: ../share/templates/templates.h:1 -msgid "A4 Page" -msgstr "Page A4" - -#: ../share/templates/templates.h:1 -msgid "Empty A4 sheet" -msgstr "Feuille A4 vierge" - -#: ../share/templates/templates.h:1 -msgid "A4 paper sheet empty" -msgstr "Feuille de papier A4 vierge" - -#: ../share/templates/templates.h:1 -msgid "Black Opaque" -msgstr "Opaque noire" - -#: ../share/templates/templates.h:1 -msgid "Empty black page" -msgstr "Page noire vierge" - -#: ../share/templates/templates.h:1 -msgid "black opaque empty" -msgstr "noir opaque vierge" - -#: ../share/templates/templates.h:1 -msgid "White Opaque" -msgstr "Opaque blanche" - -#: ../share/templates/templates.h:1 -msgid "Empty white page" -msgstr "Page blanche vierge" - -#: ../share/templates/templates.h:1 -msgid "white opaque empty" -msgstr "blanche opaque vierge" - -#: ../share/templates/templates.h:1 -msgid "Business Card 85x54mm" -msgstr "Carte de visite 85x54 mm" - -#: ../share/templates/templates.h:1 -msgid "Empty business card template." -msgstr "Modèle de carte de visite vierge." - -#: ../share/templates/templates.h:1 -msgid "business card empty 85x54" -msgstr "carte de visite vierge 85x54" - -#: ../share/templates/templates.h:1 -msgid "Business Card 90x50mm" -msgstr "Carte de visite 90x50 mm" - -#: ../share/templates/templates.h:1 -msgid "business card empty 90x50" -msgstr "carte de visite vierge 90x50" - -#: ../share/templates/templates.h:1 -msgid "CD Cover 300dpi" -msgstr "Pochette de CD 300 ppp" +msgid "Blank" +msgstr "Vide" #: ../share/templates/templates.h:1 -msgid "Empty CD box cover." -msgstr "Pochette de boîte de CD vierge." - -#: ../share/templates/templates.h:1 -msgid "CD cover disc disk 300dpi box" -msgstr "CD pochette disque 300 boîtes" - -#: ../share/templates/templates.h:1 -msgid "CD Label 120x120 " +#, fuzzy +msgid "CD Label 120mmx120mm " msgstr "Label de CD 120x120 " #: ../share/templates/templates.h:1 msgid "Simple CD Label template with disc's pattern." -msgstr "" +msgstr "Modèle pour label de CD simple avec motif de disque." #: ../share/templates/templates.h:1 msgid "CD label 120x120 disc disk" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "DVD Cover Regular 300dpi " -msgstr "Boîtier de DVD normal, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD covers." -msgstr "Modèle pour boîtier DVD double." - -#: ../share/templates/templates.h:1 -msgid "DVD cover regular 300dpi" -msgstr "Boîtier de DVD normal, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "DVD Cover Slim 300dpi " -msgstr "Boîtier de DVD fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD slim covers." -msgstr "Modèle pour boîtier DVD fin double." - -#: ../share/templates/templates.h:1 -msgid "DVD cover slim 300dpi" -msgstr "Boîtier de DVD fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "DVD Cover Superslim 300dpi " -msgstr "Boîtier de DVD extra-fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD superslim covers." -msgstr "Modèle pour boîtier DVD extra-fin double." - -#: ../share/templates/templates.h:1 -msgid "DVD cover superslim 300dpi" -msgstr "Boîtier de DVD extra-fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "DVD Cover Ultraslim 300dpi " -msgstr "Boîtier de DVD ultra-fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "Template for both-sides DVD ultraslim covers." -msgstr "Modèle pour boîtier DVD ultra-fin double." - -#: ../share/templates/templates.h:1 -msgid "DVD cover ultraslim 300dpi" -msgstr "Boîtier de DVD ultra-fin, 300 ppp" - -#: ../share/templates/templates.h:1 -msgid "Desktop 1024x768" -msgstr "Bureau 1024x768" - -#: ../share/templates/templates.h:1 -msgid "Empty desktop size sheet" -msgstr "Modèle de fond d'écran vide" - -#: ../share/templates/templates.h:1 -msgid "desktop 1024x768 wallpaper" -msgstr "fond d'écran de bureau 1024x768" - -#: ../share/templates/templates.h:1 -msgid "Desktop 1600x1200" -msgstr "Bureau 1600x1200" - -#: ../share/templates/templates.h:1 -msgid "desktop 1600x1200 wallpaper" -msgstr "fond d'écran de bureau 1024x768" - -#: ../share/templates/templates.h:1 -msgid "Desktop 640x480" -msgstr "Bureau 640x480" - -#: ../share/templates/templates.h:1 -msgid "desktop 640x480 wallpaper" -msgstr "fond d'écran de bureau 640x480" - -#: ../share/templates/templates.h:1 -msgid "Desktop 800x600" -msgstr "Bureau 800x600" - -#: ../share/templates/templates.h:1 -msgid "desktop 800x600 wallpaper" -msgstr "fond d'écran de bureau 800x600" - -#: ../share/templates/templates.h:1 -msgid "Fontforge Glyph" -msgstr "Glyphe Fontforge" - -#: ../share/templates/templates.h:1 -msgid "font fontforge glyph 1000x1000" -msgstr "glyphe de fonte Fontforge 1000x1000" - -#: ../share/templates/templates.h:1 -msgid "Icon 16x16" -msgstr "Icône 16x16" - -#: ../share/templates/templates.h:1 -msgid "Small 16x16 icon template." -msgstr "Modèle de petite icône 16x16." - -#: ../share/templates/templates.h:1 -msgid "icon 16x16 empty" -msgstr "icône 16x16 vide" - -#: ../share/templates/templates.h:1 -msgid "Icon 32x32" -msgstr "Icône 32x32" - -#: ../share/templates/templates.h:1 -msgid "32x32 icon template." -msgstr "Modèle d'icône 32x32." - -#: ../share/templates/templates.h:1 -msgid "icon 32x32 empty" -msgstr "icône 32x32 vide" - -#: ../share/templates/templates.h:1 -msgid "Icon 48x48" -msgstr "Icône 48x48" - -#: ../share/templates/templates.h:1 -msgid "48x48 icon template." -msgstr "Modèle d'icône 48x48." - -#: ../share/templates/templates.h:1 -msgid "icon 48x48 empty" -msgstr "icône 16x16 vide" - -#: ../share/templates/templates.h:1 -msgid "Icon 64x64" -msgstr "Icône 64x64" - -#: ../share/templates/templates.h:1 -msgid "64x64 icon template." -msgstr "Modèle d'icône 64x64." - -#: ../share/templates/templates.h:1 -msgid "icon 64x64 empty" -msgstr "icône 64x64 vide" - -#: ../share/templates/templates.h:1 -msgid "Letter Landscape" -msgstr "Letter Paysage" - -#: ../share/templates/templates.h:1 -msgid "Standard letter landscape sheet - 792x612" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "letter landscape 792x612 empty" -msgstr "letter paysage 792x612 vide" - -#: ../share/templates/templates.h:1 -msgid "Letter" -msgstr "Letter" - -#: ../share/templates/templates.h:1 -msgid "Standard letter sheet - 612x792" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "letter 612x792 empty" -msgstr "letter 612x792 vide" - -#: ../share/templates/templates.h:1 -msgid "No Borders" -msgstr "Sans bordure" - -#: ../share/templates/templates.h:1 -msgid "Empty sheet with no borders" -msgstr "Feuille vide sans bordures" - -#: ../share/templates/templates.h:1 -msgid "no borders empty" -msgstr "sans bordure vide" +msgstr "CD modèle 120x120 disque" #: ../share/templates/templates.h:1 msgid "No Layers" @@ -4855,96 +4452,32 @@ msgid "no layers empty" msgstr "sans calque vide" #: ../share/templates/templates.h:1 -msgid "Video HDTV 1920x1080" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "HDTV video template for 1920x1080 resolution." -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "HDTV video empty 1920x1080" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Video NTSC 720x486" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "NTSC video template for 720x486 resolution." -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "NTSC video empty 720x486" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Video PAL 728x576" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "PAL video template for 728x576 resolution." -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "PAL video empty 728x576" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Web Banner 468x60" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Empty 468x60 web banner template." -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "web banner 468x60 empty" -msgstr "bannière web 468x60 vide" - -#: ../share/templates/templates.h:1 -msgid "Web Banner 728x90" -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "Empty 728x90 web banner template." -msgstr "" - -#: ../share/templates/templates.h:1 -msgid "web banner 728x90 empty" -msgstr "bannière web 728x90 vide" - -#: ../share/templates/templates.h:1 -#, fuzzy msgid "LaTeX Beamer" -msgstr "Impression LaTeX" +msgstr "LaTeX Beamer" #: ../share/templates/templates.h:1 msgid "LaTeX beamer template with helping grid." -msgstr "" +msgstr "Modèle LaTeX beamer avec grille d'aide." #: ../share/templates/templates.h:1 msgid "LaTex LaTeX latex grid beamer" -msgstr "" +msgstr "LaTex LaTeX latex grille beamer" #: ../share/templates/templates.h:1 -#, fuzzy msgid "Typography Canvas" -msgstr "1 - Paramétrer le canevas typographique" +msgstr "Canevas typographique" #: ../share/templates/templates.h:1 msgid "Empty typography canvas with helping guidelines." -msgstr "" +msgstr "Canevas typographique vide avec guides d'aide." #: ../share/templates/templates.h:1 -#, fuzzy msgid "guidelines typography canvas" -msgstr "1 - Paramétrer le canevas typographique" +msgstr "guides typographie canevas" #. 3D box -#: ../src/box3d.cpp:259 -#: ../src/box3d.cpp:1310 -#: ../src/ui/dialog/inkscape-preferences.cpp:400 +#: ../src/box3d.cpp:260 ../src/box3d.cpp:1312 +#: ../src/ui/dialog/inkscape-preferences.cpp:403 msgid "3D Box" msgstr "Boîte 3D" @@ -4953,8 +4486,7 @@ msgstr "Boîte 3D" msgid "Color profiles directory (%s) is unavailable." msgstr "Le dossier des profils de couleur (%s) est indisponible." -#: ../src/color-profile.cpp:912 -#: ../src/color-profile.cpp:929 +#: ../src/color-profile.cpp:912 ../src/color-profile.cpp:929 msgid "(invalid UTF-8 string)" msgstr "(chaîne UTF-8 invalide)" @@ -4963,31 +4495,32 @@ msgctxt "Profile name" msgid "None" msgstr "Aucun" -#: ../src/context-fns.cpp:36 -#: ../src/context-fns.cpp:65 +#: ../src/context-fns.cpp:33 ../src/context-fns.cpp:62 msgid "Current layer is hidden. Unhide it to be able to draw on it." -msgstr "Le calque courant est caché. Le rendre visible pour pouvoir y dessiner." +msgstr "" +"Le calque courant est caché. Le rendre visible pour pouvoir y " +"dessiner." -#: ../src/context-fns.cpp:42 -#: ../src/context-fns.cpp:71 +#: ../src/context-fns.cpp:39 ../src/context-fns.cpp:68 msgid "Current layer is locked. Unlock it to be able to draw on it." -msgstr "Le calque courant est verrouillé. Le déverrouiller pour pouvoir y dessiner." +msgstr "" +"Le calque courant est verrouillé. Le déverrouiller pour pouvoir y " +"dessiner." #: ../src/desktop-events.cpp:225 msgid "Create guide" msgstr "Créer un guide" -#: ../src/desktop-events.cpp:471 +#: ../src/desktop-events.cpp:481 msgid "Move guide" msgstr "Déplacer le guide" -#: ../src/desktop-events.cpp:478 -#: ../src/desktop-events.cpp:536 +#: ../src/desktop-events.cpp:488 ../src/desktop-events.cpp:546 #: ../src/ui/dialog/guides.cpp:138 msgid "Delete guide" msgstr "Supprimer le guide" -#: ../src/desktop-events.cpp:516 +#: ../src/desktop-events.cpp:526 #, c-format msgid "Guideline: %s" msgstr "Ligne de guide : %s" @@ -5000,106 +4533,92 @@ msgstr "Plus de zoom précédent." msgid "No next zoom." msgstr "Plus de zoom suivant." -#: ../src/display/canvas-axonomgrid.cpp:317 -#: ../src/display/canvas-grid.cpp:693 +#: ../src/display/canvas-axonomgrid.cpp:317 ../src/display/canvas-grid.cpp:667 msgid "Grid _units:" msgstr "_Unités de la grille :" -#: ../src/display/canvas-axonomgrid.cpp:319 -#: ../src/display/canvas-grid.cpp:695 +#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:669 msgid "_Origin X:" msgstr "_Origine X :" -#: ../src/display/canvas-axonomgrid.cpp:319 -#: ../src/display/canvas-grid.cpp:695 -#: ../src/ui/dialog/inkscape-preferences.cpp:739 -#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:669 +#: ../src/ui/dialog/inkscape-preferences.cpp:742 +#: ../src/ui/dialog/inkscape-preferences.cpp:767 msgid "X coordinate of grid origin" msgstr "Coordonnée X de l'origine de la grille" -#: ../src/display/canvas-axonomgrid.cpp:321 -#: ../src/display/canvas-grid.cpp:697 +#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:671 msgid "O_rigin Y:" msgstr "O_rigine Y :" -#: ../src/display/canvas-axonomgrid.cpp:321 -#: ../src/display/canvas-grid.cpp:697 -#: ../src/ui/dialog/inkscape-preferences.cpp:740 -#: ../src/ui/dialog/inkscape-preferences.cpp:765 +#: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:671 +#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Y coordinate of grid origin" msgstr "Coordonnée Y de l'origine de la grille" -#: ../src/display/canvas-axonomgrid.cpp:323 -#: ../src/display/canvas-grid.cpp:701 +#: ../src/display/canvas-axonomgrid.cpp:323 ../src/display/canvas-grid.cpp:675 msgid "Spacing _Y:" msgstr "Espacement _Y :" #: ../src/display/canvas-axonomgrid.cpp:323 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Base length of z-axis" msgstr "Longueur de base de l'axe z" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:771 -#: ../src/widgets/box3d-toolbar.cpp:299 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/widgets/box3d-toolbar.cpp:302 msgid "Angle X:" msgstr "Angle X :" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:771 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 msgid "Angle of x-axis" msgstr "Angle de l'axe x" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 -#: ../src/widgets/box3d-toolbar.cpp:378 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 +#: ../src/widgets/box3d-toolbar.cpp:381 msgid "Angle Z:" msgstr "Angle Z :" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 msgid "Angle of z-axis" msgstr "Angle de l'axe z" -#: ../src/display/canvas-axonomgrid.cpp:331 -#: ../src/display/canvas-grid.cpp:705 +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 msgid "Minor grid line _color:" msgstr "_Couleur de la grille secondaire :" -#: ../src/display/canvas-axonomgrid.cpp:331 -#: ../src/display/canvas-grid.cpp:705 -#: ../src/ui/dialog/inkscape-preferences.cpp:723 +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 +#: ../src/ui/dialog/inkscape-preferences.cpp:726 msgid "Minor grid line color" msgstr "Couleur de la grille secondaire" -#: ../src/display/canvas-axonomgrid.cpp:331 -#: ../src/display/canvas-grid.cpp:705 +#: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 msgid "Color of the minor grid lines" msgstr "Couleur des lignes de la grille secondaire" -#: ../src/display/canvas-axonomgrid.cpp:336 -#: ../src/display/canvas-grid.cpp:710 +#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:684 msgid "Ma_jor grid line color:" msgstr "Couleur de la grille _principale :" -#: ../src/display/canvas-axonomgrid.cpp:336 -#: ../src/display/canvas-grid.cpp:710 -#: ../src/ui/dialog/inkscape-preferences.cpp:725 +#: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 msgid "Major grid line color" msgstr "Couleur de la grille principale" -#: ../src/display/canvas-axonomgrid.cpp:337 -#: ../src/display/canvas-grid.cpp:711 +#: ../src/display/canvas-axonomgrid.cpp:337 ../src/display/canvas-grid.cpp:685 msgid "Color of the major (highlighted) grid lines" msgstr "Couleur des lignes de la grille principale (mise en valeur)" -#: ../src/display/canvas-axonomgrid.cpp:341 -#: ../src/display/canvas-grid.cpp:715 +#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:689 msgid "_Major grid line every:" msgstr "_Grille principale toutes les :" -#: ../src/display/canvas-axonomgrid.cpp:341 -#: ../src/display/canvas-grid.cpp:715 +#: ../src/display/canvas-axonomgrid.cpp:341 ../src/display/canvas-grid.cpp:689 msgid "lines" msgstr "lignes" @@ -5111,61 +4630,73 @@ msgstr "Grille rectangulaire" msgid "Axonometric grid" msgstr "Grille axonométrique (3D)" -#: ../src/display/canvas-grid.cpp:275 +#: ../src/display/canvas-grid.cpp:249 msgid "Create new grid" msgstr "Créer une nouvelle grille" -#: ../src/display/canvas-grid.cpp:341 +#: ../src/display/canvas-grid.cpp:315 msgid "_Enabled" msgstr "_Activé" -#: ../src/display/canvas-grid.cpp:342 -msgid "Determines whether to snap to this grid or not. Can be 'on' for invisible grids." -msgstr "Cocher pour activer le magnétisme de la grille. Fonctionne aussi avec une grille invisible." +#: ../src/display/canvas-grid.cpp:316 +msgid "" +"Determines whether to snap to this grid or not. Can be 'on' for invisible " +"grids." +msgstr "" +"Cocher pour activer le magnétisme de la grille. Fonctionne aussi avec une " +"grille invisible." -#: ../src/display/canvas-grid.cpp:346 +#: ../src/display/canvas-grid.cpp:320 msgid "Snap to visible _grid lines only" msgstr "Aimanter seulement aux lignes visibles de la _grille" -#: ../src/display/canvas-grid.cpp:347 -msgid "When zoomed out, not all grid lines will be displayed. Only the visible ones will be snapped to" -msgstr "Lorsque le niveau de zoom est diminué, les lignes des grilles ne sont pas toutes affichées. Seules celles qui sont visibles seront aimantées." +#: ../src/display/canvas-grid.cpp:321 +msgid "" +"When zoomed out, not all grid lines will be displayed. Only the visible ones " +"will be snapped to" +msgstr "" +"Lorsque le niveau de zoom est diminué, les lignes des grilles ne sont pas " +"toutes affichées. Seules celles qui sont visibles seront aimantées." -#: ../src/display/canvas-grid.cpp:351 +#: ../src/display/canvas-grid.cpp:325 msgid "_Visible" msgstr "_Visible" -#: ../src/display/canvas-grid.cpp:352 -msgid "Determines whether the grid is displayed or not. Objects are still snapped to invisible grids." -msgstr "Détermine si la grille est affichée ou pas. Le magnétisme fonctionne même avec une grille invisible." +#: ../src/display/canvas-grid.cpp:326 +msgid "" +"Determines whether the grid is displayed or not. Objects are still snapped " +"to invisible grids." +msgstr "" +"Détermine si la grille est affichée ou pas. Le magnétisme fonctionne même " +"avec une grille invisible." -#: ../src/display/canvas-grid.cpp:699 +#: ../src/display/canvas-grid.cpp:673 msgid "Spacing _X:" msgstr "Espacement _X :" -#: ../src/display/canvas-grid.cpp:699 -#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/display/canvas-grid.cpp:673 +#: ../src/ui/dialog/inkscape-preferences.cpp:748 msgid "Distance between vertical grid lines" msgstr "Distance entre les lignes verticales de la grille" -#: ../src/display/canvas-grid.cpp:701 -#: ../src/ui/dialog/inkscape-preferences.cpp:746 +#: ../src/display/canvas-grid.cpp:675 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 msgid "Distance between horizontal grid lines" msgstr "Distance entre les lignes horizontales de la grille" -#: ../src/display/canvas-grid.cpp:732 +#: ../src/display/canvas-grid.cpp:706 msgid "_Show dots instead of lines" msgstr "Afficher des point_s plutôt que des lignes" -#: ../src/display/canvas-grid.cpp:733 +#: ../src/display/canvas-grid.cpp:707 msgid "If set, displays dots at gridpoints instead of gridlines" -msgstr "Cocher pour afficher des points sur les points entiers de la grille au lieu de lignes" +msgstr "" +"Cocher pour afficher des points sur les points entiers de la grille au lieu " +"de lignes" #. TRANSLATORS: undefined target for snapping -#: ../src/display/snap-indicator.cpp:72 -#: ../src/display/snap-indicator.cpp:75 -#: ../src/display/snap-indicator.cpp:180 -#: ../src/display/snap-indicator.cpp:183 +#: ../src/display/snap-indicator.cpp:72 ../src/display/snap-indicator.cpp:75 +#: ../src/display/snap-indicator.cpp:180 ../src/display/snap-indicator.cpp:183 msgid "UNDEFINED" msgstr "INDÉFINI" @@ -5309,13 +4840,11 @@ msgstr "Centre de boîte englobante" msgid "Bounding box side midpoint" msgstr "Milieu de bord de boîte englobante" -#: ../src/display/snap-indicator.cpp:196 -#: ../src/ui/tool/node.cpp:1319 +#: ../src/display/snap-indicator.cpp:196 ../src/ui/tool/node.cpp:1505 msgid "Smooth node" msgstr "Nœuds doux" -#: ../src/display/snap-indicator.cpp:199 -#: ../src/ui/tool/node.cpp:1318 +#: ../src/display/snap-indicator.cpp:199 ../src/ui/tool/node.cpp:1504 msgid "Cusp node" msgstr "Point de rebroussement" @@ -5377,15 +4906,15 @@ msgid "New document %d" msgstr "Nouveau document %d" #: ../src/document.cpp:546 -#, fuzzy, c-format +#, c-format msgid "Memory document %d" -msgstr "Document d'information %1" +msgstr "Document en mémoire %d" #: ../src/document.cpp:575 msgid "Memory document %1" msgstr "Document d'information %1" -#: ../src/document.cpp:787 +#: ../src/document.cpp:790 #, c-format msgid "Unnamed document %d" msgstr "Document sans nom %d" @@ -5395,15 +4924,11 @@ msgid "[Unchanged]" msgstr "[Inchangé]" #. Edit -#: ../src/event-log.cpp:371 -#: ../src/event-log.cpp:374 -#: ../src/verbs.cpp:2386 +#: ../src/event-log.cpp:371 ../src/event-log.cpp:374 ../src/verbs.cpp:2469 msgid "_Undo" msgstr "Ann_uler" -#: ../src/event-log.cpp:381 -#: ../src/event-log.cpp:385 -#: ../src/verbs.cpp:2388 +#: ../src/event-log.cpp:381 ../src/event-log.cpp:385 ../src/verbs.cpp:2471 msgid "_Redo" msgstr "Réta_blir" @@ -5431,21 +4956,27 @@ msgstr " description : " msgid " (No preferences)" msgstr " (Pas de préférences)" -#: ../src/extension/effect.h:70 -#: ../src/verbs.cpp:2160 +#: ../src/extension/effect.h:70 ../src/verbs.cpp:2243 msgid "Extensions" msgstr "Extensions" #. This is some filler text, needs to change before relase #: ../src/extension/error-file.cpp:52 msgid "" -"One or more extensions failed to load\n" +"One or more extensions failed to load\n" "\n" -"The failed extensions have been skipped. Inkscape will continue to run normally but those extensions will be unavailable. For details to troubleshoot this problem, please refer to the error log located at: " +"The failed extensions have been skipped. Inkscape will continue to run " +"normally but those extensions will be unavailable. For details to " +"troubleshoot this problem, please refer to the error log located at: " msgstr "" -"Le chargement d'une ou plusieurs extensions a échoué\n" +"Le chargement d'une ou plusieurs " +"extensions a échoué\n" "\n" -"Les extensions défectueuses ont été ignorées. Inkscape va continuer à fonctionner normalement, mais ces extensions seront indisponibles. Pour plus de détails concernant ce problème, référez-vous à l'historique (log) des messages d'erreur : " +"Les extensions défectueuses ont été ignorées. Inkscape va continuer à " +"fonctionner normalement, mais ces extensions seront indisponibles. Pour plus " +"de détails concernant ce problème, référez-vous à l'historique (log) des " +"messages d'erreur : " #: ../src/extension/error-file.cpp:66 msgid "Show dialog on startup" @@ -5459,8 +4990,12 @@ msgstr "'%s' en cours..." #. static int i = 0; #. std::cout << "Checking module[" << i++ << "]: " << name << std::endl; #: ../src/extension/extension.cpp:271 -msgid " This is caused by an improper .inx file for this extension. An improper .inx file could have been caused by a faulty installation of Inkscape." -msgstr " C'est le résultat d'un fichier .inx incorrect pour cette extension. Un fichier .inx incorrect peut être du à un problème d'installation d'Inkscape." +msgid "" +" This is caused by an improper .inx file for this extension. An improper ." +"inx file could have been caused by a faulty installation of Inkscape." +msgstr "" +" C'est le résultat d'un fichier .inx incorrect pour cette extension. Un " +"fichier .inx incorrect peut être du à un problème d'installation d'Inkscape." #: ../src/extension/extension.cpp:281 msgid "the extension is designed for Windows only." @@ -5526,22 +5061,40 @@ msgid "Deactivated" msgstr "Désactivée" #: ../src/extension/extension.cpp:824 -msgid "Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension." -msgstr "Aucune aide n'est actuellement disponible pour cette extension. Veuillez vous référer au site internet d'Inkscape ou aux listes de diffusion pour toute question relative à celle-ci." +msgid "" +"Currently there is no help available for this Extension. Please look on the " +"Inkscape website or ask on the mailing lists if you have questions regarding " +"this extension." +msgstr "" +"Aucune aide n'est actuellement disponible pour cette extension. Veuillez " +"vous référer au site internet d'Inkscape ou aux listes de diffusion pour " +"toute question relative à celle-ci." -#: ../src/extension/implementation/script.cpp:1037 -msgid "Inkscape has received additional data from the script executed. The script did not return an error, but this may indicate the results will not be as expected." -msgstr "Inkscape a reçu des données additionnelles du script exécuté. Le script n'a pas retourné d'erreur, mais ceci peut indiquer que les résultats ne sont pas ceux attendus." +#: ../src/extension/implementation/script.cpp:1057 +msgid "" +"Inkscape has received additional data from the script executed. The script " +"did not return an error, but this may indicate the results will not be as " +"expected." +msgstr "" +"Inkscape a reçu des données additionnelles du script exécuté. Le script n'a " +"pas retourné d'erreur, mais ceci peut indiquer que les résultats ne sont pas " +"ceux attendus." #: ../src/extension/init.cpp:288 msgid "Null external module directory name. Modules will not be loaded." -msgstr "Le nom de dossier des modules externes est vide. Les modules ne seront pas chargés." +msgstr "" +"Le nom de dossier des modules externes est vide. Les modules ne seront pas " +"chargés." #: ../src/extension/init.cpp:302 #: ../src/extension/internal/filter/filter-file.cpp:59 #, c-format -msgid "Modules directory (%s) is unavailable. External modules in that directory will not be loaded." -msgstr "Le dossier des modules (%s) est indisponible. Les modules externes de ce dossier ne seront pas chargés." +msgid "" +"Modules directory (%s) is unavailable. External modules in that directory " +"will not be loaded." +msgstr "" +"Le dossier des modules (%s) est indisponible. Les modules externes de ce " +"dossier ne seront pas chargés." #: ../src/extension/internal/bitmap/adaptiveThreshold.cpp:39 msgid "Adaptive Threshold" @@ -5551,11 +5104,11 @@ msgstr "Seuil adaptatif" #: ../src/extension/internal/bitmap/raise.cpp:42 #: ../src/extension/internal/bitmap/sample.cpp:41 #: ../src/extension/internal/bluredge.cpp:138 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:63 #: ../src/ui/dialog/object-attributes.cpp:68 #: ../src/ui/dialog/object-attributes.cpp:77 #: ../src/widgets/calligraphy-toolbar.cpp:430 -#: ../src/widgets/eraser-toolbar.cpp:128 -#: ../src/widgets/spray-toolbar.cpp:116 +#: ../src/widgets/eraser-toolbar.cpp:128 ../src/widgets/spray-toolbar.cpp:116 #: ../src/widgets/tweak-toolbar.cpp:128 #: ../share/extensions/foldablebox.inx.h:2 msgid "Width:" @@ -5627,8 +5180,7 @@ msgstr "Ajouter du bruit" #: ../src/extension/internal/filter/color.h:1497 #: ../src/extension/internal/filter/color.h:1585 #: ../src/extension/internal/filter/distort.h:69 -#: ../src/extension/internal/filter/morphology.h:60 -#: ../src/rdf.cpp:244 +#: ../src/extension/internal/filter/morphology.h:60 ../src/rdf.cpp:244 #: ../src/ui/dialog/filter-effects-dialog.cpp:2842 #: ../src/ui/dialog/filter-effects-dialog.cpp:2916 #: ../src/ui/dialog/object-attributes.cpp:49 @@ -5771,7 +5323,8 @@ msgstr "Colorer" #: ../src/extension/internal/bitmap/colorize.cpp:58 msgid "Colorize selected bitmap(s) with specified color, using given opacity" -msgstr "Colorer les bitmaps sélectionnés avec la couleur et l'opacité spécifiées" +msgstr "" +"Colorer les bitmaps sélectionnés avec la couleur et l'opacité spécifiées" #: ../src/extension/internal/bitmap/contrast.cpp:40 #: ../src/extension/internal/filter/color.h:1114 @@ -5809,7 +5362,6 @@ msgid "Right (px):" msgstr "Droite (px) :" #: ../src/extension/internal/bitmap/crop.cpp:77 -#, fuzzy msgid "Crop selected bitmap(s)" msgstr "Rogner les bitmaps sélectionnés" @@ -5850,7 +5402,8 @@ msgstr "Embosser" #: ../src/extension/internal/bitmap/emboss.cpp:47 msgid "Emboss selected bitmap(s); highlight edges with 3D effect" -msgstr "Gaufrer les bitmaps sélectionnés ; surligne les contours avec un effet 3D" +msgstr "" +"Gaufrer les bitmaps sélectionnés ; surligne les contours avec un effet 3D" #: ../src/extension/internal/bitmap/enhance.cpp:35 msgid "Enhance" @@ -5869,7 +5422,7 @@ msgid "Equalize selected bitmap(s); histogram equalization" msgstr "Égaliser l'histogramme des bitmaps sélectionnés" #: ../src/extension/internal/bitmap/gaussianBlur.cpp:38 -#: ../src/filter-enums.cpp:28 +#: ../src/filter-enums.cpp:29 msgid "Gaussian Blur" msgstr "Flou gaussien" @@ -5915,8 +5468,13 @@ msgid "Gamma Correction:" msgstr "Correction gamma :" #: ../src/extension/internal/bitmap/level.cpp:51 -msgid "Level selected bitmap(s) by scaling values falling between the given ranges to the full color range" -msgstr "Niveler les bitmaps sélectionnés en mettant à l'échelle les valeurs se situant dans l'intervalle donné pour les élargir à la gamme complète de couleur" +msgid "" +"Level selected bitmap(s) by scaling values falling between the given ranges " +"to the full color range" +msgstr "" +"Niveler les bitmaps sélectionnés en mettant à l'échelle les valeurs se " +"situant dans l'intervalle donné pour les élargir à la gamme complète de " +"couleur" #: ../src/extension/internal/bitmap/levelChannel.cpp:52 msgid "Level (with Channel)" @@ -5928,16 +5486,24 @@ msgid "Channel:" msgstr "Composante :" #: ../src/extension/internal/bitmap/levelChannel.cpp:73 -msgid "Level the specified channel of selected bitmap(s) by scaling values falling between the given ranges to the full color range" -msgstr "Niveler la composante spécifiée des bitmaps sélectionnés en mettant à l'échelle les valeurs se situant dans l'intervalle donné pour les élargir à la gamme complète de couleur" +msgid "" +"Level the specified channel of selected bitmap(s) by scaling values falling " +"between the given ranges to the full color range" +msgstr "" +"Niveler la composante spécifiée des bitmaps sélectionnés en mettant à " +"l'échelle les valeurs se situant dans l'intervalle donné pour les élargir à " +"la gamme complète de couleur" #: ../src/extension/internal/bitmap/medianFilter.cpp:37 msgid "Median" msgstr "Médiane" #: ../src/extension/internal/bitmap/medianFilter.cpp:45 -msgid "Replace each pixel component with the median color in a circular neighborhood" -msgstr "Remplace chaque composante des pixels de l'image par la couleur médiane dans un voisinage circulaire" +msgid "" +"Replace each pixel component with the median color in a circular neighborhood" +msgstr "" +"Remplace chaque composante des pixels de l'image par la couleur médiane dans " +"un voisinage circulaire" #: ../src/extension/internal/bitmap/modulate.cpp:40 msgid "HSB Adjust" @@ -5956,8 +5522,10 @@ msgid "Brightness:" msgstr "Brillance :" #: ../src/extension/internal/bitmap/modulate.cpp:50 -msgid "Adjust the amount of hue, saturation, and brightness in selected bitmap(s)" -msgstr "Moduler la teinte, la saturation et la luminosité des bitmaps sélectionnés." +msgid "" +"Adjust the amount of hue, saturation, and brightness in selected bitmap(s)" +msgstr "" +"Moduler la teinte, la saturation et la luminosité des bitmaps sélectionnés." #: ../src/extension/internal/bitmap/negate.cpp:36 msgid "Negate" @@ -5972,8 +5540,12 @@ msgid "Normalize" msgstr "Normaliser" #: ../src/extension/internal/bitmap/normalize.cpp:43 -msgid "Normalize selected bitmap(s), expanding color range to the full possible range of color" -msgstr "Normaliser les bitmaps sélectionnés, étend la gamme des couleurs présente à la gamme complète de couleur" +msgid "" +"Normalize selected bitmap(s), expanding color range to the full possible " +"range of color" +msgstr "" +"Normaliser les bitmaps sélectionnés, étend la gamme des couleurs présente à " +"la gamme complète de couleur" #: ../src/extension/internal/bitmap/oilPaint.cpp:37 msgid "Oil Paint" @@ -5981,13 +5553,14 @@ msgstr "Peinture à l'huile" #: ../src/extension/internal/bitmap/oilPaint.cpp:45 msgid "Stylize selected bitmap(s) so that they appear to be painted with oils" -msgstr "Styliser les bitmaps sélectionnés en leur donnant l'apparence d'une peinture à l'huile" +msgstr "" +"Styliser les bitmaps sélectionnés en leur donnant l'apparence d'une peinture " +"à l'huile" #: ../src/extension/internal/bitmap/opacity.cpp:38 #: ../src/extension/internal/filter/blurs.h:333 #: ../src/extension/internal/filter/transparency.h:279 -#: ../src/ui/dialog/clonetiler.cpp:840 -#: ../src/ui/dialog/clonetiler.cpp:993 +#: ../src/ui/dialog/clonetiler.cpp:841 ../src/ui/dialog/clonetiler.cpp:994 #: ../src/widgets/tweak-toolbar.cpp:334 #: ../share/extensions/interp_att_g.inx.h:16 msgid "Opacity" @@ -5995,14 +5568,13 @@ msgstr "Opacité" #: ../src/extension/internal/bitmap/opacity.cpp:40 #: ../src/ui/dialog/filter-effects-dialog.cpp:2884 -#: ../src/widgets/dropper-toolbar.cpp:83 +#: ../src/ui/dialog/objects.cpp:1621 ../src/widgets/dropper-toolbar.cpp:83 msgid "Opacity:" msgstr "Opacité :" #: ../src/extension/internal/bitmap/opacity.cpp:46 -#, fuzzy msgid "Modify opacity channel(s) of selected bitmap(s)" -msgstr "Modifier la composante opacité des bitmaps sélectionnés." +msgstr "Modifier la composante opacité des bitmaps sélectionnés" #: ../src/extension/internal/bitmap/raise.cpp:40 msgid "Raise" @@ -6013,8 +5585,11 @@ msgid "Raised" msgstr "En relief" #: ../src/extension/internal/bitmap/raise.cpp:50 -msgid "Alter lightness the edges of selected bitmap(s) to create a raised appearance" -msgstr "Changer la luminosité des bitmaps sélectionnés pour les faire apparaître « en relief »" +msgid "" +"Alter lightness the edges of selected bitmap(s) to create a raised appearance" +msgstr "" +"Changer la luminosité des bitmaps sélectionnés pour les faire apparaître " +"« en relief »" #: ../src/extension/internal/bitmap/reduceNoise.cpp:40 msgid "Reduce Noise" @@ -6028,16 +5603,21 @@ msgid "Order:" msgstr "Ordre :" #: ../src/extension/internal/bitmap/reduceNoise.cpp:48 -msgid "Reduce noise in selected bitmap(s) using a noise peak elimination filter" -msgstr "Réduire le bruit dans les bitmaps sélectionnés en éliminant les pics de bruit" +msgid "" +"Reduce noise in selected bitmap(s) using a noise peak elimination filter" +msgstr "" +"Réduire le bruit dans les bitmaps sélectionnés en éliminant les pics de bruit" #: ../src/extension/internal/bitmap/sample.cpp:39 msgid "Resample" msgstr "Ré-échantillonnage" #: ../src/extension/internal/bitmap/sample.cpp:48 -msgid "Alter the resolution of selected image by resizing it to the given pixel size" -msgstr "Changer la résolution de l'image en la redimensionnant avec la taille de pixel donnée." +msgid "" +"Alter the resolution of selected image by resizing it to the given pixel size" +msgstr "" +"Changer la résolution de l'image en la redimensionnant avec la taille de " +"pixel donnée." #: ../src/extension/internal/bitmap/shade.cpp:40 msgid "Shade" @@ -6071,15 +5651,20 @@ msgstr "Solariser" #: ../src/extension/internal/bitmap/solarize.cpp:47 msgid "Solarize selected bitmap(s), like overexposing photographic film" -msgstr "Solariser les bitmaps sélectionnés, donne un effet de pellicule surexposée" +msgstr "" +"Solariser les bitmaps sélectionnés, donne un effet de pellicule surexposée" #: ../src/extension/internal/bitmap/spread.cpp:37 msgid "Dither" msgstr "Dispersion" #: ../src/extension/internal/bitmap/spread.cpp:45 -msgid "Randomly scatter pixels in selected bitmap(s), within the given radius of the original position" -msgstr "Disperser au hasard les pixels des bitmaps sélectionnés, dans le rayon donné de la position originale" +msgid "" +"Randomly scatter pixels in selected bitmap(s), within the given radius of " +"the original position" +msgstr "" +"Disperser au hasard les pixels des bitmaps sélectionnés, dans le rayon donné " +"de la position originale" #: ../src/extension/internal/bitmap/swirl.cpp:39 msgid "Degrees:" @@ -6096,7 +5681,7 @@ msgstr "Seuil" #: ../src/extension/internal/bitmap/threshold.cpp:40 #: ../src/extension/internal/bitmap/unsharpmask.cpp:46 -#: ../src/widgets/paintbucket-toolbar.cpp:146 +#: ../src/widgets/paintbucket-toolbar.cpp:148 msgid "Threshold:" msgstr "Seuil :" @@ -6110,7 +5695,9 @@ msgstr "Masque de netteté" #: ../src/extension/internal/bitmap/unsharpmask.cpp:52 msgid "Sharpen selected bitmap(s) using unsharp mask algorithms" -msgstr "Rendre plus nets les bitmaps sélectionnés en utilisant des algorithmes de netteté de type « unsharp mask »" +msgstr "" +"Rendre plus nets les bitmaps sélectionnés en utilisant des algorithmes de " +"netteté de type « unsharp mask »" #: ../src/extension/internal/bitmap/wave.cpp:38 msgid "Wave" @@ -6147,8 +5734,7 @@ msgstr "Nombre de copies contractées/dilatées de l'objet à créer" #: ../src/extension/internal/bluredge.cpp:143 #: ../share/extensions/extrude.inx.h:5 #: ../share/extensions/generate_voronoi.inx.h:9 -#: ../share/extensions/interp.inx.h:7 -#: ../share/extensions/motion.inx.h:4 +#: ../share/extensions/interp.inx.h:7 ../share/extensions/motion.inx.h:4 #: ../share/extensions/pathalongpath.inx.h:18 #: ../share/extensions/pathscatter.inx.h:20 #: ../share/extensions/voronoi2svg.inx.h:13 @@ -6179,7 +5765,7 @@ msgstr "PostScript niveau 2" #: ../src/extension/internal/cairo-ps-out.cpp:372 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:250 #: ../src/extension/internal/emf-inout.cpp:3569 -#: ../src/extension/internal/wmf-inout.cpp:3143 +#: ../src/extension/internal/wmf-inout.cpp:3144 msgid "Convert texts to paths" msgstr "Convertir les textes en chemins" @@ -6278,70 +5864,70 @@ msgstr "PDF+LaTeX : exclure le texte du fichier PDF, et créer un fichier LaTeX msgid "Output page size:" msgstr "Dimensions de la page :" -#: ../src/extension/internal/cdr-input.cpp:102 +#: ../src/extension/internal/cdr-input.cpp:116 #: ../src/extension/internal/pdfinput/pdf-input.cpp:87 -#: ../src/extension/internal/vsd-input.cpp:101 +#: ../src/extension/internal/vsd-input.cpp:116 msgid "Select page:" msgstr "Sélectionner une page :" #. Display total number of pages -#: ../src/extension/internal/cdr-input.cpp:114 +#: ../src/extension/internal/cdr-input.cpp:128 #: ../src/extension/internal/pdfinput/pdf-input.cpp:106 -#: ../src/extension/internal/vsd-input.cpp:113 +#: ../src/extension/internal/vsd-input.cpp:128 #, c-format msgid "out of %i" msgstr "sur %i" -#: ../src/extension/internal/cdr-input.cpp:145 -#: ../src/extension/internal/vsd-input.cpp:144 +#: ../src/extension/internal/cdr-input.cpp:165 +#: ../src/extension/internal/vsd-input.cpp:165 msgid "Page Selector" msgstr "Sélecteur de page" -#: ../src/extension/internal/cdr-input.cpp:274 +#: ../src/extension/internal/cdr-input.cpp:300 msgid "Corel DRAW Input" msgstr "Entrée Corel DRAW" -#: ../src/extension/internal/cdr-input.cpp:279 +#: ../src/extension/internal/cdr-input.cpp:305 msgid "Corel DRAW 7-X4 files (*.cdr)" msgstr "Fichiers Corel DRAW 7-X4 (*.cdr)" -#: ../src/extension/internal/cdr-input.cpp:280 +#: ../src/extension/internal/cdr-input.cpp:306 msgid "Open files saved in Corel DRAW 7-X4" msgstr "Ouvrir des fichiers créés avec Corel DRAW 7-X4" -#: ../src/extension/internal/cdr-input.cpp:287 +#: ../src/extension/internal/cdr-input.cpp:313 msgid "Corel DRAW templates input" msgstr "Entrée modèle Corel DRAW" -#: ../src/extension/internal/cdr-input.cpp:292 +#: ../src/extension/internal/cdr-input.cpp:318 msgid "Corel DRAW 7-13 template files (*.cdt)" msgstr "Modèles Corel DRAW 7-13 (.cdt)" -#: ../src/extension/internal/cdr-input.cpp:293 +#: ../src/extension/internal/cdr-input.cpp:319 msgid "Open files saved in Corel DRAW 7-13" msgstr "Ouvrir des fichiers créés avec Corel DRAW 7-13" -#: ../src/extension/internal/cdr-input.cpp:300 +#: ../src/extension/internal/cdr-input.cpp:326 msgid "Corel DRAW Compressed Exchange files input" msgstr "Fichier d'entrée Corel DRAW Compressed Exchange" -#: ../src/extension/internal/cdr-input.cpp:305 +#: ../src/extension/internal/cdr-input.cpp:331 msgid "Corel DRAW Compressed Exchange files (*.ccx)" msgstr "Fichiers Corel DRAW Compressed Exchange (.ccx)" -#: ../src/extension/internal/cdr-input.cpp:306 +#: ../src/extension/internal/cdr-input.cpp:332 msgid "Open compressed exchange files saved in Corel DRAW" msgstr "Fichiers Open compressed exchange enregistrés avec Corel DRAW" -#: ../src/extension/internal/cdr-input.cpp:313 +#: ../src/extension/internal/cdr-input.cpp:339 msgid "Corel DRAW Presentation Exchange files input" msgstr "Fichier d'entrée Corel DRAW Presentation Exchange" -#: ../src/extension/internal/cdr-input.cpp:318 +#: ../src/extension/internal/cdr-input.cpp:344 msgid "Corel DRAW Presentation Exchange files (*.cmx)" msgstr "Fichiers Corel DRAW Presentation Exchange (.cmx)" -#: ../src/extension/internal/cdr-input.cpp:319 +#: ../src/extension/internal/cdr-input.cpp:345 msgid "Open presentation exchange files saved in Corel DRAW" msgstr "Fichiers Open presentation exchange enregistrés avec Corel DRAW" @@ -6362,37 +5948,37 @@ msgid "EMF Output" msgstr "Sortie EMF" #: ../src/extension/internal/emf-inout.cpp:3570 -#: ../src/extension/internal/wmf-inout.cpp:3144 +#: ../src/extension/internal/wmf-inout.cpp:3145 msgid "Map Unicode to Symbol font" msgstr "Associer les caractères Unicode à la police Symbol" #: ../src/extension/internal/emf-inout.cpp:3571 -#: ../src/extension/internal/wmf-inout.cpp:3145 +#: ../src/extension/internal/wmf-inout.cpp:3146 msgid "Map Unicode to Wingdings" msgstr "Associer les caractères Unicode à la police Wingdings" #: ../src/extension/internal/emf-inout.cpp:3572 -#: ../src/extension/internal/wmf-inout.cpp:3146 +#: ../src/extension/internal/wmf-inout.cpp:3147 msgid "Map Unicode to Zapf Dingbats" msgstr "Associer les caractères Unicode à la police Zapf Dingbats" #: ../src/extension/internal/emf-inout.cpp:3573 -#: ../src/extension/internal/wmf-inout.cpp:3147 +#: ../src/extension/internal/wmf-inout.cpp:3148 msgid "Use MS Unicode PUA (0xF020-0xF0FF) for converted characters" msgstr "Utiliser MS Unicode PUA (0xF020-0xF0FF) pour les caractères convertis" #: ../src/extension/internal/emf-inout.cpp:3574 -#: ../src/extension/internal/wmf-inout.cpp:3148 +#: ../src/extension/internal/wmf-inout.cpp:3149 msgid "Compensate for PPT font bug" msgstr "Corriger le défaut de police PPT" #: ../src/extension/internal/emf-inout.cpp:3575 -#: ../src/extension/internal/wmf-inout.cpp:3149 +#: ../src/extension/internal/wmf-inout.cpp:3150 msgid "Convert dashed/dotted lines to single lines" msgstr "Convertir les pointillés et tirets en lignes simples" #: ../src/extension/internal/emf-inout.cpp:3576 -#: ../src/extension/internal/wmf-inout.cpp:3150 +#: ../src/extension/internal/wmf-inout.cpp:3151 msgid "Convert gradients to colored polygon series" msgstr "Convertir les dégradés en une série de polygones colorés" @@ -6558,8 +6144,12 @@ msgid "Strength" msgstr "Force" #: ../src/extension/internal/filter/blurs.h:135 -msgid "Removes or decreases glows and jaggeries around objects edges after applying some filters" -msgstr "Supprime ou diminue l'éclat et l'agitation qui apparaissent autour des bords lors de l'application de certains effets" +msgid "" +"Removes or decreases glows and jaggeries around objects edges after applying " +"some filters" +msgstr "" +"Supprime ou diminue l'éclat et l'agitation qui apparaissent autour des bords " +"lors de l'application de certains effets" #: ../src/extension/internal/filter/blurs.h:185 msgid "Cross Blur" @@ -6586,7 +6176,7 @@ msgstr "Fondu :" #: ../src/extension/internal/filter/color.h:1602 #: ../src/extension/internal/filter/paint.h:705 #: ../src/extension/internal/filter/transparency.h:63 -#: ../src/filter-enums.cpp:54 +#: ../src/filter-enums.cpp:55 msgid "Darken" msgstr "Obscurcir" @@ -6603,8 +6193,7 @@ msgstr "Obscurcir" #: ../src/extension/internal/filter/color.h:1594 #: ../src/extension/internal/filter/paint.h:703 #: ../src/extension/internal/filter/transparency.h:62 -#: ../src/filter-enums.cpp:53 -#: ../src/ui/dialog/input.cpp:382 +#: ../src/filter-enums.cpp:54 ../src/ui/dialog/input.cpp:382 msgid "Screen" msgstr "Superposition" @@ -6622,7 +6211,7 @@ msgstr "Superposition" #: ../src/extension/internal/filter/color.h:1601 #: ../src/extension/internal/filter/paint.h:701 #: ../src/extension/internal/filter/transparency.h:60 -#: ../src/filter-enums.cpp:52 +#: ../src/filter-enums.cpp:53 msgid "Multiply" msgstr "Produit" @@ -6637,7 +6226,7 @@ msgstr "Produit" #: ../src/extension/internal/filter/color.h:1593 #: ../src/extension/internal/filter/paint.h:704 #: ../src/extension/internal/filter/transparency.h:64 -#: ../src/filter-enums.cpp:55 +#: ../src/filter-enums.cpp:56 msgid "Lighten" msgstr "Éclaircir" @@ -6705,8 +6294,7 @@ msgstr "Type de fondu :" #: ../src/extension/internal/filter/paint.h:702 #: ../src/extension/internal/filter/textures.h:77 #: ../src/extension/internal/filter/transparency.h:61 -#: ../src/filter-enums.cpp:51 -#: ../src/ui/dialog/inkscape-preferences.cpp:646 +#: ../src/filter-enums.cpp:52 ../src/ui/dialog/inkscape-preferences.cpp:649 msgid "Normal" msgstr "Normal" @@ -6743,11 +6331,10 @@ msgstr "Source du bosselage" #: ../src/extension/internal/filter/color.h:637 #: ../src/extension/internal/filter/color.h:821 #: ../src/extension/internal/filter/transparency.h:132 -#: ../src/filter-enums.cpp:127 -#: ../src/ui/tools/flood-tool.cpp:193 -#: ../src/widgets/sp-color-icc-selector.cpp:355 -#: ../src/widgets/sp-color-scales.cpp:429 -#: ../src/widgets/sp-color-scales.cpp:430 +#: ../src/filter-enums.cpp:128 ../src/ui/tools/flood-tool.cpp:193 +#: ../src/widgets/sp-color-icc-selector.cpp:330 +#: ../src/widgets/sp-color-scales.cpp:415 +#: ../src/widgets/sp-color-scales.cpp:416 msgid "Red" msgstr "Rouge" @@ -6757,11 +6344,10 @@ msgstr "Rouge" #: ../src/extension/internal/filter/color.h:638 #: ../src/extension/internal/filter/color.h:822 #: ../src/extension/internal/filter/transparency.h:133 -#: ../src/filter-enums.cpp:128 -#: ../src/ui/tools/flood-tool.cpp:194 -#: ../src/widgets/sp-color-icc-selector.cpp:356 -#: ../src/widgets/sp-color-scales.cpp:432 -#: ../src/widgets/sp-color-scales.cpp:433 +#: ../src/filter-enums.cpp:129 ../src/ui/tools/flood-tool.cpp:194 +#: ../src/widgets/sp-color-icc-selector.cpp:331 +#: ../src/widgets/sp-color-scales.cpp:418 +#: ../src/widgets/sp-color-scales.cpp:419 msgid "Green" msgstr "Vert" @@ -6771,11 +6357,10 @@ msgstr "Vert" #: ../src/extension/internal/filter/color.h:639 #: ../src/extension/internal/filter/color.h:823 #: ../src/extension/internal/filter/transparency.h:134 -#: ../src/filter-enums.cpp:129 -#: ../src/ui/tools/flood-tool.cpp:195 -#: ../src/widgets/sp-color-icc-selector.cpp:357 -#: ../src/widgets/sp-color-scales.cpp:435 -#: ../src/widgets/sp-color-scales.cpp:436 +#: ../src/filter-enums.cpp:130 ../src/ui/tools/flood-tool.cpp:195 +#: ../src/widgets/sp-color-icc-selector.cpp:332 +#: ../src/widgets/sp-color-scales.cpp:421 +#: ../src/widgets/sp-color-scales.cpp:422 msgid "Blue" msgstr "Bleu" @@ -6797,9 +6382,8 @@ msgstr "Diffus" #: ../src/extension/internal/filter/bumps.h:98 #: ../src/extension/internal/filter/bumps.h:329 -#: ../src/libgdl/gdl-dock-placeholder.c:175 -#: ../src/libgdl/gdl-dock.c:199 -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/libgdl/gdl-dock-placeholder.c:175 ../src/libgdl/gdl-dock.c:199 +#: ../src/widgets/rect-toolbar.cpp:335 #: ../share/extensions/interp_att_g.inx.h:11 msgid "Height" msgstr "Hauteur" @@ -6813,10 +6397,9 @@ msgstr "Hauteur" #: ../src/extension/internal/filter/paint.h:592 #: ../src/extension/internal/filter/paint.h:707 #: ../src/ui/tools/flood-tool.cpp:198 -#: ../src/widgets/sp-color-icc-selector.cpp:366 -#: ../src/widgets/sp-color-scales.cpp:461 -#: ../src/widgets/sp-color-scales.cpp:462 -#: ../src/widgets/tweak-toolbar.cpp:318 +#: ../src/widgets/sp-color-icc-selector.cpp:341 +#: ../src/widgets/sp-color-scales.cpp:447 +#: ../src/widgets/sp-color-scales.cpp:448 ../src/widgets/tweak-toolbar.cpp:318 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "Luminosité" @@ -6839,7 +6422,7 @@ msgid "Distant" msgstr "Distante" #: ../src/extension/internal/filter/bumps.h:106 -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Point" msgstr "Point" @@ -6928,8 +6511,7 @@ msgstr "Fond :" #: ../src/extension/internal/filter/bumps.h:322 #: ../src/extension/internal/filter/transparency.h:57 -#: ../src/filter-enums.cpp:29 -#: ../src/sp-image.cpp:517 +#: ../src/filter-enums.cpp:30 ../src/sp-image.cpp:518 msgid "Image" msgstr "Image" @@ -6968,14 +6550,14 @@ msgstr "Type de transparence :" #: ../src/extension/internal/filter/bumps.h:353 #: ../src/extension/internal/filter/morphology.h:176 -#: ../src/filter-enums.cpp:90 +#: ../src/filter-enums.cpp:91 msgid "Atop" msgstr "Atop" #: ../src/extension/internal/filter/bumps.h:354 #: ../src/extension/internal/filter/distort.h:70 #: ../src/extension/internal/filter/morphology.h:174 -#: ../src/filter-enums.cpp:88 +#: ../src/filter-enums.cpp:89 msgid "In" msgstr "In" @@ -7012,23 +6594,20 @@ msgstr "Peinture par canal" #: ../src/extension/internal/filter/color.h:156 #: ../src/extension/internal/filter/color.h:257 -#: ../src/extension/internal/filter/paint.h:87 -#: ../src/filter-enums.cpp:65 -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/extension/internal/filter/paint.h:87 ../src/filter-enums.cpp:66 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 #: ../src/ui/tools/flood-tool.cpp:197 -#: ../src/widgets/sp-color-icc-selector.cpp:362 -#: ../src/widgets/sp-color-icc-selector.cpp:367 -#: ../src/widgets/sp-color-scales.cpp:458 -#: ../src/widgets/sp-color-scales.cpp:459 -#: ../src/widgets/tweak-toolbar.cpp:302 +#: ../src/widgets/sp-color-icc-selector.cpp:337 +#: ../src/widgets/sp-color-icc-selector.cpp:342 +#: ../src/widgets/sp-color-scales.cpp:444 +#: ../src/widgets/sp-color-scales.cpp:445 ../src/widgets/tweak-toolbar.cpp:302 #: ../share/extensions/color_randomize.inx.h:4 msgid "Saturation" msgstr "Saturation" #: ../src/extension/internal/filter/color.h:160 #: ../src/extension/internal/filter/transparency.h:135 -#: ../src/filter-enums.cpp:130 -#: ../src/ui/tools/flood-tool.cpp:199 +#: ../src/filter-enums.cpp:131 ../src/ui/tools/flood-tool.cpp:199 msgid "Alpha" msgstr "Opacité" @@ -7074,38 +6653,33 @@ msgstr "Fondu 2 :" msgid "Blend image or object with a flood color" msgstr "Mélange un image ou un objet avec une couleur de remplissage" -#: ../src/extension/internal/filter/color.h:424 -#: ../src/filter-enums.cpp:22 +#: ../src/extension/internal/filter/color.h:424 ../src/filter-enums.cpp:23 msgid "Component Transfer" msgstr "Transfert de composantes" -#: ../src/extension/internal/filter/color.h:427 -#: ../src/filter-enums.cpp:109 +#: ../src/extension/internal/filter/color.h:427 ../src/filter-enums.cpp:110 msgid "Identity" msgstr "Identité" #: ../src/extension/internal/filter/color.h:428 -#: ../src/extension/internal/filter/paint.h:498 -#: ../src/filter-enums.cpp:110 +#: ../src/extension/internal/filter/paint.h:498 ../src/filter-enums.cpp:111 #: ../src/ui/dialog/filter-effects-dialog.cpp:1050 msgid "Table" msgstr "Table" #: ../src/extension/internal/filter/color.h:429 -#: ../src/extension/internal/filter/paint.h:499 -#: ../src/filter-enums.cpp:111 +#: ../src/extension/internal/filter/paint.h:499 ../src/filter-enums.cpp:112 #: ../src/ui/dialog/filter-effects-dialog.cpp:1053 msgid "Discrete" msgstr "Discret" -#: ../src/extension/internal/filter/color.h:430 -#: ../src/filter-enums.cpp:112 -#: ../src/live_effects/lpe-powerstroke.cpp:188 +#: ../src/extension/internal/filter/color.h:430 ../src/filter-enums.cpp:113 +#: ../src/live_effects/lpe-interpolate_points.cpp:25 +#: ../src/live_effects/lpe-powerstroke.cpp:194 msgid "Linear" msgstr "Linéaire" -#: ../src/extension/internal/filter/color.h:431 -#: ../src/filter-enums.cpp:113 +#: ../src/extension/internal/filter/color.h:431 ../src/filter-enums.cpp:114 msgid "Gamma" msgstr "Gamma" @@ -7158,26 +6732,26 @@ msgid "Extract Channel" msgstr "Extraire un canal" #: ../src/extension/internal/filter/color.h:640 -#: ../src/widgets/sp-color-icc-selector.cpp:369 -#: ../src/widgets/sp-color-icc-selector.cpp:374 -#: ../src/widgets/sp-color-scales.cpp:483 -#: ../src/widgets/sp-color-scales.cpp:484 +#: ../src/widgets/sp-color-icc-selector.cpp:344 +#: ../src/widgets/sp-color-icc-selector.cpp:349 +#: ../src/widgets/sp-color-scales.cpp:469 +#: ../src/widgets/sp-color-scales.cpp:470 msgid "Cyan" msgstr "Cyan" #: ../src/extension/internal/filter/color.h:641 -#: ../src/widgets/sp-color-icc-selector.cpp:370 -#: ../src/widgets/sp-color-icc-selector.cpp:375 -#: ../src/widgets/sp-color-scales.cpp:486 -#: ../src/widgets/sp-color-scales.cpp:487 +#: ../src/widgets/sp-color-icc-selector.cpp:345 +#: ../src/widgets/sp-color-icc-selector.cpp:350 +#: ../src/widgets/sp-color-scales.cpp:472 +#: ../src/widgets/sp-color-scales.cpp:473 msgid "Magenta" msgstr "Magenta" #: ../src/extension/internal/filter/color.h:642 -#: ../src/widgets/sp-color-icc-selector.cpp:371 -#: ../src/widgets/sp-color-icc-selector.cpp:376 -#: ../src/widgets/sp-color-scales.cpp:489 -#: ../src/widgets/sp-color-scales.cpp:490 +#: ../src/widgets/sp-color-icc-selector.cpp:346 +#: ../src/widgets/sp-color-icc-selector.cpp:351 +#: ../src/widgets/sp-color-scales.cpp:475 +#: ../src/widgets/sp-color-scales.cpp:476 msgid "Yellow" msgstr "Jaune" @@ -7202,15 +6776,15 @@ msgid "Fade to:" msgstr "Décolorer en :" #: ../src/extension/internal/filter/color.h:744 -#: ../src/ui/widget/selected-style.cpp:261 -#: ../src/widgets/sp-color-icc-selector.cpp:372 -#: ../src/widgets/sp-color-scales.cpp:492 -#: ../src/widgets/sp-color-scales.cpp:493 +#: ../src/ui/widget/selected-style.cpp:274 +#: ../src/widgets/sp-color-icc-selector.cpp:347 +#: ../src/widgets/sp-color-scales.cpp:478 +#: ../src/widgets/sp-color-scales.cpp:479 msgid "Black" msgstr "Noir" #: ../src/extension/internal/filter/color.h:745 -#: ../src/ui/widget/selected-style.cpp:257 +#: ../src/ui/widget/selected-style.cpp:270 msgid "White" msgstr "Blanc" @@ -7233,7 +6807,7 @@ msgid "Customize greyscale components" msgstr "Ajuste les composantes de niveau de gris" #: ../src/extension/internal/filter/color.h:905 -#: ../src/ui/widget/selected-style.cpp:253 +#: ../src/ui/widget/selected-style.cpp:266 msgid "Invert" msgstr "Inverser" @@ -7286,9 +6860,8 @@ msgid "Shadows" msgstr "Ombres" #: ../src/extension/internal/filter/color.h:1044 -#: ../src/extension/internal/filter/paint.h:356 -#: ../src/filter-enums.cpp:32 -#: ../src/live_effects/effect.cpp:95 +#: ../src/extension/internal/filter/paint.h:356 ../src/filter-enums.cpp:33 +#: ../src/live_effects/effect.cpp:110 #: ../src/ui/dialog/filter-effects-dialog.cpp:1047 #: ../src/widgets/gradient-toolbar.cpp:1156 msgid "Offset" @@ -7320,8 +6893,7 @@ msgstr "Décalage rouge" #: ../src/extension/internal/filter/color.h:1307 #: ../src/extension/internal/filter/color.h:1310 #: ../src/extension/internal/filter/color.h:1313 -#: ../src/ui/dialog/input.cpp:1616 -#: ../src/ui/dialog/layers.cpp:917 +#: ../src/ui/dialog/input.cpp:1616 ../src/ui/dialog/layers.cpp:917 msgid "X" msgstr "X" @@ -7344,8 +6916,12 @@ msgid "Blue offset" msgstr "Décalage bleu" #: ../src/extension/internal/filter/color.h:1215 -msgid "Nudge RGB channels separately and blend them to different types of backgrounds" -msgstr "Décale les canaux RVB séparément en les fondant dans différents types d'arrière-plans" +msgid "" +"Nudge RGB channels separately and blend them to different types of " +"backgrounds" +msgstr "" +"Décale les canaux RVB séparément en les fondant dans différents types " +"d'arrière-plans" #: ../src/extension/internal/filter/color.h:1302 msgid "Nudge CMY" @@ -7364,8 +6940,12 @@ msgid "Yellow offset" msgstr "Décalage jaune" #: ../src/extension/internal/filter/color.h:1327 -msgid "Nudge CMY channels separately and blend them to different types of backgrounds" -msgstr "Décale les canaux CMY séparément en les fondant dans différents types d'arrière-plans" +msgid "" +"Nudge CMY channels separately and blend them to different types of " +"backgrounds" +msgstr "" +"Décale les canaux CMY séparément en les fondant dans différents types " +"d'arrière-plans" #: ../src/extension/internal/filter/color.h:1408 msgid "Quadritone fantasy" @@ -7441,8 +7021,12 @@ msgid "Hue distribution (°):" msgstr "Distribution de la teinte (°) :" #: ../src/extension/internal/filter/color.h:1619 -msgid "Create a custom tritone palette with additional glow, blend modes and hue moving" -msgstr "Crée une palette à trois tons paramétrable avec lueur, modes de fondu et déplacement de teinte" +msgid "" +"Create a custom tritone palette with additional glow, blend modes and hue " +"moving" +msgstr "" +"Crée une palette à trois tons paramétrable avec lueur, modes de fondu et " +"déplacement de teinte" #: ../src/extension/internal/filter/distort.h:67 msgid "Felt Feather" @@ -7450,13 +7034,13 @@ msgstr "Estompage du pourtour" #: ../src/extension/internal/filter/distort.h:71 #: ../src/extension/internal/filter/morphology.h:175 -#: ../src/filter-enums.cpp:89 +#: ../src/filter-enums.cpp:90 msgid "Out" msgstr "Out" #: ../src/extension/internal/filter/distort.h:77 #: ../src/extension/internal/filter/textures.h:75 -#: ../src/ui/widget/selected-style.cpp:131 +#: ../src/ui/widget/selected-style.cpp:132 #: ../src/ui/widget/style-swatch.cpp:128 msgid "Stroke:" msgstr "Contour :" @@ -7489,9 +7073,8 @@ msgstr "Bruit fractal" #: ../src/extension/internal/filter/distort.h:85 #: ../src/extension/internal/filter/distort.h:194 #: ../src/extension/internal/filter/overlays.h:62 -#: ../src/extension/internal/filter/paint.h:693 -#: ../src/filter-enums.cpp:35 -#: ../src/filter-enums.cpp:144 +#: ../src/extension/internal/filter/paint.h:693 ../src/filter-enums.cpp:36 +#: ../src/filter-enums.cpp:145 msgid "Turbulence" msgstr "Turbulence" @@ -7533,6 +7116,7 @@ msgid "Blur and displace edges of shapes and pictures" msgstr "Déplace et rend flous les bords des formes et images" #: ../src/extension/internal/filter/distort.h:190 +#: ../src/live_effects/effect.cpp:140 msgid "Roughen" msgstr "Agitation" @@ -7557,7 +7141,9 @@ msgstr "Personnel" #: ../src/extension/internal/filter/filter-file.cpp:47 msgid "Null external module directory name. Filters will not be loaded." -msgstr "Le nom de dossier des modules externes est vide. Les filtres ne seront pas chargés." +msgstr "" +"Le nom de dossier des modules externes est vide. Les filtres ne seront pas " +"chargés." #: ../src/extension/internal/filter/image.h:49 msgid "Edge Detect" @@ -7608,10 +7194,8 @@ msgid "Open" msgstr "Overt" #: ../src/extension/internal/filter/morphology.h:65 -#: ../src/libgdl/gdl-dock-placeholder.c:167 -#: ../src/libgdl/gdl-dock.c:191 -#: ../src/widgets/rect-toolbar.cpp:314 -#: ../src/widgets/spray-toolbar.cpp:116 +#: ../src/libgdl/gdl-dock-placeholder.c:167 ../src/libgdl/gdl-dock.c:191 +#: ../src/widgets/rect-toolbar.cpp:318 ../src/widgets/spray-toolbar.cpp:116 #: ../src/widgets/tweak-toolbar.cpp:128 #: ../share/extensions/interp_att_g.inx.h:10 msgid "Width" @@ -7647,17 +7231,18 @@ msgid "Composite type:" msgstr "Type de composite :" #: ../src/extension/internal/filter/morphology.h:173 -#: ../src/filter-enums.cpp:87 +#: ../src/filter-enums.cpp:88 msgid "Over" msgstr "Over" #: ../src/extension/internal/filter/morphology.h:177 -#: ../src/filter-enums.cpp:91 +#: ../src/filter-enums.cpp:92 msgid "XOR" msgstr "XOR" #: ../src/extension/internal/filter/morphology.h:179 #: ../src/ui/dialog/layer-properties.cpp:185 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:59 msgid "Position:" msgstr "Position :" @@ -7719,14 +7304,12 @@ msgstr "Remplissage turbulent" #: ../src/extension/internal/filter/overlays.h:59 #: ../src/extension/internal/filter/paint.h:690 -#: ../src/extension/internal/filter/shadows.h:60 -#: ../src/ui/dialog/find.cpp:87 +#: ../src/extension/internal/filter/shadows.h:60 ../src/ui/dialog/find.cpp:87 #: ../src/ui/dialog/tracedialog.cpp:747 #: ../share/extensions/color_HSL_adjust.inx.h:2 #: ../share/extensions/color_custom.inx.h:2 #: ../share/extensions/color_randomize.inx.h:2 -#: ../share/extensions/dots.inx.h:2 -#: ../share/extensions/dxf_input.inx.h:2 +#: ../share/extensions/dots.inx.h:2 ../share/extensions/dxf_input.inx.h:2 #: ../share/extensions/dxf_outlines.inx.h:2 #: ../share/extensions/gcodetools_area.inx.h:29 #: ../share/extensions/gcodetools_engraving.inx.h:7 @@ -7740,10 +7323,8 @@ msgstr "Remplissage turbulent" #: ../share/extensions/lorem_ipsum.inx.h:2 #: ../share/extensions/pathalongpath.inx.h:2 #: ../share/extensions/pathscatter.inx.h:2 -#: ../share/extensions/radiusrand.inx.h:2 -#: ../share/extensions/scour.inx.h:2 -#: ../share/extensions/split.inx.h:2 -#: ../share/extensions/voronoi2svg.inx.h:2 +#: ../share/extensions/radiusrand.inx.h:2 ../share/extensions/scour.inx.h:2 +#: ../share/extensions/split.inx.h:2 ../share/extensions/voronoi2svg.inx.h:2 #: ../share/extensions/web-set-att.inx.h:2 #: ../share/extensions/web-transmit-att.inx.h:2 #: ../share/extensions/webslicer_create_group.inx.h:2 @@ -7845,7 +7426,9 @@ msgstr "Longueur" #: ../src/extension/internal/filter/paint.h:247 msgid "Convert image to an engraving made of vertical and horizontal lines" -msgstr "Convertit l'image en une gravure composée de lignes verticales et horizontales" +msgstr "" +"Convertit l'image en une gravure composée de lignes verticales et " +"horizontales" #: ../src/extension/internal/filter/paint.h:331 #: ../src/ui/dialog/align-and-distribute.cpp:1004 @@ -7853,11 +7436,12 @@ msgstr "Convertit l'image en une gravure composée de lignes verticales et horiz msgid "Drawing" msgstr "Dessin" +#. 0.91 #: ../src/extension/internal/filter/paint.h:335 #: ../src/extension/internal/filter/paint.h:496 #: ../src/extension/internal/filter/paint.h:590 #: ../src/extension/internal/filter/paint.h:976 -#: ../src/splivarot.cpp:2212 +#: ../src/live_effects/effect.cpp:151 ../src/splivarot.cpp:2212 msgid "Simplify" msgstr "Simplifier" @@ -7928,6 +7512,7 @@ msgid "Contrasted" msgstr "Contrasté" #: ../src/extension/internal/filter/paint.h:591 +#: ../src/live_effects/lpe-jointype.cpp:51 msgid "Line width" msgstr "Largeur de ligne" @@ -8018,9 +7603,8 @@ msgid "Snow crest" msgstr "Crête neigeuse" #: ../src/extension/internal/filter/protrusions.h:50 -#, fuzzy msgid "Drift Size" -msgstr "Dimension de l'amas" +msgstr "Quantité de neige" #: ../src/extension/internal/filter/protrusions.h:58 msgid "Snow has fallen on object" @@ -8124,28 +7708,24 @@ msgid "Inkblot on tissue or rough paper" msgstr "Tache d'encre sur du tissu ou du papier à grain" #: ../src/extension/internal/filter/transparency.h:53 -#: ../src/filter-enums.cpp:20 +#: ../src/filter-enums.cpp:21 msgid "Blend" msgstr "Fondre" -#: ../src/extension/internal/filter/transparency.h:55 -#: ../src/rdf.cpp:261 +#: ../src/extension/internal/filter/transparency.h:55 ../src/rdf.cpp:261 msgid "Source:" msgstr "Source :" #: ../src/extension/internal/filter/transparency.h:56 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1551 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1590 msgid "Background" msgstr "Fond" #: ../src/extension/internal/filter/transparency.h:59 #: ../src/ui/dialog/filter-effects-dialog.cpp:2839 -#: ../src/ui/dialog/input.cpp:1088 -#: ../src/widgets/eraser-toolbar.cpp:106 -#: ../src/widgets/pencil-toolbar.cpp:127 -#: ../src/widgets/spray-toolbar.cpp:186 -#: ../src/widgets/tweak-toolbar.cpp:254 -#: ../share/extensions/extrude.inx.h:2 +#: ../src/ui/dialog/input.cpp:1088 ../src/widgets/eraser-toolbar.cpp:106 +#: ../src/widgets/pencil-toolbar.cpp:132 ../src/widgets/spray-toolbar.cpp:186 +#: ../src/widgets/tweak-toolbar.cpp:254 ../share/extensions/extrude.inx.h:2 #: ../share/extensions/triangle.inx.h:8 msgid "Mode:" msgstr "Mode :" @@ -8173,7 +7753,8 @@ msgstr "Opacité globale" #: ../src/extension/internal/filter/transparency.h:218 msgid "Make the lightest parts of the object progressively transparent" -msgstr "Rend les parties les plus claires de l'objet progressivement transparentes" +msgstr "" +"Rend les parties les plus claires de l'objet progressivement transparentes" #: ../src/extension/internal/filter/transparency.h:291 msgid "Set opacity and strength of opacity boundaries" @@ -8191,74 +7772,88 @@ msgstr "Découpe" msgid "Repaint anything visible monochrome" msgstr "Recouvre l'objet d'une couleur monochrome" -#: ../src/extension/internal/gdkpixbuf-input.cpp:184 +#: ../src/extension/internal/gdkpixbuf-input.cpp:183 #, c-format msgid "%s bitmap image import" msgstr "Import d'une image matricielle %s" -#: ../src/extension/internal/gdkpixbuf-input.cpp:191 +#: ../src/extension/internal/gdkpixbuf-input.cpp:190 msgid "Image Import Type:" msgstr "Type d'importation d'image :" -#: ../src/extension/internal/gdkpixbuf-input.cpp:191 -msgid "Embed results in stand-alone, larger SVG files. Link references a file outside this SVG document and all files must be moved together." -msgstr "Incorporer génère un fichier SVG unique, mais plus volumineux. Lier crée une référence vers un fichier externe au document SVG qui doit être déplacé avec le fichier SVG." +#: ../src/extension/internal/gdkpixbuf-input.cpp:190 +msgid "" +"Embed results in stand-alone, larger SVG files. Link references a file " +"outside this SVG document and all files must be moved together." +msgstr "" +"Incorporer génère un fichier SVG unique, mais plus volumineux. Lier crée une " +"référence vers un fichier externe au document SVG qui doit être déplacé avec " +"le fichier SVG." -#: ../src/extension/internal/gdkpixbuf-input.cpp:192 -#: ../src/ui/dialog/inkscape-preferences.cpp:1449 +#: ../src/extension/internal/gdkpixbuf-input.cpp:191 +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Embed" msgstr "Incorporer" -#: ../src/extension/internal/gdkpixbuf-input.cpp:193 -#: ../src/sp-anchor.cpp:119 -#: ../src/ui/dialog/inkscape-preferences.cpp:1449 +#: ../src/extension/internal/gdkpixbuf-input.cpp:192 ../src/sp-anchor.cpp:119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Link" msgstr "Lier" -#: ../src/extension/internal/gdkpixbuf-input.cpp:196 +#: ../src/extension/internal/gdkpixbuf-input.cpp:195 msgid "Image DPI:" msgstr "Résolution de l'image (ppp) :" -#: ../src/extension/internal/gdkpixbuf-input.cpp:196 -msgid "Take information from file or use default bitmap import resolution as defined in the preferences." -msgstr "Récupère les informations dans le fichier ou utilise la résolution d'importation telle que définie dans les préférences." +#: ../src/extension/internal/gdkpixbuf-input.cpp:195 +msgid "" +"Take information from file or use default bitmap import resolution as " +"defined in the preferences." +msgstr "" +"Récupère les informations dans le fichier ou utilise la résolution " +"d'importation telle que définie dans les préférences." -#: ../src/extension/internal/gdkpixbuf-input.cpp:197 +#: ../src/extension/internal/gdkpixbuf-input.cpp:196 msgid "From file" msgstr "Déduire du fichier" -#: ../src/extension/internal/gdkpixbuf-input.cpp:198 +#: ../src/extension/internal/gdkpixbuf-input.cpp:197 msgid "Default import resolution" msgstr "Résolution d'importation par défaut" -#: ../src/extension/internal/gdkpixbuf-input.cpp:201 +#: ../src/extension/internal/gdkpixbuf-input.cpp:200 msgid "Image Rendering Mode:" msgstr "Mode de rendu de l'image :" -#: ../src/extension/internal/gdkpixbuf-input.cpp:201 -msgid "When an image is upscaled, apply smoothing or keep blocky (pixelated). (Will not work in all browsers.)" +#: ../src/extension/internal/gdkpixbuf-input.cpp:200 +msgid "" +"When an image is upscaled, apply smoothing or keep blocky (pixelated). (Will " +"not work in all browsers.)" msgstr "" +"When an image is upscaled, apply smoothing or keep blocky (pixelated). (Will " +"not work in all browsers.)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/extension/internal/gdkpixbuf-input.cpp:201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "None (auto)" msgstr "Aucun (défaut)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:203 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/extension/internal/gdkpixbuf-input.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "Smooth (optimizeQuality)" msgstr "Lisse (optimisé pour la qualité)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:204 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/extension/internal/gdkpixbuf-input.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "Blocky (optimizeSpeed)" msgstr "Bloc (optimisé pour la vitesse)" -#: ../src/extension/internal/gdkpixbuf-input.cpp:207 +#: ../src/extension/internal/gdkpixbuf-input.cpp:206 msgid "Hide the dialog next time and always apply the same actions." -msgstr "Masquer cette boîte de dialogue la prochaine fois et toujours appliquer la même action." +msgstr "" +"Masquer cette boîte de dialogue la prochaine fois et toujours appliquer la " +"même action." -#: ../src/extension/internal/gdkpixbuf-input.cpp:207 +#: ../src/extension/internal/gdkpixbuf-input.cpp:206 msgid "Don't ask again" msgstr "Ne plus demander" @@ -8274,8 +7869,7 @@ msgstr "Dégradé GIMP (*.ggr)" msgid "Gradients used in GIMP" msgstr "Dégradés utilisés dans GIMP" -#: ../src/extension/internal/grid.cpp:210 -#: ../src/ui/widget/panel.cpp:117 +#: ../src/extension/internal/grid.cpp:210 ../src/ui/widget/panel.cpp:117 msgid "Grid" msgstr "Grille" @@ -8300,7 +7894,7 @@ msgid "Vertical Offset:" msgstr "Décalage vertical :" #: ../src/extension/internal/grid.cpp:220 -#: ../src/ui/dialog/inkscape-preferences.cpp:1470 +#: ../src/ui/dialog/inkscape-preferences.cpp:1473 #: ../share/extensions/draw_from_triangle.inx.h:58 #: ../share/extensions/eqtexsvg.inx.h:4 #: ../share/extensions/foldablebox.inx.h:9 @@ -8321,8 +7915,8 @@ msgstr "Décalage vertical :" #: ../share/extensions/render_barcode_datamatrix.inx.h:5 #: ../share/extensions/render_barcode_qrcode.inx.h:18 #: ../share/extensions/render_gear_rack.inx.h:5 -#: ../share/extensions/render_gears.inx.h:11 -#: ../share/extensions/rtree.inx.h:4 +#: ../share/extensions/render_gears.inx.h:11 ../share/extensions/rtree.inx.h:4 +#: ../share/extensions/seamless_pattern.inx.h:5 #: ../share/extensions/spirograph.inx.h:10 #: ../share/extensions/svgcalendar.inx.h:38 #: ../share/extensions/triangle.inx.h:14 @@ -8332,7 +7926,7 @@ msgstr "Rendu" #: ../src/extension/internal/grid.cpp:221 #: ../src/ui/dialog/document-properties.cpp:155 -#: ../src/ui/dialog/inkscape-preferences.cpp:780 +#: ../src/ui/dialog/inkscape-preferences.cpp:783 #: ../src/widgets/toolbox.cpp:1826 msgid "Grids" msgstr "Grilles" @@ -8417,8 +8011,12 @@ msgid "Precision of approximating gradient meshes:" msgstr "Précision de l'approximation sur les mailles de dégradés :" #: ../src/extension/internal/pdfinput/pdf-input.cpp:125 -msgid "Note: setting the precision too high may result in a large SVG file and slow performance." -msgstr "Note : avec une précision trop haute, vous risquez d'obtenir des fichiers SVG très gros et de ralentir le programme." +msgid "" +"Note: setting the precision too high may result in a large SVG file " +"and slow performance." +msgstr "" +"Note : avec une précision trop haute, vous risquez d'obtenir des " +"fichiers SVG très gros et de ralentir le programme." #: ../src/extension/internal/pdfinput/pdf-input.cpp:128 msgid "import via Poppler" @@ -8440,7 +8038,9 @@ msgstr "Importer le texte en tant que texte" #: ../src/extension/internal/pdfinput/pdf-input.cpp:146 msgid "Replace PDF fonts by closest-named installed fonts" -msgstr "Remplace les polices du PDF par les polices installées dont le nom est le plus proche" +msgstr "" +"Remplace les polices du PDF par les polices installées dont le nom est le " +"plus proche" #: ../src/extension/internal/pdfinput/pdf-input.cpp:149 msgid "Embed images" @@ -8474,29 +8074,31 @@ msgctxt "PDF input precision" msgid "very fine" msgstr "très fin" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:877 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:901 msgid "PDF Input" msgstr "Entrée PDF" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:882 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:906 msgid "Adobe PDF (*.pdf)" msgstr "Adobe PDF (*.pdf)" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:883 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:907 msgid "Adobe Portable Document Format" msgstr "Adobe Portable Document Format" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:890 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:914 msgid "AI Input" msgstr "Entrée AI" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:895 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:919 msgid "Adobe Illustrator 9.0 and above (*.ai)" msgstr "Adobe Illustrator 9.0 et supérieur (*.ai)" -#: ../src/extension/internal/pdfinput/pdf-input.cpp:896 +#: ../src/extension/internal/pdfinput/pdf-input.cpp:920 msgid "Open files saved in Adobe Illustrator 9.0 and newer versions" -msgstr "Ouvrir des fichiers créés avec Adobe Illustrator version 9.0 et les versions plus récentes" +msgstr "" +"Ouvrir des fichiers créés avec Adobe Illustrator version 9.0 et les versions " +"plus récentes" #: ../src/extension/internal/pov-out.cpp:715 msgid "PovRay Output" @@ -8550,8 +8152,7 @@ msgstr "Format Scalable Vector Graphic défini par le W3C" msgid "SVGZ Input" msgstr "Entrée SVGZ" -#: ../src/extension/internal/svgz.cpp:52 -#: ../src/extension/internal/svgz.cpp:66 +#: ../src/extension/internal/svgz.cpp:52 ../src/extension/internal/svgz.cpp:66 msgid "Compressed Inkscape SVG (*.svgz)" msgstr "SVG Inkscape compressé (*.svgz)" @@ -8559,8 +8160,7 @@ msgstr "SVG Inkscape compressé (*.svgz)" msgid "SVG file format compressed with GZip" msgstr "Format de fichier SVG compressé avec Gzip" -#: ../src/extension/internal/svgz.cpp:61 -#: ../src/extension/internal/svgz.cpp:75 +#: ../src/extension/internal/svgz.cpp:61 ../src/extension/internal/svgz.cpp:75 msgid "SVGZ Output" msgstr "Sortie SVGZ" @@ -8576,90 +8176,93 @@ msgstr "SVG simple compressé (*.svgz)" msgid "Scalable Vector Graphics format compressed with GZip" msgstr "Format Scalable Vector Graphics compressé avec Gzip" -#: ../src/extension/internal/vsd-input.cpp:274 +#: ../src/extension/internal/vsd-input.cpp:301 msgid "VSD Input" msgstr "Entrée VSD" -#: ../src/extension/internal/vsd-input.cpp:279 +#: ../src/extension/internal/vsd-input.cpp:306 msgid "Microsoft Visio Diagram (*.vsd)" msgstr "Diagramme Microsoft Visio (*.vsd)" -#: ../src/extension/internal/vsd-input.cpp:280 +#: ../src/extension/internal/vsd-input.cpp:307 msgid "File format used by Microsoft Visio 6 and later" -msgstr "Format de fichier utilisé par Microsoft Visio 6 et les versions suivantes" +msgstr "" +"Format de fichier utilisé par Microsoft Visio 6 et les versions suivantes" -#: ../src/extension/internal/vsd-input.cpp:287 +#: ../src/extension/internal/vsd-input.cpp:314 msgid "VDX Input" msgstr "Entrée VDX" -#: ../src/extension/internal/vsd-input.cpp:292 +#: ../src/extension/internal/vsd-input.cpp:319 msgid "Microsoft Visio XML Diagram (*.vdx)" msgstr "Diagramme Microsoft Visio XML (*.vdx)" -#: ../src/extension/internal/vsd-input.cpp:293 +#: ../src/extension/internal/vsd-input.cpp:320 msgid "File format used by Microsoft Visio 2010 and later" -msgstr "Format de fichier utilisé par Microsoft Visio 2010 et les versions suivantes" +msgstr "" +"Format de fichier utilisé par Microsoft Visio 2010 et les versions suivantes" -#: ../src/extension/internal/vsd-input.cpp:300 +#: ../src/extension/internal/vsd-input.cpp:327 msgid "VSDM Input" msgstr "Entrée VSDM" -#: ../src/extension/internal/vsd-input.cpp:305 +#: ../src/extension/internal/vsd-input.cpp:332 msgid "Microsoft Visio 2013 drawing (*.vsdm)" msgstr "Dessin Microsoft Visio 2013 (*.vsdm)" -#: ../src/extension/internal/vsd-input.cpp:306 -#: ../src/extension/internal/vsd-input.cpp:319 +#: ../src/extension/internal/vsd-input.cpp:333 +#: ../src/extension/internal/vsd-input.cpp:346 msgid "File format used by Microsoft Visio 2013 and later" -msgstr "Format de fichier utilisé par Microsoft Visio 2013 et les versions suivantes" +msgstr "" +"Format de fichier utilisé par Microsoft Visio 2013 et les versions suivantes" -#: ../src/extension/internal/vsd-input.cpp:313 +#: ../src/extension/internal/vsd-input.cpp:340 msgid "VSDX Input" msgstr "Entrée VSDX" -#: ../src/extension/internal/vsd-input.cpp:318 +#: ../src/extension/internal/vsd-input.cpp:345 msgid "Microsoft Visio 2013 drawing (*.vsdx)" msgstr "Dessin Microsoft Visio 2013 (*.vsdx)" -#: ../src/extension/internal/wmf-inout.cpp:3127 +#: ../src/extension/internal/wmf-inout.cpp:3128 msgid "WMF Input" msgstr "Entrée WMF" -#: ../src/extension/internal/wmf-inout.cpp:3132 +#: ../src/extension/internal/wmf-inout.cpp:3133 msgid "Windows Metafiles (*.wmf)" msgstr "Métafichier Windows (*.wmf)" -#: ../src/extension/internal/wmf-inout.cpp:3133 +#: ../src/extension/internal/wmf-inout.cpp:3134 msgid "Windows Metafiles" msgstr "Métafichier Windows" -#: ../src/extension/internal/wmf-inout.cpp:3141 +#: ../src/extension/internal/wmf-inout.cpp:3142 msgid "WMF Output" msgstr "Sortie WMF" -#: ../src/extension/internal/wmf-inout.cpp:3151 +#: ../src/extension/internal/wmf-inout.cpp:3152 msgid "Map all fill patterns to standard WMF hatches" msgstr "Associer tous les motifs de remplissage en hachures WMF" -#: ../src/extension/internal/wmf-inout.cpp:3155 +#: ../src/extension/internal/wmf-inout.cpp:3156 #: ../share/extensions/wmf_input.inx.h:2 #: ../share/extensions/wmf_output.inx.h:2 msgid "Windows Metafile (*.wmf)" msgstr "Métafichier Windows (*.wmf)" -#: ../src/extension/internal/wmf-inout.cpp:3156 +#: ../src/extension/internal/wmf-inout.cpp:3157 msgid "Windows Metafile" msgstr "Métafichier Windows" -#: ../src/extension/internal/wpg-input.cpp:129 +#: ../src/extension/internal/wpg-input.cpp:144 msgid "WPG Input" msgstr "Entrée WPG" -#: ../src/extension/internal/wpg-input.cpp:134 +#: ../src/extension/internal/wpg-input.cpp:149 msgid "WordPerfect Graphics (*.wpg)" msgstr "WordPerfect Graphics (*.wpg)" -#: ../src/extension/internal/wpg-input.cpp:135 +#: ../src/extension/internal/wpg-input.cpp:150 msgid "Vector graphics format used by Corel WordPerfect" msgstr "Format graphique vectoriel utilisé par Corel WordPerfect" @@ -8671,10 +8274,11 @@ msgstr "Aperçu en direct" msgid "Is the effect previewed live on canvas?" msgstr "Prévisualiser l'effet en direct sur la zone de travail ?" -#: ../src/extension/system.cpp:125 -#: ../src/extension/system.cpp:127 +#: ../src/extension/system.cpp:125 ../src/extension/system.cpp:127 msgid "Format autodetect failed. The file is being opened as SVG." -msgstr "Échec de la détection automatique du format. Le fichier est ouvert en tant que SVG." +msgstr "" +"Échec de la détection automatique du format. Le fichier est ouvert en tant " +"que SVG." #: ../src/file.cpp:183 msgid "default.svg" @@ -8682,10 +8286,10 @@ msgstr "default.fr.svg" #: ../src/file.cpp:322 msgid "Broken links have been changed to point to existing files." -msgstr "Les liens brisés ont été modifiés pour pointer vers des fichiers existant." +msgstr "" +"Les liens brisés ont été modifiés pour pointer vers des fichiers existant." -#: ../src/file.cpp:333 -#: ../src/file.cpp:1249 +#: ../src/file.cpp:333 ../src/file.cpp:1249 #, c-format msgid "Failed to load the requested file %s" msgstr "Échec du chargement du fichier %s" @@ -8696,7 +8300,9 @@ msgstr "Document non enregistré. Impossible de le recharger." #: ../src/file.cpp:365 msgid "Changes will be lost! Are you sure you want to reload document %1?" -msgstr "Les changements seront perdus ! Êtes-vous sûr de vouloir recharger le document %1 ?" +msgstr "" +"Les changements seront perdus ! Êtes-vous sûr de vouloir recharger le " +"document %1 ?" #: ../src/file.cpp:391 msgid "Document reverted." @@ -8718,8 +8324,10 @@ msgstr "Nettoyer le document" #, c-format msgid "Removed %i unused definition in <defs>." msgid_plural "Removed %i unused definitions in <defs>." -msgstr[0] "Suppression de %i définition inutilisée dans les <defs>." -msgstr[1] "Suppression de %i définitions inutilisées dans les <defs>." +msgstr[0] "" +"Suppression de %i définition inutilisée dans les <defs>." +msgstr[1] "" +"Suppression de %i définitions inutilisées dans les <defs>." #: ../src/file.cpp:637 msgid "No unused definitions in <defs>." @@ -8727,35 +8335,37 @@ msgstr "Aucune définition inutilisée dans les <defs>." #: ../src/file.cpp:669 #, c-format -msgid "No Inkscape extension found to save document (%s). This may have been caused by an unknown filename extension." -msgstr "Aucune extension Inkscape pour enregistrer le document (%s) n'a été trouvée. Cela peut venir d'une extension de fichier inconnue." - -#: ../src/file.cpp:670 -#: ../src/file.cpp:678 -#: ../src/file.cpp:686 -#: ../src/file.cpp:692 -#: ../src/file.cpp:697 +msgid "" +"No Inkscape extension found to save document (%s). This may have been " +"caused by an unknown filename extension." +msgstr "" +"Aucune extension Inkscape pour enregistrer le document (%s) n'a été trouvée. " +"Cela peut venir d'une extension de fichier inconnue." + +#: ../src/file.cpp:670 ../src/file.cpp:678 ../src/file.cpp:686 +#: ../src/file.cpp:692 ../src/file.cpp:697 msgid "Document not saved." msgstr "Document non enregistré." #: ../src/file.cpp:677 #, c-format -msgid "File %s is write protected. Please remove write protection and try again." -msgstr "Le fichier %s est protégé en écriture. Veuillez supprimer cette protection et recommencer." +msgid "" +"File %s is write protected. Please remove write protection and try again." +msgstr "" +"Le fichier %s est protégé en écriture. Veuillez supprimer cette protection " +"et recommencer." #: ../src/file.cpp:685 #, c-format msgid "File %s could not be saved." msgstr "Le fichier %s n'a pas pu être enregistré." -#: ../src/file.cpp:715 -#: ../src/file.cpp:717 +#: ../src/file.cpp:715 ../src/file.cpp:717 msgid "Document saved." msgstr "Document enregistré." #. We are saving for the first time; create a unique default filename -#: ../src/file.cpp:860 -#: ../src/file.cpp:1408 +#: ../src/file.cpp:860 ../src/file.cpp:1408 msgid "drawing" msgstr "dessin" @@ -8771,8 +8381,7 @@ msgstr "Sélectionner le fichier dans lequel enregistrer une copie" msgid "Select file to save to" msgstr "Sélectionner le fichier dans lequel enregistrer" -#: ../src/file.cpp:989 -#: ../src/file.cpp:991 +#: ../src/file.cpp:989 ../src/file.cpp:991 msgid "No changes need to be saved." msgstr "Aucun changement à enregistrer." @@ -8780,8 +8389,7 @@ msgstr "Aucun changement à enregistrer." msgid "Saving document..." msgstr "Enregistrement du document..." -#: ../src/file.cpp:1246 -#: ../src/ui/dialog/inkscape-preferences.cpp:1443 +#: ../src/file.cpp:1246 ../src/ui/dialog/inkscape-preferences.cpp:1446 #: ../src/ui/dialog/ocaldialogs.cpp:1244 msgid "Import" msgstr "Importer" @@ -8798,215 +8406,202 @@ msgstr "Sélectionner un fichier vers lequel exporter" msgid "Import Clip Art" msgstr "Importer un Clip Art" -#: ../src/filter-enums.cpp:21 +#: ../src/filter-enums.cpp:22 msgid "Color Matrix" msgstr "Matrice de couleurs" -#: ../src/filter-enums.cpp:23 +#: ../src/filter-enums.cpp:24 msgid "Composite" msgstr "Composite" -#: ../src/filter-enums.cpp:24 +#: ../src/filter-enums.cpp:25 msgid "Convolve Matrix" msgstr "Matrice de convolution" -#: ../src/filter-enums.cpp:25 +#: ../src/filter-enums.cpp:26 msgid "Diffuse Lighting" msgstr "Éclairage diffus" -#: ../src/filter-enums.cpp:26 +#: ../src/filter-enums.cpp:27 msgid "Displacement Map" msgstr "Carte de déplacement" -#: ../src/filter-enums.cpp:27 +#: ../src/filter-enums.cpp:28 msgid "Flood" msgstr "Remplissage" -#: ../src/filter-enums.cpp:30 -#: ../share/extensions/text_merge.inx.h:1 +#: ../src/filter-enums.cpp:31 ../share/extensions/text_merge.inx.h:1 msgid "Merge" msgstr "Fusionner" -#: ../src/filter-enums.cpp:33 +#: ../src/filter-enums.cpp:34 msgid "Specular Lighting" msgstr "Éclairage spéculaire" -#: ../src/filter-enums.cpp:34 +#: ../src/filter-enums.cpp:35 msgid "Tile" msgstr "Paver" -#: ../src/filter-enums.cpp:40 +#: ../src/filter-enums.cpp:41 msgid "Source Graphic" msgstr "Source image" -#: ../src/filter-enums.cpp:41 +#: ../src/filter-enums.cpp:42 msgid "Source Alpha" msgstr "Opacité de la source" -#: ../src/filter-enums.cpp:42 +#: ../src/filter-enums.cpp:43 msgid "Background Image" msgstr "Image de fond" -#: ../src/filter-enums.cpp:43 +#: ../src/filter-enums.cpp:44 msgid "Background Alpha" msgstr "Opacité de fond" -#: ../src/filter-enums.cpp:44 +#: ../src/filter-enums.cpp:45 msgid "Fill Paint" msgstr "Remplissage" -#: ../src/filter-enums.cpp:45 +#: ../src/filter-enums.cpp:46 msgid "Stroke Paint" msgstr "Remplissage du contour" #. New in Compositing and Blending Level 1 -#: ../src/filter-enums.cpp:57 +#: ../src/filter-enums.cpp:58 msgid "Overlay" msgstr "Superposition" -#: ../src/filter-enums.cpp:58 +#: ../src/filter-enums.cpp:59 msgid "Color Dodge" msgstr "Estompage de couleur" -#: ../src/filter-enums.cpp:59 +#: ../src/filter-enums.cpp:60 msgid "Color Burn" msgstr "Brûlage de couleur" -#: ../src/filter-enums.cpp:60 +#: ../src/filter-enums.cpp:61 msgid "Hard Light" msgstr "Lumière crue" -#: ../src/filter-enums.cpp:61 +#: ../src/filter-enums.cpp:62 msgid "Soft Light" msgstr "Lumière douce" -#: ../src/filter-enums.cpp:62 -#: ../src/splivarot.cpp:88 -#: ../src/splivarot.cpp:94 +#: ../src/filter-enums.cpp:63 ../src/splivarot.cpp:88 ../src/splivarot.cpp:94 msgid "Difference" msgstr "Différence" -#: ../src/filter-enums.cpp:63 -#: ../src/splivarot.cpp:100 +#: ../src/filter-enums.cpp:64 ../src/splivarot.cpp:100 msgid "Exclusion" msgstr "Exclusion" -#: ../src/filter-enums.cpp:64 -#: ../src/ui/tools/flood-tool.cpp:196 -#: ../src/widgets/sp-color-icc-selector.cpp:361 -#: ../src/widgets/sp-color-icc-selector.cpp:365 -#: ../src/widgets/sp-color-scales.cpp:455 -#: ../src/widgets/sp-color-scales.cpp:456 -#: ../src/widgets/tweak-toolbar.cpp:286 +#: ../src/filter-enums.cpp:65 ../src/ui/tools/flood-tool.cpp:196 +#: ../src/widgets/sp-color-icc-selector.cpp:336 +#: ../src/widgets/sp-color-icc-selector.cpp:340 +#: ../src/widgets/sp-color-scales.cpp:441 +#: ../src/widgets/sp-color-scales.cpp:442 ../src/widgets/tweak-toolbar.cpp:286 #: ../share/extensions/color_randomize.inx.h:3 msgid "Hue" msgstr "Teinte" -#: ../src/filter-enums.cpp:67 +#: ../src/filter-enums.cpp:68 msgid "Luminosity" msgstr "Luminosité" -#: ../src/filter-enums.cpp:77 +#: ../src/filter-enums.cpp:78 msgid "Matrix" msgstr "Matrice" -#: ../src/filter-enums.cpp:78 +#: ../src/filter-enums.cpp:79 msgid "Saturate" msgstr "Saturation" -#: ../src/filter-enums.cpp:79 +#: ../src/filter-enums.cpp:80 msgid "Hue Rotate" msgstr "Décalage de teinte" -#: ../src/filter-enums.cpp:80 +#: ../src/filter-enums.cpp:81 msgid "Luminance to Alpha" msgstr "Luminance vers opacité" #. File -#: ../src/filter-enums.cpp:86 -#: ../src/verbs.cpp:2352 +#: ../src/filter-enums.cpp:87 ../src/verbs.cpp:2435 #: ../share/extensions/jessyInk_mouseHandler.inx.h:3 #: ../share/extensions/jessyInk_transitions.inx.h:7 msgid "Default" msgstr "Défaut" #. New CSS -#: ../src/filter-enums.cpp:94 +#: ../src/filter-enums.cpp:95 msgid "Clear" msgstr "Effacer" -#: ../src/filter-enums.cpp:95 +#: ../src/filter-enums.cpp:96 msgid "Copy" msgstr "Copier" -#: ../src/filter-enums.cpp:96 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1571 +#: ../src/filter-enums.cpp:97 ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1610 msgid "Destination" msgstr "Destination" -#: ../src/filter-enums.cpp:97 -#, fuzzy +#: ../src/filter-enums.cpp:98 msgid "Destination Over" -msgstr "Destination" +msgstr "Destination Over" -#: ../src/filter-enums.cpp:98 -#, fuzzy +#: ../src/filter-enums.cpp:99 msgid "Destination In" -msgstr "Destination" +msgstr "Destination In" -#: ../src/filter-enums.cpp:99 -#, fuzzy +#: ../src/filter-enums.cpp:100 msgid "Destination Out" -msgstr "Destination" +msgstr "Destination Out" -#: ../src/filter-enums.cpp:100 -#, fuzzy +#: ../src/filter-enums.cpp:101 msgid "Destination Atop" -msgstr "Destination" +msgstr "Destination Atop" -#: ../src/filter-enums.cpp:101 +#: ../src/filter-enums.cpp:102 msgid "Lighter" msgstr "Éclaircir" -#: ../src/filter-enums.cpp:103 +#: ../src/filter-enums.cpp:104 msgid "Arithmetic" msgstr "Arithmetic" -#: ../src/filter-enums.cpp:119 -#: ../src/selection-chemistry.cpp:535 +#: ../src/filter-enums.cpp:120 ../src/selection-chemistry.cpp:550 msgid "Duplicate" msgstr "Dupliquer" -#: ../src/filter-enums.cpp:120 +#: ../src/filter-enums.cpp:121 msgid "Wrap" msgstr "Retour à la ligne" -#: ../src/filter-enums.cpp:121 +#: ../src/filter-enums.cpp:122 msgctxt "Convolve matrix, edge mode" msgid "None" msgstr "Aucun" -#: ../src/filter-enums.cpp:136 +#: ../src/filter-enums.cpp:137 msgid "Erode" msgstr "Contracter" -#: ../src/filter-enums.cpp:137 +#: ../src/filter-enums.cpp:138 msgid "Dilate" msgstr "Dilater" -#: ../src/filter-enums.cpp:143 +#: ../src/filter-enums.cpp:144 msgid "Fractal Noise" msgstr "Bruit fractal" -#: ../src/filter-enums.cpp:150 +#: ../src/filter-enums.cpp:151 msgid "Distant Light" msgstr "Lumière distante (rayons parallèles)" -#: ../src/filter-enums.cpp:151 +#: ../src/filter-enums.cpp:152 msgid "Point Light" msgstr "Lumière ponctuelle (rayons omnidirectionnels)" -#: ../src/filter-enums.cpp:152 +#: ../src/filter-enums.cpp:153 msgid "Spot Light" msgstr "Lumière spot (cône de lumière)" @@ -9018,64 +8613,51 @@ msgstr "Inverser les couleurs du dégradé" msgid "Reverse gradient" msgstr "Inverser le dégradé" -#: ../src/gradient-chemistry.cpp:1620 -#: ../src/widgets/gradient-selector.cpp:245 +#: ../src/gradient-chemistry.cpp:1620 ../src/widgets/gradient-selector.cpp:227 msgid "Delete swatch" msgstr "Supprimer l'échantillon" -#: ../src/gradient-drag.cpp:97 -#: ../src/ui/tools/gradient-tool.cpp:100 +#: ../src/gradient-drag.cpp:97 ../src/ui/tools/gradient-tool.cpp:100 msgid "Linear gradient start" msgstr "Début de dégradé linéaire" #. POINT_LG_BEGIN -#: ../src/gradient-drag.cpp:98 -#: ../src/ui/tools/gradient-tool.cpp:101 +#: ../src/gradient-drag.cpp:98 ../src/ui/tools/gradient-tool.cpp:101 msgid "Linear gradient end" msgstr "Fin de dégradé linéaire" -#: ../src/gradient-drag.cpp:99 -#: ../src/ui/tools/gradient-tool.cpp:102 +#: ../src/gradient-drag.cpp:99 ../src/ui/tools/gradient-tool.cpp:102 msgid "Linear gradient mid stop" msgstr "Stop médian de dégradé linéaire" -#: ../src/gradient-drag.cpp:100 -#: ../src/ui/tools/gradient-tool.cpp:103 +#: ../src/gradient-drag.cpp:100 ../src/ui/tools/gradient-tool.cpp:103 msgid "Radial gradient center" msgstr "Centre de dégradé radial" -#: ../src/gradient-drag.cpp:101 -#: ../src/gradient-drag.cpp:102 -#: ../src/ui/tools/gradient-tool.cpp:104 -#: ../src/ui/tools/gradient-tool.cpp:105 +#: ../src/gradient-drag.cpp:101 ../src/gradient-drag.cpp:102 +#: ../src/ui/tools/gradient-tool.cpp:104 ../src/ui/tools/gradient-tool.cpp:105 msgid "Radial gradient radius" msgstr "Rayon de dégradé radial" -#: ../src/gradient-drag.cpp:103 -#: ../src/ui/tools/gradient-tool.cpp:106 +#: ../src/gradient-drag.cpp:103 ../src/ui/tools/gradient-tool.cpp:106 msgid "Radial gradient focus" msgstr "Foyer de dégradé radial" #. POINT_RG_FOCUS -#: ../src/gradient-drag.cpp:104 -#: ../src/gradient-drag.cpp:105 -#: ../src/ui/tools/gradient-tool.cpp:107 -#: ../src/ui/tools/gradient-tool.cpp:108 +#: ../src/gradient-drag.cpp:104 ../src/gradient-drag.cpp:105 +#: ../src/ui/tools/gradient-tool.cpp:107 ../src/ui/tools/gradient-tool.cpp:108 msgid "Radial gradient mid stop" msgstr "Stop médian de dégradé radial" -#: ../src/gradient-drag.cpp:106 -#: ../src/ui/tools/mesh-tool.cpp:103 +#: ../src/gradient-drag.cpp:106 ../src/ui/tools/mesh-tool.cpp:103 msgid "Mesh gradient corner" msgstr "coin de filet de dégradé" -#: ../src/gradient-drag.cpp:107 -#: ../src/ui/tools/mesh-tool.cpp:104 +#: ../src/gradient-drag.cpp:107 ../src/ui/tools/mesh-tool.cpp:104 msgid "Mesh gradient handle" msgstr "poignée de filet de dégradé" -#: ../src/gradient-drag.cpp:108 -#: ../src/ui/tools/mesh-tool.cpp:105 +#: ../src/gradient-drag.cpp:108 ../src/ui/tools/mesh-tool.cpp:105 msgid "Mesh gradient tensor" msgstr "tenseur de filet de dégradé" @@ -9083,381 +8665,156 @@ msgstr "tenseur de filet de dégradé" msgid "Added patch row or column" msgstr "" -#: ../src/gradient-drag.cpp:797 +#: ../src/gradient-drag.cpp:799 msgid "Merge gradient handles" msgstr "Fusionner les poignées de dégradé" -#: ../src/gradient-drag.cpp:1104 +#: ../src/gradient-drag.cpp:1106 msgid "Move gradient handle" msgstr "Déplacer la poignée de dégradé" -#: ../src/gradient-drag.cpp:1163 -#: ../src/widgets/gradient-vector.cpp:847 +#: ../src/gradient-drag.cpp:1165 ../src/widgets/gradient-vector.cpp:827 msgid "Delete gradient stop" msgstr "Supprimer un stop de dégradé" -#: ../src/gradient-drag.cpp:1426 +#: ../src/gradient-drag.cpp:1428 #, c-format -msgid "%s %d for: %s%s; drag with Ctrl to snap offset; click with Ctrl+Alt to delete stop" -msgstr "%s %d pour %s%s; déplacer avec Ctrl pour faire varier le décalage par incréments; cliquer avec Ctrl+Alt pour supprimer le stop" +msgid "" +"%s %d for: %s%s; drag with Ctrl to snap offset; click with Ctrl" +"+Alt to delete stop" +msgstr "" +"%s %d pour %s%s; déplacer avec Ctrl pour faire varier le décalage par " +"incréments; cliquer avec Ctrl+Alt pour supprimer le stop" -#: ../src/gradient-drag.cpp:1430 -#: ../src/gradient-drag.cpp:1437 +#: ../src/gradient-drag.cpp:1432 ../src/gradient-drag.cpp:1439 msgid " (stroke)" msgstr " (contour)" -#: ../src/gradient-drag.cpp:1434 +#: ../src/gradient-drag.cpp:1436 #, c-format -msgid "%s for: %s%s; drag with Ctrl to snap angle, with Ctrl+Alt to preserve angle, with Ctrl+Shift to scale around center" -msgstr "%s pour %s%s; cliquer-déplacer avec Ctrl pour faire varier l'angle par incréments; Ctrl+Alt pour préserver l'angle, avec Ctrl+Maj pour redimensionner autour du centre" +msgid "" +"%s for: %s%s; drag with Ctrl to snap angle, with Ctrl+Alt to " +"preserve angle, with Ctrl+Shift to scale around center" +msgstr "" +"%s pour %s%s; cliquer-déplacer avec Ctrl pour faire varier l'angle " +"par incréments; Ctrl+Alt pour préserver l'angle, avec Ctrl+Maj " +"pour redimensionner autour du centre" -#: ../src/gradient-drag.cpp:1442 -msgid "Radial gradient center and focus; drag with Shift to separate focus" -msgstr "Dégradé radial, centre et foyer; déplacer avec Maj pour séparer le foyer" +#: ../src/gradient-drag.cpp:1444 +msgid "" +"Radial gradient center and focus; drag with Shift to " +"separate focus" +msgstr "" +"Dégradé radial, centre et foyer; déplacer avec Maj pour " +"séparer le foyer" -#: ../src/gradient-drag.cpp:1445 +#: ../src/gradient-drag.cpp:1447 #, c-format -msgid "Gradient point shared by %d gradient; drag with Shift to separate" -msgid_plural "Gradient point shared by %d gradients; drag with Shift to separate" -msgstr[0] "Point de dégradé partagé entre %d dégradé; déplacer avec Maj pour séparer " -msgstr[1] "Point de dégradé partagé entre %d dégradés; déplacer avec Maj pour séparer " - -#: ../src/gradient-drag.cpp:2377 +msgid "" +"Gradient point shared by %d gradient; drag with Shift to " +"separate" +msgid_plural "" +"Gradient point shared by %d gradients; drag with Shift to " +"separate" +msgstr[0] "" +"Point de dégradé partagé entre %d dégradé; déplacer avec Maj " +"pour séparer " +msgstr[1] "" +"Point de dégradé partagé entre %d dégradés; déplacer avec Maj " +"pour séparer " + +#: ../src/gradient-drag.cpp:2379 msgid "Move gradient handle(s)" msgstr "Déplacer la poignée de dégradé" -#: ../src/gradient-drag.cpp:2413 +#: ../src/gradient-drag.cpp:2415 msgid "Move gradient mid stop(s)" msgstr "Déplacer le stop médian de dégradé" -#: ../src/gradient-drag.cpp:2702 +#: ../src/gradient-drag.cpp:2704 msgid "Delete gradient stop(s)" msgstr "Supprimer un stop de dégradé" -#: ../src/inkscape.cpp:344 +#: ../src/inkscape.cpp:310 msgid "Autosave failed! Cannot create directory %1." -msgstr "Échec de l'enregistrement automatique. Création du dossier %1 impossible." +msgstr "" +"Échec de l'enregistrement automatique. Création du dossier %1 impossible." -#: ../src/inkscape.cpp:353 +#: ../src/inkscape.cpp:319 msgid "Autosave failed! Cannot open directory %1." -msgstr "Échec de l'enregistrement automatique. Ouverture du dossier %1 impossible." +msgstr "" +"Échec de l'enregistrement automatique. Ouverture du dossier %1 impossible." -#: ../src/inkscape.cpp:369 +#: ../src/inkscape.cpp:335 msgid "Autosaving documents..." msgstr "Enregistrement automatique du document..." -#: ../src/inkscape.cpp:442 +#: ../src/inkscape.cpp:408 msgid "Autosave failed! Could not find inkscape extension to save document." -msgstr "Échec de l'enregistrement automatique ! Impossible de trouver l'extension Inkscape pour enregistrer le document." +msgstr "" +"Échec de l'enregistrement automatique ! Impossible de trouver l'extension " +"Inkscape pour enregistrer le document." -#: ../src/inkscape.cpp:445 -#: ../src/inkscape.cpp:452 +#: ../src/inkscape.cpp:411 ../src/inkscape.cpp:418 #, c-format msgid "Autosave failed! File %s could not be saved." -msgstr "Échec de l'enregistrement automatique ! Le fichier %s n'a pas pu être enregistré." +msgstr "" +"Échec de l'enregistrement automatique ! Le fichier %s n'a pas pu être " +"enregistré." -#: ../src/inkscape.cpp:467 +#: ../src/inkscape.cpp:433 msgid "Autosave complete." msgstr "Enregistrement automatique terminé." -#: ../src/inkscape.cpp:715 +#: ../src/inkscape.cpp:681 msgid "Untitled document" msgstr "Document sans titre" #. Show nice dialog box -#: ../src/inkscape.cpp:747 +#: ../src/inkscape.cpp:713 msgid "Inkscape encountered an internal error and will close now.\n" msgstr "Inkscape a subi une erreur interne et va se fermer maintenant.\n" -#: ../src/inkscape.cpp:748 -msgid "Automatic backups of unsaved documents were done to the following locations:\n" -msgstr "Les enregistrements automatiques des documents non enregistrés ont été effectués à cet emplacement :\n" - -#: ../src/inkscape.cpp:749 -msgid "Automatic backup of the following documents failed:\n" -msgstr "Les enregistrements automatiques des documents suivants ont échoué :\n" - -#: ../src/interface.cpp:748 -msgctxt "Interface setup" -msgid "Default" -msgstr "Défaut" - -#: ../src/interface.cpp:748 -msgid "Default interface setup" -msgstr "Paramètres par défaut de l'interface" - -#: ../src/interface.cpp:749 -msgctxt "Interface setup" -msgid "Custom" -msgstr "Personnalisé" - -#: ../src/interface.cpp:749 -msgid "Setup for custom task" -msgstr "Paramétrage personnalisée" - -#: ../src/interface.cpp:750 -msgctxt "Interface setup" -msgid "Wide" -msgstr "Large" - -#: ../src/interface.cpp:750 -msgid "Setup for widescreen work" -msgstr "Paramétrage pour écran large" - -#: ../src/interface.cpp:862 -#, c-format -msgid "Verb \"%s\" Unknown" -msgstr "Verbe « %s » inconnu" - -#: ../src/interface.cpp:901 -msgid "Open _Recent" -msgstr "Documents _récents" - -#: ../src/interface.cpp:1009 -#: ../src/interface.cpp:1095 -#: ../src/interface.cpp:1198 -#: ../src/ui/widget/selected-style.cpp:532 -msgid "Drop color" -msgstr "Déposer la couleur" - -#: ../src/interface.cpp:1048 -#: ../src/interface.cpp:1158 -msgid "Drop color on gradient" -msgstr "Déposer la couleur dans le dégradé" - -#: ../src/interface.cpp:1211 -msgid "Could not parse SVG data" -msgstr "Impossible de parcourir les données SVG" - -#: ../src/interface.cpp:1250 -msgid "Drop SVG" -msgstr "Déposer un SVG" - -#: ../src/interface.cpp:1263 -msgid "Drop Symbol" -msgstr "Déposer le symbole" - -#: ../src/interface.cpp:1294 -msgid "Drop bitmap image" -msgstr "Déposer une image bitmap" - -#: ../src/interface.cpp:1386 -#, c-format +#: ../src/inkscape.cpp:714 msgid "" -"A file named \"%s\" already exists. Do you want to replace it?\n" -"\n" -"The file already exists in \"%s\". Replacing it will overwrite its contents." +"Automatic backups of unsaved documents were done to the following " +"locations:\n" msgstr "" -"Le fichier « %s » existe déjà.\n" -"Voulez-vous l'écraser ?\n" -"\n" -"Le fichier existe déjà dans « %s ». Le remplacer écrase son contenu." +"Les enregistrements automatiques des documents non enregistrés ont été " +"effectués à cet emplacement :\n" -#: ../src/interface.cpp:1392 -#: ../src/ui/dialog/export.cpp:1302 -#: ../src/widgets/desktop-widget.cpp:1122 -#: ../src/widgets/desktop-widget.cpp:1184 -msgid "_Cancel" -msgstr "_Annuler" - -#: ../src/interface.cpp:1393 -#: ../share/extensions/web-set-att.inx.h:21 -#: ../share/extensions/web-transmit-att.inx.h:19 -msgid "Replace" -msgstr "Remplacer" - -#: ../src/interface.cpp:1464 -msgid "Go to parent" -msgstr "Sélectionner le parent" - -#. TRANSLATORS: #%1 is the id of the group e.g. , not a number. -#: ../src/interface.cpp:1505 -msgid "Enter group #%1" -msgstr "Entrer dans le groupe #%1" - -#. Item dialog -#: ../src/interface.cpp:1641 -#: ../src/verbs.cpp:2849 -msgid "_Object Properties..." -msgstr "Propriétés de l'_objet..." - -#: ../src/interface.cpp:1650 -msgid "_Select This" -msgstr "_Sélectionner ceci" - -#: ../src/interface.cpp:1661 -msgid "Select Same" -msgstr "Sélectionner même" - -#. Select same fill and stroke -#: ../src/interface.cpp:1671 -msgid "Fill and Stroke" -msgstr "Remplissage et contour" - -#. Select same fill color -#: ../src/interface.cpp:1678 -msgid "Fill Color" -msgstr "Couleur de remplissage" - -#. Select same stroke color -#: ../src/interface.cpp:1685 -msgid "Stroke Color" -msgstr "Couleur de contour" - -#. Select same stroke style -#: ../src/interface.cpp:1692 -msgid "Stroke Style" -msgstr "Style de contour" - -#. Select same stroke style -#: ../src/interface.cpp:1699 -msgid "Object type" -msgstr "Types d'objet" - -#. Move to layer -#: ../src/interface.cpp:1706 -msgid "_Move to layer ..." -msgstr "_Déplacer vers le calque..." - -#. Create link -#: ../src/interface.cpp:1716 -msgid "Create _Link" -msgstr "Créer un _lien" - -#. Set mask -#: ../src/interface.cpp:1739 -msgid "Set Mask" -msgstr "Définir un masque" - -#. Release mask -#: ../src/interface.cpp:1750 -msgid "Release Mask" -msgstr "Retirer le masque" - -#. Set Clip -#: ../src/interface.cpp:1761 -msgid "Set Cl_ip" -msgstr "Définir une dé_coupe" - -#. Release Clip -#: ../src/interface.cpp:1772 -msgid "Release C_lip" -msgstr "Retirer _la découpe" - -#. Group -#: ../src/interface.cpp:1783 -#: ../src/verbs.cpp:2486 -msgid "_Group" -msgstr "_Grouper" - -#: ../src/interface.cpp:1854 -msgid "Create link" -msgstr "Créer un lien" - -#. Ungroup -#: ../src/interface.cpp:1885 -#: ../src/verbs.cpp:2488 -msgid "_Ungroup" -msgstr "_Dégrouper" - -#. Link dialog -#: ../src/interface.cpp:1910 -msgid "Link _Properties..." -msgstr "_Propriétés du lien..." - -#. Select item -#: ../src/interface.cpp:1916 -msgid "_Follow Link" -msgstr "_Suivre le lien" - -#. Reset transformations -#: ../src/interface.cpp:1922 -msgid "_Remove Link" -msgstr "_Retirer le lien" - -#: ../src/interface.cpp:1953 -msgid "Remove link" -msgstr "Retirer le lien" - -#. Image properties -#: ../src/interface.cpp:1964 -msgid "Image _Properties..." -msgstr "_Propriétés de l'image..." - -#. Edit externally -#: ../src/interface.cpp:1970 -msgid "Edit Externally..." -msgstr "Éditer avec un logiciel externe..." - -#. Trace Bitmap -#. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/interface.cpp:1979 -#: ../src/verbs.cpp:2549 -msgid "_Trace Bitmap..." -msgstr "Vec_toriser le bitmap..." - -#. Trace Pixel Art -#: ../src/interface.cpp:1988 -msgid "Trace Pixel Art" -msgstr "Vectoriser en Pixel Art" - -#: ../src/interface.cpp:1998 -msgctxt "Context menu" -msgid "Embed Image" -msgstr "Incorporer l'image" - -#: ../src/interface.cpp:2009 -msgctxt "Context menu" -msgid "Extract Image..." -msgstr "Extraire une image..." - -#. Item dialog -#. Fill and Stroke dialog -#: ../src/interface.cpp:2154 -#: ../src/interface.cpp:2174 -#: ../src/verbs.cpp:2812 -msgid "_Fill and Stroke..." -msgstr "_Remplissage et contour..." - -#. Edit Text dialog -#: ../src/interface.cpp:2180 -#: ../src/verbs.cpp:2831 -msgid "_Text and Font..." -msgstr "_Texte et police..." - -#. Spellcheck dialog -#: ../src/interface.cpp:2186 -#: ../src/verbs.cpp:2839 -msgid "Check Spellin_g..." -msgstr "Vérification ortho_graphique..." +#: ../src/inkscape.cpp:715 +msgid "Automatic backup of the following documents failed:\n" +msgstr "Les enregistrements automatiques des documents suivants ont échoué :\n" -#: ../src/knot.cpp:332 +#: ../src/knot.cpp:346 msgid "Node or handle drag canceled." msgstr "Déplacement de nœud ou de poignée annulé." -#: ../src/knotholder.cpp:158 +#: ../src/knotholder.cpp:170 msgid "Change handle" msgstr "Modifier la poignée de nœud" -#: ../src/knotholder.cpp:237 +#: ../src/knotholder.cpp:257 msgid "Move handle" msgstr "Déplacer la poignée de nœud" #. TRANSLATORS: This refers to the pattern that's inside the object -#: ../src/knotholder.cpp:256 -#: ../src/knotholder.cpp:278 +#: ../src/knotholder.cpp:276 ../src/knotholder.cpp:298 msgid "Move the pattern fill inside the object" msgstr "Déplacer le motif de remplissage à l'intérieur de l'objet" -#: ../src/knotholder.cpp:260 -#: ../src/knotholder.cpp:282 +#: ../src/knotholder.cpp:280 ../src/knotholder.cpp:302 msgid "Scale the pattern fill; uniformly if with Ctrl" -msgstr "Redimensionner le motif de remplissage ; uniformiser en maintenant la touche Ctrl" +msgstr "" +"Redimensionner le motif de remplissage ; uniformiser en maintenant la " +"touche Ctrl" -#: ../src/knotholder.cpp:264 -#: ../src/knotholder.cpp:286 +#: ../src/knotholder.cpp:284 ../src/knotholder.cpp:306 msgid "Rotate the pattern fill; with Ctrl to snap angle" -msgstr "Tourner le motif de remplissage ; Ctrl pour tourner par incréments" +msgstr "" +"Tourner le motif de remplissage ; Ctrl pour tourner par " +"incréments" #: ../src/libgdl/gdl-dock-bar.c:105 msgid "Master" @@ -9493,9 +8850,8 @@ msgid "Dockitem which 'owns' this grip" msgstr "Élément d'attache qui « possède » cette prise" #. Name -#: ../src/libgdl/gdl-dock-item.c:298 -#: ../src/widgets/ruler.cpp:191 -#: ../src/widgets/text-toolbar.cpp:1416 +#: ../src/libgdl/gdl-dock-item.c:298 ../src/widgets/ruler.cpp:191 +#: ../src/widgets/text-toolbar.cpp:1418 #: ../share/extensions/gcodetools_graffiti.inx.h:9 #: ../share/extensions/gcodetools_orientation_points.inx.h:2 msgid "Orientation" @@ -9511,24 +8867,32 @@ msgstr "Redimensionnable" #: ../src/libgdl/gdl-dock-item.c:315 msgid "If set, the dock item can be resized when docked in a GtkPanel widget" -msgstr "Si coché, l'élément détachable peut être redimensionné quand il est attaché à un widget GtkPanel" +msgstr "" +"Si coché, l'élément détachable peut être redimensionné quand il est attaché " +"à un widget GtkPanel" #: ../src/libgdl/gdl-dock-item.c:322 msgid "Item behavior" msgstr "Comportement de l'élément" #: ../src/libgdl/gdl-dock-item.c:323 -msgid "General behavior for the dock item (i.e. whether it can float, if it's locked, etc.)" -msgstr "Comportement général de l'élément détachable (par ex, s'il peut flotter, s'il est verouillé, etc...)" +msgid "" +"General behavior for the dock item (i.e. whether it can float, if it's " +"locked, etc.)" +msgstr "" +"Comportement général de l'élément détachable (par ex, s'il peut flotter, " +"s'il est verouillé, etc...)" -#: ../src/libgdl/gdl-dock-item.c:331 -#: ../src/libgdl/gdl-dock-master.c:148 +#: ../src/libgdl/gdl-dock-item.c:331 ../src/libgdl/gdl-dock-master.c:148 msgid "Locked" msgstr "Verrouillé" #: ../src/libgdl/gdl-dock-item.c:332 -msgid "If set, the dock item cannot be dragged around and it doesn't show a grip" -msgstr "Si coché, l'élément détachable ne peut pas être déplacé et il n'affiche pas de poignée" +msgid "" +"If set, the dock item cannot be dragged around and it doesn't show a grip" +msgstr "" +"Si coché, l'élément détachable ne peut pas être déplacé et il n'affiche pas " +"de poignée" #: ../src/libgdl/gdl-dock-item.c:340 msgid "Preferred width" @@ -9548,19 +8912,28 @@ msgstr "Hauteur préférée pour l'élément détachable" #: ../src/libgdl/gdl-dock-item.c:716 #, c-format -msgid "You can't add a dock object (%p of type %s) inside a %s. Use a GdlDock or some other compound dock object." -msgstr "Vous ne pouvez pas ajouter d'objet d'attache (%p de type %s) dans un %s. Utilisez un GdlDock ou un autre objet d'attache composite." +msgid "" +"You can't add a dock object (%p of type %s) inside a %s. Use a GdlDock or " +"some other compound dock object." +msgstr "" +"Vous ne pouvez pas ajouter d'objet d'attache (%p de type %s) dans un %s. " +"Utilisez un GdlDock ou un autre objet d'attache composite." #: ../src/libgdl/gdl-dock-item.c:723 #, c-format -msgid "Attempting to add a widget with type %s to a %s, but it can only contain one widget at a time; it already contains a widget of type %s" -msgstr "Tentative d'ajout d'un gadget de %s à un %s, mais il ne peut contenir qu'un gadget à la fois ; il contient déjà un gadget detype %s" +msgid "" +"Attempting to add a widget with type %s to a %s, but it can only contain one " +"widget at a time; it already contains a widget of type %s" +msgstr "" +"Tentative d'ajout d'un gadget de %s à un %s, mais il ne peut contenir qu'un " +"gadget à la fois ; il contient déjà un gadget detype %s" -#: ../src/libgdl/gdl-dock-item.c:1471 -#: ../src/libgdl/gdl-dock-item.c:1521 +#: ../src/libgdl/gdl-dock-item.c:1471 ../src/libgdl/gdl-dock-item.c:1521 #, c-format msgid "Unsupported docking strategy %s in dock object of type %s" -msgstr "La stratégie d'attache %s n'est pas supportée pour l'objet d'attache de type %s" +msgstr "" +"La stratégie d'attache %s n'est pas supportée pour l'objet d'attache de type " +"%s" #. UnLock menuitem #: ../src/libgdl/gdl-dock-item.c:1629 @@ -9582,8 +8955,7 @@ msgstr "Verrouiller" msgid "Attempt to bind an unbound item %p" msgstr "Tentative de lier un élément délié %p" -#: ../src/libgdl/gdl-dock-master.c:141 -#: ../src/libgdl/gdl-dock.c:184 +#: ../src/libgdl/gdl-dock-master.c:141 ../src/libgdl/gdl-dock.c:184 msgid "Default title" msgstr "Titre par défaut" @@ -9592,34 +8964,46 @@ msgid "Default title for newly created floating docks" msgstr "Titre par défaut pour les nouveaux points d'attache flottants" #: ../src/libgdl/gdl-dock-master.c:149 -msgid "If is set to 1, all the dock items bound to the master are locked; if it's 0, all are unlocked; -1 indicates inconsistency among the items" -msgstr "Si la valeur est 1, tous les éléments détachables liés au maître sont verrouillés ; si la valeur est 0, tous sont déverrouillés, -1 indique des états hétérogènes pour les éléments" +msgid "" +"If is set to 1, all the dock items bound to the master are locked; if it's " +"0, all are unlocked; -1 indicates inconsistency among the items" +msgstr "" +"Si la valeur est 1, tous les éléments détachables liés au maître sont " +"verrouillés ; si la valeur est 0, tous sont déverrouillés, -1 indique des " +"états hétérogènes pour les éléments" -#: ../src/libgdl/gdl-dock-master.c:157 -#: ../src/libgdl/gdl-switcher.c:737 +#: ../src/libgdl/gdl-dock-master.c:157 ../src/libgdl/gdl-switcher.c:737 msgid "Switcher Style" msgstr "Style de commutation" -#: ../src/libgdl/gdl-dock-master.c:158 -#: ../src/libgdl/gdl-switcher.c:738 +#: ../src/libgdl/gdl-dock-master.c:158 ../src/libgdl/gdl-switcher.c:738 msgid "Switcher buttons style" msgstr "Style des boutons de commutation" #: ../src/libgdl/gdl-dock-master.c:783 #, c-format -msgid "master %p: unable to add object %p[%s] to the hash. There already is an item with that name (%p)." -msgstr "maître %p: impossible d'ajouter l'objet %p[%s] dans la table. Il y a déjà un élément avec ce nom (%p)." +msgid "" +"master %p: unable to add object %p[%s] to the hash. There already is an " +"item with that name (%p)." +msgstr "" +"maître %p: impossible d'ajouter l'objet %p[%s] dans la table. Il y a déjà un " +"élément avec ce nom (%p)." #: ../src/libgdl/gdl-dock-master.c:955 #, c-format -msgid "The new dock controller %p is automatic. Only manual dock objects should be named controller." -msgstr "Le nouveau contrôleur d'attache %p est automatique. Seuls les ojbets d'attache manuels peuvent être nommés contrôleurs." +msgid "" +"The new dock controller %p is automatic. Only manual dock objects should be " +"named controller." +msgstr "" +"Le nouveau contrôleur d'attache %p est automatique. Seuls les ojbets " +"d'attache manuels peuvent être nommés contrôleurs." #: ../src/libgdl/gdl-dock-notebook.c:132 #: ../src/ui/dialog/align-and-distribute.cpp:1003 #: ../src/ui/dialog/document-properties.cpp:153 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1497 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1536 #: ../src/widgets/desktop-widget.cpp:1992 +#: ../share/extensions/empty_page.inx.h:1 #: ../share/extensions/voronoi2svg.inx.h:9 msgid "Page" msgstr "Page" @@ -9629,10 +9013,11 @@ msgid "The index of the current page" msgstr "L'index de la page courante" #: ../src/libgdl/gdl-dock-object.c:125 -#: ../src/ui/dialog/inkscape-preferences.cpp:1504 +#: ../src/live_effects/parameter/originalpatharray.cpp:86 +#: ../src/ui/dialog/inkscape-preferences.cpp:1507 #: ../src/ui/widget/page-sizer.cpp:258 -#: ../src/widgets/gradient-selector.cpp:158 -#: ../src/widgets/sp-xmlview-attr-list.cpp:54 +#: ../src/widgets/gradient-selector.cpp:140 +#: ../src/widgets/sp-xmlview-attr-list.cpp:49 msgid "Name" msgstr "Nom" @@ -9674,26 +9059,37 @@ msgstr "Maître d'attache auquel cet objet d'attache est lié" #: ../src/libgdl/gdl-dock-object.c:463 #, c-format -msgid "Call to gdl_dock_object_dock in a dock object %p (object type is %s) which hasn't implemented this method" -msgstr "Appel à gdl_dock_object_dock dans un objet d'attache %p (le type d'objet est %s) qui n'a pas implémenté cette méthode" +msgid "" +"Call to gdl_dock_object_dock in a dock object %p (object type is %s) which " +"hasn't implemented this method" +msgstr "" +"Appel à gdl_dock_object_dock dans un objet d'attache %p (le type d'objet est " +"%s) qui n'a pas implémenté cette méthode" #: ../src/libgdl/gdl-dock-object.c:602 #, c-format -msgid "Dock operation requested in a non-bound object %p. The application might crash" -msgstr "Opération d'attache demandée sur un ojbet %p non-lié. L'application pourrait planter" +msgid "" +"Dock operation requested in a non-bound object %p. The application might " +"crash" +msgstr "" +"Opération d'attache demandée sur un ojbet %p non-lié. L'application pourrait " +"planter" #: ../src/libgdl/gdl-dock-object.c:609 #, c-format msgid "Cannot dock %p to %p because they belong to different masters" -msgstr "Impossible d'attacher %p à %p car ils appartiennent à des maîtres différents" +msgstr "" +"Impossible d'attacher %p à %p car ils appartiennent à des maîtres différents" #: ../src/libgdl/gdl-dock-object.c:651 #, c-format -msgid "Attempt to bind to %p an already bound dock object %p (current master: %p)" -msgstr "Tentative d'attacher à %p un objet d'attache %p déjà lié par ailleurs (maître actuel: %p)" +msgid "" +"Attempt to bind to %p an already bound dock object %p (current master: %p)" +msgstr "" +"Tentative d'attacher à %p un objet d'attache %p déjà lié par ailleurs " +"(maître actuel: %p)" -#: ../src/libgdl/gdl-dock-paned.c:130 -#: ../src/widgets/ruler.cpp:229 +#: ../src/libgdl/gdl-dock-paned.c:130 ../src/widgets/ruler.cpp:229 msgid "Position" msgstr "Position" @@ -9706,8 +9102,12 @@ msgid "Sticky" msgstr "Collé" #: ../src/libgdl/gdl-dock-placeholder.c:142 -msgid "Whether the placeholder will stick to its host or move up the hierarchy when the host is redocked" -msgstr "Détermine si l'élément substituable restera attaché à son hôte ou remontera dans la hiérarchie quand l'hôte est réattaché" +msgid "" +"Whether the placeholder will stick to its host or move up the hierarchy when " +"the host is redocked" +msgstr "" +"Détermine si l'élément substituable restera attaché à son hôte ou remontera " +"dans la hiérarchie quand l'hôte est réattaché" #: ../src/libgdl/gdl-dock-placeholder.c:149 msgid "Host" @@ -9722,8 +9122,12 @@ msgid "Next placement" msgstr "Placement suivant" #: ../src/libgdl/gdl-dock-placeholder.c:158 -msgid "The position an item will be docked to our host if a request is made to dock to us" -msgstr "La position où un élément sera attaché à l'hôte si une demande d'attachement est faite" +msgid "" +"The position an item will be docked to our host if a request is made to dock " +"to us" +msgstr "" +"La position où un élément sera attaché à l'hôte si une demande d'attachement " +"est faite" #: ../src/libgdl/gdl-dock-placeholder.c:168 msgid "Width for the widget when it's attached to the placeholder" @@ -9739,7 +9143,9 @@ msgstr "Niveau supérieur flottant" #: ../src/libgdl/gdl-dock-placeholder.c:183 msgid "Whether the placeholder is standing in for a floating toplevel dock" -msgstr "Détermine si l'élément substituable réserve la place pour un point d'attache flottant de niveau supérieur" +msgstr "" +"Détermine si l'élément substituable réserve la place pour un point d'attache " +"flottant de niveau supérieur" #: ../src/libgdl/gdl-dock-placeholder.c:189 msgid "X Coordinate" @@ -9759,7 +9165,9 @@ msgstr "Coordonnée Y du point d'attache quand il est flottant" #: ../src/libgdl/gdl-dock-placeholder.c:499 msgid "Attempt to dock a dock object to an unbound placeholder" -msgstr "Tentative d'attachement d'un objet d'attache sur un élément substituable non lié" +msgstr "" +"Tentative d'attachement d'un objet d'attache sur un élément substituable non " +"lié" #: ../src/libgdl/gdl-dock-placeholder.c:611 #, c-format @@ -9768,16 +9176,19 @@ msgstr "Signal de détachement reçu d'un objet (%p) qui n'est pas notre hôte % #: ../src/libgdl/gdl-dock-placeholder.c:636 #, c-format -msgid "Something weird happened while getting the child placement for %p from parent %p" -msgstr "Quelque chose de bizarre est arrivé en essayant d'obtenir le placement du fils %p auprès du parent %p" +msgid "" +"Something weird happened while getting the child placement for %p from " +"parent %p" +msgstr "" +"Quelque chose de bizarre est arrivé en essayant d'obtenir le placement du " +"fils %p auprès du parent %p" #: ../src/libgdl/gdl-dock-tablabel.c:126 msgid "Dockitem which 'owns' this tablabel" msgstr "Élément d'attache qui « possède » ce tablabel" -#: ../src/libgdl/gdl-dock.c:176 -#: ../src/ui/dialog/inkscape-preferences.cpp:635 -#: ../src/ui/dialog/inkscape-preferences.cpp:678 +#: ../src/libgdl/gdl-dock.c:176 ../src/ui/dialog/inkscape-preferences.cpp:638 +#: ../src/ui/dialog/inkscape-preferences.cpp:681 msgid "Floating" msgstr "Flottant" @@ -9818,174 +9229,318 @@ msgstr "Coordonnée Y pour un point d'attache flottant" msgid "Dock #%d" msgstr "Point d'attache #%d" -#: ../src/libnrtype/FontFactory.cpp:891 +#: ../src/libnrtype/FontFactory.cpp:618 msgid "Ignoring font without family that will crash Pango" msgstr "Ignorer les polices sans famille qui font planter Pango" -#: ../src/live_effects/effect.cpp:84 +#: ../src/live_effects/effect.cpp:99 msgid "doEffect stack test" msgstr "Test de la pile doEffect" -#: ../src/live_effects/effect.cpp:85 +#: ../src/live_effects/effect.cpp:100 msgid "Angle bisector" msgstr "Bissectrice" #. TRANSLATORS: boolean operations -#: ../src/live_effects/effect.cpp:87 +#: ../src/live_effects/effect.cpp:102 msgid "Boolops" msgstr "Opérations booléennes" -#: ../src/live_effects/effect.cpp:88 +#: ../src/live_effects/effect.cpp:103 msgid "Circle (by center and radius)" msgstr "Cercle (centre et rayon)" -#: ../src/live_effects/effect.cpp:89 +#: ../src/live_effects/effect.cpp:104 msgid "Circle by 3 points" msgstr "Cercle par trois points" -#: ../src/live_effects/effect.cpp:90 +#: ../src/live_effects/effect.cpp:105 msgid "Dynamic stroke" msgstr "Contour dynamique" -#: ../src/live_effects/effect.cpp:91 -#: ../share/extensions/extrude.inx.h:1 +#: ../src/live_effects/effect.cpp:106 ../share/extensions/extrude.inx.h:1 msgid "Extrude" msgstr "Extrusion" -#: ../src/live_effects/effect.cpp:92 +#: ../src/live_effects/effect.cpp:107 msgid "Lattice Deformation" msgstr "Déformation par grille" -#: ../src/live_effects/effect.cpp:93 +#: ../src/live_effects/effect.cpp:108 msgid "Line Segment" msgstr "Segment de ligne" -#: ../src/live_effects/effect.cpp:94 +#: ../src/live_effects/effect.cpp:109 msgid "Mirror symmetry" msgstr "Reflet miroir" -#: ../src/live_effects/effect.cpp:96 +#: ../src/live_effects/effect.cpp:111 msgid "Parallel" msgstr "Parallèle" -#: ../src/live_effects/effect.cpp:97 +#: ../src/live_effects/effect.cpp:112 msgid "Path length" msgstr "Longueur du chemin" -#: ../src/live_effects/effect.cpp:98 +#: ../src/live_effects/effect.cpp:113 msgid "Perpendicular bisector" msgstr "Médiatrice" -#: ../src/live_effects/effect.cpp:99 +#: ../src/live_effects/effect.cpp:114 msgid "Perspective path" msgstr "Perspective" -#: ../src/live_effects/effect.cpp:100 +#: ../src/live_effects/effect.cpp:115 msgid "Rotate copies" msgstr "Tourner les copies" -#: ../src/live_effects/effect.cpp:101 +#: ../src/live_effects/effect.cpp:116 msgid "Recursive skeleton" msgstr "Structure récursive" -#: ../src/live_effects/effect.cpp:102 +#: ../src/live_effects/effect.cpp:117 msgid "Tangent to curve" msgstr "Tangente à la courbe" -#: ../src/live_effects/effect.cpp:103 +#: ../src/live_effects/effect.cpp:118 msgid "Text label" msgstr "Étiquette de texte" #. 0.46 -#: ../src/live_effects/effect.cpp:106 +#: ../src/live_effects/effect.cpp:121 msgid "Bend" msgstr "Courber" -#: ../src/live_effects/effect.cpp:107 +#: ../src/live_effects/effect.cpp:122 msgid "Gears" msgstr "Engrenages" -#: ../src/live_effects/effect.cpp:108 +#: ../src/live_effects/effect.cpp:123 msgid "Pattern Along Path" msgstr "Motif suivant un chemin" #. for historic reasons, this effect is called skeletal(strokes) in Inkscape:SVG -#: ../src/live_effects/effect.cpp:109 +#: ../src/live_effects/effect.cpp:124 msgid "Stitch Sub-Paths" msgstr "Relier les sous-chemins" #. 0.47 -#: ../src/live_effects/effect.cpp:111 +#: ../src/live_effects/effect.cpp:126 msgid "VonKoch" msgstr "Von Koch" -#: ../src/live_effects/effect.cpp:112 +#: ../src/live_effects/effect.cpp:127 msgid "Knot" msgstr "Entrelacs" -#: ../src/live_effects/effect.cpp:113 +#: ../src/live_effects/effect.cpp:128 msgid "Construct grid" msgstr "Grille de conception" -#: ../src/live_effects/effect.cpp:114 +#: ../src/live_effects/effect.cpp:129 msgid "Spiro spline" msgstr "Spline spirographique" -#: ../src/live_effects/effect.cpp:115 +#: ../src/live_effects/effect.cpp:130 msgid "Envelope Deformation" msgstr "Déformation par enveloppe" -#: ../src/live_effects/effect.cpp:116 +#: ../src/live_effects/effect.cpp:131 msgid "Interpolate Sub-Paths" msgstr "Interpoler les sous-chemins" -#: ../src/live_effects/effect.cpp:117 +#: ../src/live_effects/effect.cpp:132 msgid "Hatches (rough)" msgstr "Hachures" -#: ../src/live_effects/effect.cpp:118 +#: ../src/live_effects/effect.cpp:133 msgid "Sketch" msgstr "Croquis" -#: ../src/live_effects/effect.cpp:119 +#: ../src/live_effects/effect.cpp:134 msgid "Ruler" msgstr "Règle" -#. 0.49 -#: ../src/live_effects/effect.cpp:121 +#. 0.91 +#: ../src/live_effects/effect.cpp:136 msgid "Power stroke" msgstr "Contour dynamique" -#: ../src/live_effects/effect.cpp:122 -#: ../src/selection-chemistry.cpp:2837 +#: ../src/live_effects/effect.cpp:137 msgid "Clone original path" msgstr "Cloner le chemin original" -#: ../src/live_effects/effect.cpp:284 +#. EXPERIMENTAL +#: ../src/live_effects/effect.cpp:139 +#: ../src/live_effects/lpe-show_handles.cpp:26 +#, fuzzy +msgid "Show handles" +msgstr "Afficher les poignées" + +#: ../src/live_effects/effect.cpp:141 ../src/widgets/pencil-toolbar.cpp:109 +#, fuzzy +msgid "BSpline" +msgstr "Opaline" + +#: ../src/live_effects/effect.cpp:142 +#: ../src/live_effects/lpe-taperstroke.cpp:78 +#, fuzzy +msgid "Join type" +msgstr "Type de ligne : " + +#: ../src/live_effects/effect.cpp:143 +#, fuzzy +msgid "Taper stroke" +msgstr "Motif de contour" + +#. Ponyscape +#: ../src/live_effects/effect.cpp:145 +#, fuzzy +msgid "Attach path" +msgstr "Chemin de liaison :" + +#: ../src/live_effects/effect.cpp:146 +#, fuzzy +msgid "Fill between strokes" +msgstr "Remplissage et contour" + +#: ../src/live_effects/effect.cpp:147 ../src/selection-chemistry.cpp:2929 +msgid "Fill between many" +msgstr "" + +#: ../src/live_effects/effect.cpp:148 +#, fuzzy +msgid "Ellipse by 5 points" +msgstr "Cercle par trois points" + +#: ../src/live_effects/effect.cpp:149 +#, fuzzy +msgid "Bounding Box" +msgstr "Boîte englobante" + +#: ../src/live_effects/effect.cpp:152 +#, fuzzy +msgid "Lattice Deformation 2" +msgstr "Déformation par grille" + +#: ../src/live_effects/effect.cpp:153 +#, fuzzy +msgid "Perspective/Envelope" +msgstr "Perspective" + +#: ../src/live_effects/effect.cpp:154 +msgid "Fillet/Chamfer" +msgstr "" + +#: ../src/live_effects/effect.cpp:155 +#, fuzzy +msgid "Interpolate points" +msgstr "Interpoler" + +#: ../src/live_effects/effect.cpp:362 msgid "Is visible?" msgstr "Visible ?" -#: ../src/live_effects/effect.cpp:284 -msgid "If unchecked, the effect remains applied to the object but is temporarily disabled on canvas" -msgstr "Si décochée, l'effet est appliqué à l'objet mais est temporairement désactivé sur la zone de travail" +#: ../src/live_effects/effect.cpp:362 +msgid "" +"If unchecked, the effect remains applied to the object but is temporarily " +"disabled on canvas" +msgstr "" +"Si décochée, l'effet est appliqué à l'objet mais est temporairement " +"désactivé sur la zone de travail" -#: ../src/live_effects/effect.cpp:305 +#: ../src/live_effects/effect.cpp:384 msgid "No effect" msgstr "Pas d'effet" -#: ../src/live_effects/effect.cpp:352 +#: ../src/live_effects/effect.cpp:492 #, c-format msgid "Please specify a parameter path for the LPE '%s' with %d mouse clicks" -msgstr "Veuillez spécifier un chemin paramètre pour l'effet de chemin '%s' avec %d clics de souris" +msgstr "" +"Veuillez spécifier un chemin paramètre pour l'effet de chemin '%s' avec %d " +"clics de souris" -#: ../src/live_effects/effect.cpp:624 +#: ../src/live_effects/effect.cpp:759 #, c-format msgid "Editing parameter %s." msgstr "Édition du paramètre %s." -#: ../src/live_effects/effect.cpp:629 +#: ../src/live_effects/effect.cpp:764 msgid "None of the applied path effect's parameters can be edited on-canvas." -msgstr "Aucun des paramètres d'effet de chemin ne peuvent être modifiés sur la zone de travail." +msgstr "" +"Aucun des paramètres d'effet de chemin ne peuvent être modifiés sur la zone " +"de travail." + +#: ../src/live_effects/lpe-attach-path.cpp:29 +#, fuzzy +msgid "Start path:" +msgstr "Chemin de liaison :" + +#: ../src/live_effects/lpe-attach-path.cpp:29 +#, fuzzy +msgid "Path to attach to the start of this path" +msgstr "Le chemin à dessiner le long du squelette" + +#: ../src/live_effects/lpe-attach-path.cpp:30 +#, fuzzy +msgid "Start path position:" +msgstr "Position de départ (x;y) :" + +#: ../src/live_effects/lpe-attach-path.cpp:30 +msgid "Position to attach path start to" +msgstr "" + +#: ../src/live_effects/lpe-attach-path.cpp:31 +#, fuzzy +msgid "Start path curve start:" +msgstr "Définir la couleur du chemin en rouge :" + +#: ../src/live_effects/lpe-attach-path.cpp:31 +#: ../src/live_effects/lpe-attach-path.cpp:35 +#, fuzzy +msgid "Starting curve" +msgstr "Début :" + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:32 +#, fuzzy +msgid "Start path curve end:" +msgstr "Définir la couleur du chemin en rouge :" + +#: ../src/live_effects/lpe-attach-path.cpp:32 +#: ../src/live_effects/lpe-attach-path.cpp:36 +#, fuzzy +msgid "Ending curve" +msgstr "courbure min." + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:33 +#, fuzzy +msgid "End path:" +msgstr "Chemin de courbure :" + +#: ../src/live_effects/lpe-attach-path.cpp:33 +#, fuzzy +msgid "Path to attach to the end of this path" +msgstr "Le chemin à dessiner le long du squelette" + +#: ../src/live_effects/lpe-attach-path.cpp:34 +#, fuzzy +msgid "End path position:" +msgstr "Disposition du composant :" + +#: ../src/live_effects/lpe-attach-path.cpp:34 +msgid "Position to attach path end to" +msgstr "" + +#: ../src/live_effects/lpe-attach-path.cpp:35 +msgid "End path curve start:" +msgstr "" + +#. , true +#: ../src/live_effects/lpe-attach-path.cpp:36 +msgid "End path curve end:" +msgstr "" #: ../src/live_effects/lpe-bendpath.cpp:53 msgid "Bend path:" @@ -9997,8 +9552,7 @@ msgstr "Chemin le long duquel le chemin original sera courbé" #: ../src/live_effects/lpe-bendpath.cpp:54 #: ../src/live_effects/lpe-patternalongpath.cpp:62 -#: ../src/ui/dialog/export.cpp:290 -#: ../src/ui/dialog/transformation.cpp:80 +#: ../src/ui/dialog/export.cpp:290 ../src/ui/dialog/transformation.cpp:80 #: ../src/ui/widget/page-sizer.cpp:236 msgid "_Width:" msgstr "_Largeur :" @@ -10023,14 +9577,81 @@ msgstr "Le chemin _original est vertical" msgid "Rotates the original 90 degrees, before bending it along the bend path" msgstr "Tourne l'original de 90 degrés avant de le déformer le long du chemin" +#: ../src/live_effects/lpe-bounding-box.cpp:24 #: ../src/live_effects/lpe-clone-original.cpp:18 +#: ../src/live_effects/lpe-fill-between-many.cpp:25 +#: ../src/live_effects/lpe-fill-between-strokes.cpp:23 msgid "Linked path:" msgstr "Chemin lié :" +#: ../src/live_effects/lpe-bounding-box.cpp:24 #: ../src/live_effects/lpe-clone-original.cpp:18 +#: ../src/live_effects/lpe-fill-between-strokes.cpp:23 msgid "Path from which to take the original path data" msgstr "Chemin à partir duquel le chemin original sera cloné" +#: ../src/live_effects/lpe-bounding-box.cpp:25 +#, fuzzy +msgid "Visual Bounds" +msgstr "Boîte englobante visuelle" + +#: ../src/live_effects/lpe-bounding-box.cpp:25 +#, fuzzy +msgid "Uses the visual bounding box" +msgstr "Boîte englobante visuelle" + +#. initialise your parameters here: +#. testpointA(_("Test Point A"), _("Test A"), "ptA", &wr, this, +#. Geom::Point(100,100)), +#: ../src/live_effects/lpe-bspline.cpp:60 +msgid "Steps with CTRL:" +msgstr "" + +#: ../src/live_effects/lpe-bspline.cpp:60 +msgid "Change number of steps with CTRL pressed" +msgstr "" + +#: ../src/live_effects/lpe-bspline.cpp:61 +#, fuzzy +msgid "Ignore cusp nodes" +msgstr "Aimanter aux points de rebroussement" + +#: ../src/live_effects/lpe-bspline.cpp:61 +#, fuzzy +msgid "Change ignoring cusp nodes" +msgstr "Modifier le décalage d'un stop de dégradé" + +#: ../src/live_effects/lpe-bspline.cpp:62 +#: ../src/live_effects/lpe-fillet-chamfer.cpp:57 +#, fuzzy +msgid "Change only selected nodes" +msgstr "Joindre les nœuds sélectionnés" + +#: ../src/live_effects/lpe-bspline.cpp:63 +#, fuzzy +msgid "Show helper paths" +msgstr "Aimanter aux chemins de découpe" + +#: ../src/live_effects/lpe-bspline.cpp:64 +#, fuzzy +msgid "Change weight:" +msgstr "Hauteur de capitale :" + +#: ../src/live_effects/lpe-bspline.cpp:64 +#, fuzzy +msgid "Change weight of the effect" +msgstr "Hauteur de la zone d'action du filtre" + +#: ../src/live_effects/lpe-bspline.cpp:291 +#, fuzzy +msgid "Default weight" +msgstr "Titre par défaut" + +#: ../src/live_effects/lpe-bspline.cpp:296 +#, fuzzy +msgid "Make cusp" +msgstr "Transformer en étoile" + #: ../src/live_effects/lpe-constructgrid.cpp:27 msgid "Size _X:" msgstr "Dimension _X :" @@ -10068,32 +9689,48 @@ msgid "Sta_rt edge variance:" msgstr "Va_riance du bord de départ :" #: ../src/live_effects/lpe-curvestitch.cpp:43 -msgid "The amount of random jitter to move the start points of the stitches inside & outside the guide path" -msgstr "La quantité de perturbation aléatoire dans la position des points de départ des liaisons, à l'intérieur et à l'extérieur du guide" +msgid "" +"The amount of random jitter to move the start points of the stitches inside " +"& outside the guide path" +msgstr "" +"La quantité de perturbation aléatoire dans la position des points de départ " +"des liaisons, à l'intérieur et à l'extérieur du guide" #: ../src/live_effects/lpe-curvestitch.cpp:44 msgid "Sta_rt spacing variance:" msgstr "Va_riance de l'espacement de départ :" #: ../src/live_effects/lpe-curvestitch.cpp:44 -msgid "The amount of random shifting to move the start points of the stitches back & forth along the guide path" -msgstr "La quantité de perturbation aléatoire dans la position des extrémités de chaque point de départ des liaisons, le long du guide" +msgid "" +"The amount of random shifting to move the start points of the stitches back " +"& forth along the guide path" +msgstr "" +"La quantité de perturbation aléatoire dans la position des extrémités de " +"chaque point de départ des liaisons, le long du guide" #: ../src/live_effects/lpe-curvestitch.cpp:45 msgid "End ed_ge variance:" msgstr "Variance du bord de _fin :" #: ../src/live_effects/lpe-curvestitch.cpp:45 -msgid "The amount of randomness that moves the end points of the stitches inside & outside the guide path" -msgstr "La quantité de perturbation aléatoire dans la position des extrémités de chaque point de fin des liaisons, à l'intérieur et à l'extérieur du guide" +msgid "" +"The amount of randomness that moves the end points of the stitches inside & " +"outside the guide path" +msgstr "" +"La quantité de perturbation aléatoire dans la position des extrémités de " +"chaque point de fin des liaisons, à l'intérieur et à l'extérieur du guide" #: ../src/live_effects/lpe-curvestitch.cpp:46 msgid "End spa_cing variance:" msgstr "Variance de l'espa_cement de fin :" #: ../src/live_effects/lpe-curvestitch.cpp:46 -msgid "The amount of random shifting to move the end points of the stitches back & forth along the guide path" -msgstr "La quantité de perturbation aléatoire dans la position des extrémités de chaque point de fin des liaisons, le long du guide" +msgid "" +"The amount of random shifting to move the end points of the stitches back & " +"forth along the guide path" +msgstr "" +"La quantité de perturbation aléatoire dans la position des extrémités de " +"chaque point de fin des liaisons, le long du guide" #: ../src/live_effects/lpe-curvestitch.cpp:47 msgid "Scale _width:" @@ -10109,7 +9746,18 @@ msgstr "R_edimensionner l'épaisseur en fonction de la longueur" #: ../src/live_effects/lpe-curvestitch.cpp:48 msgid "Scale the width of the stitch path relative to its length" -msgstr "Redimensionner l'épaisseur du chemin de liaison proportionnellement à sa longueur" +msgstr "" +"Redimensionner l'épaisseur du chemin de liaison proportionnellement à sa " +"longueur" + +#: ../src/live_effects/lpe-ellipse_5pts.cpp:77 +msgid "Five points required for constructing an ellipse" +msgstr "" + +#: ../src/live_effects/lpe-ellipse_5pts.cpp:162 +#, fuzzy +msgid "No ellipse found for specified points" +msgstr "Le fichier spécifié ne contient aucune donnée de bord." #: ../src/live_effects/lpe-envelope.cpp:31 msgid "Top bend path:" @@ -10117,7 +9765,8 @@ msgstr "Chemin supérieur de l'enveloppe :" #: ../src/live_effects/lpe-envelope.cpp:31 msgid "Top path along which to bend the original path" -msgstr "Chemin supérieur de l'enveloppe le long duquel le chemin original sera courbé" +msgstr "" +"Chemin supérieur de l'enveloppe le long duquel le chemin original sera courbé" #: ../src/live_effects/lpe-envelope.cpp:32 msgid "Right bend path:" @@ -10125,7 +9774,8 @@ msgstr "Chemin droit de l'enveloppe :" #: ../src/live_effects/lpe-envelope.cpp:32 msgid "Right path along which to bend the original path" -msgstr "Chemin droit de l'enveloppe le long duquel le chemin original sera courbé" +msgstr "" +"Chemin droit de l'enveloppe le long duquel le chemin original sera courbé" #: ../src/live_effects/lpe-envelope.cpp:33 msgid "Bottom bend path:" @@ -10133,7 +9783,8 @@ msgstr "Chemin inférieur de l'enveloppe :" #: ../src/live_effects/lpe-envelope.cpp:33 msgid "Bottom path along which to bend the original path" -msgstr "Chemin inférieur de l'enveloppe le long duquel le chemin original sera courbé" +msgstr "" +"Chemin inférieur de l'enveloppe le long duquel le chemin original sera courbé" #: ../src/live_effects/lpe-envelope.cpp:34 msgid "Left bend path:" @@ -10141,10 +9792,12 @@ msgstr "Chemin gauche de l'enveloppe :" #: ../src/live_effects/lpe-envelope.cpp:34 msgid "Left path along which to bend the original path" -msgstr "Chemin gauche de l'enveloppe le long duquel le chemin original sera courbé" +msgstr "" +"Chemin gauche de l'enveloppe le long duquel le chemin original sera courbé" #: ../src/live_effects/lpe-envelope.cpp:35 -msgid "E_nable left & right paths" +#, fuzzy +msgid "_Enable left & right paths" msgstr "Utiliser les chemi_ns gauche et droit" #: ../src/live_effects/lpe-envelope.cpp:35 @@ -10167,6 +9820,129 @@ msgstr "Direction" msgid "Defines the direction and magnitude of the extrusion" msgstr "Définit la direction et l'amplitude de l'extrusion" +#: ../src/live_effects/lpe-fill-between-many.cpp:25 +#, fuzzy +msgid "Paths from which to take the original path data" +msgstr "Chemin à partir duquel le chemin original sera cloné" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:24 +#, fuzzy +msgid "Second path:" +msgstr "Chemin de courbure :" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:24 +#, fuzzy +msgid "Second path from which to take the original path data" +msgstr "Chemin à partir duquel le chemin original sera cloné" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:25 +#, fuzzy +msgid "Reverse Second" +msgstr "Inverser le dégradé" + +#: ../src/live_effects/lpe-fill-between-strokes.cpp:25 +#, fuzzy +msgid "Reverses the second path order" +msgstr "Inverser la direction du dégradé" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:42 +#: ../share/extensions/render_barcode_qrcode.inx.h:5 +msgid "Auto" +msgstr "Auto" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:43 +#, fuzzy +msgid "Force arc" +msgstr "Force" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:44 +msgid "Force bezier" +msgstr "" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:54 +#, fuzzy +msgid "Fillet point" +msgstr "Remplissage" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:55 +#, fuzzy +msgid "Hide knots" +msgstr "Cacher l'objet" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:56 +#, fuzzy +msgid "Ignore 0 radius knots" +msgstr "Ignorer le premier et le dernier point" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:58 +msgid "Flexible radius size (%)" +msgstr "" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:59 +msgid "Use knots distance instead radius" +msgstr "" + +#. initialise your parameters here: +#: ../src/live_effects/lpe-fillet-chamfer.cpp:60 +#: ../src/live_effects/lpe-roughen.cpp:39 ../src/live_effects/lpe-ruler.cpp:42 +#: ../src/widgets/ruler.cpp:201 +msgid "Unit" +msgstr "Unité" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:61 +#: ../src/live_effects/lpe-roughen.cpp:40 +#, fuzzy +msgid "Method" +msgstr "Méthode :" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:61 +#, fuzzy +msgid "Fillets methods" +msgstr "Méthode de remplissage" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:62 +#, fuzzy +msgid "Radius (unit or %)" +msgstr "Rayon (px) :" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:62 +msgid "Radius, in unit or %" +msgstr "" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:63 +#, fuzzy +msgid "Chamfer steps" +msgstr "Nombre de passes :" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:65 +#, fuzzy +msgid "Helper size with direction" +msgstr "Angle dans la direction X" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:157 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:76 +#, fuzzy +msgid "Fillet" +msgstr "Fond" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:161 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:78 +#, fuzzy +msgid "Inverse fillet" +msgstr "Inverser le remplissage" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:166 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:80 +#, fuzzy +msgid "Chamfer" +msgstr "Cham" + +#: ../src/live_effects/lpe-fillet-chamfer.cpp:170 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:82 +#, fuzzy +msgid "Inverse chamfer" +msgstr "Inverser les canaux :" + #: ../src/live_effects/lpe-gears.cpp:214 msgid "_Teeth:" msgstr "_Dents :" @@ -10180,8 +9956,12 @@ msgid "_Phi:" msgstr "_Phi :" #: ../src/live_effects/lpe-gears.cpp:215 -msgid "Tooth pressure angle (typically 20-25 deg). The ratio of teeth not in contact." -msgstr "Angle de contact des dents (en général de 20 à 25 degrés). Représente la fraction des dents qui ne sont pas en contact." +msgid "" +"Tooth pressure angle (typically 20-25 deg). The ratio of teeth not in " +"contact." +msgstr "" +"Angle de contact des dents (en général de 20 à 25 degrés). Représente la " +"fraction des dents qui ne sont pas en contact." #: ../src/live_effects/lpe-interpolate.cpp:31 msgid "Trajectory:" @@ -10197,74 +9977,447 @@ msgstr "I_ncrément :" #: ../src/live_effects/lpe-interpolate.cpp:32 msgid "Determines the number of steps from start to end path." -msgstr "Définit le nombre d'étapes entre le chemin de début et le chemin de fin." +msgstr "" +"Définit le nombre d'étapes entre le chemin de début et le chemin de fin." #: ../src/live_effects/lpe-interpolate.cpp:33 msgid "E_quidistant spacing" msgstr "Espacement é_quidistant" #: ../src/live_effects/lpe-interpolate.cpp:33 -msgid "If true, the spacing between intermediates is constant along the length of the path. If false, the distance depends on the location of the nodes of the trajectory path." -msgstr "Si vrai, l'espacement entre les intermédiaires est constant tout au long de la longueur du chemin. Si faux, la distance dépend du positionnement des nœuds de la trajectoire." +msgid "" +"If true, the spacing between intermediates is constant along the length of " +"the path. If false, the distance depends on the location of the nodes of the " +"trajectory path." +msgstr "" +"Si vrai, l'espacement entre les intermédiaires est constant tout au long de " +"la longueur du chemin. Si faux, la distance dépend du positionnement des " +"nœuds de la trajectoire." + +#: ../src/live_effects/lpe-interpolate_points.cpp:26 +#: ../src/live_effects/lpe-powerstroke.cpp:195 +msgid "CubicBezierFit" +msgstr "CubicBezierFit" + +#: ../src/live_effects/lpe-interpolate_points.cpp:27 +#: ../src/live_effects/lpe-powerstroke.cpp:196 +msgid "CubicBezierJohan" +msgstr "CubicBezierJohan" + +#: ../src/live_effects/lpe-interpolate_points.cpp:28 +#: ../src/live_effects/lpe-powerstroke.cpp:197 +msgid "SpiroInterpolator" +msgstr "SpiroInterpolator" + +#: ../src/live_effects/lpe-interpolate_points.cpp:29 +#: ../src/live_effects/lpe-powerstroke.cpp:198 +msgid "Centripetal Catmull-Rom" +msgstr "Centripète Catmull-Rom" + +#: ../src/live_effects/lpe-interpolate_points.cpp:37 +#: ../src/live_effects/lpe-powerstroke.cpp:240 +msgid "Interpolator type:" +msgstr "Type d'interpolateur :" + +#: ../src/live_effects/lpe-interpolate_points.cpp:38 +#: ../src/live_effects/lpe-powerstroke.cpp:240 +msgid "" +"Determines which kind of interpolator will be used to interpolate between " +"stroke width along the path" +msgstr "" +"Définit quel type d'interpolateur sera utilisé pour déterminer l'épaisseur " +"du chemin" + +#: ../src/live_effects/lpe-jointype.cpp:31 +#: ../src/live_effects/lpe-powerstroke.cpp:227 +#: ../src/live_effects/lpe-taperstroke.cpp:63 +msgid "Beveled" +msgstr "Biseauté" + +#: ../src/live_effects/lpe-jointype.cpp:32 +#: ../src/live_effects/lpe-jointype.cpp:40 +#: ../src/live_effects/lpe-powerstroke.cpp:228 +#: ../src/live_effects/lpe-taperstroke.cpp:64 +#: ../src/widgets/star-toolbar.cpp:536 +msgid "Rounded" +msgstr "Arrondi" + +#: ../src/live_effects/lpe-jointype.cpp:33 +#: ../src/live_effects/lpe-powerstroke.cpp:231 +#: ../src/live_effects/lpe-taperstroke.cpp:66 +msgid "Miter" +msgstr "Raccordé" + +#: ../src/live_effects/lpe-jointype.cpp:34 +#: ../src/live_effects/lpe-taperstroke.cpp:65 +#: ../src/widgets/gradient-toolbar.cpp:1115 +msgid "Reflected" +msgstr "Réfléchi" + +#. {LINEJOIN_EXTRP_MITER, N_("Extrapolated"), "extrapolated"}, // disabled because doesn't work well +#: ../src/live_effects/lpe-jointype.cpp:35 +#: ../src/live_effects/lpe-powerstroke.cpp:230 +msgid "Extrapolated arc" +msgstr "Arc extrapolé" + +#: ../src/live_effects/lpe-jointype.cpp:39 +#: ../src/live_effects/lpe-powerstroke.cpp:210 +msgid "Butt" +msgstr "Sur le nœud" + +#: ../src/live_effects/lpe-jointype.cpp:41 +#: ../src/live_effects/lpe-powerstroke.cpp:211 +msgid "Square" +msgstr "Carrée" + +#: ../src/live_effects/lpe-jointype.cpp:42 +#: ../src/live_effects/lpe-powerstroke.cpp:213 +msgid "Peak" +msgstr "En arête" + +#: ../src/live_effects/lpe-jointype.cpp:43 +msgid "Leaned" +msgstr "" + +#: ../src/live_effects/lpe-jointype.cpp:51 +#, fuzzy +msgid "Thickness of the stroke" +msgstr "Épaisseur : au 1er côté :" + +#: ../src/live_effects/lpe-jointype.cpp:52 +#, fuzzy +msgid "Line cap" +msgstr "Linéaire" + +#: ../src/live_effects/lpe-jointype.cpp:52 +#, fuzzy +msgid "The end shape of the stroke" +msgstr "Orientation de la règle" + +#. Join type +#. TRANSLATORS: The line join style specifies the shape to be used at the +#. corners of paths. It can be "miter", "round" or "bevel". +#: ../src/live_effects/lpe-jointype.cpp:53 +#: ../src/live_effects/lpe-powerstroke.cpp:243 +#: ../src/widgets/stroke-style.cpp:227 +msgid "Join:" +msgstr "Raccord :" + +#: ../src/live_effects/lpe-jointype.cpp:53 +#: ../src/live_effects/lpe-powerstroke.cpp:243 +msgid "Determines the shape of the path's corners" +msgstr "Définit la forme des coins du chemin" + +#: ../src/live_effects/lpe-jointype.cpp:54 +#, fuzzy +msgid "Start path lean" +msgstr "Démarrer la vérification" + +#: ../src/live_effects/lpe-jointype.cpp:55 +#, fuzzy +msgid "End path lean" +msgstr "Chemin de courbure :" + +#: ../src/live_effects/lpe-jointype.cpp:56 +#: ../src/live_effects/lpe-powerstroke.cpp:244 +msgid "Miter limit:" +msgstr "Limite du raccord :" + +#: ../src/live_effects/lpe-jointype.cpp:56 +#, fuzzy +msgid "Maximum length of the miter join (in units of stroke width)" +msgstr "Longueur maximum du raccord (en unités de l'épaisseur du contour)" + +#: ../src/live_effects/lpe-jointype.cpp:57 +#, fuzzy +msgid "Force miter" +msgstr "Force" + +#: ../src/live_effects/lpe-jointype.cpp:57 +msgid "Overrides the miter limit and forces a join." +msgstr "" #. initialise your parameters here: -#: ../src/live_effects/lpe-knot.cpp:350 +#: ../src/live_effects/lpe-knot.cpp:351 msgid "Fi_xed width:" msgstr "La_rgeur de recouvrement :" -#: ../src/live_effects/lpe-knot.cpp:350 +#: ../src/live_effects/lpe-knot.cpp:351 msgid "Size of hidden region of lower string" msgstr "Taille de la partie masquée sur le tracé inférieur" -#: ../src/live_effects/lpe-knot.cpp:351 +#: ../src/live_effects/lpe-knot.cpp:352 msgid "_In units of stroke width" msgstr "Proport_ionnellement à la largeur du trait" -#: ../src/live_effects/lpe-knot.cpp:351 +#: ../src/live_effects/lpe-knot.cpp:352 msgid "Consider 'Interruption width' as a ratio of stroke width" -msgstr "La largeur de l'interruption est exprimée en proportion de l'épaisseur du trait" +msgstr "" +"La largeur de l'interruption est exprimée en proportion de l'épaisseur du " +"trait" -#: ../src/live_effects/lpe-knot.cpp:352 +#: ../src/live_effects/lpe-knot.cpp:353 msgid "St_roke width" msgstr "Épaisseur du contou_r" -#: ../src/live_effects/lpe-knot.cpp:352 +#: ../src/live_effects/lpe-knot.cpp:353 msgid "Add the stroke width to the interruption size" msgstr "Ajoute l'épaisseur du trait à la taille de l'interruption" -#: ../src/live_effects/lpe-knot.cpp:353 +#: ../src/live_effects/lpe-knot.cpp:354 msgid "_Crossing path stroke width" msgstr "Épaisseur du trait _croisant" -#: ../src/live_effects/lpe-knot.cpp:353 +#: ../src/live_effects/lpe-knot.cpp:354 msgid "Add crossed stroke width to the interruption size" msgstr "Ajoute l'épaisseur du trait croisé à la taille de l'interruption" -#: ../src/live_effects/lpe-knot.cpp:354 +#: ../src/live_effects/lpe-knot.cpp:355 msgid "S_witcher size:" msgstr "Taille du sé_lecteur :" -#: ../src/live_effects/lpe-knot.cpp:354 +#: ../src/live_effects/lpe-knot.cpp:355 msgid "Orientation indicator/switcher size" -msgstr "Le sélecteur précise l'orientation des croisements et permet de la changer (clic). Changer la sélection par cliquer-déplacer" +msgstr "" +"Le sélecteur précise l'orientation des croisements et permet de la changer " +"(clic). Changer la sélection par cliquer-déplacer" -#: ../src/live_effects/lpe-knot.cpp:355 +#: ../src/live_effects/lpe-knot.cpp:356 msgid "Crossing Signs" msgstr "Signes de croisement" -#: ../src/live_effects/lpe-knot.cpp:355 +#: ../src/live_effects/lpe-knot.cpp:356 msgid "Crossings signs" msgstr "Signes de croisement" -#: ../src/live_effects/lpe-knot.cpp:622 +#: ../src/live_effects/lpe-knot.cpp:627 msgid "Drag to select a crossing, click to flip it" msgstr "Glisser pour sélectionner un croisement, cliquer pour le basculer" #. / @todo Is this the right verb? -#: ../src/live_effects/lpe-knot.cpp:660 +#: ../src/live_effects/lpe-knot.cpp:665 msgid "Change knot crossing" msgstr "Modifier le croisement de l'entrelacs" +#. initialise your parameters here: +#: ../src/live_effects/lpe-lattice2.cpp:47 +msgid "Control handle 0:" +msgstr "Poignée de contrôle 0 :" + +#: ../src/live_effects/lpe-lattice2.cpp:47 +msgid "Control handle 0 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:48 +msgid "Control handle 1:" +msgstr "Poignée de contrôle 1 :" + +#: ../src/live_effects/lpe-lattice2.cpp:48 +msgid "Control handle 1 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:49 +msgid "Control handle 2:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:49 +msgid "Control handle 2 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:50 +msgid "Control handle 3:" +msgstr "Poignée de contrôle 3 :" + +#: ../src/live_effects/lpe-lattice2.cpp:50 +msgid "Control handle 3 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:51 +msgid "Control handle 4:" +msgstr "Poignée de contrôle 4 :" + +#: ../src/live_effects/lpe-lattice2.cpp:51 +msgid "Control handle 4 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:52 +msgid "Control handle 5:" +msgstr "Poignée de contrôle 5 :" + +#: ../src/live_effects/lpe-lattice2.cpp:52 +msgid "Control handle 5 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:53 +msgid "Control handle 6:" +msgstr "Poignée de contrôle 6 :" + +#: ../src/live_effects/lpe-lattice2.cpp:53 +msgid "Control handle 6 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:54 +msgid "Control handle 7:" +msgstr "Poignée de contrôle 7 :" + +#: ../src/live_effects/lpe-lattice2.cpp:54 +msgid "Control handle 7 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:55 +#, fuzzy +msgid "Control handle 8x9:" +msgstr "Poignée de contrôle 8 :" + +#: ../src/live_effects/lpe-lattice2.cpp:55 +msgid "Control handle 8x9 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:56 +#, fuzzy +msgid "Control handle 10x11:" +msgstr "Poignée de contrôle 10 :" + +#: ../src/live_effects/lpe-lattice2.cpp:56 +msgid "Control handle 10x11 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:57 +msgid "Control handle 12:" +msgstr "Poignée de contrôle 12 :" + +#: ../src/live_effects/lpe-lattice2.cpp:57 +msgid "Control handle 12 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:58 +msgid "Control handle 13:" +msgstr "Poignée de contrôle 13 :" + +#: ../src/live_effects/lpe-lattice2.cpp:58 +msgid "Control handle 13 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:59 +msgid "Control handle 14:" +msgstr "Poignée de contrôle 14 :" + +#: ../src/live_effects/lpe-lattice2.cpp:59 +msgid "Control handle 14 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:60 +msgid "Control handle 15:" +msgstr "Poignée de contrôle 15 :" + +#: ../src/live_effects/lpe-lattice2.cpp:60 +msgid "Control handle 15 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:61 +#, fuzzy +msgid "Control handle 16:" +msgstr "Poignée de contrôle 1 :" + +#: ../src/live_effects/lpe-lattice2.cpp:61 +msgid "Control handle 16 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:62 +#, fuzzy +msgid "Control handle 17:" +msgstr "Poignée de contrôle 1 :" + +#: ../src/live_effects/lpe-lattice2.cpp:62 +msgid "Control handle 17 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:63 +#, fuzzy +msgid "Control handle 18:" +msgstr "Poignée de contrôle 1 :" + +#: ../src/live_effects/lpe-lattice2.cpp:63 +msgid "Control handle 18 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:64 +#, fuzzy +msgid "Control handle 19:" +msgstr "Poignée de contrôle 1 :" + +#: ../src/live_effects/lpe-lattice2.cpp:64 +msgid "Control handle 19 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:65 +#, fuzzy +msgid "Control handle 20x21:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:65 +msgid "Control handle 20x21 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:66 +#, fuzzy +msgid "Control handle 22x23:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:66 +msgid "Control handle 22x23 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:67 +#, fuzzy +msgid "Control handle 24x26:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:67 +msgid "Control handle 24x26 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:68 +#, fuzzy +msgid "Control handle 25x27:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:68 +msgid "Control handle 25x27 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:69 +#, fuzzy +msgid "Control handle 28x30:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:69 +msgid "Control handle 28x30 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:70 +#, fuzzy +msgid "Control handle 29x31:" +msgstr "Poignée de contrôle 2 :" + +#: ../src/live_effects/lpe-lattice2.cpp:70 +msgid "Control handle 29x31 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:71 +#, fuzzy +msgid "Control handle 32x33x34x35:" +msgstr "Poignée de contrôle 3 :" + +#: ../src/live_effects/lpe-lattice2.cpp:71 +msgid "Control handle 32x33x34x35 - Ctrl+Alt+Click to reset" +msgstr "" + +#: ../src/live_effects/lpe-lattice2.cpp:221 +#, fuzzy +msgid "Reset grid" +msgstr "Supprimer la grille" + #: ../src/live_effects/lpe-patternalongpath.cpp:50 #: ../share/extensions/pathalongpath.inx.h:10 msgid "Single" @@ -10319,8 +10472,12 @@ msgstr "Espa_cement :" #: ../src/live_effects/lpe-patternalongpath.cpp:68 #, no-c-format -msgid "Space between copies of the pattern. Negative values allowed, but are limited to -90% of pattern width." -msgstr "Espace entre les exemplaires du motif. Les valeurs négatives sont autorisées, mais limitées à -90 % de la largeur du motif." +msgid "" +"Space between copies of the pattern. Negative values allowed, but are " +"limited to -90% of pattern width." +msgstr "" +"Espace entre les exemplaires du motif. Les valeurs négatives sont " +"autorisées, mais limitées à -90 % de la largeur du motif." #: ../src/live_effects/lpe-patternalongpath.cpp:70 msgid "No_rmal offset:" @@ -10335,8 +10492,12 @@ msgid "Offsets in _unit of pattern size" msgstr "Décalages en _unité de taille de motif" #: ../src/live_effects/lpe-patternalongpath.cpp:73 -msgid "Spacing, tangential and normal offset are expressed as a ratio of width/height" -msgstr "L'espacement et le décalage tangentiel sont exprimés en proportion de la longueur du motif, le décalage normal en proportion de sa largeur" +msgid "" +"Spacing, tangential and normal offset are expressed as a ratio of width/" +"height" +msgstr "" +"L'espacement et le décalage tangentiel sont exprimés en proportion de la " +"longueur du motif, le décalage normal en proportion de sa largeur" #: ../src/live_effects/lpe-patternalongpath.cpp:75 msgid "Pattern is _vertical" @@ -10352,132 +10513,136 @@ msgstr "_Fusionner les extrémités proches :" #: ../src/live_effects/lpe-patternalongpath.cpp:77 msgid "Fuse ends closer than this number. 0 means don't fuse." -msgstr "Fusionne les extrémités plus proches que ce nombre. 0 indique de ne pas fusionner." +msgstr "" +"Fusionne les extrémités plus proches que ce nombre. 0 indique de ne pas " +"fusionner." -#: ../src/live_effects/lpe-powerstroke.cpp:189 -msgid "CubicBezierFit" -msgstr "CubicBezierFit" +#: ../src/live_effects/lpe-perspective-envelope.cpp:37 +#: ../share/extensions/perspective.inx.h:1 +msgid "Perspective" +msgstr "Perspective" -#: ../src/live_effects/lpe-powerstroke.cpp:190 -msgid "CubicBezierJohan" -msgstr "CubicBezierJohan" +#: ../src/live_effects/lpe-perspective-envelope.cpp:38 +#, fuzzy +msgid "Envelope deformation" +msgstr "Déformation par enveloppe" -#: ../src/live_effects/lpe-powerstroke.cpp:191 -msgid "SpiroInterpolator" -msgstr "SpiroInterpolator" +#. initialise your parameters here: +#: ../src/live_effects/lpe-perspective-envelope.cpp:46 +#, fuzzy +msgid "Type" +msgstr "Type :" -#: ../src/live_effects/lpe-powerstroke.cpp:192 -msgid "Centripetal Catmull-Rom" -msgstr "Centripète Catmull-Rom" +#: ../src/live_effects/lpe-perspective-envelope.cpp:46 +#, fuzzy +msgid "Select the type of deformation" +msgstr "Dupliquer le motif avant déformation" -#: ../src/live_effects/lpe-powerstroke.cpp:204 -msgid "Butt" -msgstr "Sur le nœud" +#: ../src/live_effects/lpe-perspective-envelope.cpp:47 +#, fuzzy +msgid "Top Left" +msgstr "Haut et gauche" -#: ../src/live_effects/lpe-powerstroke.cpp:205 -msgid "Square" -msgstr "Carrée" +#: ../src/live_effects/lpe-perspective-envelope.cpp:47 +msgid "Top Left - Ctrl+Alt+Click to reset" +msgstr "" -#: ../src/live_effects/lpe-powerstroke.cpp:206 -#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 -msgid "Round" -msgstr "Arrondie" +#: ../src/live_effects/lpe-perspective-envelope.cpp:48 +#, fuzzy +msgid "Top Right" +msgstr "Haut et droite" -#: ../src/live_effects/lpe-powerstroke.cpp:207 -msgid "Peak" -msgstr "En arête" +#: ../src/live_effects/lpe-perspective-envelope.cpp:48 +msgid "Top Right - Ctrl+Alt+Click to reset" +msgstr "" -#: ../src/live_effects/lpe-powerstroke.cpp:208 -msgid "Zero width" -msgstr "Aucune épaisseur" +#: ../src/live_effects/lpe-perspective-envelope.cpp:49 +#, fuzzy +msgid "Down Left" +msgstr "Haut et gauche" -#: ../src/live_effects/lpe-powerstroke.cpp:221 -msgid "Beveled" -msgstr "Biseauté" +#: ../src/live_effects/lpe-perspective-envelope.cpp:49 +msgid "Down Left - Ctrl+Alt+Click to reset" +msgstr "" -#: ../src/live_effects/lpe-powerstroke.cpp:222 -#: ../src/widgets/star-toolbar.cpp:534 -msgid "Rounded" -msgstr "Arrondi" +#: ../src/live_effects/lpe-perspective-envelope.cpp:50 +#, fuzzy +msgid "Down Right" +msgstr "Droite" -#. {LINEJOIN_EXTRP_MITER, N_("Extrapolated"), "extrapolated"}, // disabled because doesn't work well -#: ../src/live_effects/lpe-powerstroke.cpp:224 -msgid "Extrapolated arc" -msgstr "Arc extrapolé" +#: ../src/live_effects/lpe-perspective-envelope.cpp:50 +msgid "Down Right - Ctrl+Alt+Click to reset" +msgstr "" -#: ../src/live_effects/lpe-powerstroke.cpp:225 -msgid "Miter" -msgstr "Raccordé" +#: ../src/live_effects/lpe-perspective-envelope.cpp:257 +#, fuzzy +msgid "Handles:" +msgstr "Poignée" -#: ../src/live_effects/lpe-powerstroke.cpp:226 +#: ../src/live_effects/lpe-powerstroke.cpp:193 +#, fuzzy +msgid "CubicBezierSmooth" +msgstr "CubicBezierJohan" + +#: ../src/live_effects/lpe-powerstroke.cpp:212 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 +msgid "Round" +msgstr "Arrondie" + +#: ../src/live_effects/lpe-powerstroke.cpp:214 +msgid "Zero width" +msgstr "Aucune épaisseur" + +#: ../src/live_effects/lpe-powerstroke.cpp:232 #: ../src/widgets/pencil-toolbar.cpp:103 msgid "Spiro" msgstr "Spiro" -#: ../src/live_effects/lpe-powerstroke.cpp:232 +#: ../src/live_effects/lpe-powerstroke.cpp:238 msgid "Offset points" msgstr "Points d'offset" -#: ../src/live_effects/lpe-powerstroke.cpp:233 +#: ../src/live_effects/lpe-powerstroke.cpp:239 msgid "Sort points" msgstr "Trier les points" -#: ../src/live_effects/lpe-powerstroke.cpp:233 +#: ../src/live_effects/lpe-powerstroke.cpp:239 msgid "Sort offset points according to their time value along the curve" msgstr "" +"Trie les points de décalage en fonction de leur valeur temps le long de la " +"courbe" -#: ../src/live_effects/lpe-powerstroke.cpp:234 -msgid "Interpolator type:" -msgstr "Type d'interpolateur :" - -#: ../src/live_effects/lpe-powerstroke.cpp:234 -msgid "Determines which kind of interpolator will be used to interpolate between stroke width along the path" -msgstr "" - -#: ../src/live_effects/lpe-powerstroke.cpp:235 +#: ../src/live_effects/lpe-powerstroke.cpp:241 #: ../share/extensions/fractalize.inx.h:3 msgid "Smoothness:" msgstr "Lissage :" -#: ../src/live_effects/lpe-powerstroke.cpp:235 -msgid "Sets the smoothness for the CubicBezierJohan interpolator; 0 = linear interpolation, 1 = smooth" +#: ../src/live_effects/lpe-powerstroke.cpp:241 +msgid "" +"Sets the smoothness for the CubicBezierJohan interpolator; 0 = linear " +"interpolation, 1 = smooth" msgstr "" +"Définit le lissage pour l'interpolateur CubicBezierJohan (0 pour " +"interpolation linéaire, 1 pour interpolation douce)" -#: ../src/live_effects/lpe-powerstroke.cpp:236 +#: ../src/live_effects/lpe-powerstroke.cpp:242 msgid "Start cap:" msgstr "Terminaison initiale :" -#: ../src/live_effects/lpe-powerstroke.cpp:236 +#: ../src/live_effects/lpe-powerstroke.cpp:242 msgid "Determines the shape of the path's start" msgstr "Définit la forme de début du chemin" -#. Join type -#. TRANSLATORS: The line join style specifies the shape to be used at the -#. corners of paths. It can be "miter", "round" or "bevel". -#: ../src/live_effects/lpe-powerstroke.cpp:237 -#: ../src/widgets/stroke-style.cpp:227 -msgid "Join:" -msgstr "Raccord :" - -#: ../src/live_effects/lpe-powerstroke.cpp:237 -#, fuzzy -msgid "Determines the shape of the path's corners" -msgstr "Définit la forme de la fin du chemin" - -#: ../src/live_effects/lpe-powerstroke.cpp:238 -msgid "Miter limit:" -msgstr "Limite du raccord :" - -#: ../src/live_effects/lpe-powerstroke.cpp:238 +#: ../src/live_effects/lpe-powerstroke.cpp:244 #: ../src/widgets/stroke-style.cpp:278 msgid "Maximum length of the miter (in units of stroke width)" msgstr "Longueur maximum du raccord (en unités de l'épaisseur du contour)" -#: ../src/live_effects/lpe-powerstroke.cpp:239 +#: ../src/live_effects/lpe-powerstroke.cpp:245 msgid "End cap:" msgstr "Terminaison finale :" -#: ../src/live_effects/lpe-powerstroke.cpp:239 +#: ../src/live_effects/lpe-powerstroke.cpp:245 msgid "Determines the shape of the path's end" msgstr "Définit la forme de la fin du chemin" @@ -10503,32 +10668,48 @@ msgid "Half-turns smoothness: 1st side, in:" msgstr "Lissage des demi-tours : 1er côté, arrivée :" #: ../src/live_effects/lpe-rough-hatches.cpp:228 -msgid "Set smoothness/sharpness of path when reaching a 'bottom' half-turn. 0=sharp, 1=default" -msgstr "Définit le lissage du chemin lorsqu'il atteint un demi-tour inférieur. 0=net, 1=défaut" +msgid "" +"Set smoothness/sharpness of path when reaching a 'bottom' half-turn. " +"0=sharp, 1=default" +msgstr "" +"Définit le lissage du chemin lorsqu'il atteint un demi-tour inférieur. " +"0=net, 1=défaut" #: ../src/live_effects/lpe-rough-hatches.cpp:229 msgid "1st side, out:" msgstr "1er côté, départ :" #: ../src/live_effects/lpe-rough-hatches.cpp:229 -msgid "Set smoothness/sharpness of path when leaving a 'bottom' half-turn. 0=sharp, 1=default" -msgstr "Définit le lissage du chemin lorsqu'il quitte un demi-tour inférieur. 0=net, 1=défaut" +msgid "" +"Set smoothness/sharpness of path when leaving a 'bottom' half-turn. 0=sharp, " +"1=default" +msgstr "" +"Définit le lissage du chemin lorsqu'il quitte un demi-tour inférieur. 0=net, " +"1=défaut" #: ../src/live_effects/lpe-rough-hatches.cpp:230 msgid "2nd side, in:" msgstr "2e côté, arrivée :" #: ../src/live_effects/lpe-rough-hatches.cpp:230 -msgid "Set smoothness/sharpness of path when reaching a 'top' half-turn. 0=sharp, 1=default" -msgstr "Définit le lissage du chemin lorsqu'il atteint un demi-tour supérieur. 0=net, 1=défaut" +msgid "" +"Set smoothness/sharpness of path when reaching a 'top' half-turn. 0=sharp, " +"1=default" +msgstr "" +"Définit le lissage du chemin lorsqu'il atteint un demi-tour supérieur. " +"0=net, 1=défaut" #: ../src/live_effects/lpe-rough-hatches.cpp:231 msgid "2nd side, out:" msgstr "2e côté, départ :" #: ../src/live_effects/lpe-rough-hatches.cpp:231 -msgid "Set smoothness/sharpness of path when leaving a 'top' half-turn. 0=sharp, 1=default" -msgstr "Définit le lissage du chemin lorsqu'il quitte un demi-tour supérieur. 0=net, 1=défaut" +msgid "" +"Set smoothness/sharpness of path when leaving a 'top' half-turn. 0=sharp, " +"1=default" +msgstr "" +"Définit le lissage du chemin lorsqu'il quitte un demi-tour supérieur. 0=net, " +"1=défaut" #: ../src/live_effects/lpe-rough-hatches.cpp:232 msgid "Magnitude jitter: 1st side:" @@ -10536,7 +10717,9 @@ msgstr "Aléa d'amplitude : 1er côté :" #: ../src/live_effects/lpe-rough-hatches.cpp:232 msgid "Randomly moves 'bottom' half-turns to produce magnitude variations." -msgstr "Déplace aléatoirement les demi-tours inférieurs pour produire des variations d'amplitude." +msgstr "" +"Déplace aléatoirement les demi-tours inférieurs pour produire des variations " +"d'amplitude." #: ../src/live_effects/lpe-rough-hatches.cpp:233 #: ../src/live_effects/lpe-rough-hatches.cpp:235 @@ -10546,19 +10729,29 @@ msgstr "2e côté :" #: ../src/live_effects/lpe-rough-hatches.cpp:233 msgid "Randomly moves 'top' half-turns to produce magnitude variations." -msgstr "Déplace aléatoirement les demi-tours supérieurs pour produire des variations d'amplitude." +msgstr "" +"Déplace aléatoirement les demi-tours supérieurs pour produire des variations " +"d'amplitude." #: ../src/live_effects/lpe-rough-hatches.cpp:234 msgid "Parallelism jitter: 1st side:" msgstr "Aléa de parallélisme : 1er côté :" #: ../src/live_effects/lpe-rough-hatches.cpp:234 -msgid "Add direction randomness by moving 'bottom' half-turns tangentially to the boundary." -msgstr "Ajoute un caractère aléatoire à la direction en déplaçant les demi-tours inférieurs tangentiellement par rapport à la bordure." +msgid "" +"Add direction randomness by moving 'bottom' half-turns tangentially to the " +"boundary." +msgstr "" +"Ajoute un caractère aléatoire à la direction en déplaçant les demi-tours " +"inférieurs tangentiellement par rapport à la bordure." #: ../src/live_effects/lpe-rough-hatches.cpp:235 -msgid "Add direction randomness by randomly moving 'top' half-turns tangentially to the boundary." -msgstr "Ajoute un caractère aléatoire à la direction en déplaçant les demi-tours supérieurs tangentiellement par rapport à la bordure." +msgid "" +"Add direction randomness by randomly moving 'top' half-turns tangentially to " +"the boundary." +msgstr "" +"Ajoute un caractère aléatoire à la direction en déplaçant les demi-tours " +"supérieurs tangentiellement par rapport à la bordure." #: ../src/live_effects/lpe-rough-hatches.cpp:236 msgid "Variance: 1st side:" @@ -10636,25 +10829,92 @@ msgid "Global bending" msgstr "Flexion globale" #: ../src/live_effects/lpe-rough-hatches.cpp:249 -msgid "Relative position to a reference point defines global bending direction and amount" -msgstr "La position relative à un point de référence définit globalement la direction de la flexion et sa quantité" +msgid "" +"Relative position to a reference point defines global bending direction and " +"amount" +msgstr "" +"La position relative à un point de référence définit globalement la " +"direction de la flexion et sa quantité" + +#: ../src/live_effects/lpe-roughen.cpp:30 ../share/extensions/addnodes.inx.h:4 +msgid "By number of segments" +msgstr "Par nombre de segments" + +#: ../src/live_effects/lpe-roughen.cpp:31 +#, fuzzy +msgid "By max. segment size" +msgstr "Par longueur maximum de segment" + +#: ../src/live_effects/lpe-roughen.cpp:40 +#, fuzzy +msgid "Division method" +msgstr "Méthode de division :" + +#: ../src/live_effects/lpe-roughen.cpp:42 +#, fuzzy +msgid "Max. segment size" +msgstr "Par longueur maximum de segment" -#: ../src/live_effects/lpe-ruler.cpp:25 -#: ../share/extensions/restack.inx.h:12 +#: ../src/live_effects/lpe-roughen.cpp:44 +#, fuzzy +msgid "Number of segments" +msgstr "Nombre de segments :" + +#: ../src/live_effects/lpe-roughen.cpp:46 +#, fuzzy +msgid "Max. displacement in X" +msgstr "Déplacement maximum sur l'axe X (px) :" + +#: ../src/live_effects/lpe-roughen.cpp:48 +#, fuzzy +msgid "Max. displacement in Y" +msgstr "Déplacement maximum sur l'axe Y (px) :" + +#: ../src/live_effects/lpe-roughen.cpp:50 +#, fuzzy +msgid "Global randomize" +msgstr "sensiblement aléatoire" + +#: ../src/live_effects/lpe-roughen.cpp:52 +#: ../share/extensions/radiusrand.inx.h:5 +msgid "Shift nodes" +msgstr "Déplacer les nœuds" + +#: ../src/live_effects/lpe-roughen.cpp:54 +#: ../share/extensions/radiusrand.inx.h:6 +msgid "Shift node handles" +msgstr "Déplacer les poignées de nœuds" + +#: ../src/live_effects/lpe-roughen.cpp:103 +#, fuzzy +msgid "Roughen unit" +msgstr "Camembert" + +#: ../src/live_effects/lpe-roughen.cpp:111 +msgid "Add nodes Subdivide each segment" +msgstr "" + +#: ../src/live_effects/lpe-roughen.cpp:120 +msgid "Jitter nodes Move nodes/handles" +msgstr "" + +#: ../src/live_effects/lpe-roughen.cpp:129 +msgid "Extra roughen Add a extra layer of rough" +msgstr "" + +#: ../src/live_effects/lpe-ruler.cpp:25 ../share/extensions/restack.inx.h:12 #: ../share/extensions/text_extract.inx.h:8 #: ../share/extensions/text_merge.inx.h:8 msgid "Left" msgstr "Gauche" -#: ../src/live_effects/lpe-ruler.cpp:26 -#: ../share/extensions/restack.inx.h:14 +#: ../src/live_effects/lpe-ruler.cpp:26 ../share/extensions/restack.inx.h:14 #: ../share/extensions/text_extract.inx.h:10 #: ../share/extensions/text_merge.inx.h:10 msgid "Right" msgstr "Droite" -#: ../src/live_effects/lpe-ruler.cpp:27 -#: ../src/live_effects/lpe-ruler.cpp:35 +#: ../src/live_effects/lpe-ruler.cpp:27 ../src/live_effects/lpe-ruler.cpp:35 msgid "Both" msgstr "Les deux" @@ -10663,13 +10923,11 @@ msgctxt "Border mark" msgid "None" msgstr "Aucune" -#: ../src/live_effects/lpe-ruler.cpp:33 -#: ../src/widgets/arc-toolbar.cpp:326 +#: ../src/live_effects/lpe-ruler.cpp:33 ../src/widgets/arc-toolbar.cpp:328 msgid "Start" msgstr "Début" -#: ../src/live_effects/lpe-ruler.cpp:34 -#: ../src/widgets/arc-toolbar.cpp:339 +#: ../src/live_effects/lpe-ruler.cpp:34 ../src/widgets/arc-toolbar.cpp:341 msgid "End" msgstr "Fin" @@ -10689,11 +10947,6 @@ msgstr "Distance entre deux graduations successives" msgid "Unit:" msgstr "Unité :" -#: ../src/live_effects/lpe-ruler.cpp:42 -#: ../src/widgets/ruler.cpp:201 -msgid "Unit" -msgstr "Unité" - #: ../src/live_effects/lpe-ruler.cpp:43 msgid "Ma_jor length:" msgstr "Longueur _principale :" @@ -10716,7 +10969,8 @@ msgstr "Graduations _principales :" #: ../src/live_effects/lpe-ruler.cpp:45 msgid "Draw a major mark every ... steps" -msgstr "Dessine une graduation principale en fonction de ce nombre de graduations" +msgstr "" +"Dessine une graduation principale en fonction de ce nombre de graduations" #: ../src/live_effects/lpe-ruler.cpp:46 msgid "Shift marks _by:" @@ -10732,7 +10986,9 @@ msgstr "Positionnement de la règle :" #: ../src/live_effects/lpe-ruler.cpp:47 msgid "Direction of marks (when viewing along the path from start to end)" -msgstr "Positionnement de la règle, en regardant le long du chemin du début vers la fin" +msgstr "" +"Positionnement de la règle, en regardant le long du chemin du début vers la " +"fin" #: ../src/live_effects/lpe-ruler.cpp:48 msgid "_Offset:" @@ -10748,7 +11004,95 @@ msgstr "Graduation à l'extrémité :" #: ../src/live_effects/lpe-ruler.cpp:49 msgid "Choose whether to draw marks at the beginning and end of the path" -msgstr "Choisir si les graduations doivent être dessinées au début ou à la fin du chemin" +msgstr "" +"Choisir si les graduations doivent être dessinées au début ou à la fin du " +"chemin" + +#: ../src/live_effects/lpe-show_handles.cpp:25 +#, fuzzy +msgid "Show nodes" +msgstr "Afficher les poignées" + +#: ../src/live_effects/lpe-show_handles.cpp:27 +#, fuzzy +msgid "Show path" +msgstr "Dessiner un chemin" + +#: ../src/live_effects/lpe-show_handles.cpp:28 +#, fuzzy +msgid "Scale nodes and handles" +msgstr "Aimanter aux nœuds, chemins et poignées" + +#: ../src/live_effects/lpe-show_handles.cpp:50 +msgid "" +"The \"show handles\" path effect will remove any custom style on the object " +"you are applying it to. If this is not what you want, click Cancel." +msgstr "" + +#: ../src/live_effects/lpe-simplify.cpp:29 +#, fuzzy +msgid "Steps:" +msgstr "I_ncrément :" + +#: ../src/live_effects/lpe-simplify.cpp:29 +#, fuzzy +msgid "Change number of simplify steps " +msgstr "Étoile : modifier le nombre de sommets" + +#: ../src/live_effects/lpe-simplify.cpp:30 +#, fuzzy +msgid "Roughly threshold:" +msgstr "Seuil :" + +#: ../src/live_effects/lpe-simplify.cpp:31 +#, fuzzy +msgid "Helper size:" +msgstr "Taille de la _poignée :" + +#: ../src/live_effects/lpe-simplify.cpp:31 +#, fuzzy +msgid "Helper size" +msgstr "Taille de la _poignée :" + +#: ../src/live_effects/lpe-simplify.cpp:32 +#, fuzzy +msgid "Helper nodes" +msgstr "Supprimer les nœuds" + +#: ../src/live_effects/lpe-simplify.cpp:32 +#, fuzzy +msgid "Show helper nodes" +msgstr "Descendre le nœud" + +#: ../src/live_effects/lpe-simplify.cpp:34 +#, fuzzy +msgid "Helper handles" +msgstr "Redimensionner la poignée" + +#: ../src/live_effects/lpe-simplify.cpp:34 +#, fuzzy +msgid "Show helper handles" +msgstr "Afficher les poignées" + +#: ../src/live_effects/lpe-simplify.cpp:36 +#, fuzzy +msgid "Paths separately" +msgstr "Coller les dimensions séparément" + +#: ../src/live_effects/lpe-simplify.cpp:36 +#, fuzzy +msgid "Simplifying paths (separately)" +msgstr "Simplification individuelle des chemins" + +#: ../src/live_effects/lpe-simplify.cpp:38 +#, fuzzy +msgid "Just coalesce" +msgstr "vérifier seulement les outils" + +#: ../src/live_effects/lpe-simplify.cpp:38 +#, fuzzy +msgid "Simplify just coalesce" +msgstr "Simplifier les couleurs" #. initialise your parameters here: #. testpointA(_("Test Point A"), _("Test A"), "ptA", &wr, this, Geom::Point(100,100)), @@ -10774,7 +11118,9 @@ msgstr "Variation de longueur des traits :" #: ../src/live_effects/lpe-sketch.cpp:42 msgid "Random variation of stroke length (relative to maximum length)" -msgstr "Variation aléatoire de la longueur des traits (relative à la longueur maximale)" +msgstr "" +"Variation aléatoire de la longueur des traits (relative à la longueur " +"maximale)" #: ../src/live_effects/lpe-sketch.cpp:43 msgid "Max. overlap:" @@ -10790,15 +11136,20 @@ msgstr "Variation de chevauchement :" #: ../src/live_effects/lpe-sketch.cpp:46 msgid "Random variation of overlap (relative to maximum overlap)" -msgstr "Variation aléatoire de chevauchement (relatif au chevauchement maximum)" +msgstr "" +"Variation aléatoire de chevauchement (relatif au chevauchement maximum)" #: ../src/live_effects/lpe-sketch.cpp:47 msgid "Max. end tolerance:" msgstr "Tolérance maximale de fin :" #: ../src/live_effects/lpe-sketch.cpp:48 -msgid "Maximum distance between ends of original and approximating paths (relative to maximum length)" -msgstr "Distance maximale entre la fin de l'original et les chemins approximatifs (relatif à la longueur maximale)" +msgid "" +"Maximum distance between ends of original and approximating paths (relative " +"to maximum length)" +msgstr "" +"Distance maximale entre la fin de l'original et les chemins approximatifs " +"(relatif à la longueur maximale)" #: ../src/live_effects/lpe-sketch.cpp:49 msgid "Average offset:" @@ -10839,8 +11190,12 @@ msgid "Scale:" msgstr "Longueur/Courbure :" #: ../src/live_effects/lpe-sketch.cpp:59 -msgid "Scale factor relating curvature and length of construction lines (try 5*offset)" -msgstr "Coefficient de proportionnalité entre longueur des lignes de construction et rayon de courbure du chemin (essayer 5 fois la valeur de décalage)" +msgid "" +"Scale factor relating curvature and length of construction lines (try " +"5*offset)" +msgstr "" +"Coefficient de proportionnalité entre longueur des lignes de construction et " +"rayon de courbure du chemin (essayer 5 fois la valeur de décalage)" #: ../src/live_effects/lpe-sketch.cpp:60 msgid "Max. length:" @@ -10864,7 +11219,9 @@ msgstr "Caractère aléatoire du placement :" #: ../src/live_effects/lpe-sketch.cpp:62 msgid "0: evenly distributed construction lines, 1: purely random placement" -msgstr "0 : lignes de construction régulièrement distribuées, 1 : placement purement aléatoire" +msgstr "" +"0 : lignes de construction régulièrement distribuées, 1 : placement purement " +"aléatoire" #: ../src/live_effects/lpe-sketch.cpp:64 msgid "k_min:" @@ -10882,6 +11239,71 @@ msgstr "k_max :" msgid "max curvature" msgstr "courbure max." +#: ../src/live_effects/lpe-taperstroke.cpp:67 +msgid "Extrapolated" +msgstr "Extrapolé" + +#: ../src/live_effects/lpe-taperstroke.cpp:74 +#: ../src/widgets/stroke-style.cpp:192 +msgid "Stroke width" +msgstr "Épaisseur du contour" + +#: ../src/live_effects/lpe-taperstroke.cpp:74 +#, fuzzy +msgid "The (non-tapered) width of the path" +msgstr "Redimensionne l'épaisseur du chemin de liaison" + +#: ../src/live_effects/lpe-taperstroke.cpp:75 +#, fuzzy +msgid "Start offset" +msgstr "Décalage du chemin de texte" + +#: ../src/live_effects/lpe-taperstroke.cpp:75 +msgid "Taper distance from path start" +msgstr "" + +#: ../src/live_effects/lpe-taperstroke.cpp:76 +#, fuzzy +msgid "End offset" +msgstr "Décalage rouge" + +#: ../src/live_effects/lpe-taperstroke.cpp:76 +#, fuzzy +msgid "The ending position of the taper" +msgstr "Utiliser les dimensions et position enregistrées du pavage" + +#: ../src/live_effects/lpe-taperstroke.cpp:77 +#, fuzzy +msgid "Taper smoothing" +msgstr "Lissage :" + +#: ../src/live_effects/lpe-taperstroke.cpp:77 +msgid "Amount of smoothing to apply to the tapers" +msgstr "" + +#: ../src/live_effects/lpe-taperstroke.cpp:78 +#, fuzzy +msgid "Join type for non-smooth nodes" +msgstr "Aimanter aux nœuds doux" + +#: ../src/live_effects/lpe-taperstroke.cpp:79 +#, fuzzy +msgid "Miter limit" +msgstr "Limite du raccord :" + +#: ../src/live_effects/lpe-taperstroke.cpp:79 +msgid "Limit for miter joins" +msgstr "" + +#: ../src/live_effects/lpe-taperstroke.cpp:536 +msgid "Start point of the taper" +msgstr "" + +#: ../src/live_effects/lpe-taperstroke.cpp:540 +#, fuzzy +msgid "End point of the taper" +msgstr "Unité de mesure de la règle" + #: ../src/live_effects/lpe-vonkoch.cpp:46 msgid "N_r of generations:" msgstr "Nomb_re d'itérations :" @@ -10896,15 +11318,23 @@ msgstr "Chemin générateur :" #: ../src/live_effects/lpe-vonkoch.cpp:47 msgid "Path whose segments define the iterated transforms" -msgstr "La fractale est obtenue en itérant les transformations qui envoient le chemin de référence sur chaque segment de celui-ci (un segment isolé définit une transformation préservant les proportions, deux segments attachés définissent une transformation générale)" +msgstr "" +"La fractale est obtenue en itérant les transformations qui envoient le " +"chemin de référence sur chaque segment de celui-ci (un segment isolé définit " +"une transformation préservant les proportions, deux segments attachés " +"définissent une transformation générale)" #: ../src/live_effects/lpe-vonkoch.cpp:48 msgid "_Use uniform transforms only" msgstr "_Utiliser uniquement les transformations uniformes" #: ../src/live_effects/lpe-vonkoch.cpp:48 -msgid "2 consecutive segments are used to reverse/preserve orientation only (otherwise, they define a general transform)." -msgstr "N'utiliser que des transformations qui préservent les proportions (rotations, symétries, redimensionnements)." +msgid "" +"2 consecutive segments are used to reverse/preserve orientation only " +"(otherwise, they define a general transform)." +msgstr "" +"N'utiliser que des transformations qui préservent les proportions " +"(rotations, symétries, redimensionnements)." #: ../src/live_effects/lpe-vonkoch.cpp:49 msgid "Dra_w all generations" @@ -10921,7 +11351,9 @@ msgstr "Segment de référence :" #: ../src/live_effects/lpe-vonkoch.cpp:51 msgid "The reference segment. Defaults to the horizontal midline of the bbox." -msgstr "Segment de référence. Par défaut centré horizontalement sur la boîte englobante." +msgstr "" +"Segment de référence. Par défaut centré horizontalement sur la boîte " +"englobante." #. refA(_("Ref Start"), _("Left side middle of the reference box"), "refA", &wr, this), #. refB(_("Ref End"), _("Right side middle of the reference box"), "refB", &wr, this), @@ -10942,7 +11374,36 @@ msgstr "Modifier le paramètre booléen" msgid "Change enumeration parameter" msgstr "Changer le paramètre d'énumération" +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:782 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:843 +msgid "" +"Chamfer: Ctrl+Click toogle type, Shift+Click open " +"dialog, Ctrl+Alt+Click reset" +msgstr "" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:786 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:847 +msgid "" +"Inverse Chamfer: Ctrl+Click toogle type, Shift+Click " +"open dialog, Ctrl+Alt+Click reset" +msgstr "" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:790 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:851 +msgid "" +"Inverse Fillet: Ctrl+Click toogle type, Shift+Click " +"open dialog, Ctrl+Alt+Click reset" +msgstr "" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:794 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:855 +msgid "" +"Fillet: Ctrl+Click toogle type, Shift+Click open " +"dialog, Ctrl+Alt+Click reset" +msgstr "" + #: ../src/live_effects/parameter/originalpath.cpp:71 +#: ../src/live_effects/parameter/originalpatharray.cpp:159 msgid "Link to path" msgstr "Lier au chemin" @@ -10950,7 +11411,50 @@ msgstr "Lier au chemin" msgid "Select original" msgstr "Sélectionner l'original" -#: ../src/live_effects/parameter/parameter.cpp:147 +#: ../src/live_effects/parameter/originalpatharray.cpp:94 +#: ../src/widgets/gradient-toolbar.cpp:1202 +msgid "Reverse" +msgstr "Inverser" + +#: ../src/live_effects/parameter/originalpatharray.cpp:134 +#: ../src/live_effects/parameter/originalpatharray.cpp:319 +#: ../src/live_effects/parameter/path.cpp:475 +msgid "Link path parameter to path" +msgstr "Lier les paramètres de chemin au chemin" + +#: ../src/live_effects/parameter/originalpatharray.cpp:171 +#, fuzzy +msgid "Remove Path" +msgstr "_Retirer du chemin" + +#: ../src/live_effects/parameter/originalpatharray.cpp:183 +#: ../src/ui/dialog/objects.cpp:1847 +#, fuzzy +msgid "Move Down" +msgstr "Mode déplacement" + +#: ../src/live_effects/parameter/originalpatharray.cpp:195 +#: ../src/ui/dialog/objects.cpp:1862 +#, fuzzy +msgid "Move Up" +msgstr "Déplacer le chemin" + +#: ../src/live_effects/parameter/originalpatharray.cpp:235 +#, fuzzy +msgid "Move path up" +msgstr "Déplacer le chemin" + +#: ../src/live_effects/parameter/originalpatharray.cpp:265 +#, fuzzy +msgid "Move path down" +msgstr "Descendre l'effet de chemin" + +#: ../src/live_effects/parameter/originalpatharray.cpp:283 +#, fuzzy +msgid "Remove path" +msgstr "Déplacer le chemin" + +#: ../src/live_effects/parameter/parameter.cpp:168 msgid "Change scalar parameter" msgstr "Modifier le paramètre scalaire" @@ -10974,18 +11478,22 @@ msgstr "Lier au chemin contenu dans le presse-papiers." msgid "Paste path parameter" msgstr "Coller le paramètre du chemin" -#: ../src/live_effects/parameter/path.cpp:475 -msgid "Link path parameter to path" -msgstr "Lier les paramètres de chemin au chemin" - #: ../src/live_effects/parameter/point.cpp:89 +#: ../src/live_effects/parameter/pointreseteable.cpp:103 msgid "Change point parameter" msgstr "Modifier le paramètre de point" -#: ../src/live_effects/parameter/powerstrokepointarray.cpp:229 -#: ../src/live_effects/parameter/powerstrokepointarray.cpp:241 -msgid "Stroke width control point: drag to alter the stroke width. Ctrl+click adds a control point, Ctrl+Alt+click deletes it." +#: ../src/live_effects/parameter/powerstrokepointarray.cpp:239 +#: ../src/live_effects/parameter/powerstrokepointarray.cpp:256 +#, fuzzy +msgid "" +"Stroke width control point: drag to alter the stroke width. Ctrl" +"+click adds a control point, Ctrl+Alt+click deletes it, Shift" +"+click launches width dialog." msgstr "" +"point de contrôle de l'épaisseur de contour : cliquer-glisser pour " +"modifier l'épaisseur ; Ctrl+clic ajouter un point de contrôle ; " +"Ctrl+Alt+clic supprime le point de contrôle" #: ../src/live_effects/parameter/random.cpp:134 msgid "Change random parameter" @@ -10995,14 +11503,20 @@ msgstr "Modifier le paramètre aléatoire" msgid "Change text parameter" msgstr "Modifier le paramètre de texte" -#: ../src/live_effects/parameter/unit.cpp:80 -msgid "Change unit parameter" -msgstr "Modifier le paramètre d'unité" +#: ../src/live_effects/parameter/togglebutton.cpp:112 +#, fuzzy +msgid "Change togglebutton parameter" +msgstr "Modifier le paramètre de texte" +#: ../src/live_effects/parameter/transformedpoint.cpp:98 #: ../src/live_effects/parameter/vector.cpp:99 msgid "Change vector parameter" msgstr "Modifier le paramètre de vecteur" +#: ../src/live_effects/parameter/unit.cpp:80 +msgid "Change unit parameter" +msgstr "Modifier le paramètre d'unité" + #: ../src/main-cmdlineact.cpp:50 #, c-format msgid "Unable to find verb ID '%s' specified on the command line.\n" @@ -11019,7 +11533,9 @@ msgstr "Afficher la version d'Inkscape" #: ../src/main.cpp:300 msgid "Do not use X server (only process files from console)" -msgstr "Ne pas utiliser le serveur X (traiter les fichiers seulement depuis la console)" +msgstr "" +"Ne pas utiliser le serveur X (traiter les fichiers seulement depuis la " +"console)" #: ../src/main.cpp:305 msgid "Try to use X server (even if $DISPLAY is not set)" @@ -11029,38 +11545,42 @@ msgstr "Essayer d'utiliser le serveur X (même si $DISPLAY n'est pas défini)" msgid "Open specified document(s) (option string may be excluded)" msgstr "Ouvrir les document(s) spécifiés (la chaîne d'option peut être exclue)" -#: ../src/main.cpp:311 -#: ../src/main.cpp:316 -#: ../src/main.cpp:321 -#: ../src/main.cpp:393 -#: ../src/main.cpp:398 -#: ../src/main.cpp:403 -#: ../src/main.cpp:414 -#: ../src/main.cpp:430 -#: ../src/main.cpp:435 +#: ../src/main.cpp:311 ../src/main.cpp:316 ../src/main.cpp:321 +#: ../src/main.cpp:393 ../src/main.cpp:398 ../src/main.cpp:403 +#: ../src/main.cpp:414 ../src/main.cpp:430 ../src/main.cpp:435 msgid "FILENAME" msgstr "NOMDEFICHIER" #: ../src/main.cpp:315 msgid "Print document(s) to specified output file (use '| program' for pipe)" -msgstr "Imprimer les document(s) dans le fichier de sortie spécifié (utilisez '| programme ' pour envoyer la sortie à un programme)" +msgstr "" +"Imprimer les document(s) dans le fichier de sortie spécifié (utilisez '| " +"programme ' pour envoyer la sortie à un programme)" #: ../src/main.cpp:320 msgid "Export document to a PNG file" msgstr "Exporter le document vers un fichier PNG" #: ../src/main.cpp:325 -msgid "Resolution for exporting to bitmap and for rasterization of filters in PS/EPS/PDF (default 90)" -msgstr "Résolution pour l'exportation de bitmap et la rastérisation des filtres en PS/EPS/PDS (90 par défaut)" +#, fuzzy +msgid "" +"Resolution for exporting to bitmap and for rasterization of filters in PS/" +"EPS/PDF (default 96)" +msgstr "" +"Résolution pour l'exportation de bitmap et la rastérisation des filtres en " +"PS/EPS/PDS (90 par défaut)" -#: ../src/main.cpp:326 -#: ../src/ui/widget/rendering-options.cpp:37 +#: ../src/main.cpp:326 ../src/ui/widget/rendering-options.cpp:37 msgid "DPI" msgstr "PPP" #: ../src/main.cpp:330 -msgid "Exported area in SVG user units (default is the page; 0,0 is lower-left corner)" -msgstr "Zone à exporter, en unités utilisateur SVG (par défaut, la zone de travail entière ; 0,0 est le coin inférieur gauche)" +msgid "" +"Exported area in SVG user units (default is the page; 0,0 is lower-left " +"corner)" +msgstr "" +"Zone à exporter, en unités utilisateur SVG (par défaut, la zone de travail " +"entière ; 0,0 est le coin inférieur gauche)" #: ../src/main.cpp:331 msgid "x0:y0:x1:y1" @@ -11077,15 +11597,20 @@ msgstr "La zone à exporter est la zone de travail entière" #: ../src/main.cpp:345 msgid "Only for PS/EPS/PDF, sets margin in mm around exported area (default 0)" msgstr "" +"Seulement pour PS/EPS/PDF, définit une marge en mm autour de la zone " +"exportée (0 par défaut)" -#: ../src/main.cpp:346 -#: ../src/main.cpp:388 +#: ../src/main.cpp:346 ../src/main.cpp:388 msgid "VALUE" msgstr "VALEUR" #: ../src/main.cpp:350 -msgid "Snap the bitmap export area outwards to the nearest integer values (in SVG user units)" -msgstr "Ajuster la zone à exporter en bitmap aux valeurs entières supérieures les plus proches (en unités utilisateur SVG)" +msgid "" +"Snap the bitmap export area outwards to the nearest integer values (in SVG " +"user units)" +msgstr "" +"Ajuster la zone à exporter en bitmap aux valeurs entières supérieures les " +"plus proches (en unités utilisateur SVG)" #: ../src/main.cpp:355 msgid "The width of exported bitmap in pixels (overrides export-dpi)" @@ -11107,25 +11632,31 @@ msgstr "HAUTEUR" msgid "The ID of the object to export" msgstr "L'Id de l'objet à exporter" -#: ../src/main.cpp:366 -#: ../src/main.cpp:479 -#: ../src/ui/dialog/inkscape-preferences.cpp:1507 +#: ../src/main.cpp:366 ../src/main.cpp:479 +#: ../src/ui/dialog/inkscape-preferences.cpp:1510 msgid "ID" msgstr "Id" #. TRANSLATORS: this means: "Only export the object whose id is given in --export-id". #. See "man inkscape" for details. #: ../src/main.cpp:372 -msgid "Export just the object with export-id, hide all others (only with export-id)" -msgstr "N'exporter que l'objet avec export-id, cacher tous les autres (seulement avec export-id)" +msgid "" +"Export just the object with export-id, hide all others (only with export-id)" +msgstr "" +"N'exporter que l'objet avec export-id, cacher tous les autres (seulement " +"avec export-id)" #: ../src/main.cpp:377 msgid "Use stored filename and DPI hints when exporting (only with export-id)" -msgstr "Utiliser le nom de fichier et la résolution enregistrés lors de l'exportation (seulement avec export-id)" +msgstr "" +"Utiliser le nom de fichier et la résolution enregistrés lors de " +"l'exportation (seulement avec export-id)" #: ../src/main.cpp:382 msgid "Background color of exported bitmap (any SVG-supported color string)" -msgstr "Couleur de fond du bitmap exporté (n'importe quelle code de couleur permise par SVG)" +msgstr "" +"Couleur de fond du bitmap exporté (n'importe quelle code de couleur permise " +"par SVG)" #: ../src/main.cpp:383 msgid "COLOR" @@ -11137,7 +11668,9 @@ msgstr "Opacité du fond du bitmap exporté (entre 0,0 et 1,0 ou 1 et 255))" #: ../src/main.cpp:392 msgid "Export document to plain SVG file (no sodipodi or inkscape namespaces)" -msgstr "Exporter le document en SVG simple (sans espace de nom de Sodipodi ou d'Inkscape)" +msgstr "" +"Exporter le document en SVG simple (sans espace de nom de Sodipodi ou " +"d'Inkscape)" #: ../src/main.cpp:397 msgid "Export document to a PS file" @@ -11148,8 +11681,12 @@ msgid "Export document to an EPS file" msgstr "Exporter le document en fichier EPS" #: ../src/main.cpp:407 -msgid "Choose the PostScript Level used to export. Possible choices are 2 (the default) and 3" +msgid "" +"Choose the PostScript Level used to export. Possible choices are 2 (the " +"default) and 3" msgstr "" +"Niveau PostScript utilisé pour l'exportation. Les choix possibles dont 2 " +"(par défaut) ou 3." #: ../src/main.cpp:409 msgid "PS Level" @@ -11161,16 +11698,27 @@ msgstr "Exporter le document en fichier PDF" #. TRANSLATORS: "--export-pdf-version" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:419 -msgid "Export PDF to given version. (hint: make sure to input the exact string found in the PDF export dialog, e.g. \"PDF 1.4\" which is PDF-a conformant)" +msgid "" +"Export PDF to given version. (hint: make sure to input the exact string " +"found in the PDF export dialog, e.g. \"PDF 1.4\" which is PDF-a conformant)" msgstr "" +"Exporter le PDF dans une version donnée (astuce : assurez-vous que la valeur " +"saisie corresponde bien à la chaîne présentée dans la boîte de dialogue " +"d'exportation PDF, par exemple \"PDF 1.4\" - conforme PDF-a)" #: ../src/main.cpp:420 msgid "PDF_VERSION" msgstr "VERSION_PDF" #: ../src/main.cpp:424 -msgid "Export PDF/PS/EPS without text. Besides the PDF/PS/EPS, a LaTeX file is exported, putting the text on top of the PDF/PS/EPS file. Include the result in LaTeX like: \\input{latexfile.tex}" -msgstr "Exporte en PDF, PS ou EPS sans texte, celui-ci étant exporté dans un LaTex séparé. Le résultat peut être intégré dans LaTeX avec : \\input{latexfile.tex}" +msgid "" +"Export PDF/PS/EPS without text. Besides the PDF/PS/EPS, a LaTeX file is " +"exported, putting the text on top of the PDF/PS/EPS file. Include the result " +"in LaTeX like: \\input{latexfile.tex}" +msgstr "" +"Exporte en PDF, PS ou EPS sans texte, celui-ci étant exporté dans un LaTex " +"séparé. Le résultat peut être intégré dans LaTeX avec : \\input{latexfile." +"tex}" #: ../src/main.cpp:429 msgid "Export document to an Enhanced Metafile (EMF) File" @@ -11182,31 +11730,50 @@ msgstr "Exporter le document en fichier WMF (Métafichier Windows)" #: ../src/main.cpp:439 msgid "Convert text object to paths on export (PS, EPS, PDF, SVG)" -msgstr "Convertir les objets texte en chemins lors de l'export (PS, EPS, PDF, SVG)" +msgstr "" +"Convertir les objets texte en chemins lors de l'export (PS, EPS, PDF, SVG)" #: ../src/main.cpp:444 -msgid "Render filtered objects without filters, instead of rasterizing (PS, EPS, PDF)" -msgstr "Les objets filtrés sont rendus sans filtres, plutôt que rastérisés (PS, EPS, PDF)" +msgid "" +"Render filtered objects without filters, instead of rasterizing (PS, EPS, " +"PDF)" +msgstr "" +"Les objets filtrés sont rendus sans filtres, plutôt que rastérisés (PS, EPS, " +"PDF)" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:450 -msgid "Query the X coordinate of the drawing or, if specified, of the object with --query-id" -msgstr "Demander l'abscisse (coordonnée X) du dessin ou, si spécifié avec --query-id, de l'objet" +msgid "" +"Query the X coordinate of the drawing or, if specified, of the object with --" +"query-id" +msgstr "" +"Demander l'abscisse (coordonnée X) du dessin ou, si spécifié avec --query-" +"id, de l'objet" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:456 -msgid "Query the Y coordinate of the drawing or, if specified, of the object with --query-id" -msgstr "Demander l'ordonnée (coordonnée Y) du dessin ou, si spécifié avec --query-id, de l'objet" +msgid "" +"Query the Y coordinate of the drawing or, if specified, of the object with --" +"query-id" +msgstr "" +"Demander l'ordonnée (coordonnée Y) du dessin ou, si spécifié avec --query-" +"id, de l'objet" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:462 -msgid "Query the width of the drawing or, if specified, of the object with --query-id" -msgstr "Demander la largeur du dessin ou, si spécifié avec --query-id, de l'objet" +msgid "" +"Query the width of the drawing or, if specified, of the object with --query-" +"id" +msgstr "" +"Demander la largeur du dessin ou, si spécifié avec --query-id, de l'objet" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" #: ../src/main.cpp:468 -msgid "Query the height of the drawing or, if specified, of the object with --query-id" -msgstr "Demander la hauteur du dessin ou, si spécifié avec --query-id, de l'objet" +msgid "" +"Query the height of the drawing or, if specified, of the object with --query-" +"id" +msgstr "" +"Demander la hauteur du dessin ou, si spécifié avec --query-id, de l'objet" #: ../src/main.cpp:473 msgid "List id,x,y,w,h for all objects" @@ -11227,11 +11794,15 @@ msgstr "Supprimer les éléments inutiles des section(s) defs du document" #: ../src/main.cpp:495 msgid "Enter a listening loop for D-Bus messages in console mode" -msgstr "" +msgstr "Saisissez une boucle d'écoute pour les messages D-Bus en mode console" #: ../src/main.cpp:500 -msgid "Specify the D-Bus bus name to listen for messages on (default is org.inkscape)" +msgid "" +"Specify the D-Bus bus name to listen for messages on (default is org." +"inkscape)" msgstr "" +"Spécifie le nom du bus D-Bus sur lequel écouter les messages (org.inkscape " +"par défaut)" #: ../src/main.cpp:501 msgid "BUS-NAME" @@ -11261,8 +11832,7 @@ msgstr "OBJECT-ID" msgid "Start Inkscape in interactive shell mode." msgstr "Démarrer Inkscape en mode de commande interactif." -#: ../src/main.cpp:871 -#: ../src/main.cpp:1283 +#: ../src/main.cpp:871 ../src/main.cpp:1283 msgid "" "[OPTIONS...] [FILE...]\n" "\n" @@ -11273,25 +11843,22 @@ msgstr "" "Options disponibles :" #. ## Add a menu for clear() -#: ../src/menus-skeleton.h:16 -#: ../src/ui/dialog/debug.cpp:83 +#: ../src/menus-skeleton.h:16 ../src/ui/dialog/debug.cpp:83 msgid "_File" msgstr "_Fichier" -#: ../src/menus-skeleton.h:17 +#. Tag +#: ../src/menus-skeleton.h:17 ../src/verbs.cpp:2730 msgid "_New" msgstr "_Nouveau" #. " \n" #. " \n" -#: ../src/menus-skeleton.h:43 -#: ../src/verbs.cpp:2634 -#: ../src/verbs.cpp:2640 +#: ../src/menus-skeleton.h:43 ../src/verbs.cpp:2717 ../src/verbs.cpp:2725 msgid "_Edit" msgstr "_Édition" -#: ../src/menus-skeleton.h:53 -#: ../src/verbs.cpp:2398 +#: ../src/menus-skeleton.h:53 ../src/verbs.cpp:2481 msgid "Paste Si_ze" msgstr "Coller les d_imensions" @@ -11339,176 +11906,104 @@ msgstr "Ca_lque" msgid "_Object" msgstr "_Objet" -#: ../src/menus-skeleton.h:188 +#: ../src/menus-skeleton.h:191 msgid "Cli_p" msgstr "D_écoupe" -#: ../src/menus-skeleton.h:192 +#: ../src/menus-skeleton.h:195 msgid "Mas_k" msgstr "Mas_que" -#: ../src/menus-skeleton.h:196 +#: ../src/menus-skeleton.h:199 msgid "Patter_n" msgstr "Moti_f" -#: ../src/menus-skeleton.h:220 +#: ../src/menus-skeleton.h:223 msgid "_Path" msgstr "_Chemin" -#: ../src/menus-skeleton.h:248 -#: ../src/ui/dialog/find.cpp:77 +#: ../src/menus-skeleton.h:251 ../src/ui/dialog/find.cpp:77 #: ../src/ui/dialog/text-edit.cpp:71 msgid "_Text" msgstr "_Texte" -#: ../src/menus-skeleton.h:266 +#: ../src/menus-skeleton.h:269 msgid "Filter_s" msgstr "Filtre_s" -#: ../src/menus-skeleton.h:272 +#: ../src/menus-skeleton.h:275 msgid "Exte_nsions" msgstr "Exte_nsions" -#: ../src/menus-skeleton.h:278 +#: ../src/menus-skeleton.h:281 msgid "_Help" msgstr "Aid_e" -#: ../src/menus-skeleton.h:282 +#: ../src/menus-skeleton.h:285 msgid "Tutorials" msgstr "Didacticiels" -#: ../src/object-edit.cpp:439 -msgid "Adjust the horizontal rounding radius; with Ctrl to make the vertical radius the same" -msgstr "Ajuster le rayon d'arrondi horizontal; Ctrl que le rayon vertical soit identique" - -#: ../src/object-edit.cpp:444 -msgid "Adjust the vertical rounding radius; with Ctrl to make the horizontal radius the same" -msgstr "Ajuster le rayon d'arrondi vertical; Ctrl pour que le rayon horizontal soit identique" - -#: ../src/object-edit.cpp:449 -#: ../src/object-edit.cpp:454 -msgid "Adjust the width and height of the rectangle; with Ctrl to lock ratio or stretch in one dimension only" -msgstr "Ajuster la hauteur et la largeur du rectangle ; Ctrl pour verrouiller le rapport des dimensions ou incliner dans une seule dimension" - -#: ../src/object-edit.cpp:689 -#: ../src/object-edit.cpp:693 -#: ../src/object-edit.cpp:697 -#: ../src/object-edit.cpp:701 -msgid "Resize box in X/Y direction; with Shift along the Z axis; with Ctrl to constrain to the directions of edges or diagonals" -msgstr "Redimensionner la boîte suivant les axes X/Y. Avec Shift, suivant l'axe Z; avec Ctrl pour préserver les directions des arêtes ou des diagonales." - -#: ../src/object-edit.cpp:705 -#: ../src/object-edit.cpp:709 -#: ../src/object-edit.cpp:713 -#: ../src/object-edit.cpp:717 -msgid "Resize box along the Z axis; with Shift in X/Y direction; with Ctrl to constrain to the directions of edges or diagonals" -msgstr "Redimensionner la boîte suivant l'axe Z. Avec Shift, suivant les axes X/Y; avec Ctrl pour préserver les directions des arêtes ou des diagonales." - -#: ../src/object-edit.cpp:721 -msgid "Move the box in perspective" -msgstr "Déplacer la boîte en perspective." - -#: ../src/object-edit.cpp:948 -msgid "Adjust ellipse width, with Ctrl to make circle" -msgstr "Ajuster la largeur de l'ellipse; Ctrl pour en faire un cercle" - -#: ../src/object-edit.cpp:952 -msgid "Adjust ellipse height, with Ctrl to make circle" -msgstr "Ajuster la hauteur de l'ellipse; Ctrl pour en faire un cercle" - -#: ../src/object-edit.cpp:956 -msgid "Position the start point of the arc or segment; with Ctrl to snap angle; drag inside the ellipse for arc, outside for segment" -msgstr "Positionner le point de départ de l'arc ou du camembert ; Ctrl pour tourner par incréments ; déplacer vers l'intérieur de l'ellipse pour un arc, vers l'extérieur pour un camembert" - -#: ../src/object-edit.cpp:961 -msgid "Position the end point of the arc or segment; with Ctrl to snap angle; drag inside the ellipse for arc, outside for segment" -msgstr "Positionner le point final de l'arc ou du camembert; Ctrl pour tourner par incréments; déplacer vers l'intérieur de l'ellipse pour un arc, vers l'extérieur pour un camembert" - -#: ../src/object-edit.cpp:1101 -msgid "Adjust the tip radius of the star or polygon; with Shift to round; with Alt to randomize" -msgstr "Ajuster le rayon des sommets de l'étoile ou du polygone; Maj pour arrondir; Alt pour rendre aléatoire" - -#: ../src/object-edit.cpp:1109 -msgid "Adjust the base radius of the star; with Ctrl to keep star rays radial (no skew); with Shift to round; with Alt to randomize" -msgstr "Ajuster le rayon de base de l'étoile; Ctrl pour garder l'étoile parfaitement radiale (pas d'inclinaison); Maj pour arrondir; Alt pour rendre aléatoire" - -#: ../src/object-edit.cpp:1299 -msgid "Roll/unroll the spiral from inside; with Ctrl to snap angle; with Alt to converge/diverge" -msgstr "Enrouler/dérouler la spirale depuis l'intérieur; Ctrl pour tourner par incréments; Alt pour la faire converger/diverger" - -#: ../src/object-edit.cpp:1303 -msgid "Roll/unroll the spiral from outside; with Ctrl to snap angle; with Shift to scale/rotate; with Alt to lock radius" -msgstr "Enrouler/dérouler la spirale depuis l'extérieur ; Ctrl pour tourner par incréments ; Maj pour redimensionner/ tourner ; Alt pour verrouiller le rayon" - -#: ../src/object-edit.cpp:1348 -msgid "Adjust the offset distance" -msgstr "Ajuster la distance d'offset" - -#: ../src/object-edit.cpp:1384 -msgid "Drag to resize the flowed text frame" -msgstr "Cliquer-déplacer pour redimensionner le cadre du texte" - -#: ../src/path-chemistry.cpp:53 +#: ../src/path-chemistry.cpp:54 msgid "Select object(s) to combine." msgstr "Sélectionner un ou des objet(s) à combiner." -#: ../src/path-chemistry.cpp:57 +#: ../src/path-chemistry.cpp:58 msgid "Combining paths..." msgstr "Combinaison des chemins..." -#: ../src/path-chemistry.cpp:170 +#: ../src/path-chemistry.cpp:174 msgid "Combine" msgstr "Combiner" -#: ../src/path-chemistry.cpp:177 +#: ../src/path-chemistry.cpp:181 msgid "No path(s) to combine in the selection." msgstr "Aucun chemin à combiner dans la sélection." -#: ../src/path-chemistry.cpp:189 +#: ../src/path-chemistry.cpp:193 msgid "Select path(s) to break apart." msgstr "Sélectionner des chemin(s) à séparer." -#: ../src/path-chemistry.cpp:193 +#: ../src/path-chemistry.cpp:197 msgid "Breaking apart paths..." msgstr "Séparation des chemins..." -#: ../src/path-chemistry.cpp:284 +#: ../src/path-chemistry.cpp:287 msgid "Break apart" msgstr "Séparer" -#: ../src/path-chemistry.cpp:286 +#: ../src/path-chemistry.cpp:289 msgid "No path(s) to break apart in the selection." msgstr "Aucun chemin à séparer dans la sélection." -#: ../src/path-chemistry.cpp:296 +#: ../src/path-chemistry.cpp:299 msgid "Select object(s) to convert to path." msgstr "Sélectionner les objet(s) à convertir en chemin." -#: ../src/path-chemistry.cpp:302 +#: ../src/path-chemistry.cpp:305 msgid "Converting objects to paths..." msgstr "Conversion des objets en chemins..." -#: ../src/path-chemistry.cpp:324 +#: ../src/path-chemistry.cpp:327 msgid "Object to path" msgstr "Objet en chemin" -#: ../src/path-chemistry.cpp:326 +#: ../src/path-chemistry.cpp:329 msgid "No objects to convert to path in the selection." msgstr "Aucun objet à convertir en chemin dans la sélection." -#: ../src/path-chemistry.cpp:603 +#: ../src/path-chemistry.cpp:620 msgid "Select path(s) to reverse." msgstr "Sélectionner les chemin(s) à inverser." -#: ../src/path-chemistry.cpp:612 +#: ../src/path-chemistry.cpp:629 msgid "Reversing paths..." msgstr "Inversion des chemins..." -#: ../src/path-chemistry.cpp:647 +#: ../src/path-chemistry.cpp:664 msgid "Reverse path" msgstr "Inverser le chemin" -#: ../src/path-chemistry.cpp:649 +#: ../src/path-chemistry.cpp:666 msgid "No paths to reverse in the selection." msgstr "Aucun chemin à inverser dans la sélection." @@ -11520,32 +12015,33 @@ msgstr "Alterner les points de fuite" msgid "Toggle multiple vanishing points" msgstr "Alterner entre des points de fuite multiples" -#: ../src/preferences-skeleton.h:101 +#: ../src/preferences-skeleton.h:102 msgid "Dip pen" msgstr "Calame" -#: ../src/preferences-skeleton.h:102 +#: ../src/preferences-skeleton.h:103 msgid "Marker" msgstr "Marqueur" -#: ../src/preferences-skeleton.h:103 +#: ../src/preferences-skeleton.h:104 msgid "Brush" msgstr "Brosse" -#: ../src/preferences-skeleton.h:104 +#: ../src/preferences-skeleton.h:105 msgid "Wiggly" msgstr "Pinceau fou" -#: ../src/preferences-skeleton.h:105 +#: ../src/preferences-skeleton.h:106 msgid "Splotchy" msgstr "Plume" -#: ../src/preferences-skeleton.h:106 +#: ../src/preferences-skeleton.h:107 msgid "Tracing" msgstr "Gravure" #: ../src/preferences.cpp:134 -msgid "Inkscape will run with default settings, and new settings will not be saved. " +msgid "" +"Inkscape will run with default settings, and new settings will not be saved. " msgstr "" "Inkscape va démarrer avec les préférences par défaut.\n" "Les nouvelles préférences ne seront pas enregistrées." @@ -11612,7 +12108,9 @@ msgstr "CC Paternité - Pas d'utilisation commerciale" #: ../src/rdf.cpp:195 msgid "CC Attribution-NonCommercial-ShareAlike" -msgstr "CC Paternité - Pas d'utilisation commerciale - Partage des conditions initiales à l'identique" +msgstr "" +"CC Paternité - Pas d'utilisation commerciale - Partage des conditions " +"initiales à l'identique" #: ../src/rdf.cpp:200 msgid "CC Attribution-NonCommercial-NoDerivs" @@ -11631,31 +12129,32 @@ msgid "Open Font License" msgstr "Open Font Licence (Licence de police libre)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkTitleAttribute -#: ../src/rdf.cpp:235 -#: ../src/ui/dialog/object-attributes.cpp:57 +#: ../src/rdf.cpp:235 ../src/ui/dialog/object-attributes.cpp:57 msgid "Title:" msgstr "Titre :" #: ../src/rdf.cpp:236 msgid "A name given to the resource" -msgstr "" +msgstr "Nom donné au document" #: ../src/rdf.cpp:238 msgid "Date:" msgstr "Date :" #: ../src/rdf.cpp:239 -msgid "A point or period of time associated with an event in the lifecycle of the resource" +msgid "" +"A point or period of time associated with an event in the lifecycle of the " +"resource" msgstr "" +"Date ou période associée à un événement dans le cycle de vie du document" -#: ../src/rdf.cpp:241 -#: ../share/extensions/webslicer_create_rect.inx.h:3 +#: ../src/rdf.cpp:241 ../share/extensions/webslicer_create_rect.inx.h:3 msgid "Format:" msgstr "Format :" #: ../src/rdf.cpp:242 msgid "The file format, physical medium, or dimensions of the resource" -msgstr "" +msgstr "Format de fichier, support physique ou dimensions du document" #: ../src/rdf.cpp:245 msgid "The nature or genre of the resource" @@ -11675,7 +12174,7 @@ msgstr "Droits :" #: ../src/rdf.cpp:252 msgid "Information about rights held in and over the resource" -msgstr "" +msgstr "Informations sur les droits relatifs au document" #: ../src/rdf.cpp:254 msgid "Publisher:" @@ -11691,11 +12190,11 @@ msgstr "Identifiant :" #: ../src/rdf.cpp:259 msgid "An unambiguous reference to the resource within a given context" -msgstr "" +msgstr "Référence univoque au document dans un contexte donné" #: ../src/rdf.cpp:262 msgid "A related resource from which the described resource is derived" -msgstr "" +msgstr "Document duquel est dérivé ce document" #: ../src/rdf.cpp:264 msgid "Relation:" @@ -11705,14 +12204,13 @@ msgstr "Relation :" msgid "A related resource" msgstr "Document relatif" -#: ../src/rdf.cpp:267 -#: ../src/ui/dialog/inkscape-preferences.cpp:1859 +#: ../src/rdf.cpp:267 ../src/ui/dialog/inkscape-preferences.cpp:1862 msgid "Language:" msgstr "Langue principale :" #: ../src/rdf.cpp:268 msgid "A language of the resource" -msgstr "" +msgstr "Langue du document" #: ../src/rdf.cpp:270 msgid "Keywords:" @@ -11729,8 +12227,12 @@ msgid "Coverage:" msgstr "Portée :" #: ../src/rdf.cpp:276 -msgid "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant" +msgid "" +"The spatial or temporal topic of the resource, the spatial applicability of " +"the resource, or the jurisdiction under which the resource is relevant" msgstr "" +"Sujet spacial ou temporel du document, l'applicabilité spaciale du document, " +"ou la juridiction dans laquelle le document s'inscrit" #: ../src/rdf.cpp:279 msgid "Description:" @@ -11770,20 +12272,19 @@ msgstr "Fragment XML pour la section « Licence » (RDF)" #: ../src/resource-manager.cpp:332 msgid "Fixup broken links" -msgstr "" +msgstr "Réparer les liens brisés" -#: ../src/selection-chemistry.cpp:396 +#: ../src/selection-chemistry.cpp:406 msgid "Delete text" msgstr "Supprimer le texte" -#: ../src/selection-chemistry.cpp:404 +#: ../src/selection-chemistry.cpp:414 msgid "Nothing was deleted." msgstr "Rien n'a été supprimé." -#: ../src/selection-chemistry.cpp:423 +#: ../src/selection-chemistry.cpp:433 #: ../src/ui/dialog/calligraphic-profile-rename.cpp:75 -#: ../src/ui/dialog/swatches.cpp:278 -#: ../src/ui/tools/text-tool.cpp:974 +#: ../src/ui/dialog/swatches.cpp:278 ../src/ui/tools/text-tool.cpp:974 #: ../src/widgets/eraser-toolbar.cpp:93 #: ../src/widgets/gradient-toolbar.cpp:1178 #: ../src/widgets/gradient-toolbar.cpp:1192 @@ -11792,485 +12293,506 @@ msgstr "Rien n'a été supprimé." msgid "Delete" msgstr "Supprimer" -#: ../src/selection-chemistry.cpp:451 +#: ../src/selection-chemistry.cpp:461 msgid "Select object(s) to duplicate." msgstr "Sélectionner un ou des objet(s) à dupliquer." -#: ../src/selection-chemistry.cpp:560 +#: ../src/selection-chemistry.cpp:576 msgid "Delete all" msgstr "Supprimer tout" -#: ../src/selection-chemistry.cpp:750 +#: ../src/selection-chemistry.cpp:767 msgid "Select some objects to group." msgstr "Sélectionner des objets à grouper." -#: ../src/selection-chemistry.cpp:765 +#: ../src/selection-chemistry.cpp:782 msgctxt "Verb" msgid "Group" msgstr "Grouper" -#: ../src/selection-chemistry.cpp:788 +#: ../src/selection-chemistry.cpp:805 msgid "Select a group to ungroup." msgstr "Sélectionner un groupe à dégrouper." -#: ../src/selection-chemistry.cpp:803 +#: ../src/selection-chemistry.cpp:820 msgid "No groups to ungroup in the selection." msgstr "Aucun groupe à dégrouper dans la sélection." -#: ../src/selection-chemistry.cpp:861 -#: ../src/sp-item-group.cpp:562 +#: ../src/selection-chemistry.cpp:878 ../src/sp-item-group.cpp:563 msgid "Ungroup" msgstr "Dégrouper" -#: ../src/selection-chemistry.cpp:942 +#: ../src/selection-chemistry.cpp:960 msgid "Select object(s) to raise." msgstr "Sélectionner un ou des objet(s) à monter." -#: ../src/selection-chemistry.cpp:948 -#: ../src/selection-chemistry.cpp:1004 -#: ../src/selection-chemistry.cpp:1032 -#: ../src/selection-chemistry.cpp:1093 -msgid "You cannot raise/lower objects from different groups or layers." -msgstr "Vous ne pouvez pas monter/descendre des objets de différents groupes ou calques." +#: ../src/selection-chemistry.cpp:966 ../src/selection-chemistry.cpp:1023 +#: ../src/selection-chemistry.cpp:1051 ../src/selection-chemistry.cpp:1113 +msgid "" +"You cannot raise/lower objects from different groups or layers." +msgstr "" +"Vous ne pouvez pas monter/descendre des objets de différents groupes " +"ou calques." #. TRANSLATORS: "Raise" means "to raise an object" in the undo history -#: ../src/selection-chemistry.cpp:988 +#: ../src/selection-chemistry.cpp:1007 msgctxt "Undo action" msgid "Raise" msgstr "Monter" -#: ../src/selection-chemistry.cpp:996 +#: ../src/selection-chemistry.cpp:1015 msgid "Select object(s) to raise to top." msgstr "Sélectionner des objets à monter au premier plan." -#: ../src/selection-chemistry.cpp:1019 +#: ../src/selection-chemistry.cpp:1038 msgid "Raise to top" msgstr "Monter au premier plan" -#: ../src/selection-chemistry.cpp:1026 +#: ../src/selection-chemistry.cpp:1045 msgid "Select object(s) to lower." msgstr "Sélectionner un ou des objet(s) à descendre." #. TRANSLATORS: "Lower" means "to lower an object" in the undo history -#: ../src/selection-chemistry.cpp:1077 +#: ../src/selection-chemistry.cpp:1097 msgctxt "Undo action" msgid "Lower" msgstr "Descendre" -#: ../src/selection-chemistry.cpp:1085 +#: ../src/selection-chemistry.cpp:1105 msgid "Select object(s) to lower to bottom." msgstr "Sélectionner un ou des objet(s) à descendre à l'arrière-plan." -#: ../src/selection-chemistry.cpp:1120 +#: ../src/selection-chemistry.cpp:1140 msgid "Lower to bottom" msgstr "Descendre à l'arrière-plan" -#: ../src/selection-chemistry.cpp:1130 +#: ../src/selection-chemistry.cpp:1150 msgid "Nothing to undo." msgstr "Rien à défaire." -#: ../src/selection-chemistry.cpp:1141 +#: ../src/selection-chemistry.cpp:1161 msgid "Nothing to redo." msgstr "Rien à refaire." -#: ../src/selection-chemistry.cpp:1208 +#: ../src/selection-chemistry.cpp:1233 msgid "Paste" msgstr "Coller" -#: ../src/selection-chemistry.cpp:1216 +#: ../src/selection-chemistry.cpp:1241 msgid "Paste style" msgstr "Coller le style" -#: ../src/selection-chemistry.cpp:1226 +#: ../src/selection-chemistry.cpp:1251 msgid "Paste live path effect" msgstr "Coller l'effet de chemin en direct" -#: ../src/selection-chemistry.cpp:1248 +#: ../src/selection-chemistry.cpp:1273 msgid "Select object(s) to remove live path effects from." -msgstr "Sélectionner un ou des objet(s) sur lesquels supprimer des effets de chemin." +msgstr "" +"Sélectionner un ou des objet(s) sur lesquels supprimer des effets de " +"chemin." -#: ../src/selection-chemistry.cpp:1260 +#: ../src/selection-chemistry.cpp:1285 msgid "Remove live path effect" msgstr "Supprimer l'effet de chemin en direct" -#: ../src/selection-chemistry.cpp:1271 +#: ../src/selection-chemistry.cpp:1296 msgid "Select object(s) to remove filters from." msgstr "Sélectionner les objets pour en retirer les filtres." -#: ../src/selection-chemistry.cpp:1281 +#: ../src/selection-chemistry.cpp:1306 #: ../src/ui/dialog/filter-effects-dialog.cpp:1678 msgid "Remove filter" msgstr "Supprimer le filtre" -#: ../src/selection-chemistry.cpp:1290 +#: ../src/selection-chemistry.cpp:1315 msgid "Paste size" msgstr "Coller les dimensions" -#: ../src/selection-chemistry.cpp:1299 +#: ../src/selection-chemistry.cpp:1324 msgid "Paste size separately" msgstr "Coller les dimensions séparément" -#: ../src/selection-chemistry.cpp:1309 +#: ../src/selection-chemistry.cpp:1334 msgid "Select object(s) to move to the layer above." msgstr "Sélectionner un ou des objet(s) à déplacer au calque du dessus." -#: ../src/selection-chemistry.cpp:1335 +#: ../src/selection-chemistry.cpp:1360 msgid "Raise to next layer" msgstr "Monter au calque suivant" -#: ../src/selection-chemistry.cpp:1342 +#: ../src/selection-chemistry.cpp:1367 msgid "No more layers above." msgstr "Plus de calque au-dessus." -#: ../src/selection-chemistry.cpp:1354 +#: ../src/selection-chemistry.cpp:1379 msgid "Select object(s) to move to the layer below." -msgstr "Sélectionner un ou des objet(s) à déplacer au calque du dessous." +msgstr "" +"Sélectionner un ou des objet(s) à déplacer au calque du dessous." -#: ../src/selection-chemistry.cpp:1380 +#: ../src/selection-chemistry.cpp:1405 msgid "Lower to previous layer" msgstr "Descendre au calque précédent." -#: ../src/selection-chemistry.cpp:1387 +#: ../src/selection-chemistry.cpp:1412 msgid "No more layers below." msgstr "Plus de calque en-dessous." -#: ../src/selection-chemistry.cpp:1399 +#: ../src/selection-chemistry.cpp:1424 msgid "Select object(s) to move." msgstr "Sélectionner un ou des objet(s) à déplacer." -#: ../src/selection-chemistry.cpp:1416 -#: ../src/verbs.cpp:2577 +#: ../src/selection-chemistry.cpp:1441 ../src/verbs.cpp:2660 msgid "Move selection to layer" msgstr "Déplacer la sélection au calque" #. An SVG element cannot have a transform. We could change 'x' and 'y' in response #. to a translation... but leave that for another day. -#: ../src/selection-chemistry.cpp:1503 -#: ../src/seltrans.cpp:388 +#: ../src/selection-chemistry.cpp:1531 ../src/seltrans.cpp:388 msgid "Cannot transform an embedded SVG." -msgstr "" +msgstr "Impossible de transformer un SVG intégré." -#: ../src/selection-chemistry.cpp:1649 +#: ../src/selection-chemistry.cpp:1702 msgid "Remove transform" msgstr "Retirer les transformations" -#: ../src/selection-chemistry.cpp:1752 +#: ../src/selection-chemistry.cpp:1809 msgid "Rotate 90° CCW" msgstr "Tourner de 90° dans le sens anti-horaire" -#: ../src/selection-chemistry.cpp:1752 +#: ../src/selection-chemistry.cpp:1809 msgid "Rotate 90° CW" msgstr "Tourner de 90° dans le sens horaire" -#: ../src/selection-chemistry.cpp:1773 -#: ../src/seltrans.cpp:483 +#: ../src/selection-chemistry.cpp:1830 ../src/seltrans.cpp:483 #: ../src/ui/dialog/transformation.cpp:894 msgid "Rotate" msgstr "Tourner" -#: ../src/selection-chemistry.cpp:2144 +#: ../src/selection-chemistry.cpp:2217 msgid "Rotate by pixels" msgstr "Tourner par pixels" -#: ../src/selection-chemistry.cpp:2174 -#: ../src/seltrans.cpp:480 +#: ../src/selection-chemistry.cpp:2247 ../src/seltrans.cpp:480 #: ../src/ui/dialog/transformation.cpp:869 #: ../share/extensions/interp_att_g.inx.h:12 msgid "Scale" msgstr "Échelle" -#: ../src/selection-chemistry.cpp:2199 +#: ../src/selection-chemistry.cpp:2272 msgid "Scale by whole factor" msgstr "Redimensionner d'un facteur entier" -#: ../src/selection-chemistry.cpp:2214 +#: ../src/selection-chemistry.cpp:2287 msgid "Move vertically" msgstr "Déplacer verticalement" -#: ../src/selection-chemistry.cpp:2217 +#: ../src/selection-chemistry.cpp:2290 msgid "Move horizontally" msgstr "Déplacer horizontalement" -#: ../src/selection-chemistry.cpp:2220 -#: ../src/selection-chemistry.cpp:2246 -#: ../src/seltrans.cpp:477 -#: ../src/ui/dialog/transformation.cpp:807 +#: ../src/selection-chemistry.cpp:2293 ../src/selection-chemistry.cpp:2319 +#: ../src/seltrans.cpp:477 ../src/ui/dialog/transformation.cpp:807 msgid "Move" msgstr "Déplacer" -#: ../src/selection-chemistry.cpp:2240 +#: ../src/selection-chemistry.cpp:2313 msgid "Move vertically by pixels" msgstr "Déplacer verticalement par pixels" -#: ../src/selection-chemistry.cpp:2243 +#: ../src/selection-chemistry.cpp:2316 msgid "Move horizontally by pixels" msgstr "Déplacer horizontalement par pixels" -#: ../src/selection-chemistry.cpp:2375 +#: ../src/selection-chemistry.cpp:2448 msgid "The selection has no applied path effect." msgstr "Il n'y a pas d'effet de chemin appliqué sur cette sélection." -#: ../src/selection-chemistry.cpp:2544 -#: ../src/ui/dialog/clonetiler.cpp:2218 +#: ../src/selection-chemistry.cpp:2620 ../src/ui/dialog/clonetiler.cpp:2223 msgid "Select an object to clone." msgstr "Sélectionner un objet à cloner." -#: ../src/selection-chemistry.cpp:2580 +#: ../src/selection-chemistry.cpp:2656 msgctxt "Action" msgid "Clone" msgstr "Cloner" -#: ../src/selection-chemistry.cpp:2596 +#: ../src/selection-chemistry.cpp:2672 msgid "Select clones to relink." msgstr "Sélectionner les clones à relier." -#: ../src/selection-chemistry.cpp:2603 +#: ../src/selection-chemistry.cpp:2679 msgid "Copy an object to clipboard to relink clones to." msgstr "Copier un objet dans le presse-papier pour y relier les clones." -#: ../src/selection-chemistry.cpp:2627 +#: ../src/selection-chemistry.cpp:2702 msgid "No clones to relink in the selection." msgstr "Aucun clone à relier dans la sélection." -#: ../src/selection-chemistry.cpp:2630 +#: ../src/selection-chemistry.cpp:2705 msgid "Relink clone" msgstr "Relier le clone" -#: ../src/selection-chemistry.cpp:2644 +#: ../src/selection-chemistry.cpp:2719 msgid "Select clones to unlink." msgstr "Sélectionner les clones à délier." -#: ../src/selection-chemistry.cpp:2698 +#: ../src/selection-chemistry.cpp:2775 msgid "No clones to unlink in the selection." msgstr "Aucun clone à délier dans la sélection." -#: ../src/selection-chemistry.cpp:2702 +#: ../src/selection-chemistry.cpp:2779 msgid "Unlink clone" msgstr "Délier le clone" -#: ../src/selection-chemistry.cpp:2715 -msgid "Select a clone to go to its original. Select a linked offset to go to its source. Select a text on path to go to the path. Select a flowed text to go to its frame." -msgstr "Sélectionner un clone pour sélectionner son original. Sélectionner un offset lié pour sélectionner sa source. Sélectionner un texte suivant un chemin pour sélectionner son chemin. Sélectionner un texte encadré pour sélectionner son cadre." - -#: ../src/selection-chemistry.cpp:2748 -msgid "Cannot find the object to select (orphaned clone, offset, textpath, flowed text?)" -msgstr "Impossible de trouver l'objet à sélectionner (clone orphelin, offset, chemin de texte, texte encadré ?)" +#: ../src/selection-chemistry.cpp:2792 +msgid "" +"Select a clone to go to its original. Select a linked offset " +"to go to its source. Select a text on path to go to the path. Select " +"a flowed text to go to its frame." +msgstr "" +"Sélectionner un clone pour sélectionner son original. Sélectionner un " +"offset lié pour sélectionner sa source. Sélectionner un texte " +"suivant un chemin pour sélectionner son chemin. Sélectionner un texte " +"encadré pour sélectionner son cadre." -#: ../src/selection-chemistry.cpp:2754 -msgid "The object you're trying to select is not visible (it is in <defs>)" -msgstr "L'objet que vous essayez de sélectionner n'est pas visible (il est dans <defs>)" +#: ../src/selection-chemistry.cpp:2840 +msgid "" +"Cannot find the object to select (orphaned clone, offset, textpath, " +"flowed text?)" +msgstr "" +"Impossible de trouver l'objet à sélectionner (clone orphelin, offset, " +"chemin de texte, texte encadré ?)" -#: ../src/selection-chemistry.cpp:2799 -msgid "Select one path to clone." -msgstr "Sélectionner un chemin à cloner." +#: ../src/selection-chemistry.cpp:2846 +msgid "" +"The object you're trying to select is not visible (it is in <" +"defs>)" +msgstr "" +"L'objet que vous essayez de sélectionner n'est pas visible (il est " +"dans <defs>)" -#: ../src/selection-chemistry.cpp:2803 -msgid "Select one path to clone." -msgstr "Sélectionner un chemin à cloner." +#: ../src/selection-chemistry.cpp:2931 +#, fuzzy +msgid "Select path(s) to fill." +msgstr "Sélectionner un ou des chemin(s) à simplifier." -#: ../src/selection-chemistry.cpp:2859 +#: ../src/selection-chemistry.cpp:2949 msgid "Select object(s) to convert to marker." msgstr "Sélectionner un ou des objet(s) à convertir en marqueur." -#: ../src/selection-chemistry.cpp:2926 +#: ../src/selection-chemistry.cpp:3024 msgid "Objects to marker" msgstr "Objets en marqueur" -#: ../src/selection-chemistry.cpp:2950 +#: ../src/selection-chemistry.cpp:3049 msgid "Select object(s) to convert to guides." msgstr "Sélectionner un ou des objet(s) à convertir en guides." -#: ../src/selection-chemistry.cpp:2973 +#: ../src/selection-chemistry.cpp:3072 msgid "Objects to guides" msgstr "Objets en guides" -#: ../src/selection-chemistry.cpp:3009 +#: ../src/selection-chemistry.cpp:3108 msgid "Select objects to convert to symbol." msgstr "Sélectionner des objets à convertir en symbole." -#: ../src/selection-chemistry.cpp:3115 +#: ../src/selection-chemistry.cpp:3214 msgid "Group to symbol" msgstr "Groupe en symbole" -#: ../src/selection-chemistry.cpp:3134 +#: ../src/selection-chemistry.cpp:3233 msgid "Select a symbol to extract objects from." msgstr "Sélectionner un symbole pour en extraire des objets." -#: ../src/selection-chemistry.cpp:3143 +#: ../src/selection-chemistry.cpp:3242 msgid "Select only one symbol in Symbol dialog to convert to group." -msgstr "Sélectionner un seul symbole dans la boîte de dialogue pour le convertir en groupe." +msgstr "" +"Sélectionner un seul symbole dans la boîte de dialogue pour le " +"convertir en groupe." -#: ../src/selection-chemistry.cpp:3201 +#: ../src/selection-chemistry.cpp:3300 msgid "Group from symbol" msgstr "Groupe à partir d'un symbole" -#: ../src/selection-chemistry.cpp:3219 +#: ../src/selection-chemistry.cpp:3318 msgid "Select object(s) to convert to pattern." -msgstr "Sélectionner un ou des objet(s) à convertir en motif de remplissage." +msgstr "" +"Sélectionner un ou des objet(s) à convertir en motif de remplissage." -#: ../src/selection-chemistry.cpp:3309 +#: ../src/selection-chemistry.cpp:3417 msgid "Objects to pattern" msgstr "Objets en motif" -#: ../src/selection-chemistry.cpp:3325 +#: ../src/selection-chemistry.cpp:3433 msgid "Select an object with pattern fill to extract objects from." -msgstr "Sélectionner un objet rempli avec un motif pour en extraire des objets." +msgstr "" +"Sélectionner un objet rempli avec un motif pour en extraire des " +"objets." -#: ../src/selection-chemistry.cpp:3380 +#: ../src/selection-chemistry.cpp:3494 msgid "No pattern fills in the selection." msgstr "Aucun motif de remplissage dans la sélection." -#: ../src/selection-chemistry.cpp:3383 +#: ../src/selection-chemistry.cpp:3497 msgid "Pattern to objects" msgstr "Motif en objets" -#: ../src/selection-chemistry.cpp:3474 +#: ../src/selection-chemistry.cpp:3588 msgid "Select object(s) to make a bitmap copy." msgstr "Sélectionner un ou des objet(s) pour en faire une copie bitmap." -#: ../src/selection-chemistry.cpp:3478 +#: ../src/selection-chemistry.cpp:3592 msgid "Rendering bitmap..." msgstr "Génération du bitmap..." -#: ../src/selection-chemistry.cpp:3657 +#: ../src/selection-chemistry.cpp:3779 msgid "Create bitmap" msgstr "Créer un bitmap" -#: ../src/selection-chemistry.cpp:3689 +#: ../src/selection-chemistry.cpp:3804 ../src/selection-chemistry.cpp:3923 msgid "Select object(s) to create clippath or mask from." -msgstr "Sélectionner un ou des objet(s) à partir desquels un chemin de découpe ou un masque sera créé." +msgstr "" +"Sélectionner un ou des objet(s) à partir desquels un chemin de " +"découpe ou un masque sera créé." -#: ../src/selection-chemistry.cpp:3692 +#: ../src/selection-chemistry.cpp:3897 +#, fuzzy +msgid "Create Clip Group" +msgstr "Créer un clo_ne" + +#: ../src/selection-chemistry.cpp:3926 msgid "Select mask object and object(s) to apply clippath or mask to." -msgstr "Sélectionner un objet masque et un ou des objet(s) auxquels appliquer ce chemin de découpe ou masque." +msgstr "" +"Sélectionner un objet masque et un ou des objet(s) auxquels appliquer " +"ce chemin de découpe ou masque." -#: ../src/selection-chemistry.cpp:3875 +#: ../src/selection-chemistry.cpp:4109 msgid "Set clipping path" msgstr "Définir un chemin de découpe" -#: ../src/selection-chemistry.cpp:3877 +#: ../src/selection-chemistry.cpp:4111 msgid "Set mask" msgstr "Définir un masque" -#: ../src/selection-chemistry.cpp:3892 +#: ../src/selection-chemistry.cpp:4126 msgid "Select object(s) to remove clippath or mask from." -msgstr "Sélectionner un ou des objet(s) pour en retirer le chemin de découpe ou le masque." +msgstr "" +"Sélectionner un ou des objet(s) pour en retirer le chemin de découpe " +"ou le masque." -#: ../src/selection-chemistry.cpp:4003 +#: ../src/selection-chemistry.cpp:4246 msgid "Release clipping path" msgstr "Retirer le chemin de découpe" -#: ../src/selection-chemistry.cpp:4005 +#: ../src/selection-chemistry.cpp:4248 msgid "Release mask" msgstr "Retirer le masque" -#: ../src/selection-chemistry.cpp:4024 +#: ../src/selection-chemistry.cpp:4267 msgid "Select object(s) to fit canvas to." -msgstr "Sélectionner un ou des objet(s) pour y ajuster la taille de la zone de travail." +msgstr "" +"Sélectionner un ou des objet(s) pour y ajuster la taille de la zone " +"de travail." #. Fit Page -#: ../src/selection-chemistry.cpp:4044 -#: ../src/verbs.cpp:2905 +#: ../src/selection-chemistry.cpp:4287 ../src/verbs.cpp:2996 msgid "Fit Page to Selection" msgstr "Ajuster la page à la sélection" -#: ../src/selection-chemistry.cpp:4073 -#: ../src/verbs.cpp:2907 +#: ../src/selection-chemistry.cpp:4316 ../src/verbs.cpp:2998 msgid "Fit Page to Drawing" msgstr "Ajuster la page au dessin" -#: ../src/selection-chemistry.cpp:4094 -#: ../src/verbs.cpp:2909 +#: ../src/selection-chemistry.cpp:4337 ../src/verbs.cpp:3000 msgid "Fit Page to Selection or Drawing" msgstr "Ajuster la page à la sélection ou au dessin" -#: ../src/selection-describer.cpp:128 +#: ../src/selection-describer.cpp:138 msgid "root" msgstr "racine" -#: ../src/selection-describer.cpp:130 -#: ../src/widgets/ege-paint-def.cpp:66 +#: ../src/selection-describer.cpp:140 ../src/widgets/ege-paint-def.cpp:66 #: ../src/widgets/ege-paint-def.cpp:90 msgid "none" msgstr "aucune" -#: ../src/selection-describer.cpp:142 +#: ../src/selection-describer.cpp:152 #, c-format msgid "layer %s" msgstr "calque %s" -#: ../src/selection-describer.cpp:144 +#: ../src/selection-describer.cpp:154 #, c-format msgid "layer %s" msgstr "calque %s" -#: ../src/selection-describer.cpp:155 +#: ../src/selection-describer.cpp:165 #, c-format msgid "%s" msgstr "%s" -#: ../src/selection-describer.cpp:165 +#: ../src/selection-describer.cpp:175 #, c-format msgid " in %s" msgstr " dans %s" -#: ../src/selection-describer.cpp:167 +#: ../src/selection-describer.cpp:177 msgid " hidden in definitions" msgstr " caché dans les définitions" -#: ../src/selection-describer.cpp:169 +#: ../src/selection-describer.cpp:179 #, c-format msgid " in group %s (%s)" msgstr " dans le groupe %s (%s)" -#: ../src/selection-describer.cpp:171 +#: ../src/selection-describer.cpp:181 #, c-format msgid " in unnamed group (%s)" msgstr " dans un groupe anonyme (%s)" -#: ../src/selection-describer.cpp:173 +#: ../src/selection-describer.cpp:183 #, c-format msgid " in %i parent (%s)" msgid_plural " in %i parents (%s)" msgstr[0] " dans %i parent (%s)" msgstr[1] " dans %i parents (%s)" -#: ../src/selection-describer.cpp:176 +#: ../src/selection-describer.cpp:186 #, c-format msgid " in %i layer" msgid_plural " in %i layers" msgstr[0] " dans %i calque" msgstr[1] " dans %i calques" -#: ../src/selection-describer.cpp:187 +#: ../src/selection-describer.cpp:198 msgid "Convert symbol to group to edit" msgstr "Convertir un symbole en groupe à éditer" -#: ../src/selection-describer.cpp:191 -#, fuzzy +#: ../src/selection-describer.cpp:202 msgid "Remove from symbols tray to edit symbol" msgstr "Supprimer le symbole de la liste pour l'éditer" -#: ../src/selection-describer.cpp:195 +#: ../src/selection-describer.cpp:208 msgid "Use Shift+D to look up original" msgstr "Utilisez Maj+D pour sélectionner l'original" -#: ../src/selection-describer.cpp:199 +#: ../src/selection-describer.cpp:214 msgid "Use Shift+D to look up path" msgstr "Utilisez Maj+D pour sélectionner le chemin" -#: ../src/selection-describer.cpp:203 +#: ../src/selection-describer.cpp:220 msgid "Use Shift+D to look up frame" msgstr "Utilisez Maj+D pour sélectionner le cadre" -#: ../src/selection-describer.cpp:215 +#: ../src/selection-describer.cpp:236 #, c-format msgid "%i objects selected of type %s" msgid_plural "%i objects selected of types %s" msgstr[0] "%i objets de type %s sélectionnés" msgstr[1] "%i objets de types %s sélectionnés" -#: ../src/selection-describer.cpp:225 +#: ../src/selection-describer.cpp:246 #, c-format msgid "; %d filtered object " msgid_plural "; %d filtered objects " @@ -12278,27 +12800,46 @@ msgstr[0] "; %d objet filtré" msgstr[1] "; %d objets filtrés" #: ../src/seltrans-handles.cpp:9 -msgid "Squeeze or stretch selection; with Ctrl to scale uniformly; with Shift to scale around rotation center" -msgstr "Agrandir ou rétrécir la sélection ; Ctrl pour redimensionner uniformément; Maj pour redimensionner autour du centre de rotation" +msgid "" +"Squeeze or stretch selection; with Ctrl to scale uniformly; " +"with Shift to scale around rotation center" +msgstr "" +"Agrandir ou rétrécir la sélection ; Ctrl pour redimensionner " +"uniformément; Maj pour redimensionner autour du centre de rotation" #: ../src/seltrans-handles.cpp:10 -msgid "Scale selection; with Ctrl to scale uniformly; with Shift to scale around rotation center" -msgstr "Redimensionner la sélection ; Ctrl pour redimensionner uniformément autour du centre de rotation" +msgid "" +"Scale selection; with Ctrl to scale uniformly; with Shift to scale around rotation center" +msgstr "" +"Redimensionner la sélection ; Ctrl pour redimensionner " +"uniformément autour du centre de rotation" #: ../src/seltrans-handles.cpp:11 -msgid "Skew selection; with Ctrl to snap angle; with Shift to skew around the opposite side" -msgstr "Incliner la sélection ; Ctrl pour incliner par incréments ; Maj pour incliner autour du coin opposé" +msgid "" +"Skew selection; with Ctrl to snap angle; with Shift to " +"skew around the opposite side" +msgstr "" +"Incliner la sélection ; Ctrl pour incliner par incréments ; " +"Maj pour incliner autour du coin opposé" #: ../src/seltrans-handles.cpp:12 -msgid "Rotate selection; with Ctrl to snap angle; with Shift to rotate around the opposite corner" -msgstr "Tourner la sélection ; Ctrl pour tourner par incréments ; Maj pour tourner autour du coin opposé" +msgid "" +"Rotate selection; with Ctrl to snap angle; with Shift " +"to rotate around the opposite corner" +msgstr "" +"Tourner la sélection ; Ctrl pour tourner par incréments ; " +"Maj pour tourner autour du coin opposé" #: ../src/seltrans-handles.cpp:13 -msgid "Center of rotation and skewing: drag to reposition; scaling with Shift also uses this center" -msgstr "Centre de rotation/inclinaison : cliquer-déplacer pour le déplacer; redimensionner avec Maj utilise aussi ce centre" +msgid "" +"Center of rotation and skewing: drag to reposition; scaling with " +"Shift also uses this center" +msgstr "" +"Centre de rotation/inclinaison : cliquer-déplacer pour le déplacer ; " +"redimensionner avec Maj utilise aussi ce centre" -#: ../src/seltrans.cpp:486 -#: ../src/ui/dialog/transformation.cpp:982 +#: ../src/seltrans.cpp:486 ../src/ui/dialog/transformation.cpp:982 msgid "Skew" msgstr "Incliner" @@ -12314,25 +12855,28 @@ msgstr "Tamponner" msgid "Reset center" msgstr "Rétablir le centre" -#: ../src/seltrans.cpp:955 -#: ../src/seltrans.cpp:1060 +#: ../src/seltrans.cpp:955 ../src/seltrans.cpp:1060 #, c-format msgid "Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio" -msgstr "Redimensionnement : %0.2f%% x %0.2f%% ; Ctrl pour préserver le ratio" +msgstr "" +"Redimensionnement : %0.2f%% x %0.2f%% ; Ctrl pour préserver le " +"ratio" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) #: ../src/seltrans.cpp:1199 #, c-format msgid "Skew: %0.2f°; with Ctrl to snap angle" -msgstr "Inclinaison : %0.2f° ; Ctrl pour incliner par incréments" +msgstr "" +"Inclinaison : %0.2f° ; Ctrl pour incliner par incréments" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) #: ../src/seltrans.cpp:1274 #, c-format msgid "Rotate: %0.2f°; with Ctrl to snap angle" -msgstr "Rotation : %0.2f° ; Ctrl pour tourner par incréments" +msgstr "" +"Rotation : %0.2f° ; Ctrl pour tourner par incréments" #: ../src/seltrans.cpp:1311 #, c-format @@ -12341,16 +12885,19 @@ msgstr "Déplacer le centre en %s, %s" #: ../src/seltrans.cpp:1465 #, c-format -msgid "Move by %s, %s; with Ctrl to restrict to horizontal/vertical; with Shift to disable snapping" -msgstr "Déplacer de %s, %s ; Ctrl restreindre à l'horizontale/verticale; Maj désactiver le magnétisme" +msgid "" +"Move by %s, %s; with Ctrl to restrict to horizontal/vertical; " +"with Shift to disable snapping" +msgstr "" +"Déplacer de %s, %s ; Ctrl restreindre à l'horizontale/" +"verticale; Maj désactiver le magnétisme" #: ../src/shortcuts.cpp:226 #, c-format msgid "Keyboard directory (%s) is unavailable." msgstr "Le dossier des raccourcis (%s) est indisponible." -#: ../src/shortcuts.cpp:337 -#: ../src/ui/dialog/export.cpp:1299 +#: ../src/shortcuts.cpp:337 ../src/ui/dialog/export.cpp:1299 #: ../src/ui/dialog/export.cpp:1333 msgid "Select a filename for exporting" msgstr "Sélectionner un nom de fichier pour exporter" @@ -12362,34 +12909,33 @@ msgstr "Sélectionner un fichier à importer" #: ../src/sp-anchor.cpp:125 #, c-format msgid "to %s" -msgstr "" +msgstr "vers %s" #: ../src/sp-anchor.cpp:129 msgid "without URI" msgstr "sans URI" -#: ../src/sp-ellipse.cpp:374 +#: ../src/sp-ellipse.cpp:373 msgid "Segment" msgstr "Segment" -#: ../src/sp-ellipse.cpp:376 +#: ../src/sp-ellipse.cpp:375 msgid "Arc" msgstr "Arc" #. Ellipse -#: ../src/sp-ellipse.cpp:379 -#: ../src/sp-ellipse.cpp:386 -#: ../src/ui/dialog/inkscape-preferences.cpp:405 -#: ../src/widgets/pencil-toolbar.cpp:158 +#: ../src/sp-ellipse.cpp:378 ../src/sp-ellipse.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:408 +#: ../src/widgets/pencil-toolbar.cpp:163 msgid "Ellipse" msgstr "Ellipse" -#: ../src/sp-ellipse.cpp:383 +#: ../src/sp-ellipse.cpp:382 msgid "Circle" msgstr "Cercle" #. TRANSLATORS: "Flow region" is an area where text is allowed to flow -#: ../src/sp-flowregion.cpp:192 +#: ../src/sp-flowregion.cpp:195 msgid "Flow Region" msgstr "Région d'encadrement" @@ -12397,20 +12943,19 @@ msgstr "Région d'encadrement" #. * flow excluded region. flowRegionExclude in SVG 1.2: see #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegion-elem and #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegionExclude-elem. -#: ../src/sp-flowregion.cpp:342 +#: ../src/sp-flowregion.cpp:348 msgid "Flow Excluded Region" msgstr "Région d'encadrement exclue" -#: ../src/sp-flowtext.cpp:289 +#: ../src/sp-flowtext.cpp:290 msgid "Flowed Text" msgstr "Texte encadré" -#: ../src/sp-flowtext.cpp:291 +#: ../src/sp-flowtext.cpp:292 msgid "Linked Flowed Text" msgstr "Texte encadré lié" -#: ../src/sp-flowtext.cpp:298 -#: ../src/sp-text.cpp:352 +#: ../src/sp-flowtext.cpp:298 ../src/sp-text.cpp:371 #: ../src/ui/tools/text-tool.cpp:1566 msgid " [truncated]" msgstr " [tronqué]" @@ -12422,90 +12967,90 @@ msgid_plural "(%d characters%s)" msgstr[0] "(%d caractère%s)" msgstr[1] "(%d caractères%s)" -#: ../src/sp-guide.cpp:303 +#: ../src/sp-guide.cpp:225 msgid "Create Guides Around the Page" msgstr "Créer des guides autour de la page" -#: ../src/sp-guide.cpp:315 -#: ../src/verbs.cpp:2470 +#: ../src/sp-guide.cpp:237 ../src/verbs.cpp:2553 msgid "Delete All Guides" msgstr "Supprimer tous les guides" #. Guide has probably been deleted and no longer has an attached namedview. -#: ../src/sp-guide.cpp:475 +#: ../src/sp-guide.cpp:407 msgid "Deleted" msgstr "Supprimé" -#: ../src/sp-guide.cpp:484 -msgid "Shift+drag to rotate, Ctrl+drag to move origin, Del to delete" -msgstr "Maj+déplacer pour pivoter, Ctrl+déplacer pour déplacer l'origine, Del pour supprimer" +#: ../src/sp-guide.cpp:416 +msgid "" +"Shift+drag to rotate, Ctrl+drag to move origin, Del to " +"delete" +msgstr "" +"Maj+déplacer pour pivoter, Ctrl+déplacer pour déplacer " +"l'origine, Del pour supprimer" -#: ../src/sp-guide.cpp:488 +#: ../src/sp-guide.cpp:420 #, c-format msgid "vertical, at %s" msgstr "verticale, à %s" -#: ../src/sp-guide.cpp:491 +#: ../src/sp-guide.cpp:423 #, c-format msgid "horizontal, at %s" msgstr "horizontale, à %s" -#: ../src/sp-guide.cpp:496 +#: ../src/sp-guide.cpp:428 #, c-format msgid "at %d degrees, through (%s,%s)" msgstr "à %d degrés, passe par (%s,%s)" -#: ../src/sp-image.cpp:525 +#: ../src/sp-image.cpp:526 msgid "embedded" msgstr "embarquée" -#: ../src/sp-image.cpp:533 +#: ../src/sp-image.cpp:534 #, c-format msgid "[bad reference]: %s" msgstr "[mauvaise référence] : %s" -#: ../src/sp-image.cpp:534 +#: ../src/sp-image.cpp:535 #, c-format msgid "%d × %d: %s" msgstr "%d × %d : %s" -#: ../src/sp-item-group.cpp:329 +#: ../src/sp-item-group.cpp:327 msgid "Group" msgstr "Groupe" -#: ../src/sp-item-group.cpp:335 -#: ../src/sp-switch.cpp:82 +#: ../src/sp-item-group.cpp:333 ../src/sp-switch.cpp:82 #, c-format msgid "of %d object" msgstr "de %d objet" -#: ../src/sp-item-group.cpp:335 -#: ../src/sp-switch.cpp:82 +#: ../src/sp-item-group.cpp:333 ../src/sp-switch.cpp:82 #, c-format msgid "of %d objects" msgstr "de %d objets" -#: ../src/sp-item.cpp:970 -#: ../src/verbs.cpp:213 +#: ../src/sp-item.cpp:1051 ../src/verbs.cpp:214 msgid "Object" msgstr "Objet" -#: ../src/sp-item.cpp:987 +#: ../src/sp-item.cpp:1063 #, c-format msgid "%s; clipped" msgstr "%s; découpé" -#: ../src/sp-item.cpp:993 +#: ../src/sp-item.cpp:1069 #, c-format msgid "%s; masked" msgstr "%s; masqué" -#: ../src/sp-item.cpp:1003 +#: ../src/sp-item.cpp:1079 #, c-format msgid "%s; filtered (%s)" msgstr "%s; filtré (%s)" -#: ../src/sp-item.cpp:1005 +#: ../src/sp-item.cpp:1081 #, c-format msgid "%s; filtered" msgstr "%s; filtré" @@ -12514,7 +13059,7 @@ msgstr "%s; filtré" msgid "Line" msgstr "Ligne" -#: ../src/sp-lpe-item.cpp:262 +#: ../src/sp-lpe-item.cpp:261 msgid "An exception occurred during execution of the Path Effect." msgstr "Exception pendant l'exécution de l'effet de chemin." @@ -12530,7 +13075,7 @@ msgstr "Offset dynamique" #: ../src/sp-offset.cpp:347 #, c-format msgid "%s by %f pt" -msgstr "" +msgstr "%s de %f pt" #: ../src/sp-offset.cpp:348 msgid "outset" @@ -12568,14 +13113,12 @@ msgid "Polyline" msgstr "Polyligne" #. Rectangle -#: ../src/sp-rect.cpp:163 -#: ../src/ui/dialog/inkscape-preferences.cpp:395 +#: ../src/sp-rect.cpp:163 ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "Rectangle" msgstr "Rectangle" #. Spiral -#: ../src/sp-spiral.cpp:230 -#: ../src/ui/dialog/inkscape-preferences.cpp:413 +#: ../src/sp-spiral.cpp:230 ../src/ui/dialog/inkscape-preferences.cpp:416 #: ../share/extensions/gcodetools_area.inx.h:11 msgid "Spiral" msgstr "Spirale" @@ -12588,14 +13131,12 @@ msgid "with %3f turns" msgstr "à %3f tours" #. Star -#: ../src/sp-star.cpp:256 -#: ../src/ui/dialog/inkscape-preferences.cpp:409 -#: ../src/widgets/star-toolbar.cpp:469 +#: ../src/sp-star.cpp:256 ../src/ui/dialog/inkscape-preferences.cpp:412 +#: ../src/widgets/star-toolbar.cpp:471 msgid "Star" msgstr "Étoile" -#: ../src/sp-star.cpp:257 -#: ../src/widgets/star-toolbar.cpp:462 +#: ../src/sp-star.cpp:257 ../src/widgets/star-toolbar.cpp:464 msgid "Polygon" msgstr "Polygone" @@ -12614,14 +13155,12 @@ msgstr "à %d branche" #: ../src/sp-switch.cpp:76 msgid "Conditional Group" -msgstr "" +msgstr "Groupe conditionnel" -#: ../src/sp-text.cpp:325 -#: ../src/verbs.cpp:328 +#: ../src/sp-text.cpp:355 ../src/verbs.cpp:348 #: ../share/extensions/lorem_ipsum.inx.h:8 #: ../share/extensions/replace_font.inx.h:11 -#: ../share/extensions/split.inx.h:10 -#: ../share/extensions/text_braille.inx.h:2 +#: ../share/extensions/split.inx.h:10 ../share/extensions/text_braille.inx.h:2 #: ../share/extensions/text_extract.inx.h:14 #: ../share/extensions/text_flipcase.inx.h:2 #: ../share/extensions/text_lowercase.inx.h:2 @@ -12633,17 +13172,12 @@ msgstr "" msgid "Text" msgstr "Texte" -#. TRANSLATORS: For description of font with no name. -#: ../src/sp-text.cpp:342 -msgid "<no name found>" -msgstr "<aucun nom trouvé>" - -#: ../src/sp-text.cpp:356 +#: ../src/sp-text.cpp:375 #, c-format msgid "on path%s (%s, %s)" msgstr "le long d'un chemin%s (%s, %s)" -#: ../src/sp-text.cpp:357 +#: ../src/sp-text.cpp:376 #, c-format msgid "%s (%s, %s)" msgstr "%s (%s, %s)" @@ -12656,47 +13190,43 @@ msgstr "Données de caractères clonés" msgid " from " msgstr " depuis " -#: ../src/sp-tref.cpp:252 -#: ../src/sp-use.cpp:262 +#: ../src/sp-tref.cpp:252 ../src/sp-use.cpp:278 msgid "[orphaned]" -msgstr "" +msgstr "[orphelin]" #: ../src/sp-tspan.cpp:217 msgid "Text Span" msgstr "Ancre de texte" -#: ../src/sp-use.cpp:227 +#: ../src/sp-use.cpp:243 msgid "Symbol" msgstr "Symbole" -#: ../src/sp-use.cpp:230 -#, fuzzy +#: ../src/sp-use.cpp:245 msgid "Clone" -msgstr "Cloner" +msgstr "Clone" -#: ../src/sp-use.cpp:237 -#: ../src/sp-use.cpp:239 +#: ../src/sp-use.cpp:253 ../src/sp-use.cpp:255 #, c-format msgid "called %s" -msgstr "" +msgstr "nommé %s" -#: ../src/sp-use.cpp:239 +#: ../src/sp-use.cpp:255 msgid "Unnamed Symbol" msgstr "Symboles sans nom" #. TRANSLATORS: Used for statusbar description for long chains: #. * "Clone of: Clone of: ... in Layer 1". -#: ../src/sp-use.cpp:248 +#: ../src/sp-use.cpp:264 msgid "..." msgstr "..." -#: ../src/sp-use.cpp:257 -#, fuzzy, c-format +#: ../src/sp-use.cpp:273 +#, c-format msgid "of: %s" -msgstr "Erreur : %s" +msgstr "de : %s" -#: ../src/splivarot.cpp:70 -#: ../src/splivarot.cpp:76 +#: ../src/splivarot.cpp:70 ../src/splivarot.cpp:76 msgid "Union" msgstr "Union" @@ -12718,24 +13248,36 @@ msgstr "Sélectionner au moins 2 chemins pour une opération booléenne." #: ../src/splivarot.cpp:337 msgid "Select at least 1 path to perform a boolean union." -msgstr "Sélectionner au moins 1 chemin pour réaliser une opération booléenne." +msgstr "" +"Sélectionner au moins 1 chemin pour réaliser une opération booléenne." #: ../src/splivarot.cpp:345 -msgid "Select exactly 2 paths to perform difference, division, or path cut." -msgstr "Sélectionner exactement 2 chemins pour en faire une différence, une division ou les découper." +msgid "" +"Select exactly 2 paths to perform difference, division, or path cut." +msgstr "" +"Sélectionner exactement 2 chemins pour en faire une différence, une " +"division ou les découper." -#: ../src/splivarot.cpp:361 -#: ../src/splivarot.cpp:376 -msgid "Unable to determine the z-order of the objects selected for difference, XOR, division, or path cut." -msgstr "Impossible de déterminer l'ordre en z des objets sélectionnés pour en faire une différence, une exclusion ou les découper." +#: ../src/splivarot.cpp:361 ../src/splivarot.cpp:376 +msgid "" +"Unable to determine the z-order of the objects selected for " +"difference, XOR, division, or path cut." +msgstr "" +"Impossible de déterminer l'ordre en z des objets sélectionnés pour en " +"faire une différence, une exclusion ou les découper." #: ../src/splivarot.cpp:407 -msgid "One of the objects is not a path, cannot perform boolean operation." -msgstr "Un des objets n'est pas un chemin, impossible d'effectuer une opération booléenne." +msgid "" +"One of the objects is not a path, cannot perform boolean operation." +msgstr "" +"Un des objets n'est pas un chemin, impossible d'effectuer une " +"opération booléenne." #: ../src/splivarot.cpp:1157 msgid "Select stroked path(s) to convert stroke to path." -msgstr "Sélectionner des chemin(s) avec contour pour convertir les contours en chemins." +msgstr "" +"Sélectionner des chemin(s) avec contour pour convertir les contours " +"en chemins." #: ../src/splivarot.cpp:1516 msgid "Convert stroke to path" @@ -12748,15 +13290,15 @@ msgstr "Aucun chemin avec contour dans la sélection." #: ../src/splivarot.cpp:1590 msgid "Selected object is not a path, cannot inset/outset." -msgstr "L'objet sélectionné n'est pas un chemin, impossible de le contracter/dilater." +msgstr "" +"L'objet sélectionné n'est pas un chemin, impossible de le contracter/" +"dilater." -#: ../src/splivarot.cpp:1681 -#: ../src/splivarot.cpp:1746 +#: ../src/splivarot.cpp:1681 ../src/splivarot.cpp:1746 msgid "Create linked offset" msgstr "Créer un objet offset lié" -#: ../src/splivarot.cpp:1682 -#: ../src/splivarot.cpp:1747 +#: ../src/splivarot.cpp:1682 ../src/splivarot.cpp:1747 msgid "Create dynamic offset" msgstr "Créer un objet offset dynamique" @@ -12804,41 +13346,50 @@ msgstr "Aucun chemin à simplifier dans la sélection." #: ../src/text-chemistry.cpp:94 msgid "Select a text and a path to put text on path." -msgstr "Sélectionner un texte et un chemin pour placer le texte le long du chemin." +msgstr "" +"Sélectionner un texte et un chemin pour placer le texte le long du " +"chemin." #: ../src/text-chemistry.cpp:99 -msgid "This text object is already put on a path. Remove it from the path first. Use Shift+D to look up its path." -msgstr "Cet objet texte est déjà placé le long d'un chemin. Le retirer du chemin d'abord. Utiliser Maj+D pour trouver ce chemin." +msgid "" +"This text object is already put on a path. Remove it from the path " +"first. Use Shift+D to look up its path." +msgstr "" +"Cet objet texte est déjà placé le long d'un chemin. Le retirer du " +"chemin d'abord. Utiliser Maj+D pour trouver ce chemin." #. rect is the only SPShape which is not yet, and thus SVG forbids us from putting text on it #: ../src/text-chemistry.cpp:105 -msgid "You cannot put text on a rectangle in this version. Convert rectangle to path first." -msgstr "Vous ne pouvez pas mettre du texte dans un rectangle (dans cette version). Il faut convertir le rectangle en chemin avant." +msgid "" +"You cannot put text on a rectangle in this version. Convert rectangle to " +"path first." +msgstr "" +"Vous ne pouvez pas mettre du texte dans un rectangle (dans cette version). " +"Il faut convertir le rectangle en chemin avant." #: ../src/text-chemistry.cpp:115 msgid "The flowed text(s) must be visible in order to be put on a path." msgstr "Le texte à mettre le long d'un chemin doit être visible." -#: ../src/text-chemistry.cpp:185 -#: ../src/verbs.cpp:2492 +#: ../src/text-chemistry.cpp:185 ../src/verbs.cpp:2575 msgid "Put text on path" msgstr "Mettre le texte le long d'un chemin" #: ../src/text-chemistry.cpp:197 msgid "Select a text on path to remove it from path." -msgstr "Sélectionner un texte le long d'un chemin pour le retirer de ce chemin." +msgstr "" +"Sélectionner un texte le long d'un chemin pour le retirer de ce " +"chemin." #: ../src/text-chemistry.cpp:218 msgid "No texts-on-paths in the selection." msgstr "Aucun texte le long d'un chemin dans la sélection." -#: ../src/text-chemistry.cpp:221 -#: ../src/verbs.cpp:2494 +#: ../src/text-chemistry.cpp:221 ../src/verbs.cpp:2577 msgid "Remove text from path" msgstr "Retirer le texte du chemin" -#: ../src/text-chemistry.cpp:262 -#: ../src/text-chemistry.cpp:283 +#: ../src/text-chemistry.cpp:262 ../src/text-chemistry.cpp:283 msgid "Select text(s) to remove kerns from." msgstr "Sélectionner des texte(s) pour en retirer les crénages." @@ -12847,8 +13398,12 @@ msgid "Remove manual kerns" msgstr "Retirer les crénages manuels" #: ../src/text-chemistry.cpp:306 -msgid "Select a text and one or more paths or shapes to flow text into frame." -msgstr "Sélectionner un texte et un ou plusieurs chemins ou formes pour y encadrer le texte." +msgid "" +"Select a text and one or more paths or shapes to flow text " +"into frame." +msgstr "" +"Sélectionner un texte et un ou plusieurs chemins ou formes " +"pour y encadrer le texte." #: ../src/text-chemistry.cpp:376 msgid "Flow text into shape" @@ -12882,107 +13437,13 @@ msgstr "Aucun texte encadré à convertir dans la sélection." msgid "You cannot edit cloned character data." msgstr "Vous ne pouvez pas modifier des données de caractères clonés." -#: ../src/tools-switch.cpp:91 -#, fuzzy -msgid "Click to Select and Transform objects, Drag to select many objects." -msgstr "Cliquer pour sélectionner des nœuds, cliquer-déplacer pour les déplacer." - -#: ../src/tools-switch.cpp:92 -#, fuzzy -msgid "Modify selected path points (nodes) directly." -msgstr "Simplifier les chemins sélectionnés (supprimer des nœuds superflus)" - -#: ../src/tools-switch.cpp:93 -msgid "To tweak a path by pushing, select it and drag over it." -msgstr "Pour perturber un chemin en le poussant, sélectionnez-le et faites glisser la souris dessus." - -#: ../src/tools-switch.cpp:94 -msgid "Drag, click or click and scroll to spray the selected objects." -msgstr "Cliquer-déplacer, cliquer ou défiler pour pulvériser les objets sélectionnés." - -#: ../src/tools-switch.cpp:95 -msgid "Drag to create a rectangle. Drag controls to round corners and resize. Click to select." -msgstr "Cliquer-déplacer pour créer un rectangle. Déplacer les poignées pour arrondir les coins. Cliquer pour sélectionner." - -#: ../src/tools-switch.cpp:96 -msgid "Drag to create a 3D box. Drag controls to resize in perspective. Click to select (with Ctrl+Alt for single faces)." -msgstr "Cliquer-déplacer pour créer une boîte 3D. Déplacer les poignées pour redimensionner en perspective. Cliquer pour sélectionner (avec Ctrl+Alt pour sélectionner les faces)." - -#: ../src/tools-switch.cpp:97 -msgid "Drag to create an ellipse. Drag controls to make an arc or segment. Click to select." -msgstr "Cliquer-déplacer pour créer une ellipse. Déplacer les poignées pour faire des arcs ou des camemberts. Cliquer pour sélectionner." - -#: ../src/tools-switch.cpp:98 -msgid "Drag to create a star. Drag controls to edit the star shape. Click to select." -msgstr "Cliquer-déplacer pour créer une étoile. Déplacer les poignées pour éditer la forme de l'étoile. Cliquer pour sélectionner." - -#: ../src/tools-switch.cpp:99 -msgid "Drag to create a spiral. Drag controls to edit the spiral shape. Click to select." -msgstr "Cliquer-déplacer pour créer une spirale. Déplacer les poignées pour modifier la forme de la spirale. Cliquer pour sélectionner." - -#: ../src/tools-switch.cpp:100 -msgid "Drag to create a freehand line. Shift appends to selected path, Alt activates sketch mode." -msgstr "Cliquer-déplacer pour créer une ligne à main levée. Maj pour l'ajouter au chemin sélectionné. Alt pour activer le mode croquis." - -#: ../src/tools-switch.cpp:101 -msgid "Click or click and drag to start a path; with Shift to append to selected path. Ctrl+click to create single dots (straight line modes only)." -msgstr "Cliquer ou cliquer-déplacer pour commencer un chemin; Maj pour ajouter au chemin sélectionné; Ctrl+clic pour créer des points isolés (avec les modes lignes droites)." - -#: ../src/tools-switch.cpp:102 -msgid "Drag to draw a calligraphic stroke; with Ctrl to track a guide path. Arrow keys adjust width (left/right) and angle (up/down)." -msgstr "Cliquer-déplacer pour calligraphier; Ctrl pour suivre un guide. Les flèches gauche/droite ajustent la largeur de la plume, haut/bas son angle." - -#: ../src/tools-switch.cpp:103 -#: ../src/ui/tools/text-tool.cpp:1593 -msgid "Click to select or create text, drag to create flowed text; then type." -msgstr "Cliquer pour sélectionner ou créer un texte, cliquer-déplacer pour créer un texte encadré; puis taper le texte." - -#: ../src/tools-switch.cpp:104 -msgid "Drag or double click to create a gradient on selected objects, drag handles to adjust gradients." -msgstr "Cliquer-déplacer ou double-cliquer pour créer un dégradé sur les objets sélectionnés, déplacer les poignées pour ajuster les dégradés." - -#: ../src/tools-switch.cpp:105 -msgid "Drag or double click to create a mesh on selected objects, drag handles to adjust meshes." -msgstr "Cliquer-déplacer ou double-cliquer pour créer une toile sur les objets sélectionnés, déplacer les poignées pour ajuster les toiles." - -#: ../src/tools-switch.cpp:106 -msgid "Click or drag around an area to zoom in, Shift+click to zoom out." -msgstr "Cliquer ou cliquer-déplacer sur une zone pour zoomer, Maj+clic pour dézoomer." - -#: ../src/tools-switch.cpp:107 -msgid "Drag to measure the dimensions of objects." -msgstr "Cliquer-glisser pour mesurer les dimensions des objets." - -#: ../src/tools-switch.cpp:108 -#: ../src/ui/tools/dropper-tool.cpp:285 -msgid "Click to set fill, Shift+click to set stroke; drag to average color in area; with Alt to pick inverse color; Ctrl+C to copy the color under mouse to clipboard" -msgstr "Cliquer pour appliquer au remplissage, Maj+clic pour appliquer au contour; cliquer-déplacer pour capturer la couleur moyenne sur une zone; à combiner avec Alt pour capturer la couleur inverse; Ctrl+C pour copier la couleur sous le curseur de la souris vers le presse-papiers " - -#: ../src/tools-switch.cpp:109 -msgid "Click and drag between shapes to create a connector." -msgstr "Cliquer et déplacer entre des formes pour créer un connecteur." - -#: ../src/tools-switch.cpp:110 -msgid "Click to paint a bounded area, Shift+click to union the new fill with the current selection, Ctrl+click to change the clicked object's fill and stroke to the current setting." -msgstr "Cliquer pour remplir une région bornée. Maj+Clic pour faire une union du remplissage avec la sélection courante, Ctrl+Clic pour changer le trait et le remplissage de l'objet désigné" - -#: ../src/tools-switch.cpp:111 -msgid "Drag to erase." -msgstr "Cliquer-déplacer pour effacer" - -#: ../src/tools-switch.cpp:112 -msgid "Choose a subtool from the toolbar" -msgstr "Sélectionner un outil secondaire dans la barre d'outils" - #: ../src/trace/potrace/inkscape-potrace.cpp:512 #: ../src/trace/potrace/inkscape-potrace.cpp:575 msgid "Trace: %1. %2 nodes" msgstr "Vectoriser : %1. %2 nœuds" -#: ../src/trace/trace.cpp:59 -#: ../src/trace/trace.cpp:124 -#: ../src/trace/trace.cpp:132 -#: ../src/trace/trace.cpp:225 +#: ../src/trace/trace.cpp:59 ../src/trace/trace.cpp:124 +#: ../src/trace/trace.cpp:132 ../src/trace/trace.cpp:225 #: ../src/ui/dialog/pixelartdialog.cpp:370 #: ../src/ui/dialog/pixelartdialog.cpp:402 msgid "Select an image to trace" @@ -13027,44 +13488,44 @@ msgid "Trace: Done. %ld nodes created" msgstr "Vectorisation effectuée. %ld nœuds créés." #. check whether something is selected -#: ../src/ui/clipboard.cpp:261 +#: ../src/ui/clipboard.cpp:262 msgid "Nothing was copied." msgstr "Rien n'a été copié." -#: ../src/ui/clipboard.cpp:374 -#: ../src/ui/clipboard.cpp:583 -#: ../src/ui/clipboard.cpp:612 +#: ../src/ui/clipboard.cpp:382 ../src/ui/clipboard.cpp:594 +#: ../src/ui/clipboard.cpp:623 msgid "Nothing on the clipboard." msgstr "Rien dans le presse-papiers." -#: ../src/ui/clipboard.cpp:432 +#: ../src/ui/clipboard.cpp:440 msgid "Select object(s) to paste style to." msgstr "Sélectionner un ou des objets sur lesquels coller un style." -#: ../src/ui/clipboard.cpp:443 -#: ../src/ui/clipboard.cpp:460 +#: ../src/ui/clipboard.cpp:451 ../src/ui/clipboard.cpp:468 msgid "No style on the clipboard." msgstr "Pas de style dans le presse-papiers." -#: ../src/ui/clipboard.cpp:485 +#: ../src/ui/clipboard.cpp:493 msgid "Select object(s) to paste size to." -msgstr "Sélectionner un ou des objets sur lesquels coller des dimensions." +msgstr "" +"Sélectionner un ou des objets sur lesquels coller des dimensions." -#: ../src/ui/clipboard.cpp:492 +#: ../src/ui/clipboard.cpp:500 msgid "No size on the clipboard." msgstr "Pas de dimension dans le presse-papiers." -#: ../src/ui/clipboard.cpp:545 +#: ../src/ui/clipboard.cpp:556 msgid "Select object(s) to paste live path effect to." -msgstr "Sélectionner un ou des objet(s) sur lesquels coller un effet de chemin." +msgstr "" +"Sélectionner un ou des objet(s) sur lesquels coller un effet de " +"chemin." #. no_effect: -#: ../src/ui/clipboard.cpp:570 +#: ../src/ui/clipboard.cpp:581 msgid "No effect on the clipboard." msgstr "Pas d'effet dans le presse-papiers." -#: ../src/ui/clipboard.cpp:589 -#: ../src/ui/clipboard.cpp:626 +#: ../src/ui/clipboard.cpp:600 ../src/ui/clipboard.cpp:637 msgid "Clipboard does not contain a path." msgstr "Le presse-papier ne contient pas de chemin." @@ -13202,63 +13663,54 @@ msgid "_Treat selection as group: " msgstr "_Manipuler la sélection comme un groupe :" #. Align -#: ../src/ui/dialog/align-and-distribute.cpp:877 -#: ../src/verbs.cpp:2937 -#: ../src/verbs.cpp:2938 +#: ../src/ui/dialog/align-and-distribute.cpp:877 ../src/verbs.cpp:3028 +#: ../src/verbs.cpp:3029 msgid "Align right edges of objects to the left edge of the anchor" msgstr "Aligner les bords droits des objets au bord gauche de l'ancre" -#: ../src/ui/dialog/align-and-distribute.cpp:880 -#: ../src/verbs.cpp:2939 -#: ../src/verbs.cpp:2940 +#: ../src/ui/dialog/align-and-distribute.cpp:880 ../src/verbs.cpp:3030 +#: ../src/verbs.cpp:3031 msgid "Align left edges" msgstr "Aligner les bords gauches" -#: ../src/ui/dialog/align-and-distribute.cpp:883 -#: ../src/verbs.cpp:2941 -#: ../src/verbs.cpp:2942 +#: ../src/ui/dialog/align-and-distribute.cpp:883 ../src/verbs.cpp:3032 +#: ../src/verbs.cpp:3033 msgid "Center on vertical axis" msgstr "Centrer selon un axe vertical" -#: ../src/ui/dialog/align-and-distribute.cpp:886 -#: ../src/verbs.cpp:2943 -#: ../src/verbs.cpp:2944 +#: ../src/ui/dialog/align-and-distribute.cpp:886 ../src/verbs.cpp:3034 +#: ../src/verbs.cpp:3035 msgid "Align right sides" msgstr "Aligner les côtés droits" -#: ../src/ui/dialog/align-and-distribute.cpp:889 -#: ../src/verbs.cpp:2945 -#: ../src/verbs.cpp:2946 +#: ../src/ui/dialog/align-and-distribute.cpp:889 ../src/verbs.cpp:3036 +#: ../src/verbs.cpp:3037 msgid "Align left edges of objects to the right edge of the anchor" msgstr "Aligner les bords gauches des objets au bord droit de l'ancre" -#: ../src/ui/dialog/align-and-distribute.cpp:892 -#: ../src/verbs.cpp:2947 -#: ../src/verbs.cpp:2948 +#: ../src/ui/dialog/align-and-distribute.cpp:892 ../src/verbs.cpp:3038 +#: ../src/verbs.cpp:3039 msgid "Align bottom edges of objects to the top edge of the anchor" -msgstr "Aligner les bords inférieurs des objets avec le bord supérieur de l'ancre" +msgstr "" +"Aligner les bords inférieurs des objets avec le bord supérieur de l'ancre" -#: ../src/ui/dialog/align-and-distribute.cpp:895 -#: ../src/verbs.cpp:2949 -#: ../src/verbs.cpp:2950 +#: ../src/ui/dialog/align-and-distribute.cpp:895 ../src/verbs.cpp:3040 +#: ../src/verbs.cpp:3041 msgid "Align top edges" msgstr "Aligner les bords supérieurs" -#: ../src/ui/dialog/align-and-distribute.cpp:898 -#: ../src/verbs.cpp:2951 -#: ../src/verbs.cpp:2952 +#: ../src/ui/dialog/align-and-distribute.cpp:898 ../src/verbs.cpp:3042 +#: ../src/verbs.cpp:3043 msgid "Center on horizontal axis" msgstr "Centrer selon un axe horizontal" -#: ../src/ui/dialog/align-and-distribute.cpp:901 -#: ../src/verbs.cpp:2953 -#: ../src/verbs.cpp:2954 +#: ../src/ui/dialog/align-and-distribute.cpp:901 ../src/verbs.cpp:3044 +#: ../src/verbs.cpp:3045 msgid "Align bottom edges" msgstr "Aligner les bords inférieurs" -#: ../src/ui/dialog/align-and-distribute.cpp:904 -#: ../src/verbs.cpp:2955 -#: ../src/verbs.cpp:2956 +#: ../src/ui/dialog/align-and-distribute.cpp:904 ../src/verbs.cpp:3046 +#: ../src/verbs.cpp:3047 msgid "Align top edges of objects to the bottom edge of the anchor" msgstr "Aligner les bords supérieurs des objets avec le bas de l'ancre" @@ -13280,7 +13732,8 @@ msgstr "Distribuer des distances égales entre les bords gauches des objets" #: ../src/ui/dialog/align-and-distribute.cpp:924 msgid "Distribute centers equidistantly horizontally" -msgstr "Distribuer des distances égales horizontalement entre les centres des objets" +msgstr "" +"Distribuer des distances égales horizontalement entre les centres des objets" #: ../src/ui/dialog/align-and-distribute.cpp:927 msgid "Distribute right edges equidistantly" @@ -13296,7 +13749,8 @@ msgstr "Distribuer des distances égales entre les bords supérieurs des objets" #: ../src/ui/dialog/align-and-distribute.cpp:938 msgid "Distribute centers equidistantly vertically" -msgstr "Distribuer des distances égales verticalement entre les centres des objets" +msgstr "" +"Distribuer des distances égales verticalement entre les centres des objets" #: ../src/ui/dialog/align-and-distribute.cpp:941 msgid "Distribute bottom edges equidistantly" @@ -13304,11 +13758,14 @@ msgstr "Distribuer des distances égales entre les bords inférieurs des objets" #: ../src/ui/dialog/align-and-distribute.cpp:946 msgid "Distribute baseline anchors of texts horizontally" -msgstr "Distribuer des distances égales horizontalement entre les ancres des objets texte" +msgstr "" +"Distribuer des distances égales horizontalement entre les ancres des objets " +"texte" #: ../src/ui/dialog/align-and-distribute.cpp:949 msgid "Distribute baselines of texts vertically" -msgstr "Distribuer des distances égales verticalement entre lignes de base des textes" +msgstr "" +"Distribuer des distances égales verticalement entre lignes de base des textes" #: ../src/ui/dialog/align-and-distribute.cpp:955 #: ../src/widgets/connector-toolbar.cpp:373 @@ -13333,11 +13790,16 @@ msgstr "Eparpiller aléatoirement les centres dans toutes les directions" #: ../src/ui/dialog/align-and-distribute.cpp:972 msgid "Unclump objects: try to equalize edge-to-edge distances" -msgstr "Éparpiller les objets : tenter d'uniformiser les distances de bord à bord" +msgstr "" +"Éparpiller les objets : tenter d'uniformiser les distances de bord à bord" #: ../src/ui/dialog/align-and-distribute.cpp:977 -msgid "Move objects as little as possible so that their bounding boxes do not overlap" -msgstr "Déplacer les objets aussi peu que possible afin que leurs boîtes englobantes ne se chevauchent pas" +msgid "" +"Move objects as little as possible so that their bounding boxes do not " +"overlap" +msgstr "" +"Déplacer les objets aussi peu que possible afin que leurs boîtes englobantes " +"ne se chevauchent pas" #: ../src/ui/dialog/align-and-distribute.cpp:985 msgid "Align selected nodes to a common horizontal line" @@ -13349,11 +13811,13 @@ msgstr "Aligner les nœuds sélectionnés selon une ligne verticale commune" #: ../src/ui/dialog/align-and-distribute.cpp:991 msgid "Distribute selected nodes horizontally" -msgstr "Distribuer des distances égales horizontalement entre les nœuds sélectionnés" +msgstr "" +"Distribuer des distances égales horizontalement entre les nœuds sélectionnés" #: ../src/ui/dialog/align-and-distribute.cpp:994 msgid "Distribute selected nodes vertically" -msgstr "Distribuer des distances égales verticalement entre les nœuds sélectionnés" +msgstr "" +"Distribuer des distances égales verticalement entre les nœuds sélectionnés" #. Rest of the widgetry #: ../src/ui/dialog/align-and-distribute.cpp:999 @@ -13373,9 +13837,8 @@ msgid "Smallest object" msgstr "Objet le plus petit" #: ../src/ui/dialog/align-and-distribute.cpp:1005 -#, fuzzy msgid "Selection Area" -msgstr "Sélection" +msgstr "Zone de sélection" #: ../src/ui/dialog/calligraphic-profile-rename.cpp:40 #: ../src/ui/dialog/calligraphic-profile-rename.cpp:138 @@ -13394,78 +13857,78 @@ msgstr "Enregistrement" msgid "Add profile" msgstr "Ajouter un profil" -#: ../src/ui/dialog/clonetiler.cpp:112 +#: ../src/ui/dialog/clonetiler.cpp:113 msgid "_Symmetry" msgstr "_Symétrie" #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/ui/dialog/clonetiler.cpp:124 +#: ../src/ui/dialog/clonetiler.cpp:125 msgid "P1: simple translation" msgstr "P1 : translation" -#: ../src/ui/dialog/clonetiler.cpp:125 +#: ../src/ui/dialog/clonetiler.cpp:126 msgid "P2: 180° rotation" msgstr "P2 : rotation de 180°" -#: ../src/ui/dialog/clonetiler.cpp:126 +#: ../src/ui/dialog/clonetiler.cpp:127 msgid "PM: reflection" msgstr "PM : réflexion" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/ui/dialog/clonetiler.cpp:129 +#: ../src/ui/dialog/clonetiler.cpp:130 msgid "PG: glide reflection" msgstr "PG : réflexion glissée" -#: ../src/ui/dialog/clonetiler.cpp:130 +#: ../src/ui/dialog/clonetiler.cpp:131 msgid "CM: reflection + glide reflection" msgstr "CM : réflexion + réflexion glissée" -#: ../src/ui/dialog/clonetiler.cpp:131 +#: ../src/ui/dialog/clonetiler.cpp:132 msgid "PMM: reflection + reflection" msgstr "PMM : réflexion + réflexion" -#: ../src/ui/dialog/clonetiler.cpp:132 +#: ../src/ui/dialog/clonetiler.cpp:133 msgid "PMG: reflection + 180° rotation" msgstr "PMG : réflexion + rotation de 180°" -#: ../src/ui/dialog/clonetiler.cpp:133 +#: ../src/ui/dialog/clonetiler.cpp:134 msgid "PGG: glide reflection + 180° rotation" msgstr "PGG : réflexion glissée + rotation de 180°" -#: ../src/ui/dialog/clonetiler.cpp:134 +#: ../src/ui/dialog/clonetiler.cpp:135 msgid "CMM: reflection + reflection + 180° rotation" msgstr "CMM : réflexion + réflexion + rotation de 180°" -#: ../src/ui/dialog/clonetiler.cpp:135 +#: ../src/ui/dialog/clonetiler.cpp:136 msgid "P4: 90° rotation" msgstr "P4 : rotation de 90°" -#: ../src/ui/dialog/clonetiler.cpp:136 +#: ../src/ui/dialog/clonetiler.cpp:137 msgid "P4M: 90° rotation + 45° reflection" msgstr "P4M : rotation de 90° + réflexion à 45°" -#: ../src/ui/dialog/clonetiler.cpp:137 +#: ../src/ui/dialog/clonetiler.cpp:138 msgid "P4G: 90° rotation + 90° reflection" msgstr "P4G : rotation de 90° + réflexion à 90°" -#: ../src/ui/dialog/clonetiler.cpp:138 +#: ../src/ui/dialog/clonetiler.cpp:139 msgid "P3: 120° rotation" msgstr "P3 : rotation de 120°" -#: ../src/ui/dialog/clonetiler.cpp:139 +#: ../src/ui/dialog/clonetiler.cpp:140 msgid "P31M: reflection + 120° rotation, dense" msgstr "P31M : réflexion + rotation de 120°, dense" -#: ../src/ui/dialog/clonetiler.cpp:140 +#: ../src/ui/dialog/clonetiler.cpp:141 msgid "P3M1: reflection + 120° rotation, sparse" msgstr "P3M1 : réflexion + rotation de 120°, clairsemé" -#: ../src/ui/dialog/clonetiler.cpp:141 +#: ../src/ui/dialog/clonetiler.cpp:142 msgid "P6: 60° rotation" msgstr "P6 : rotation de 60°" -#: ../src/ui/dialog/clonetiler.cpp:142 +#: ../src/ui/dialog/clonetiler.cpp:143 msgid "P6M: reflection + 60° rotation" msgstr "P6M : réflexion + rotation de 60°" @@ -13473,529 +13936,571 @@ msgstr "P6M : réflexion + rotation de 60°" # http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples) # http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary) # http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary) -#: ../src/ui/dialog/clonetiler.cpp:162 +#: ../src/ui/dialog/clonetiler.cpp:163 msgid "Select one of the 17 symmetry groups for the tiling" msgstr "Sélectionner l'un de ces 17 groupes de symétrie pour le pavage" -#: ../src/ui/dialog/clonetiler.cpp:180 +#: ../src/ui/dialog/clonetiler.cpp:181 msgid "S_hift" msgstr "_Translation" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/ui/dialog/clonetiler.cpp:190 +#: ../src/ui/dialog/clonetiler.cpp:191 #, no-c-format msgid "Shift X:" msgstr "Translation X :" -#: ../src/ui/dialog/clonetiler.cpp:198 +#: ../src/ui/dialog/clonetiler.cpp:199 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" -msgstr "Translation horizontale à chaque ligne (en % de la largeur du pavé de base)" +msgstr "" +"Translation horizontale à chaque ligne (en % de la largeur du pavé de base)" -#: ../src/ui/dialog/clonetiler.cpp:206 +#: ../src/ui/dialog/clonetiler.cpp:207 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" -msgstr "Translation horizontale à chaque colonne (en % de la largeur du pavé de base)" +msgstr "" +"Translation horizontale à chaque colonne (en % de la largeur du pavé de base)" -#: ../src/ui/dialog/clonetiler.cpp:212 +#: ../src/ui/dialog/clonetiler.cpp:213 msgid "Randomize the horizontal shift by this percentage" msgstr "Introduire ce pourcentage de hasard dans la translation horizontale" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/ui/dialog/clonetiler.cpp:222 +#: ../src/ui/dialog/clonetiler.cpp:223 #, no-c-format msgid "Shift Y:" msgstr "Translation Y :" -#: ../src/ui/dialog/clonetiler.cpp:230 +#: ../src/ui/dialog/clonetiler.cpp:231 #, no-c-format msgid "Vertical shift per row (in % of tile height)" -msgstr "Translation verticale à chaque ligne (en % de la hauteur du pavé de base)" +msgstr "" +"Translation verticale à chaque ligne (en % de la hauteur du pavé de base)" -#: ../src/ui/dialog/clonetiler.cpp:238 +#: ../src/ui/dialog/clonetiler.cpp:239 #, no-c-format msgid "Vertical shift per column (in % of tile height)" -msgstr "Translation verticale à chaque colonne (en % de la hauteur du pavé de base)" +msgstr "" +"Translation verticale à chaque colonne (en % de la hauteur du pavé de base)" -#: ../src/ui/dialog/clonetiler.cpp:245 +#: ../src/ui/dialog/clonetiler.cpp:246 msgid "Randomize the vertical shift by this percentage" msgstr "Introduire ce pourcentage de hasard dans la translation verticale" -#: ../src/ui/dialog/clonetiler.cpp:253 -#: ../src/ui/dialog/clonetiler.cpp:399 +#: ../src/ui/dialog/clonetiler.cpp:254 ../src/ui/dialog/clonetiler.cpp:400 msgid "Exponent:" msgstr "Exposant :" -#: ../src/ui/dialog/clonetiler.cpp:260 +#: ../src/ui/dialog/clonetiler.cpp:261 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" -msgstr "Selon la valeur, l'inter ligne reste constant (1), converge (<1) ou diverge (>1) " +msgstr "" +"Selon la valeur, l'inter ligne reste constant (1), converge (<1) ou diverge " +"(>1) " -#: ../src/ui/dialog/clonetiler.cpp:267 +#: ../src/ui/dialog/clonetiler.cpp:268 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" -msgstr "Selon la valeur, l'inter colonne reste constant (1), converge (<1) ou diverge (>1) " +msgstr "" +"Selon la valeur, l'inter colonne reste constant (1), converge (<1) ou " +"diverge (>1) " #. TRANSLATORS: "Alternate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:275 -#: ../src/ui/dialog/clonetiler.cpp:439 -#: ../src/ui/dialog/clonetiler.cpp:515 -#: ../src/ui/dialog/clonetiler.cpp:588 -#: ../src/ui/dialog/clonetiler.cpp:634 -#: ../src/ui/dialog/clonetiler.cpp:761 +#: ../src/ui/dialog/clonetiler.cpp:276 ../src/ui/dialog/clonetiler.cpp:440 +#: ../src/ui/dialog/clonetiler.cpp:516 ../src/ui/dialog/clonetiler.cpp:589 +#: ../src/ui/dialog/clonetiler.cpp:635 ../src/ui/dialog/clonetiler.cpp:762 msgid "Alternate:" msgstr "Alterner :" -#: ../src/ui/dialog/clonetiler.cpp:281 +#: ../src/ui/dialog/clonetiler.cpp:282 msgid "Alternate the sign of shifts for each row" msgstr "Alterner le signe de la translation à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:286 +#: ../src/ui/dialog/clonetiler.cpp:287 msgid "Alternate the sign of shifts for each column" msgstr "Alterner le signe de la translation à chaque colonne" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:293 -#: ../src/ui/dialog/clonetiler.cpp:457 -#: ../src/ui/dialog/clonetiler.cpp:533 +#: ../src/ui/dialog/clonetiler.cpp:294 ../src/ui/dialog/clonetiler.cpp:458 +#: ../src/ui/dialog/clonetiler.cpp:534 msgid "Cumulate:" msgstr "Cumulatif :" -#: ../src/ui/dialog/clonetiler.cpp:299 +#: ../src/ui/dialog/clonetiler.cpp:300 msgid "Cumulate the shifts for each row" msgstr "Décalage cumulatif des lignes" -#: ../src/ui/dialog/clonetiler.cpp:304 +#: ../src/ui/dialog/clonetiler.cpp:305 msgid "Cumulate the shifts for each column" msgstr "Décalage cumulatif des colonnes" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:311 +#: ../src/ui/dialog/clonetiler.cpp:312 msgid "Exclude tile:" msgstr "Exclure la taille du pavé :" -#: ../src/ui/dialog/clonetiler.cpp:317 +#: ../src/ui/dialog/clonetiler.cpp:318 msgid "Exclude tile height in shift" msgstr "Ne pas ajouter la hauteur du pavé au décalage" -#: ../src/ui/dialog/clonetiler.cpp:322 +#: ../src/ui/dialog/clonetiler.cpp:323 msgid "Exclude tile width in shift" msgstr "Ne pas ajouter la largeur du pavé au décalage" -#: ../src/ui/dialog/clonetiler.cpp:331 +#: ../src/ui/dialog/clonetiler.cpp:332 msgid "Sc_ale" msgstr "_Dimensions" -#: ../src/ui/dialog/clonetiler.cpp:339 +#: ../src/ui/dialog/clonetiler.cpp:340 msgid "Scale X:" msgstr "Échelle X :" -#: ../src/ui/dialog/clonetiler.cpp:347 +#: ../src/ui/dialog/clonetiler.cpp:348 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" -msgstr "Redimensionnement horizontal à chaque ligne (en % de la largeur du pavé de base)" +msgstr "" +"Redimensionnement horizontal à chaque ligne (en % de la largeur du pavé de " +"base)" -#: ../src/ui/dialog/clonetiler.cpp:355 +#: ../src/ui/dialog/clonetiler.cpp:356 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" -msgstr "Redimensionnement horizontal à chaque colonne (en % de la largeur du pavé de base)" +msgstr "" +"Redimensionnement horizontal à chaque colonne (en % de la largeur du pavé de " +"base)" -#: ../src/ui/dialog/clonetiler.cpp:361 +#: ../src/ui/dialog/clonetiler.cpp:362 msgid "Randomize the horizontal scale by this percentage" -msgstr "Introduire ce pourcentage de hasard dans le redimensionnement horizontal" +msgstr "" +"Introduire ce pourcentage de hasard dans le redimensionnement horizontal" -#: ../src/ui/dialog/clonetiler.cpp:369 +#: ../src/ui/dialog/clonetiler.cpp:370 msgid "Scale Y:" msgstr "Échelle Y :" -#: ../src/ui/dialog/clonetiler.cpp:377 +#: ../src/ui/dialog/clonetiler.cpp:378 #, no-c-format msgid "Vertical scale per row (in % of tile height)" -msgstr "Redimensionnement vertical à chaque ligne (en % de la hauteur du pavé de base)" +msgstr "" +"Redimensionnement vertical à chaque ligne (en % de la hauteur du pavé de " +"base)" -#: ../src/ui/dialog/clonetiler.cpp:385 +#: ../src/ui/dialog/clonetiler.cpp:386 #, no-c-format msgid "Vertical scale per column (in % of tile height)" -msgstr "Redimensionnement vertical à chaque colonne (en % de la largeur du pavé de base)" +msgstr "" +"Redimensionnement vertical à chaque colonne (en % de la largeur du pavé de " +"base)" -#: ../src/ui/dialog/clonetiler.cpp:391 +#: ../src/ui/dialog/clonetiler.cpp:392 msgid "Randomize the vertical scale by this percentage" msgstr "Introduire ce pourcentage de hasard dans le redimensionnement vertical" -#: ../src/ui/dialog/clonetiler.cpp:405 +#: ../src/ui/dialog/clonetiler.cpp:406 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" -msgstr "Selon la valeur, le redimensionnement des lignes est uniforme (1), converge (<1) ou diverge (>1) " +msgstr "" +"Selon la valeur, le redimensionnement des lignes est uniforme (1), converge " +"(<1) ou diverge (>1) " -#: ../src/ui/dialog/clonetiler.cpp:411 +#: ../src/ui/dialog/clonetiler.cpp:412 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" -msgstr "Selon la valeur, le redimensionnement des colonnes est uniforme (1), converge (<1) ou diverge (>1) " +msgstr "" +"Selon la valeur, le redimensionnement des colonnes est uniforme (1), " +"converge (<1) ou diverge (>1) " -#: ../src/ui/dialog/clonetiler.cpp:419 +#: ../src/ui/dialog/clonetiler.cpp:420 msgid "Base:" msgstr "Base :" -#: ../src/ui/dialog/clonetiler.cpp:425 -#: ../src/ui/dialog/clonetiler.cpp:431 -msgid "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" -msgstr "Base pour une spirale logarithmique : inutilisée (0), converge (<1), ou diverge (>1)" +#: ../src/ui/dialog/clonetiler.cpp:426 ../src/ui/dialog/clonetiler.cpp:432 +msgid "" +"Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" +msgstr "" +"Base pour une spirale logarithmique : inutilisée (0), converge (<1), ou " +"diverge (>1)" -#: ../src/ui/dialog/clonetiler.cpp:445 +#: ../src/ui/dialog/clonetiler.cpp:446 msgid "Alternate the sign of scales for each row" msgstr "Alterner le signe du redimensionnement à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:450 +#: ../src/ui/dialog/clonetiler.cpp:451 msgid "Alternate the sign of scales for each column" msgstr "Alterner le signe du redimensionnement à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:463 +#: ../src/ui/dialog/clonetiler.cpp:464 msgid "Cumulate the scales for each row" msgstr "Cumuler le redimensionnement à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:468 +#: ../src/ui/dialog/clonetiler.cpp:469 msgid "Cumulate the scales for each column" msgstr "Cumuler le redimensionnement à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:477 +#: ../src/ui/dialog/clonetiler.cpp:478 msgid "_Rotation" msgstr "_Rotation" -#: ../src/ui/dialog/clonetiler.cpp:485 +#: ../src/ui/dialog/clonetiler.cpp:486 msgid "Angle:" msgstr "Angle :" -#: ../src/ui/dialog/clonetiler.cpp:493 +#: ../src/ui/dialog/clonetiler.cpp:494 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "Faire tourner les pavés de cet angle à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:501 +#: ../src/ui/dialog/clonetiler.cpp:502 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "Faire tourner les pavés de cet angle à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:507 +#: ../src/ui/dialog/clonetiler.cpp:508 msgid "Randomize the rotation angle by this percentage" msgstr "Introduire ce pourcentage de hasard dans l'angle de rotation" -#: ../src/ui/dialog/clonetiler.cpp:521 +#: ../src/ui/dialog/clonetiler.cpp:522 msgid "Alternate the rotation direction for each row" msgstr "Alterner le sens de la rotation à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:526 +#: ../src/ui/dialog/clonetiler.cpp:527 msgid "Alternate the rotation direction for each column" msgstr "Alterner le sens de la rotation à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:539 +#: ../src/ui/dialog/clonetiler.cpp:540 msgid "Cumulate the rotation for each row" msgstr "Cumuler l'angle de rotation à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:544 +#: ../src/ui/dialog/clonetiler.cpp:545 msgid "Cumulate the rotation for each column" msgstr "Cumuler l'angle de rotation à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:553 +#: ../src/ui/dialog/clonetiler.cpp:554 msgid "_Blur & opacity" msgstr "_Flou & opacité" -#: ../src/ui/dialog/clonetiler.cpp:562 +#: ../src/ui/dialog/clonetiler.cpp:563 msgid "Blur:" msgstr "Flou :" -#: ../src/ui/dialog/clonetiler.cpp:568 +#: ../src/ui/dialog/clonetiler.cpp:569 msgid "Blur tiles by this percentage for each row" msgstr "Rendre les pavés flous de ce pourcentage à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:574 +#: ../src/ui/dialog/clonetiler.cpp:575 msgid "Blur tiles by this percentage for each column" msgstr "Rendre les pavés flous de ce pourcentage à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:580 +#: ../src/ui/dialog/clonetiler.cpp:581 msgid "Randomize the tile blur by this percentage" msgstr "Introduire ce pourcentage de hasard dans le flou" -#: ../src/ui/dialog/clonetiler.cpp:594 +#: ../src/ui/dialog/clonetiler.cpp:595 msgid "Alternate the sign of blur change for each row" msgstr "Alterner le signe de la modification de flou à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:599 +#: ../src/ui/dialog/clonetiler.cpp:600 msgid "Alternate the sign of blur change for each column" msgstr "Alterner le signe de la modification de flou à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:608 +#: ../src/ui/dialog/clonetiler.cpp:609 msgid "Opacity:" msgstr "Opacité :" -#: ../src/ui/dialog/clonetiler.cpp:614 +#: ../src/ui/dialog/clonetiler.cpp:615 msgid "Decrease tile opacity by this percentage for each row" msgstr "Diminuer l'opacité des pavés de ce pourcentage à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:620 +#: ../src/ui/dialog/clonetiler.cpp:621 msgid "Decrease tile opacity by this percentage for each column" msgstr "Diminuer l'opacité des pavés de ce pourcentage à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:626 +#: ../src/ui/dialog/clonetiler.cpp:627 msgid "Randomize the tile opacity by this percentage" msgstr "Introduire ce pourcentage de hasard dans l'opacité" -#: ../src/ui/dialog/clonetiler.cpp:640 +#: ../src/ui/dialog/clonetiler.cpp:641 msgid "Alternate the sign of opacity change for each row" msgstr "Alterner le signe de la modification d'opacité à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:645 +#: ../src/ui/dialog/clonetiler.cpp:646 msgid "Alternate the sign of opacity change for each column" msgstr "Alterner le signe de la modification d'opacité à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:653 +#: ../src/ui/dialog/clonetiler.cpp:654 msgid "Co_lor" msgstr "Cou_leur" -#: ../src/ui/dialog/clonetiler.cpp:663 +#: ../src/ui/dialog/clonetiler.cpp:664 msgid "Initial color: " msgstr "Couleur initiale :" -#: ../src/ui/dialog/clonetiler.cpp:667 +#: ../src/ui/dialog/clonetiler.cpp:668 msgid "Initial color of tiled clones" msgstr "Couleur initiale des clones de pavage" -#: ../src/ui/dialog/clonetiler.cpp:667 -msgid "Initial color for clones (works only if the original has unset fill or stroke)" -msgstr "Couleur initiale pour les clones (ne fonctionne que si l'original a un remplissage ou un contour indéfini)" +#: ../src/ui/dialog/clonetiler.cpp:668 +msgid "" +"Initial color for clones (works only if the original has unset fill or " +"stroke)" +msgstr "" +"Couleur initiale pour les clones (ne fonctionne que si l'original a un " +"remplissage ou un contour indéfini)" -#: ../src/ui/dialog/clonetiler.cpp:682 +#: ../src/ui/dialog/clonetiler.cpp:683 msgid "H:" msgstr "T :" -#: ../src/ui/dialog/clonetiler.cpp:688 +#: ../src/ui/dialog/clonetiler.cpp:689 msgid "Change the tile hue by this percentage for each row" msgstr "Modifier la teinte des pavés de ce pourcentage à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:694 +#: ../src/ui/dialog/clonetiler.cpp:695 msgid "Change the tile hue by this percentage for each column" msgstr "Modifier la teinte des pavés de ce pourcentage à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:700 +#: ../src/ui/dialog/clonetiler.cpp:701 msgid "Randomize the tile hue by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de teinte" -#: ../src/ui/dialog/clonetiler.cpp:709 +#: ../src/ui/dialog/clonetiler.cpp:710 msgid "S:" msgstr "S :" -#: ../src/ui/dialog/clonetiler.cpp:715 +#: ../src/ui/dialog/clonetiler.cpp:716 msgid "Change the color saturation by this percentage for each row" msgstr "Modifier la saturation des pavés de ce pourcentage à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:721 +#: ../src/ui/dialog/clonetiler.cpp:722 msgid "Change the color saturation by this percentage for each column" msgstr "Modifier la saturation des pavés de ce pourcentage à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:727 +#: ../src/ui/dialog/clonetiler.cpp:728 msgid "Randomize the color saturation by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de saturation" -#: ../src/ui/dialog/clonetiler.cpp:735 +#: ../src/ui/dialog/clonetiler.cpp:736 msgid "L:" msgstr "L :" -#: ../src/ui/dialog/clonetiler.cpp:741 +#: ../src/ui/dialog/clonetiler.cpp:742 msgid "Change the color lightness by this percentage for each row" msgstr "Modifier la luminosité des pavés de ce pourcentage à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:747 +#: ../src/ui/dialog/clonetiler.cpp:748 msgid "Change the color lightness by this percentage for each column" msgstr "Modifier la luminosité des pavés de ce pourcentage à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:753 +#: ../src/ui/dialog/clonetiler.cpp:754 msgid "Randomize the color lightness by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de luminosité" -#: ../src/ui/dialog/clonetiler.cpp:767 +#: ../src/ui/dialog/clonetiler.cpp:768 msgid "Alternate the sign of color changes for each row" msgstr "Alterner le signe de la modification de couleur à chaque ligne" -#: ../src/ui/dialog/clonetiler.cpp:772 +#: ../src/ui/dialog/clonetiler.cpp:773 msgid "Alternate the sign of color changes for each column" msgstr "Alterner le signe de la modification de couleur à chaque colonne" -#: ../src/ui/dialog/clonetiler.cpp:780 +#: ../src/ui/dialog/clonetiler.cpp:781 msgid "_Trace" msgstr "_Calquer" -#: ../src/ui/dialog/clonetiler.cpp:792 +#: ../src/ui/dialog/clonetiler.cpp:793 msgid "Trace the drawing under the tiles" msgstr "Calquer depuis le dessin sous les pavés" -#: ../src/ui/dialog/clonetiler.cpp:796 -msgid "For each clone, pick a value from the drawing in that clone's location and apply it to the clone" -msgstr "Pour chaque clone, capturer une valeur du dessin à l'emplacement du clone et l'appliquer au clone" +#: ../src/ui/dialog/clonetiler.cpp:797 +msgid "" +"For each clone, pick a value from the drawing in that clone's location and " +"apply it to the clone" +msgstr "" +"Pour chaque clone, capturer une valeur du dessin à l'emplacement du clone et " +"l'appliquer au clone" -#: ../src/ui/dialog/clonetiler.cpp:815 +#: ../src/ui/dialog/clonetiler.cpp:816 msgid "1. Pick from the drawing:" msgstr "1. Capturer depuis le dessin :" -#: ../src/ui/dialog/clonetiler.cpp:833 +#: ../src/ui/dialog/clonetiler.cpp:834 msgid "Pick the visible color and opacity" msgstr "Capturer la couleur et l'opacité visibles" -#: ../src/ui/dialog/clonetiler.cpp:841 +#: ../src/ui/dialog/clonetiler.cpp:842 msgid "Pick the total accumulated opacity" msgstr "Capturer l'opacité cumulée" # Red (in RGB) -#: ../src/ui/dialog/clonetiler.cpp:848 +#: ../src/ui/dialog/clonetiler.cpp:849 msgid "R" msgstr "R" -#: ../src/ui/dialog/clonetiler.cpp:849 +#: ../src/ui/dialog/clonetiler.cpp:850 msgid "Pick the Red component of the color" msgstr "Capturer la composante Rouge de la couleur" # Green (in RGB) -#: ../src/ui/dialog/clonetiler.cpp:856 +#: ../src/ui/dialog/clonetiler.cpp:857 msgid "G" msgstr "V" -#: ../src/ui/dialog/clonetiler.cpp:857 +#: ../src/ui/dialog/clonetiler.cpp:858 msgid "Pick the Green component of the color" msgstr "Capturer la composante Verte de la couleur" # Blue (in RGB) -#: ../src/ui/dialog/clonetiler.cpp:864 +#: ../src/ui/dialog/clonetiler.cpp:865 msgid "B" msgstr "B" -#: ../src/ui/dialog/clonetiler.cpp:865 +#: ../src/ui/dialog/clonetiler.cpp:866 msgid "Pick the Blue component of the color" msgstr "Capturer la composante Bleue de la couleur" -#: ../src/ui/dialog/clonetiler.cpp:872 +#: ../src/ui/dialog/clonetiler.cpp:873 msgctxt "Clonetiler color hue" msgid "H" msgstr "T" -#: ../src/ui/dialog/clonetiler.cpp:873 +#: ../src/ui/dialog/clonetiler.cpp:874 msgid "Pick the hue of the color" msgstr "Capturer la teinte de la couleur" # Saturation (in HSL) -#: ../src/ui/dialog/clonetiler.cpp:880 +#: ../src/ui/dialog/clonetiler.cpp:881 msgctxt "Clonetiler color saturation" msgid "S" msgstr "S" -#: ../src/ui/dialog/clonetiler.cpp:881 +#: ../src/ui/dialog/clonetiler.cpp:882 msgid "Pick the saturation of the color" msgstr "Capturer la saturation de la couleur" # Luminosity (in HSL) -#: ../src/ui/dialog/clonetiler.cpp:888 +#: ../src/ui/dialog/clonetiler.cpp:889 msgctxt "Clonetiler color lightness" msgid "L" msgstr "L" -#: ../src/ui/dialog/clonetiler.cpp:889 +#: ../src/ui/dialog/clonetiler.cpp:890 msgid "Pick the lightness of the color" msgstr "Capturer la luminosité de la couleur" -#: ../src/ui/dialog/clonetiler.cpp:899 +#: ../src/ui/dialog/clonetiler.cpp:900 msgid "2. Tweak the picked value:" msgstr "2. Modifier la valeur capturée" -#: ../src/ui/dialog/clonetiler.cpp:916 +#: ../src/ui/dialog/clonetiler.cpp:917 msgid "Gamma-correct:" msgstr "Corriger le Gamma" -#: ../src/ui/dialog/clonetiler.cpp:920 +#: ../src/ui/dialog/clonetiler.cpp:921 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" -msgstr "Décaler le milieu de la valeur capturée vers le haut (>0) ou vers le bas (<0)" +msgstr "" +"Décaler le milieu de la valeur capturée vers le haut (>0) ou vers le bas (<0)" -#: ../src/ui/dialog/clonetiler.cpp:927 +#: ../src/ui/dialog/clonetiler.cpp:928 msgid "Randomize:" msgstr "Hasard :" -#: ../src/ui/dialog/clonetiler.cpp:931 +#: ../src/ui/dialog/clonetiler.cpp:932 msgid "Randomize the picked value by this percentage" msgstr "Introduire ce pourcentage de hasard dans la capture de la valeur" -#: ../src/ui/dialog/clonetiler.cpp:938 +#: ../src/ui/dialog/clonetiler.cpp:939 msgid "Invert:" msgstr "Inverser :" -#: ../src/ui/dialog/clonetiler.cpp:942 +#: ../src/ui/dialog/clonetiler.cpp:943 msgid "Invert the picked value" msgstr "Inverser la valeur capturée" -#: ../src/ui/dialog/clonetiler.cpp:948 +#: ../src/ui/dialog/clonetiler.cpp:949 msgid "3. Apply the value to the clones':" msgstr "3. Appliquer la valeur aux clones :" -#: ../src/ui/dialog/clonetiler.cpp:963 +#: ../src/ui/dialog/clonetiler.cpp:964 msgid "Presence" msgstr "Présence" -#: ../src/ui/dialog/clonetiler.cpp:966 -msgid "Each clone is created with the probability determined by the picked value in that point" -msgstr "Chaque clone est créé selon une probabilité déterminée par la valeur capturée en ce point" +#: ../src/ui/dialog/clonetiler.cpp:967 +msgid "" +"Each clone is created with the probability determined by the picked value in " +"that point" +msgstr "" +"Chaque clone est créé selon une probabilité déterminée par la valeur " +"capturée en ce point" -#: ../src/ui/dialog/clonetiler.cpp:973 +#: ../src/ui/dialog/clonetiler.cpp:974 msgid "Size" msgstr "Dimensions" -#: ../src/ui/dialog/clonetiler.cpp:976 +#: ../src/ui/dialog/clonetiler.cpp:977 msgid "Each clone's size is determined by the picked value in that point" -msgstr "Les dimensions de chaque clone sont déterminées selon la valeur capturée en ce point " +msgstr "" +"Les dimensions de chaque clone sont déterminées selon la valeur capturée en " +"ce point " -#: ../src/ui/dialog/clonetiler.cpp:986 -msgid "Each clone is painted by the picked color (the original must have unset fill or stroke)" -msgstr "Chaque clone est peint selon la couleur capturée (l'original doit avoir un remplissage ou un contour indéfini)" +#: ../src/ui/dialog/clonetiler.cpp:987 +msgid "" +"Each clone is painted by the picked color (the original must have unset fill " +"or stroke)" +msgstr "" +"Chaque clone est peint selon la couleur capturée (l'original doit avoir un " +"remplissage ou un contour indéfini)" -#: ../src/ui/dialog/clonetiler.cpp:996 +#: ../src/ui/dialog/clonetiler.cpp:997 msgid "Each clone's opacity is determined by the picked value in that point" -msgstr "L'opacité de chaque clone est déterminée par la valeur capturée en ce point" +msgstr "" +"L'opacité de chaque clone est déterminée par la valeur capturée en ce point" -#: ../src/ui/dialog/clonetiler.cpp:1044 +#: ../src/ui/dialog/clonetiler.cpp:1045 msgid "How many rows in the tiling" msgstr "Nombre de lignes du pavage" -#: ../src/ui/dialog/clonetiler.cpp:1074 +#: ../src/ui/dialog/clonetiler.cpp:1075 msgid "How many columns in the tiling" msgstr "Nombre de colonnes du pavage" -#: ../src/ui/dialog/clonetiler.cpp:1119 +#: ../src/ui/dialog/clonetiler.cpp:1120 msgid "Width of the rectangle to be filled" msgstr "Largeur du rectangle à remplir" -#: ../src/ui/dialog/clonetiler.cpp:1152 +#: ../src/ui/dialog/clonetiler.cpp:1153 msgid "Height of the rectangle to be filled" msgstr "Hauteur du rectangle à remplir" -#: ../src/ui/dialog/clonetiler.cpp:1169 +#: ../src/ui/dialog/clonetiler.cpp:1170 msgid "Rows, columns: " msgstr "Lignes, colonnes :" -#: ../src/ui/dialog/clonetiler.cpp:1170 +#: ../src/ui/dialog/clonetiler.cpp:1171 msgid "Create the specified number of rows and columns" msgstr "Créer le nombre spécifié de lignes et de colonnes" -#: ../src/ui/dialog/clonetiler.cpp:1179 +#: ../src/ui/dialog/clonetiler.cpp:1180 msgid "Width, height: " msgstr "Largeur, hauteur :" -#: ../src/ui/dialog/clonetiler.cpp:1180 +#: ../src/ui/dialog/clonetiler.cpp:1181 msgid "Fill the specified width and height with the tiling" msgstr "Remplir avec le pavage selon la hauteur et la largeur spécifiées" -#: ../src/ui/dialog/clonetiler.cpp:1201 +#: ../src/ui/dialog/clonetiler.cpp:1202 msgid "Use saved size and position of the tile" msgstr "Utiliser les dimensions et position enregistrées du pavage" -#: ../src/ui/dialog/clonetiler.cpp:1204 -msgid "Pretend that the size and position of the tile are the same as the last time you tiled it (if any), instead of using the current size" -msgstr "Utiliser les mêmes dimensions et position de pavés que lors du pavage précédent (si possible), au lieu d'utiliser les paramètres courants" +#: ../src/ui/dialog/clonetiler.cpp:1205 +msgid "" +"Pretend that the size and position of the tile are the same as the last time " +"you tiled it (if any), instead of using the current size" +msgstr "" +"Utiliser les mêmes dimensions et position de pavés que lors du pavage " +"précédent (si possible), au lieu d'utiliser les paramètres courants" -#: ../src/ui/dialog/clonetiler.cpp:1238 +#: ../src/ui/dialog/clonetiler.cpp:1239 msgid " _Create " msgstr " _Créer " -#: ../src/ui/dialog/clonetiler.cpp:1240 +#: ../src/ui/dialog/clonetiler.cpp:1241 msgid "Create and tile the clones of the selection" msgstr "Créer des clones et paver la sélection avec" @@ -14004,92 +14509,107 @@ msgstr "Créer des clones et paver la sélection avec" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/ui/dialog/clonetiler.cpp:1260 +#: ../src/ui/dialog/clonetiler.cpp:1261 msgid " _Unclump " msgstr "É_parpiller" -#: ../src/ui/dialog/clonetiler.cpp:1261 +#: ../src/ui/dialog/clonetiler.cpp:1262 msgid "Spread out clones to reduce clumping; can be applied repeatedly" -msgstr "Disperser les clones de façon à reduire le rassemblement; peut être appliqué plusieurs fois" +msgstr "" +"Disperser les clones de façon à reduire le rassemblement; peut être appliqué " +"plusieurs fois" -#: ../src/ui/dialog/clonetiler.cpp:1267 +#: ../src/ui/dialog/clonetiler.cpp:1268 msgid " Re_move " msgstr "_Supprimer" -#: ../src/ui/dialog/clonetiler.cpp:1268 +#: ../src/ui/dialog/clonetiler.cpp:1269 msgid "Remove existing tiled clones of the selected object (siblings only)" -msgstr "Retirer les clones de pavage de l'objet sélectionné (seulement les « enfants de mêmes parents »)" +msgstr "" +"Retirer les clones de pavage de l'objet sélectionné (seulement les « enfants " +"de mêmes parents »)" -#: ../src/ui/dialog/clonetiler.cpp:1284 +#: ../src/ui/dialog/clonetiler.cpp:1285 msgid " R_eset " msgstr " R-à-_z" #. TRANSLATORS: "change" is a noun here -#: ../src/ui/dialog/clonetiler.cpp:1286 -msgid "Reset all shifts, scales, rotates, opacity and color changes in the dialog to zero" -msgstr "Remise à zéro de tous les décalages, redimensionnements, rotation et opacités dans la boîte de dialogue" +#: ../src/ui/dialog/clonetiler.cpp:1287 +msgid "" +"Reset all shifts, scales, rotates, opacity and color changes in the dialog " +"to zero" +msgstr "" +"Remise à zéro de tous les décalages, redimensionnements, rotation et " +"opacités dans la boîte de dialogue" -#: ../src/ui/dialog/clonetiler.cpp:1359 +#: ../src/ui/dialog/clonetiler.cpp:1360 msgid "Nothing selected." msgstr "Aucune sélection." -#: ../src/ui/dialog/clonetiler.cpp:1365 +#: ../src/ui/dialog/clonetiler.cpp:1366 msgid "More than one object selected." msgstr "Plus d'un objet est sélectionné." -#: ../src/ui/dialog/clonetiler.cpp:1372 +#: ../src/ui/dialog/clonetiler.cpp:1373 #, c-format msgid "Object has %d tiled clones." msgstr "L'objet possède %d clones de pavage." -#: ../src/ui/dialog/clonetiler.cpp:1377 +#: ../src/ui/dialog/clonetiler.cpp:1378 msgid "Object has no tiled clones." msgstr "L'objet ne possède aucun clone de pavage." -#: ../src/ui/dialog/clonetiler.cpp:2097 +#: ../src/ui/dialog/clonetiler.cpp:2100 msgid "Select one object whose tiled clones to unclump." msgstr "Sélectionner un objet pour en éparpiller les clones de pavage." -#: ../src/ui/dialog/clonetiler.cpp:2119 +#: ../src/ui/dialog/clonetiler.cpp:2122 msgid "Unclump tiled clones" msgstr "Éparpiller les clones de pavage" -#: ../src/ui/dialog/clonetiler.cpp:2148 +#: ../src/ui/dialog/clonetiler.cpp:2151 msgid "Select one object whose tiled clones to remove." msgstr "Sélectionner un objet pour en retirer les clones de pavage." -#: ../src/ui/dialog/clonetiler.cpp:2171 +#: ../src/ui/dialog/clonetiler.cpp:2176 msgid "Delete tiled clones" msgstr "Supprimer les clones de pavage" -#: ../src/ui/dialog/clonetiler.cpp:2224 -msgid "If you want to clone several objects, group them and clone the group." -msgstr "Si vous voulez cloner plusieurs objets, groupez-les puis clonez le groupe." +#: ../src/ui/dialog/clonetiler.cpp:2229 +msgid "" +"If you want to clone several objects, group them and clone the " +"group." +msgstr "" +"Si vous voulez cloner plusieurs objets, groupez-les puis clonez le " +"groupe." -#: ../src/ui/dialog/clonetiler.cpp:2233 +#: ../src/ui/dialog/clonetiler.cpp:2238 msgid "Creating tiled clones..." msgstr "Création d'un pavage de clones..." -#: ../src/ui/dialog/clonetiler.cpp:2640 +#: ../src/ui/dialog/clonetiler.cpp:2651 msgid "Create tiled clones" msgstr "Créer un pavage avec des clones" -#: ../src/ui/dialog/clonetiler.cpp:2873 +#: ../src/ui/dialog/clonetiler.cpp:2884 msgid "Per row:" msgstr "Par ligne :" -#: ../src/ui/dialog/clonetiler.cpp:2891 +#: ../src/ui/dialog/clonetiler.cpp:2902 msgid "Per column:" msgstr "Par colonne :" -#: ../src/ui/dialog/clonetiler.cpp:2899 +#: ../src/ui/dialog/clonetiler.cpp:2910 msgid "Randomize:" msgstr "Hasard :" #: ../src/ui/dialog/color-item.cpp:131 #, c-format -msgid "Color: %s; Click to set fill, Shift+click to set stroke" -msgstr "Couleur : %s ; Clic pour définir le remplissage, Maj + clic pour définir le contour" +msgid "" +"Color: %s; Click to set fill, Shift+click to set stroke" +msgstr "" +"Couleur : %s ; Clic pour définir le remplissage, Maj + " +"clic pour définir le contour" #: ../src/ui/dialog/color-item.cpp:509 msgid "Change color definition" @@ -14111,11 +14631,11 @@ msgstr "Appliquer une couleur de contour nulle" msgid "Set fill color to none" msgstr "Appliquer une couleur de remplissage nulle" -#: ../src/ui/dialog/color-item.cpp:700 +#: ../src/ui/dialog/color-item.cpp:702 msgid "Set stroke color from swatch" msgstr "Appliquer une couleur de contour à partir de l'échantillon" -#: ../src/ui/dialog/color-item.cpp:700 +#: ../src/ui/dialog/color-item.cpp:702 msgid "Set fill color from swatch" msgstr "Appliquer une couleur de remplissage à partir de l'échantillon" @@ -14123,13 +14643,11 @@ msgstr "Appliquer une couleur de remplissage à partir de l'échantillon" msgid "Messages" msgstr "Messages" -#: ../src/ui/dialog/debug.cpp:87 -#: ../src/ui/dialog/messages.cpp:47 +#: ../src/ui/dialog/debug.cpp:87 ../src/ui/dialog/messages.cpp:47 msgid "_Clear" msgstr "Effa_cer" -#: ../src/ui/dialog/debug.cpp:91 -#: ../src/ui/dialog/messages.cpp:48 +#: ../src/ui/dialog/debug.cpp:91 ../src/ui/dialog/messages.cpp:48 msgid "Capture log messages" msgstr "Capturer les messages de log" @@ -14195,8 +14713,12 @@ msgid "Back_ground color:" msgstr "Couleur de _fond :" #: ../src/ui/dialog/document-properties.cpp:115 -msgid "Color of the page background. Note: transparency setting ignored while editing but used when exporting to bitmap." +msgid "" +"Color of the page background. Note: transparency setting ignored while " +"editing but used when exporting to bitmap." msgstr "" +"Couleur du fond de page. Note : les paramètres de transparence sont ignorés " +"pendant l'édition, mais utilisées lors de l'exportation en PNG." #: ../src/ui/dialog/document-properties.cpp:116 msgid "Border _color:" @@ -14211,8 +14733,9 @@ msgid "Color of the page border" msgstr "Couleur de bordure de page" #: ../src/ui/dialog/document-properties.cpp:117 -msgid "Default _units:" -msgstr "_Unités par défaut :" +#, fuzzy +msgid "Display _units:" +msgstr "Unité d'affichage" #. --------------------------------------------------------------- #. General snap options @@ -14246,7 +14769,8 @@ msgstr "Couleur d'emphase des lignes de guide" #: ../src/ui/dialog/document-properties.cpp:123 msgid "Color of a guideline when it is under mouse" -msgstr "Couleur d'une ligne de guide quand elle est sous le curseur de la souris" +msgstr "" +"Couleur d'une ligne de guide quand elle est sous le curseur de la souris" #. --------------------------------------------------------------- #: ../src/ui/dialog/document-properties.cpp:125 @@ -14269,11 +14793,16 @@ msgstr "Distance d'attraction, en pixels d'écran, pour aimanter aux objets" #: ../src/ui/dialog/document-properties.cpp:126 msgid "Always snap to objects, regardless of their distance" -msgstr "Toujours adhérer aux objets les plus proche, sans tenir compte de la distance" +msgstr "" +"Toujours adhérer aux objets les plus proche, sans tenir compte de la distance" #: ../src/ui/dialog/document-properties.cpp:127 -msgid "If set, objects only snap to another object when it's within the range specified below" -msgstr "Si la valeur est définie, les objets ne sont aimantés entre eux que s'ils sont à une distance inférieure à cette valeur" +msgid "" +"If set, objects only snap to another object when it's within the range " +"specified below" +msgstr "" +"Si la valeur est définie, les objets ne sont aimantés entre eux que s'ils " +"sont à une distance inférieure à cette valeur" #. Options for snapping to grids #: ../src/ui/dialog/document-properties.cpp:130 @@ -14290,11 +14819,17 @@ msgstr "Distance d'attraction, en pixels d'écran, pour aimanter à la grille" #: ../src/ui/dialog/document-properties.cpp:131 msgid "Always snap to grids, regardless of the distance" -msgstr "Toujours adhérer aux grilles les plus proches, sans tenir compte de la distance" +msgstr "" +"Toujours adhérer aux grilles les plus proches, sans tenir compte de la " +"distance" #: ../src/ui/dialog/document-properties.cpp:132 -msgid "If set, objects only snap to a grid line when it's within the range specified below" -msgstr "Si la valeur est définie, les objets ne sont aimantés à une ligne de la grille que s'ils sont à une distance inférieure à cette valeur" +msgid "" +"If set, objects only snap to a grid line when it's within the range " +"specified below" +msgstr "" +"Si la valeur est définie, les objets ne sont aimantés à une ligne de la " +"grille que s'ils sont à une distance inférieure à cette valeur" #. Options for snapping to guides #: ../src/ui/dialog/document-properties.cpp:135 @@ -14311,11 +14846,17 @@ msgstr "Distance d'attraction, en pixels d'écran, pour aimanter aux guides" #: ../src/ui/dialog/document-properties.cpp:136 msgid "Always snap to guides, regardless of the distance" -msgstr "Toujours adhérer aux guides les plus proches, sans tenir compte de la distance" +msgstr "" +"Toujours adhérer aux guides les plus proches, sans tenir compte de la " +"distance" #: ../src/ui/dialog/document-properties.cpp:137 -msgid "If set, objects only snap to a guide when it's within the range specified below" -msgstr "Si la valeur est définie, les objets ne sont aimantés à un guide que s'ils sont à une distance inférieure à cette valeur" +msgid "" +"If set, objects only snap to a guide when it's within the range specified " +"below" +msgstr "" +"Si la valeur est définie, les objets ne sont aimantés à un guide que s'ils " +"sont à une distance inférieure à cette valeur" #. --------------------------------------------------------------- #: ../src/ui/dialog/document-properties.cpp:140 @@ -14324,7 +14865,9 @@ msgstr "Aimanter aux chemins de découpe" #: ../src/ui/dialog/document-properties.cpp:140 msgid "When snapping to paths, then also try snapping to clip paths" -msgstr "Lorsque les chemins sont aimantés, essayer également d'aimanter aux chemins de découpe" +msgstr "" +"Lorsque les chemins sont aimantés, essayer également d'aimanter aux chemins " +"de découpe" #: ../src/ui/dialog/document-properties.cpp:141 msgid "Snap to mask paths" @@ -14332,15 +14875,20 @@ msgstr "Aimanter aux chemins de masque" #: ../src/ui/dialog/document-properties.cpp:141 msgid "When snapping to paths, then also try snapping to mask paths" -msgstr "Lorsque les chemins sont aimantés, essayer également d'aimanter aux chemins de masque" +msgstr "" +"Lorsque les chemins sont aimantés, essayer également d'aimanter aux chemins " +"de masque" #: ../src/ui/dialog/document-properties.cpp:142 msgid "Snap perpendicularly" msgstr "Aimanter perpendiculairement" #: ../src/ui/dialog/document-properties.cpp:142 -msgid "When snapping to paths or guides, then also try snapping perpendicularly" -msgstr "Lorsque les chemins ou les guides sont aimantés, essayer également d'aimanter perpendiculairement" +msgid "" +"When snapping to paths or guides, then also try snapping perpendicularly" +msgstr "" +"Lorsque les chemins ou les guides sont aimantés, essayer également " +"d'aimanter perpendiculairement" #: ../src/ui/dialog/document-properties.cpp:143 msgid "Snap tangentially" @@ -14348,7 +14896,9 @@ msgstr "Aimanter tangentiellement" #: ../src/ui/dialog/document-properties.cpp:143 msgid "When snapping to paths or guides, then also try snapping tangentially" -msgstr "Lorsque les chemins ou les guides sont aimantés, essayer également d'aimanter tangentiellement" +msgstr "" +"Lorsque les chemins ou les guides sont aimantés, essayer également " +"d'aimanter tangentiellement" #: ../src/ui/dialog/document-properties.cpp:146 msgctxt "Grid" @@ -14373,8 +14923,7 @@ msgstr "Supprimer la grille sélectionnée." msgid "Guides" msgstr "Guides" -#: ../src/ui/dialog/document-properties.cpp:156 -#: ../src/verbs.cpp:2744 +#: ../src/ui/dialog/document-properties.cpp:156 ../src/verbs.cpp:2831 msgid "Snap" msgstr "Magnétisme" @@ -14418,8 +14967,7 @@ msgstr "Divers" #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:498 -#: ../src/verbs.cpp:2921 +#: ../src/ui/dialog/document-properties.cpp:498 ../src/verbs.cpp:3012 msgid "Link Color Profile" msgstr "Lier un profil de couleurs" @@ -14465,7 +15013,7 @@ msgstr "Choisir un fichier" #: ../src/ui/dialog/document-properties.cpp:763 #: ../src/ui/dialog/document-properties.cpp:852 -#: ../src/ui/widget/selected-style.cpp:343 +#: ../src/ui/widget/selected-style.cpp:356 msgid "Remove" msgstr "Supprimer" @@ -14535,34 +15083,32 @@ msgstr "Retirer le programme incorporé" msgid "Edit embedded script" msgstr "Retirer le programme incorporé" -#: ../src/ui/dialog/document-properties.cpp:1429 +#: ../src/ui/dialog/document-properties.cpp:1434 msgid "Creation" msgstr " Création " -#: ../src/ui/dialog/document-properties.cpp:1430 +#: ../src/ui/dialog/document-properties.cpp:1435 msgid "Defined grids" msgstr "Grilles définies" -#: ../src/ui/dialog/document-properties.cpp:1677 +#: ../src/ui/dialog/document-properties.cpp:1682 msgid "Remove grid" msgstr "Supprimer la grille" -#: ../src/ui/dialog/document-properties.cpp:1761 -msgid "Changed document unit" +#: ../src/ui/dialog/document-properties.cpp:1770 +#, fuzzy +msgid "Changed default display unit" msgstr "Changer l'unité de mesure du document" -#: ../src/ui/dialog/export.cpp:152 -#: ../src/verbs.cpp:2796 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2883 msgid "_Page" msgstr "_Page" -#: ../src/ui/dialog/export.cpp:152 -#: ../src/verbs.cpp:2800 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2887 msgid "_Drawing" msgstr "_Dessin" -#: ../src/ui/dialog/export.cpp:152 -#: ../src/verbs.cpp:2802 +#: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2889 msgid "_Selection" msgstr "_Sélection" @@ -14570,8 +15116,7 @@ msgstr "_Sélection" msgid "_Custom" msgstr "P_ersonnalisée" -#: ../src/ui/dialog/export.cpp:170 -#: ../src/widgets/measure-toolbar.cpp:99 +#: ../src/ui/dialog/export.cpp:170 ../src/widgets/measure-toolbar.cpp:99 #: ../src/widgets/measure-toolbar.cpp:107 #: ../share/extensions/render_gears.inx.h:6 msgid "Units:" @@ -14586,8 +15131,13 @@ msgid "B_atch export all selected objects" msgstr "Exporter les _objets sélectionnés en un lot" #: ../src/ui/dialog/export.cpp:175 -msgid "Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)" -msgstr "Exporter chaque objet de la sélection dans son fichier PNG, en tenant compte des indications d'export (attention, écrase les fichiers sans demander de confirmation !)" +msgid "" +"Export each selected object into its own PNG file, using export hints if any " +"(caution, overwrites without asking!)" +msgstr "" +"Exporter chaque objet de la sélection dans son fichier PNG, en tenant compte " +"des indications d'export (attention, écrase les fichiers sans demander de " +"confirmation !)" #: ../src/ui/dialog/export.cpp:177 msgid "Hide a_ll except selected" @@ -14595,7 +15145,8 @@ msgstr "_Cacher tout sauf la sélection" #: ../src/ui/dialog/export.cpp:177 msgid "In the exported image, hide all objects except those that are selected" -msgstr "Dans l'image exportée, cacher tous les objets qui ne sont pas sélectionnés" +msgstr "" +"Dans l'image exportée, cacher tous les objets qui ne sont pas sélectionnés" #: ../src/ui/dialog/export.cpp:178 msgid "Close when complete" @@ -14641,8 +15192,7 @@ msgstr "Hau_teur :" msgid "Image size" msgstr "Taille de l'image" -#: ../src/ui/dialog/export.cpp:290 -#: ../src/ui/dialog/export.cpp:301 +#: ../src/ui/dialog/export.cpp:290 ../src/ui/dialog/export.cpp:301 msgid "pixels at" msgstr "pixels à" @@ -14650,16 +15200,15 @@ msgstr "pixels à" msgid "dp_i" msgstr "_ppp" -#: ../src/ui/dialog/export.cpp:301 -#: ../src/ui/dialog/transformation.cpp:82 +#: ../src/ui/dialog/export.cpp:301 ../src/ui/dialog/transformation.cpp:82 #: ../src/ui/widget/page-sizer.cpp:237 msgid "_Height:" msgstr "_Hauteur :" #: ../src/ui/dialog/export.cpp:309 -#: ../src/ui/dialog/inkscape-preferences.cpp:1436 -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 +#: ../src/ui/dialog/inkscape-preferences.cpp:1443 +#: ../src/ui/dialog/inkscape-preferences.cpp:1467 msgid "dpi" msgstr "ppp" @@ -14686,19 +15235,16 @@ msgstr "Export en cours" msgid "No items selected." msgstr "Aucun élément sélectionné." -#: ../src/ui/dialog/export.cpp:1022 -#: ../src/ui/dialog/export.cpp:1024 +#: ../src/ui/dialog/export.cpp:1022 ../src/ui/dialog/export.cpp:1024 msgid "Exporting %1 files" msgstr "Exportation de %1 fichiers" -#: ../src/ui/dialog/export.cpp:1064 -#: ../src/ui/dialog/export.cpp:1066 +#: ../src/ui/dialog/export.cpp:1064 ../src/ui/dialog/export.cpp:1066 #, c-format msgid "Exporting file %s..." msgstr "Exportation du fichier %s en cours" -#: ../src/ui/dialog/export.cpp:1075 -#: ../src/ui/dialog/export.cpp:1166 +#: ../src/ui/dialog/export.cpp:1075 ../src/ui/dialog/export.cpp:1166 #, c-format msgid "Could not export to filename %s.\n" msgstr "Impossible d'exporter dans le fichier %s.\n" @@ -14711,7 +15257,9 @@ msgstr "Impossible d'exporter dans le fichier %s." #: ../src/ui/dialog/export.cpp:1093 #, c-format msgid "Successfully exported %d files from %d selected items." -msgstr "%d fichiers ont été exportés à partir des %d objets sélectionnés." +msgstr "" +"%d fichiers ont été exportés à partir des %d objets " +"sélectionnés." #: ../src/ui/dialog/export.cpp:1104 msgid "You have to enter a filename." @@ -14735,8 +15283,7 @@ msgid "Directory %s does not exist or is not a directory.\n" msgstr "Le dossier %s n'existe pas ou n'est pas un dossier.\n" #. TRANSLATORS: %1 will be the filename, %2 the width, and %3 the height of the image -#: ../src/ui/dialog/export.cpp:1149 -#: ../src/ui/dialog/export.cpp:1151 +#: ../src/ui/dialog/export.cpp:1149 ../src/ui/dialog/export.cpp:1151 msgid "Exporting %1 (%2 x %3)" msgstr "Exportation s1(%2 x %3) en cours" @@ -14749,10 +15296,14 @@ msgstr "Dessin exporté vers %s." msgid "Export aborted." msgstr "Exportation annulée." -#: ../src/ui/dialog/export.cpp:1303 -#: ../src/ui/dialog/input.cpp:1082 -#: ../src/verbs.cpp:2358 -#: ../src/widgets/desktop-widget.cpp:1123 +#: ../src/ui/dialog/export.cpp:1302 ../src/ui/interface.cpp:1392 +#: ../src/widgets/desktop-widget.cpp:1122 +#: ../src/widgets/desktop-widget.cpp:1184 +msgid "_Cancel" +msgstr "_Annuler" + +#: ../src/ui/dialog/export.cpp:1303 ../src/ui/dialog/input.cpp:1082 +#: ../src/verbs.cpp:2441 ../src/widgets/desktop-widget.cpp:1123 msgid "_Save" msgstr "_Enregistrer" @@ -14760,10 +15311,8 @@ msgstr "_Enregistrer" msgid "Information" msgstr "Information" -#: ../src/ui/dialog/extension-editor.cpp:82 -#: ../src/verbs.cpp:290 -#: ../src/verbs.cpp:309 -#: ../share/extensions/color_HSL_adjust.inx.h:11 +#: ../src/ui/dialog/extension-editor.cpp:82 ../src/verbs.cpp:310 +#: ../src/verbs.cpp:329 ../share/extensions/color_HSL_adjust.inx.h:11 #: ../share/extensions/color_custom.inx.h:7 #: ../share/extensions/color_randomize.inx.h:6 #: ../share/extensions/dots.inx.h:7 @@ -14802,8 +15351,7 @@ msgstr "Information" #: ../share/extensions/measure.inx.h:16 #: ../share/extensions/pathalongpath.inx.h:16 #: ../share/extensions/pathscatter.inx.h:18 -#: ../share/extensions/radiusrand.inx.h:8 -#: ../share/extensions/split.inx.h:8 +#: ../share/extensions/radiusrand.inx.h:8 ../share/extensions/split.inx.h:8 #: ../share/extensions/voronoi2svg.inx.h:11 #: ../share/extensions/web-set-att.inx.h:25 #: ../share/extensions/web-transmit-att.inx.h:23 @@ -14817,103 +15365,103 @@ msgid "Parameters" msgstr "Paramètres" #. Fill in the template -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:376 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:415 msgid "No preview" msgstr "Pas d'aperçu" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:480 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:519 msgid "too large for preview" msgstr "image trop grande pour un aperçu" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:565 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:604 msgid "Enable preview" msgstr "Activer l'aperçu" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:715 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:728 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:732 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:735 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:743 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:759 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:754 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:767 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:771 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:774 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:782 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:798 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:813 #: ../src/ui/dialog/filedialogimpl-win32.cpp:282 #: ../src/ui/dialog/filedialogimpl-win32.cpp:413 msgid "All Files" msgstr "Tous les fichiers" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:740 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:756 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:771 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:779 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:795 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:810 #: ../src/ui/dialog/filedialogimpl-win32.cpp:283 msgid "All Inkscape Files" msgstr "Tous les fichiers Inkscape" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:747 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:763 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:777 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:786 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:802 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:816 #: ../src/ui/dialog/filedialogimpl-win32.cpp:284 msgid "All Images" msgstr "Toutes les images" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:750 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:766 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:780 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:789 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:805 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:819 #: ../src/ui/dialog/filedialogimpl-win32.cpp:285 msgid "All Vectors" msgstr "Tous les formats vectoriels" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:753 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:769 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:783 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:792 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:808 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:822 #: ../src/ui/dialog/filedialogimpl-win32.cpp:286 msgid "All Bitmaps" msgstr "Toutes les images bitmap" #. ###### File options #. ###### Do we want the .xxx extension automatically added? -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1002 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1560 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1041 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1599 msgid "Append filename extension automatically" msgstr "Ajouter une extension automatiquement" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1175 -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1428 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1214 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1467 msgid "Guess from extension" msgstr "Deviner le type de fichier par l'extension" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1447 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1486 msgid "Left edge of source" msgstr "Bord gauche de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1448 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1487 msgid "Top edge of source" msgstr "Bord supérieur de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1449 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1488 msgid "Right edge of source" msgstr "Bord droit de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1450 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1489 msgid "Bottom edge of source" msgstr "Bord inférieur de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1451 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1490 msgid "Source width" msgstr "Largeur de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1452 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1491 msgid "Source height" msgstr "Hauteur de la source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1453 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1492 msgid "Destination width" msgstr "Largeur de destination" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1454 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1493 msgid "Destination height" msgstr "Hauteur de destination" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1455 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1494 msgid "Resolution (dots per inch)" msgstr "Résolution (point par pouce)" @@ -14921,31 +15469,30 @@ msgstr "Résolution (point par pouce)" #. ## EXTRA WIDGET -- SOURCE SIDE #. ######################################### #. ##### Export options buttons/spinners, etc -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1493 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1532 msgid "Document" msgstr "Document" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1501 -#: ../src/verbs.cpp:175 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1540 ../src/verbs.cpp:176 #: ../src/widgets/desktop-widget.cpp:2000 #: ../share/extensions/printing_marks.inx.h:18 msgid "Selection" msgstr "Sélection" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1505 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1544 msgctxt "Export dialog" msgid "Custom" msgstr "Personnalisée" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1525 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1564 msgid "Source" msgstr "Source" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1545 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1584 msgid "Cairo" msgstr "Cairo" -#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1548 +#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1587 msgid "Antialias" msgstr "Antialias" @@ -14975,8 +15522,17 @@ msgstr "St_yle du contour" #. TRANSLATORS: this dialog is accessible via menu Filters - Filter editor #: ../src/ui/dialog/filter-effects-dialog.cpp:546 -msgid "This matrix determines a linear transform on color space. Each line affects one of the color components. Each column determines how much of each color component from the input is passed to the output. The last column does not depend on input colors, so can be used to adjust a constant component value." -msgstr "Cette matrice détermine une transformation linéaire de l'espace des couleurs. Chaque ligne affecte une des composantes de la couleur. Chaque colonne détermine quelle proportion de chaque composante de l'entrée est passée à la sortie. La dernière colonne ne dépend pas de l'entrée. Elle sert à ajouter une constante aux composantes." +msgid "" +"This matrix determines a linear transform on color space. Each line affects " +"one of the color components. Each column determines how much of each color " +"component from the input is passed to the output. The last column does not " +"depend on input colors, so can be used to adjust a constant component value." +msgstr "" +"Cette matrice détermine une transformation linéaire de l'espace des " +"couleurs. Chaque ligne affecte une des composantes de la couleur. Chaque " +"colonne détermine quelle proportion de chaque composante de l'entrée est " +"passée à la sortie. La dernière colonne ne dépend pas de l'entrée. Elle sert " +"à ajouter une constante aux composantes." #: ../src/ui/dialog/filter-effects-dialog.cpp:549 #: ../share/extensions/grid_polar.inx.h:4 @@ -15031,11 +15587,13 @@ msgstr "Source de lumière :" #: ../src/ui/dialog/filter-effects-dialog.cpp:1195 msgid "Direction angle for the light source on the XY plane, in degrees" -msgstr "Angle pour la direction de la source de lumière dans le plan XY, en degrés" +msgstr "" +"Angle pour la direction de la source de lumière dans le plan XY, en degrés" #: ../src/ui/dialog/filter-effects-dialog.cpp:1196 msgid "Direction angle for the light source on the YZ plane, in degrees" -msgstr "Angle pour la direction de la source de lumière dans le plan XY, en degrés" +msgstr "" +"Angle pour la direction de la source de lumière dans le plan XY, en degrés" #. default x: #. default y: @@ -15081,8 +15639,14 @@ msgid "Cone Angle" msgstr "Angle du cône" #: ../src/ui/dialog/filter-effects-dialog.cpp:1208 -msgid "This is the angle between the spot light axis (i.e. the axis between the light source and the point to which it is pointing at) and the spot light cone. No light is projected outside this cone." -msgstr "C'est l'ouverture du cône de lumière autour de l'axe de la source (la ligne entre la source et le point vers lequel elle pointe). Aucune lumière n'est projetée hors de ce cône." +msgid "" +"This is the angle between the spot light axis (i.e. the axis between the " +"light source and the point to which it is pointing at) and the spot light " +"cone. No light is projected outside this cone." +msgstr "" +"C'est l'ouverture du cône de lumière autour de l'axe de la source (la ligne " +"entre la source et le point vers lequel elle pointe). Aucune lumière n'est " +"projetée hors de ce cône." #: ../src/ui/dialog/filter-effects-dialog.cpp:1274 msgid "New light source" @@ -15189,8 +15753,16 @@ msgid "Height of filter effects region" msgstr "Hauteur de la zone d'action du filtre" #: ../src/ui/dialog/filter-effects-dialog.cpp:2842 -msgid "Indicates the type of matrix operation. The keyword 'matrix' indicates that a full 5x4 matrix of values will be provided. The other keywords represent convenience shortcuts to allow commonly used color operations to be performed without specifying a complete matrix." -msgstr "Indique le type d'opération matricielle. Le mot-clef « matrice » indique qu'une matrice 5x4 sera donnée en entrée. Les autres mots-clés représentent des raccourcis pour les opérations les plus fréquentes sur les couleurs sans spécifier de matrice." +msgid "" +"Indicates the type of matrix operation. The keyword 'matrix' indicates that " +"a full 5x4 matrix of values will be provided. The other keywords represent " +"convenience shortcuts to allow commonly used color operations to be " +"performed without specifying a complete matrix." +msgstr "" +"Indique le type d'opération matricielle. Le mot-clef « matrice » indique " +"qu'une matrice 5x4 sera donnée en entrée. Les autres mots-clés représentent " +"des raccourcis pour les opérations les plus fréquentes sur les couleurs sans " +"spécifier de matrice." #: ../src/ui/dialog/filter-effects-dialog.cpp:2843 msgid "Value(s):" @@ -15202,7 +15774,7 @@ msgstr "R :" # Green (in RGB) #: ../src/ui/dialog/filter-effects-dialog.cpp:2848 -#: ../src/widgets/sp-color-icc-selector.cpp:359 +#: ../src/widgets/sp-color-icc-selector.cpp:334 msgid "G:" msgstr "V :" @@ -15229,8 +15801,14 @@ msgstr "K1 :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2855 #: ../src/ui/dialog/filter-effects-dialog.cpp:2856 #: ../src/ui/dialog/filter-effects-dialog.cpp:2857 -msgid "If the arithmetic operation is chosen, each result pixel is computed using the formula k1*i1*i2 + k2*i1 + k3*i2 + k4 where i1 and i2 are the pixel values of the first and second inputs respectively." -msgstr "Si une opération arithmétique est sélectionnée, chaque pixel du résultat est calculé par: k1*i1*i2 + k2*i1 + k3*i2 + k4. i1 et i2 sont les valeurs de la première et de la deuxième entrée." +msgid "" +"If the arithmetic operation is chosen, each result pixel is computed using " +"the formula k1*i1*i2 + k2*i1 + k3*i2 + k4 where i1 and i2 are the pixel " +"values of the first and second inputs respectively." +msgstr "" +"Si une opération arithmétique est sélectionnée, chaque pixel du résultat est " +"calculé par: k1*i1*i2 + k2*i1 + k3*i2 + k4. i1 et i2 sont les valeurs de la " +"première et de la deuxième entrée." #: ../src/ui/dialog/filter-effects-dialog.cpp:2855 msgid "K2:" @@ -15264,12 +15842,20 @@ msgid "Target:" msgstr "Cible :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2861 -msgid "X coordinate of the target point in the convolve matrix. The convolution is applied to pixels around this point." -msgstr "Coordonnée X du point cible de la matrice de convolution. La convolution est appliquée aux pixels qui entourent ce point." +msgid "" +"X coordinate of the target point in the convolve matrix. The convolution is " +"applied to pixels around this point." +msgstr "" +"Coordonnée X du point cible de la matrice de convolution. La convolution est " +"appliquée aux pixels qui entourent ce point." #: ../src/ui/dialog/filter-effects-dialog.cpp:2861 -msgid "Y coordinate of the target point in the convolve matrix. The convolution is applied to pixels around this point." -msgstr "Coordonnée Y du point cible de la matrice de convolution. La convolution est appliquée aux pixels qui entourent ce point." +msgid "" +"Y coordinate of the target point in the convolve matrix. The convolution is " +"applied to pixels around this point." +msgstr "" +"Coordonnée Y du point cible de la matrice de convolution. La convolution est " +"appliquée aux pixels qui entourent ce point." #. TRANSLATORS: for info on "Kernel", see http://en.wikipedia.org/wiki/Kernel_(matrix) #: ../src/ui/dialog/filter-effects-dialog.cpp:2863 @@ -15277,32 +15863,63 @@ msgid "Kernel:" msgstr "Kernel :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2863 -msgid "This matrix describes the convolve operation that is applied to the input image in order to calculate the pixel colors at the output. Different arrangements of values in this matrix result in various possible visual effects. An identity matrix would lead to a motion blur effect (parallel to the matrix diagonal) while a matrix filled with a constant non-zero value would lead to a common blur effect." -msgstr "Cette matrice décrit l'opération de convolution qui est appliquée à l'image en entrée pour calculer les valeurs des pixels en sortie. Les organisations différentes des valeurs dans cette matrice donnent divers effets visuels possibles. Une matrice identité produira un effet de flou de mouvement (parallèle à la diagonale de la matrice) alors qu'une matrice remplie d'une valeur non-nulle constante produira un effet de flou simple." +msgid "" +"This matrix describes the convolve operation that is applied to the input " +"image in order to calculate the pixel colors at the output. Different " +"arrangements of values in this matrix result in various possible visual " +"effects. An identity matrix would lead to a motion blur effect (parallel to " +"the matrix diagonal) while a matrix filled with a constant non-zero value " +"would lead to a common blur effect." +msgstr "" +"Cette matrice décrit l'opération de convolution qui est appliquée à l'image " +"en entrée pour calculer les valeurs des pixels en sortie. Les organisations " +"différentes des valeurs dans cette matrice donnent divers effets visuels " +"possibles. Une matrice identité produira un effet de flou de mouvement " +"(parallèle à la diagonale de la matrice) alors qu'une matrice remplie d'une " +"valeur non-nulle constante produira un effet de flou simple." #: ../src/ui/dialog/filter-effects-dialog.cpp:2865 msgid "Divisor:" msgstr "Diviseur :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2865 -msgid "After applying the kernelMatrix to the input image to yield a number, that number is divided by divisor to yield the final destination color value. A divisor that is the sum of all the matrix values tends to have an evening effect on the overall color intensity of the result." -msgstr "Après l'application de la kernelMatrix à l'image en entrée pour obtenir un nombre, ce nombre est divisé par le diviseur, ce qui donne la valeur de couleur finale en sortie. Un diviseur d'une valeur égale à la somme de toutes les valeurs de la matrice aura tendance à avoir un effet lissant sur l'intensité globale de la couleur du résultat." +msgid "" +"After applying the kernelMatrix to the input image to yield a number, that " +"number is divided by divisor to yield the final destination color value. A " +"divisor that is the sum of all the matrix values tends to have an evening " +"effect on the overall color intensity of the result." +msgstr "" +"Après l'application de la kernelMatrix à l'image en entrée pour obtenir un " +"nombre, ce nombre est divisé par le diviseur, ce qui donne la valeur de " +"couleur finale en sortie. Un diviseur d'une valeur égale à la somme de " +"toutes les valeurs de la matrice aura tendance à avoir un effet lissant sur " +"l'intensité globale de la couleur du résultat." #: ../src/ui/dialog/filter-effects-dialog.cpp:2866 msgid "Bias:" msgstr "Déviation :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2866 -msgid "This value is added to each component. This is useful to define a constant value as the zero response of the filter." -msgstr "Cette valeur est ajoutée à chaque composant. Permet de définir une valeur constante comme la réponse en zéro du filtre." +msgid "" +"This value is added to each component. This is useful to define a constant " +"value as the zero response of the filter." +msgstr "" +"Cette valeur est ajoutée à chaque composant. Permet de définir une valeur " +"constante comme la réponse en zéro du filtre." #: ../src/ui/dialog/filter-effects-dialog.cpp:2867 msgid "Edge Mode:" msgstr "Mode bordure :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2867 -msgid "Determines how to extend the input image as necessary with color values so that the matrix operations can be applied when the kernel is positioned at or near the edge of the input image." -msgstr "Détermine comment étendre l'image en entrée avec des valeurs de couleur si besoin, pour que les opérations matricielles puissent être appliquées quand le kernel est positionné au bord ou près du bord de l'image en entrée." +msgid "" +"Determines how to extend the input image as necessary with color values so " +"that the matrix operations can be applied when the kernel is positioned at " +"or near the edge of the input image." +msgstr "" +"Détermine comment étendre l'image en entrée avec des valeurs de couleur si " +"besoin, pour que les opérations matricielles puissent être appliquées quand " +"le kernel est positionné au bord ou près du bord de l'image en entrée." #: ../src/ui/dialog/filter-effects-dialog.cpp:2868 msgid "Preserve Alpha" @@ -15310,7 +15927,9 @@ msgstr "Préserver l'opacité" #: ../src/ui/dialog/filter-effects-dialog.cpp:2868 msgid "If set, the alpha channel won't be altered by this filter primitive." -msgstr "Si coché, la composante opacité (alpha) ne sera pas modifiée par cette primitive de filtre." +msgstr "" +"Si coché, la composante opacité (alpha) ne sera pas modifiée par cette " +"primitive de filtre." #. default: white #: ../src/ui/dialog/filter-effects-dialog.cpp:2871 @@ -15329,8 +15948,12 @@ msgstr "Relief de surface :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2872 #: ../src/ui/dialog/filter-effects-dialog.cpp:2905 -msgid "This value amplifies the heights of the bump map defined by the input alpha channel" -msgstr "Cette valeur amplifie la hauteur du relief défini par la composante opacité (alpha) en entrée" +msgid "" +"This value amplifies the heights of the bump map defined by the input alpha " +"channel" +msgstr "" +"Cette valeur amplifie la hauteur du relief défini par la composante opacité " +"(alpha) en entrée" #: ../src/ui/dialog/filter-effects-dialog.cpp:2873 #: ../src/ui/dialog/filter-effects-dialog.cpp:2906 @@ -15374,7 +15997,8 @@ msgstr "Couleur de remplissage :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2883 msgid "The whole filter region will be filled with this color." -msgstr "Toute la région affectée par le filtre sera remplie avec cette couleur." +msgstr "" +"Toute la région affectée par le filtre sera remplie avec cette couleur." #: ../src/ui/dialog/filter-effects-dialog.cpp:2887 msgid "Standard Deviation:" @@ -15424,11 +16048,17 @@ msgstr "Exposant :" #: ../src/ui/dialog/filter-effects-dialog.cpp:2907 msgid "Exponent for specular term, larger is more \"shiny\"." -msgstr "Exposant pour le terme spéculaire. Plus il est grand, plus l'objet est « brillant »." +msgstr "" +"Exposant pour le terme spéculaire. Plus il est grand, plus l'objet est " +"« brillant »." #: ../src/ui/dialog/filter-effects-dialog.cpp:2916 -msgid "Indicates whether the filter primitive should perform a noise or turbulence function." -msgstr "Indique si la primitive de filtre doit effectuer une fonction de bruit ou de turbulence." +msgid "" +"Indicates whether the filter primitive should perform a noise or turbulence " +"function." +msgstr "" +"Indique si la primitive de filtre doit effectuer une fonction de bruit ou de " +"turbulence." #: ../src/ui/dialog/filter-effects-dialog.cpp:2917 msgid "Base Frequency:" @@ -15451,68 +16081,174 @@ msgid "Add filter primitive" msgstr "Ajouter une primitive de filtre" #: ../src/ui/dialog/filter-effects-dialog.cpp:2948 -msgid "The feBlend filter primitive provides 4 image blending modes: screen, multiply, darken and lighten." -msgstr "feBlend fournit quatre modes de fondu d'image : produit, superposition, obscurcir et éclaircir." +msgid "" +"The feBlend filter primitive provides 4 image blending modes: screen, " +"multiply, darken and lighten." +msgstr "" +"feBlend fournit quatre modes de fondu d'image : produit, " +"superposition, obscurcir et éclaircir." #: ../src/ui/dialog/filter-effects-dialog.cpp:2952 -msgid "The feColorMatrix filter primitive applies a matrix transformation to color of each rendered pixel. This allows for effects like turning object to grayscale, modifying color saturation and changing color hue." -msgstr "feColorMatrix applique une transformation matricielle à la couleur de chaque pixel. Cela permet des effets comme la transformation d'objets en niveaux de gris, la modification de la saturation des couleurs et la modification de la teinte des couleurs." +msgid "" +"The feColorMatrix filter primitive applies a matrix transformation to " +"color of each rendered pixel. This allows for effects like turning object to " +"grayscale, modifying color saturation and changing color hue." +msgstr "" +"feColorMatrix applique une transformation matricielle à la couleur de " +"chaque pixel. Cela permet des effets comme la transformation d'objets en " +"niveaux de gris, la modification de la saturation des couleurs et la " +"modification de la teinte des couleurs." #: ../src/ui/dialog/filter-effects-dialog.cpp:2956 -msgid "The feComponentTransfer filter primitive manipulates the input's color components (red, green, blue, and alpha) according to particular transfer functions, allowing operations like brightness and contrast adjustment, color balance, and thresholding." -msgstr "feComponentTransfer manipule les composantes de couleur de l'entrée (rouge, vert, bleu et opacité) suivant des fonctions de tranfert. Cela permet des opérations comme l'ajustement de luminosité et de contraste, la balance des couleurs, et la détection de seuil." +msgid "" +"The feComponentTransfer filter primitive manipulates the input's " +"color components (red, green, blue, and alpha) according to particular " +"transfer functions, allowing operations like brightness and contrast " +"adjustment, color balance, and thresholding." +msgstr "" +"feComponentTransfer manipule les composantes de couleur de l'entrée " +"(rouge, vert, bleu et opacité) suivant des fonctions de tranfert. Cela " +"permet des opérations comme l'ajustement de luminosité et de contraste, la " +"balance des couleurs, et la détection de seuil." #: ../src/ui/dialog/filter-effects-dialog.cpp:2960 -msgid "The feComposite filter primitive composites two images using one of the Porter-Duff blending modes or the arithmetic mode described in SVG standard. Porter-Duff blending modes are essentially logical operations between the corresponding pixel values of the images." -msgstr "La primitive feComposite fond deux images ensemble en utilisant un des modes de fondu Porter-Duff ou le mode arithmétique décrit dans le standard SVG. Les modes de fondu Porter-Duff sont en résumé des opérations logiques entre les valeurs de pixels respectives des images." +msgid "" +"The feComposite filter primitive composites two images using one of " +"the Porter-Duff blending modes or the arithmetic mode described in SVG " +"standard. Porter-Duff blending modes are essentially logical operations " +"between the corresponding pixel values of the images." +msgstr "" +"La primitive feComposite fond deux images ensemble en utilisant un " +"des modes de fondu Porter-Duff ou le mode arithmétique décrit dans le " +"standard SVG. Les modes de fondu Porter-Duff sont en résumé des opérations " +"logiques entre les valeurs de pixels respectives des images." #: ../src/ui/dialog/filter-effects-dialog.cpp:2964 -msgid "The feConvolveMatrix lets you specify a Convolution to be applied on the image. Common effects created using convolution matrices are blur, sharpening, embossing and edge detection. Note that while gaussian blur can be created using this filter primitive, the special gaussian blur primitive is faster and resolution-independent." -msgstr "feConvolveMatrix vous permet de spécifier une matrice de convolution à appliquer à l'image. Les effets courants créés par des matrices de convolution sont le flou, la netteté, le gauffrage et la détection de bords. Il faut noter que, bien qu'un flou gaussien puisse être créé en utilisant cette primitive de filtre, la primitive dédiée au flou gaussien est plus rapide et ne dépend pas de la résolution." +msgid "" +"The feConvolveMatrix lets you specify a Convolution to be applied on " +"the image. Common effects created using convolution matrices are blur, " +"sharpening, embossing and edge detection. Note that while gaussian blur can " +"be created using this filter primitive, the special gaussian blur primitive " +"is faster and resolution-independent." +msgstr "" +"feConvolveMatrix vous permet de spécifier une matrice de convolution " +"à appliquer à l'image. Les effets courants créés par des matrices de " +"convolution sont le flou, la netteté, le gauffrage et la détection de bords. " +"Il faut noter que, bien qu'un flou gaussien puisse être créé en utilisant " +"cette primitive de filtre, la primitive dédiée au flou gaussien est plus " +"rapide et ne dépend pas de la résolution." #: ../src/ui/dialog/filter-effects-dialog.cpp:2968 -msgid "The feDiffuseLighting and feSpecularLighting filter primitives create \"embossed\" shadings. The input's alpha channel is used to provide depth information: higher opacity areas are raised toward the viewer and lower opacity areas recede away from the viewer." -msgstr "feDiffuseLighting et feSpecularLighting créent des ombrages « gauffrés ». La composante d'opacité (alpha) de l'entrée est utilisée pour founir l'information de profondeur : les zones de forte opacité sont élevées vers le point de vue et les zones de faible opacité sont reculées par rapport au point de vue." +msgid "" +"The feDiffuseLighting and feSpecularLighting filter primitives create " +"\"embossed\" shadings. The input's alpha channel is used to provide depth " +"information: higher opacity areas are raised toward the viewer and lower " +"opacity areas recede away from the viewer." +msgstr "" +"feDiffuseLighting et feSpecularLighting créent des ombrages " +"« gauffrés ». La composante d'opacité (alpha) de l'entrée est utilisée pour " +"founir l'information de profondeur : les zones de forte opacité sont élevées " +"vers le point de vue et les zones de faible opacité sont reculées par " +"rapport au point de vue." #: ../src/ui/dialog/filter-effects-dialog.cpp:2972 -msgid "The feDisplacementMap filter primitive displaces the pixels in the first input using the second input as a displacement map, that shows from how far the pixel should come from. Classical examples are whirl and pinch effects." -msgstr "feDisplacementMap déplace les pixels de la première entrée en utilisant la deuxième entrée comme displacement map, qui définit la distance d'où le pixel doit venir. Les exemples les plus classiques sont les effets de tourbillon et de contraction." +msgid "" +"The feDisplacementMap filter primitive displaces the pixels in the " +"first input using the second input as a displacement map, that shows from " +"how far the pixel should come from. Classical examples are whirl and pinch " +"effects." +msgstr "" +"feDisplacementMap déplace les pixels de la première entrée en " +"utilisant la deuxième entrée comme displacement map, qui définit la distance " +"d'où le pixel doit venir. Les exemples les plus classiques sont les effets " +"de tourbillon et de contraction." #: ../src/ui/dialog/filter-effects-dialog.cpp:2976 -msgid "The feFlood filter primitive fills the region with a given color and opacity. It is usually used as an input to other filters to apply color to a graphic." -msgstr "feFlood remplit la région avec une couleur et une opacité données. Il est le plus souvent utilisé comme entrée pour d'autres filtres pour appliquer une couleur à une ressource graphique." +msgid "" +"The feFlood filter primitive fills the region with a given color and " +"opacity. It is usually used as an input to other filters to apply color to " +"a graphic." +msgstr "" +"feFlood remplit la région avec une couleur et une opacité données. Il " +"est le plus souvent utilisé comme entrée pour d'autres filtres pour " +"appliquer une couleur à une ressource graphique." #: ../src/ui/dialog/filter-effects-dialog.cpp:2980 -msgid "The feGaussianBlur filter primitive uniformly blurs its input. It is commonly used together with feOffset to create a drop shadow effect." -msgstr "feGaussianBlur rend uniformément flou son entrée. Il est le plus souvent utilisé avec feOffset pour créer un effet d'ombre portée." +msgid "" +"The feGaussianBlur filter primitive uniformly blurs its input. It is " +"commonly used together with feOffset to create a drop shadow effect." +msgstr "" +"feGaussianBlur rend uniformément flou son entrée. Il est le plus " +"souvent utilisé avec feOffset pour créer un effet d'ombre portée." #: ../src/ui/dialog/filter-effects-dialog.cpp:2984 -msgid "The feImage filter primitive fills the region with an external image or another part of the document." -msgstr "feImage remplit la zone avec une image externe ou une autre partie du document." +msgid "" +"The feImage filter primitive fills the region with an external image " +"or another part of the document." +msgstr "" +"feImage remplit la zone avec une image externe ou une autre partie du " +"document." #: ../src/ui/dialog/filter-effects-dialog.cpp:2988 -msgid "The feMerge filter primitive composites several temporary images inside the filter primitive to a single image. It uses normal alpha compositing for this. This is equivalent to using several feBlend primitives in 'normal' mode or several feComposite primitives in 'over' mode." -msgstr "feMerge compose plusieurs images temporaires à l'intérieur du filtre de primitive en une seule image. Il utilise la composition alpha normale pour ce faire. Celà équivaut à utiliser plusieurs primitives feBlend en mode 'normal' ou plusieurs primitives feComposite en mode 'over'." +msgid "" +"The feMerge filter primitive composites several temporary images " +"inside the filter primitive to a single image. It uses normal alpha " +"compositing for this. This is equivalent to using several feBlend primitives " +"in 'normal' mode or several feComposite primitives in 'over' mode." +msgstr "" +"feMerge compose plusieurs images temporaires à l'intérieur du filtre " +"de primitive en une seule image. Il utilise la composition alpha normale " +"pour ce faire. Celà équivaut à utiliser plusieurs primitives feBlend en mode " +"'normal' ou plusieurs primitives feComposite en mode 'over'." #: ../src/ui/dialog/filter-effects-dialog.cpp:2992 -msgid "The feMorphology filter primitive provides erode and dilate effects. For single-color objects erode makes the object thinner and dilate makes it thicker." -msgstr "feMorphology fournit des effets de contraction et de dilatation. Pour des objets de couleur uniforme la contraction rend l'objet plus fin et la dilatation le rend plus épais." +msgid "" +"The feMorphology filter primitive provides erode and dilate effects. " +"For single-color objects erode makes the object thinner and dilate makes it " +"thicker." +msgstr "" +"feMorphology fournit des effets de contraction et de dilatation. Pour " +"des objets de couleur uniforme la contraction rend l'objet plus fin et la " +"dilatation le rend plus épais." #: ../src/ui/dialog/filter-effects-dialog.cpp:2996 -msgid "The feOffset filter primitive offsets the image by an user-defined amount. For example, this is useful for drop shadows, where the shadow is in a slightly different position than the actual object." -msgstr "feOffset décale l'image d'une quantité définie par l'utilisateur. Par example, il est utile dans le cas des ombres portées, où les ombres sont dans une position légèrement différente de l'objet source de l'ombre." +msgid "" +"The feOffset filter primitive offsets the image by an user-defined " +"amount. For example, this is useful for drop shadows, where the shadow is in " +"a slightly different position than the actual object." +msgstr "" +"feOffset décale l'image d'une quantité définie par l'utilisateur. Par " +"example, il est utile dans le cas des ombres portées, où les ombres sont " +"dans une position légèrement différente de l'objet source de l'ombre." #: ../src/ui/dialog/filter-effects-dialog.cpp:3000 -msgid "The feDiffuseLighting and feSpecularLighting filter primitives create \"embossed\" shadings. The input's alpha channel is used to provide depth information: higher opacity areas are raised toward the viewer and lower opacity areas recede away from the viewer." -msgstr "feDiffuseLighting et feSpecularLighting créent des ombrages « gaufrés ». La composante d'opacité (alpha) de l'entrée est utilisée pour fournir l'information de profondeur : les zones de forte opacité sont élevées vers le point de vue et les zones de faible opacité sont reculées par rapport au point de vue." +msgid "" +"The feDiffuseLighting and feSpecularLighting filter primitives " +"create \"embossed\" shadings. The input's alpha channel is used to provide " +"depth information: higher opacity areas are raised toward the viewer and " +"lower opacity areas recede away from the viewer." +msgstr "" +"feDiffuseLighting et feSpecularLighting créent des ombrages " +"« gaufrés ». La composante d'opacité (alpha) de l'entrée est utilisée pour " +"fournir l'information de profondeur : les zones de forte opacité sont " +"élevées vers le point de vue et les zones de faible opacité sont reculées " +"par rapport au point de vue." #: ../src/ui/dialog/filter-effects-dialog.cpp:3004 -msgid "The feTile filter primitive tiles a region with its input graphic" -msgstr "feTile pave une région avec la ressource graphique fournie en entrée." +msgid "" +"The feTile filter primitive tiles a region with its input graphic" +msgstr "" +"feTile pave une région avec la ressource graphique fournie en entrée." #: ../src/ui/dialog/filter-effects-dialog.cpp:3008 -msgid "The feTurbulence filter primitive renders Perlin noise. This kind of noise is useful in simulating several nature phenomena like clouds, fire and smoke and in generating complex textures like marble or granite." -msgstr "feTurbulence crée du bruit de Perlin. Ce genre de bruit est utile pour simuler les phénomènes naturels comme les nuages, le feu et la fumée, et pour générer des textures complexes comme le marbre ou le granit." +msgid "" +"The feTurbulence filter primitive renders Perlin noise. This kind of " +"noise is useful in simulating several nature phenomena like clouds, fire and " +"smoke and in generating complex textures like marble or granite." +msgstr "" +"feTurbulence crée du bruit de Perlin. Ce genre de bruit est utile " +"pour simuler les phénomènes naturels comme les nuages, le feu et la fumée, " +"et pour générer des textures complexes comme le marbre ou le granit." #: ../src/ui/dialog/filter-effects-dialog.cpp:3027 msgid "Duplicate filter primitive" @@ -15528,7 +16264,9 @@ msgstr "Re_chercher :" #: ../src/ui/dialog/find.cpp:71 msgid "Find objects by their content or properties (exact or partial match)" -msgstr "Rechercher des objets par leur contenu ou propriétés (correspondance exacte ou partielle)" +msgstr "" +"Rechercher des objets par leur contenu ou propriétés (correspondance exacte " +"ou partielle)" #: ../src/ui/dialog/find.cpp:72 msgid "R_eplace:" @@ -15572,7 +16310,9 @@ msgstr "_Propriétés" #: ../src/ui/dialog/find.cpp:78 msgid "Search in object properties, styles, attributes and IDs" -msgstr "Rechercher dans les propriétés, les styles, les attributs et les identifiants des objets" +msgstr "" +"Rechercher dans les propriétés, les styles, les attributs et les " +"identifiants des objets" #: ../src/ui/dialog/find.cpp:80 msgid "Search in" @@ -15702,8 +16442,7 @@ msgstr "Spirales" msgid "Search spirals" msgstr "Rechercher les spirales" -#: ../src/ui/dialog/find.cpp:102 -#: ../src/widgets/toolbox.cpp:1736 +#: ../src/ui/dialog/find.cpp:102 ../src/widgets/toolbox.cpp:1736 msgid "Paths" msgstr "Chemins" @@ -15737,8 +16476,7 @@ msgstr "Clones" msgid "Search clones" msgstr "Rechercher les clones" -#: ../src/ui/dialog/find.cpp:109 -#: ../share/extensions/embedimage.inx.h:3 +#: ../src/ui/dialog/find.cpp:109 ../share/extensions/embedimage.inx.h:3 #: ../share/extensions/extractimage.inx.h:5 msgid "Images" msgstr "Images" @@ -15765,7 +16503,8 @@ msgstr "_Rechercher" #: ../src/ui/dialog/find.cpp:114 msgid "Select all objects matching the selection criteria" -msgstr "Sélectionner tous les objets qui correspondent aux critères de sélection" +msgstr "" +"Sélectionner tous les objets qui correspondent aux critères de sélection" #: ../src/ui/dialog/find.cpp:115 msgid "_Replace All" @@ -15775,57 +16514,57 @@ msgstr "_Remplacer tout" msgid "Replace all matches" msgstr "Remplacer toutes les objets correspondants" -#: ../src/ui/dialog/find.cpp:775 +#: ../src/ui/dialog/find.cpp:797 msgid "Nothing to replace" msgstr "Rien à remplacer" #. TRANSLATORS: "%s" is replaced with "exact" or "partial" when this string is displayed -#: ../src/ui/dialog/find.cpp:816 +#: ../src/ui/dialog/find.cpp:838 #, c-format msgid "%d object found (out of %d), %s match." msgid_plural "%d objects found (out of %d), %s match." msgstr[0] "%d objet trouvé (sur %d), correspondance %s." msgstr[1] "%d objets trouvés (sur %d), correspondance %s." -#: ../src/ui/dialog/find.cpp:819 +#: ../src/ui/dialog/find.cpp:841 msgid "exact" msgstr "exacte" -#: ../src/ui/dialog/find.cpp:819 +#: ../src/ui/dialog/find.cpp:841 msgid "partial" msgstr "partielle" #. TRANSLATORS: "%1" is replaced with the number of matches -#: ../src/ui/dialog/find.cpp:822 +#: ../src/ui/dialog/find.cpp:844 msgid "%1 match replaced" msgid_plural "%1 matches replaced" msgstr[0] "%1 correspondance remplacée" msgstr[1] "%1 correspondances remplacées" #. TRANSLATORS: "%1" is replaced with the number of matches -#: ../src/ui/dialog/find.cpp:826 +#: ../src/ui/dialog/find.cpp:848 msgid "%1 object found" msgid_plural "%1 objects found" msgstr[0] "%1 objet trouvé" msgstr[1] "%1 objets trouvés" -#: ../src/ui/dialog/find.cpp:837 +#: ../src/ui/dialog/find.cpp:862 msgid "Replace text or property" msgstr "Remplacer du texte ou des propriétés" -#: ../src/ui/dialog/find.cpp:841 +#: ../src/ui/dialog/find.cpp:866 msgid "Nothing found" msgstr "Aucune correspondance" -#: ../src/ui/dialog/find.cpp:846 +#: ../src/ui/dialog/find.cpp:871 msgid "No objects found" msgstr "Aucun objet trouvé" -#: ../src/ui/dialog/find.cpp:867 +#: ../src/ui/dialog/find.cpp:892 msgid "Select an object type" msgstr "Sélectionnez un type d'objet" -#: ../src/ui/dialog/find.cpp:885 +#: ../src/ui/dialog/find.cpp:910 msgid "Select a property" msgstr "Sélectionnez une propriété" @@ -15834,10 +16573,12 @@ msgid "" "\n" "Some fonts are not available and have been substituted." msgstr "" +"\n" +"Certaines fontes sont indisponibles et ont été remplacées." #: ../src/ui/dialog/font-substitution.cpp:90 msgid "Font substitution" -msgstr "" +msgstr "Substitution de police" #: ../src/ui/dialog/font-substitution.cpp:109 msgid "Select all the affected items" @@ -15851,8 +16592,7 @@ msgstr "Ne plus afficher cet avertissement" msgid "Font '%1' substituted with '%2'" msgstr "Fonte '%1' remplacée par '%2'" -#: ../src/ui/dialog/glyphs.cpp:60 -#: ../src/ui/dialog/glyphs.cpp:152 +#: ../src/ui/dialog/glyphs.cpp:60 ../src/ui/dialog/glyphs.cpp:152 msgid "all" msgstr "tout" @@ -15864,38 +16604,31 @@ msgstr "commun" msgid "inherited" msgstr "hérité" -#: ../src/ui/dialog/glyphs.cpp:63 -#: ../src/ui/dialog/glyphs.cpp:165 +#: ../src/ui/dialog/glyphs.cpp:63 ../src/ui/dialog/glyphs.cpp:165 msgid "Arabic" msgstr "Arabe" -#: ../src/ui/dialog/glyphs.cpp:64 -#: ../src/ui/dialog/glyphs.cpp:163 +#: ../src/ui/dialog/glyphs.cpp:64 ../src/ui/dialog/glyphs.cpp:163 msgid "Armenian" msgstr "Arménien" -#: ../src/ui/dialog/glyphs.cpp:65 -#: ../src/ui/dialog/glyphs.cpp:172 +#: ../src/ui/dialog/glyphs.cpp:65 ../src/ui/dialog/glyphs.cpp:172 msgid "Bengali" msgstr "Bengali" -#: ../src/ui/dialog/glyphs.cpp:66 -#: ../src/ui/dialog/glyphs.cpp:254 +#: ../src/ui/dialog/glyphs.cpp:66 ../src/ui/dialog/glyphs.cpp:254 msgid "Bopomofo" msgstr "Bopomofo" -#: ../src/ui/dialog/glyphs.cpp:67 -#: ../src/ui/dialog/glyphs.cpp:189 +#: ../src/ui/dialog/glyphs.cpp:67 ../src/ui/dialog/glyphs.cpp:189 msgid "Cherokee" msgstr "Chérokî" -#: ../src/ui/dialog/glyphs.cpp:68 -#: ../src/ui/dialog/glyphs.cpp:242 +#: ../src/ui/dialog/glyphs.cpp:68 ../src/ui/dialog/glyphs.cpp:242 msgid "Coptic" msgstr "Copte" -#: ../src/ui/dialog/glyphs.cpp:69 -#: ../src/ui/dialog/glyphs.cpp:161 +#: ../src/ui/dialog/glyphs.cpp:69 ../src/ui/dialog/glyphs.cpp:161 #: ../share/extensions/hershey.inx.h:22 msgid "Cyrillic" msgstr "Cyrillique" @@ -15904,18 +16637,15 @@ msgstr "Cyrillique" msgid "Deseret" msgstr "Déséret" -#: ../src/ui/dialog/glyphs.cpp:71 -#: ../src/ui/dialog/glyphs.cpp:171 +#: ../src/ui/dialog/glyphs.cpp:71 ../src/ui/dialog/glyphs.cpp:171 msgid "Devanagari" msgstr "Dévanâgarî" -#: ../src/ui/dialog/glyphs.cpp:72 -#: ../src/ui/dialog/glyphs.cpp:187 +#: ../src/ui/dialog/glyphs.cpp:72 ../src/ui/dialog/glyphs.cpp:187 msgid "Ethiopic" msgstr "Éthiopien" -#: ../src/ui/dialog/glyphs.cpp:73 -#: ../src/ui/dialog/glyphs.cpp:185 +#: ../src/ui/dialog/glyphs.cpp:73 ../src/ui/dialog/glyphs.cpp:185 msgid "Georgian" msgstr "Géorgien" @@ -15927,13 +16657,11 @@ msgstr "Gothique" msgid "Greek" msgstr "Grec" -#: ../src/ui/dialog/glyphs.cpp:76 -#: ../src/ui/dialog/glyphs.cpp:174 +#: ../src/ui/dialog/glyphs.cpp:76 ../src/ui/dialog/glyphs.cpp:174 msgid "Gujarati" msgstr "Goudjarati" -#: ../src/ui/dialog/glyphs.cpp:77 -#: ../src/ui/dialog/glyphs.cpp:173 +#: ../src/ui/dialog/glyphs.cpp:77 ../src/ui/dialog/glyphs.cpp:173 msgid "Gurmukhi" msgstr "Gourmoukhî" @@ -15945,33 +16673,27 @@ msgstr "Han" msgid "Hangul" msgstr "Hangûl" -#: ../src/ui/dialog/glyphs.cpp:80 -#: ../src/ui/dialog/glyphs.cpp:164 +#: ../src/ui/dialog/glyphs.cpp:80 ../src/ui/dialog/glyphs.cpp:164 msgid "Hebrew" msgstr "Hébreu" -#: ../src/ui/dialog/glyphs.cpp:81 -#: ../src/ui/dialog/glyphs.cpp:252 +#: ../src/ui/dialog/glyphs.cpp:81 ../src/ui/dialog/glyphs.cpp:252 msgid "Hiragana" msgstr "Hiragana" -#: ../src/ui/dialog/glyphs.cpp:82 -#: ../src/ui/dialog/glyphs.cpp:178 +#: ../src/ui/dialog/glyphs.cpp:82 ../src/ui/dialog/glyphs.cpp:178 msgid "Kannada" msgstr "Kannara" -#: ../src/ui/dialog/glyphs.cpp:83 -#: ../src/ui/dialog/glyphs.cpp:253 +#: ../src/ui/dialog/glyphs.cpp:83 ../src/ui/dialog/glyphs.cpp:253 msgid "Katakana" msgstr "Katakana" -#: ../src/ui/dialog/glyphs.cpp:84 -#: ../src/ui/dialog/glyphs.cpp:197 +#: ../src/ui/dialog/glyphs.cpp:84 ../src/ui/dialog/glyphs.cpp:197 msgid "Khmer" msgstr "Khmer" -#: ../src/ui/dialog/glyphs.cpp:85 -#: ../src/ui/dialog/glyphs.cpp:182 +#: ../src/ui/dialog/glyphs.cpp:85 ../src/ui/dialog/glyphs.cpp:182 msgid "Lao" msgstr "Lao" @@ -15979,23 +16701,19 @@ msgstr "Lao" msgid "Latin" msgstr "Latin" -#: ../src/ui/dialog/glyphs.cpp:87 -#: ../src/ui/dialog/glyphs.cpp:179 +#: ../src/ui/dialog/glyphs.cpp:87 ../src/ui/dialog/glyphs.cpp:179 msgid "Malayalam" msgstr "Malayalam" -#: ../src/ui/dialog/glyphs.cpp:88 -#: ../src/ui/dialog/glyphs.cpp:198 +#: ../src/ui/dialog/glyphs.cpp:88 ../src/ui/dialog/glyphs.cpp:198 msgid "Mongolian" msgstr "Mongol" -#: ../src/ui/dialog/glyphs.cpp:89 -#: ../src/ui/dialog/glyphs.cpp:184 +#: ../src/ui/dialog/glyphs.cpp:89 ../src/ui/dialog/glyphs.cpp:184 msgid "Myanmar" msgstr "Birman" -#: ../src/ui/dialog/glyphs.cpp:90 -#: ../src/ui/dialog/glyphs.cpp:191 +#: ../src/ui/dialog/glyphs.cpp:90 ../src/ui/dialog/glyphs.cpp:191 msgid "Ogham" msgstr "Ogam" @@ -16003,48 +16721,39 @@ msgstr "Ogam" msgid "Old Italic" msgstr "Vieil italique" -#: ../src/ui/dialog/glyphs.cpp:92 -#: ../src/ui/dialog/glyphs.cpp:175 +#: ../src/ui/dialog/glyphs.cpp:92 ../src/ui/dialog/glyphs.cpp:175 msgid "Oriya" msgstr "Oriya" -#: ../src/ui/dialog/glyphs.cpp:93 -#: ../src/ui/dialog/glyphs.cpp:192 +#: ../src/ui/dialog/glyphs.cpp:93 ../src/ui/dialog/glyphs.cpp:192 msgid "Runic" msgstr "Runes" -#: ../src/ui/dialog/glyphs.cpp:94 -#: ../src/ui/dialog/glyphs.cpp:180 +#: ../src/ui/dialog/glyphs.cpp:94 ../src/ui/dialog/glyphs.cpp:180 msgid "Sinhala" msgstr "Singhalais" -#: ../src/ui/dialog/glyphs.cpp:95 -#: ../src/ui/dialog/glyphs.cpp:166 +#: ../src/ui/dialog/glyphs.cpp:95 ../src/ui/dialog/glyphs.cpp:166 msgid "Syriac" msgstr "Syriaque" -#: ../src/ui/dialog/glyphs.cpp:96 -#: ../src/ui/dialog/glyphs.cpp:176 +#: ../src/ui/dialog/glyphs.cpp:96 ../src/ui/dialog/glyphs.cpp:176 msgid "Tamil" msgstr "Tamoul" -#: ../src/ui/dialog/glyphs.cpp:97 -#: ../src/ui/dialog/glyphs.cpp:177 +#: ../src/ui/dialog/glyphs.cpp:97 ../src/ui/dialog/glyphs.cpp:177 msgid "Telugu" msgstr "Télougou" -#: ../src/ui/dialog/glyphs.cpp:98 -#: ../src/ui/dialog/glyphs.cpp:168 +#: ../src/ui/dialog/glyphs.cpp:98 ../src/ui/dialog/glyphs.cpp:168 msgid "Thaana" msgstr "Thâna" -#: ../src/ui/dialog/glyphs.cpp:99 -#: ../src/ui/dialog/glyphs.cpp:181 +#: ../src/ui/dialog/glyphs.cpp:99 ../src/ui/dialog/glyphs.cpp:181 msgid "Thai" msgstr "Thaï" -#: ../src/ui/dialog/glyphs.cpp:100 -#: ../src/ui/dialog/glyphs.cpp:183 +#: ../src/ui/dialog/glyphs.cpp:100 ../src/ui/dialog/glyphs.cpp:183 msgid "Tibetan" msgstr "Tibétain" @@ -16056,23 +16765,19 @@ msgstr "Syllabaires canadiens" msgid "Yi" msgstr "Yi" -#: ../src/ui/dialog/glyphs.cpp:103 -#: ../src/ui/dialog/glyphs.cpp:193 +#: ../src/ui/dialog/glyphs.cpp:103 ../src/ui/dialog/glyphs.cpp:193 msgid "Tagalog" msgstr "Tagal" -#: ../src/ui/dialog/glyphs.cpp:104 -#: ../src/ui/dialog/glyphs.cpp:194 +#: ../src/ui/dialog/glyphs.cpp:104 ../src/ui/dialog/glyphs.cpp:194 msgid "Hanunoo" msgstr "Hanounóo" -#: ../src/ui/dialog/glyphs.cpp:105 -#: ../src/ui/dialog/glyphs.cpp:195 +#: ../src/ui/dialog/glyphs.cpp:105 ../src/ui/dialog/glyphs.cpp:195 msgid "Buhid" msgstr "Bouhid" -#: ../src/ui/dialog/glyphs.cpp:106 -#: ../src/ui/dialog/glyphs.cpp:196 +#: ../src/ui/dialog/glyphs.cpp:106 ../src/ui/dialog/glyphs.cpp:196 msgid "Tagbanwa" msgstr "Tagbanoua" @@ -16084,8 +16789,7 @@ msgstr "Braille" msgid "Cypriot" msgstr "Syllabaire chypriote" -#: ../src/ui/dialog/glyphs.cpp:109 -#: ../src/ui/dialog/glyphs.cpp:200 +#: ../src/ui/dialog/glyphs.cpp:109 ../src/ui/dialog/glyphs.cpp:200 msgid "Limbu" msgstr "Limbu" @@ -16101,8 +16805,7 @@ msgstr "Shavien" msgid "Linear B" msgstr "Linéaire B" -#: ../src/ui/dialog/glyphs.cpp:113 -#: ../src/ui/dialog/glyphs.cpp:201 +#: ../src/ui/dialog/glyphs.cpp:113 ../src/ui/dialog/glyphs.cpp:201 msgid "Tai Le" msgstr "Taï-le" @@ -16110,28 +16813,23 @@ msgstr "Taï-le" msgid "Ugaritic" msgstr "Ougaritique" -#: ../src/ui/dialog/glyphs.cpp:115 -#: ../src/ui/dialog/glyphs.cpp:202 +#: ../src/ui/dialog/glyphs.cpp:115 ../src/ui/dialog/glyphs.cpp:202 msgid "New Tai Lue" msgstr "Nouveau taï lü" -#: ../src/ui/dialog/glyphs.cpp:116 -#: ../src/ui/dialog/glyphs.cpp:204 +#: ../src/ui/dialog/glyphs.cpp:116 ../src/ui/dialog/glyphs.cpp:204 msgid "Buginese" msgstr "Buginais" -#: ../src/ui/dialog/glyphs.cpp:117 -#: ../src/ui/dialog/glyphs.cpp:240 +#: ../src/ui/dialog/glyphs.cpp:117 ../src/ui/dialog/glyphs.cpp:240 msgid "Glagolitic" msgstr "Glagolitique" -#: ../src/ui/dialog/glyphs.cpp:118 -#: ../src/ui/dialog/glyphs.cpp:244 +#: ../src/ui/dialog/glyphs.cpp:118 ../src/ui/dialog/glyphs.cpp:244 msgid "Tifinagh" msgstr "Tifinaghe" -#: ../src/ui/dialog/glyphs.cpp:119 -#: ../src/ui/dialog/glyphs.cpp:273 +#: ../src/ui/dialog/glyphs.cpp:119 ../src/ui/dialog/glyphs.cpp:273 msgid "Syloti Nagri" msgstr "Sylotî nâgrî" @@ -16147,8 +16845,7 @@ msgstr "Kharochthî" msgid "unassigned" msgstr "Non assigné" -#: ../src/ui/dialog/glyphs.cpp:123 -#: ../src/ui/dialog/glyphs.cpp:206 +#: ../src/ui/dialog/glyphs.cpp:123 ../src/ui/dialog/glyphs.cpp:206 msgid "Balinese" msgstr "Balinais" @@ -16160,8 +16857,7 @@ msgstr "Cunéiforme" msgid "Phoenician" msgstr "Phénicien" -#: ../src/ui/dialog/glyphs.cpp:126 -#: ../src/ui/dialog/glyphs.cpp:275 +#: ../src/ui/dialog/glyphs.cpp:126 ../src/ui/dialog/glyphs.cpp:275 msgid "Phags-pa" msgstr "Phags-pa" @@ -16169,43 +16865,35 @@ msgstr "Phags-pa" msgid "N'Ko" msgstr "N'Ko" -#: ../src/ui/dialog/glyphs.cpp:128 -#: ../src/ui/dialog/glyphs.cpp:278 +#: ../src/ui/dialog/glyphs.cpp:128 ../src/ui/dialog/glyphs.cpp:278 msgid "Kayah Li" msgstr "Kayah Li" -#: ../src/ui/dialog/glyphs.cpp:129 -#: ../src/ui/dialog/glyphs.cpp:208 +#: ../src/ui/dialog/glyphs.cpp:129 ../src/ui/dialog/glyphs.cpp:208 msgid "Lepcha" msgstr "Lepcha" -#: ../src/ui/dialog/glyphs.cpp:130 -#: ../src/ui/dialog/glyphs.cpp:279 +#: ../src/ui/dialog/glyphs.cpp:130 ../src/ui/dialog/glyphs.cpp:279 msgid "Rejang" msgstr "Rejang" -#: ../src/ui/dialog/glyphs.cpp:131 -#: ../src/ui/dialog/glyphs.cpp:207 +#: ../src/ui/dialog/glyphs.cpp:131 ../src/ui/dialog/glyphs.cpp:207 msgid "Sundanese" msgstr "Soundanais" -#: ../src/ui/dialog/glyphs.cpp:132 -#: ../src/ui/dialog/glyphs.cpp:276 +#: ../src/ui/dialog/glyphs.cpp:132 ../src/ui/dialog/glyphs.cpp:276 msgid "Saurashtra" msgstr "Saurashtra" -#: ../src/ui/dialog/glyphs.cpp:133 -#: ../src/ui/dialog/glyphs.cpp:282 +#: ../src/ui/dialog/glyphs.cpp:133 ../src/ui/dialog/glyphs.cpp:282 msgid "Cham" msgstr "Cham" -#: ../src/ui/dialog/glyphs.cpp:134 -#: ../src/ui/dialog/glyphs.cpp:209 +#: ../src/ui/dialog/glyphs.cpp:134 ../src/ui/dialog/glyphs.cpp:209 msgid "Ol Chiki" msgstr "Santâlî" -#: ../src/ui/dialog/glyphs.cpp:135 -#: ../src/ui/dialog/glyphs.cpp:268 +#: ../src/ui/dialog/glyphs.cpp:135 ../src/ui/dialog/glyphs.cpp:268 msgid "Vai" msgstr "Vaï" @@ -16636,8 +17324,7 @@ msgstr "Disposer selon une grille" #: ../src/ui/dialog/grid-arrange-tab.cpp:589 #: ../src/ui/dialog/object-attributes.cpp:66 #: ../src/ui/dialog/object-attributes.cpp:75 -#: ../src/widgets/desktop-widget.cpp:666 -#: ../src/widgets/node-toolbar.cpp:581 +#: ../src/widgets/desktop-widget.cpp:666 ../src/widgets/node-toolbar.cpp:581 msgid "X:" msgstr "X :" @@ -16648,8 +17335,7 @@ msgstr "Espace horizontal entre les colonnes." #: ../src/ui/dialog/grid-arrange-tab.cpp:590 #: ../src/ui/dialog/object-attributes.cpp:67 #: ../src/ui/dialog/object-attributes.cpp:76 -#: ../src/widgets/desktop-widget.cpp:676 -#: ../src/widgets/node-toolbar.cpp:599 +#: ../src/widgets/desktop-widget.cpp:676 ../src/widgets/node-toolbar.cpp:599 msgid "Y:" msgstr "Y :" @@ -16671,7 +17357,9 @@ msgstr "Égaliser la _hauteur" #: ../src/ui/dialog/grid-arrange-tab.cpp:661 msgid "If not set, each row has the height of the tallest object in it" -msgstr "Si décoché, chaque ligne a même la hauteur que l'objet le plus haut qu'elle contient" +msgstr "" +"Si décoché, chaque ligne a même la hauteur que l'objet le plus haut qu'elle " +"contient" #. #### Number of columns #### #: ../src/ui/dialog/grid-arrange-tab.cpp:677 @@ -16688,7 +17376,9 @@ msgstr "Égaliser la _largeur" #: ../src/ui/dialog/grid-arrange-tab.cpp:700 msgid "If not set, each column has the width of the widest object in it" -msgstr "Si décoché, chaque ligne a la même largeur que l'objet le plus large qu'elle contient" +msgstr "" +"Si décoché, chaque ligne a la même largeur que l'objet le plus large qu'elle " +"contient" #. Anchor selection widget #: ../src/ui/dialog/grid-arrange-tab.cpp:711 @@ -16722,8 +17412,7 @@ msgctxt "Guides" msgid "_Y:" msgstr "_Y :" -#: ../src/ui/dialog/guides.cpp:50 -#: ../src/ui/dialog/object-properties.cpp:59 +#: ../src/ui/dialog/guides.cpp:50 ../src/ui/dialog/object-properties.cpp:59 msgid "_Label:" msgstr "É_tiquette :" @@ -16743,12 +17432,12 @@ msgstr "Définir les propriétés d'un guide" msgid "Guideline" msgstr "Ligne de guide" -#: ../src/ui/dialog/guides.cpp:310 +#: ../src/ui/dialog/guides.cpp:311 #, c-format msgid "Guideline ID: %s" msgstr "Id de la ligne de guide : %s" -#: ../src/ui/dialog/guides.cpp:316 +#: ../src/ui/dialog/guides.cpp:317 #, c-format msgid "Current: %s" msgstr "Courant : %s" @@ -16780,8 +17469,11 @@ msgid "Show selection cue" msgstr "Afficher les poignées de sélection" #: ../src/ui/dialog/inkscape-preferences.cpp:184 -msgid "Whether selected objects display a selection cue (the same as in selector)" -msgstr "Si coché, l'objet sélectionné affiche ses poignées de sélection (les mêmes que dans le sélecteur)" +msgid "" +"Whether selected objects display a selection cue (the same as in selector)" +msgstr "" +"Si coché, l'objet sélectionné affiche ses poignées de sélection (les mêmes " +"que dans le sélecteur)" #: ../src/ui/dialog/inkscape-preferences.cpp:190 msgid "Enable gradient editing" @@ -16789,15 +17481,23 @@ msgstr "Activer l'édition de dégradé" #: ../src/ui/dialog/inkscape-preferences.cpp:191 msgid "Whether selected objects display gradient editing controls" -msgstr "Si coché, les objets sélectionnés affichent leurs poignées d'édition de dégradés" +msgstr "" +"Si coché, les objets sélectionnés affichent leurs poignées d'édition de " +"dégradés" #: ../src/ui/dialog/inkscape-preferences.cpp:196 msgid "Conversion to guides uses edges instead of bounding box" -msgstr "Utiliser les bords (plutôt que les boîtes englobantes) pour convertir en guides" +msgstr "" +"Utiliser les bords (plutôt que les boîtes englobantes) pour convertir en " +"guides" #: ../src/ui/dialog/inkscape-preferences.cpp:197 -msgid "Converting an object to guides places these along the object's true edges (imitating the object's shape), not along the bounding box" -msgstr "La conversion d'un objet en guides place ceux-ci le long des bords réels de l'objet (imitant la forme de l'objet), et non le long de sa boîte englobante" +msgid "" +"Converting an object to guides places these along the object's true edges " +"(imitating the object's shape), not along the bounding box" +msgstr "" +"La conversion d'un objet en guides place ceux-ci le long des bords réels de " +"l'objet (imitant la forme de l'objet), et non le long de sa boîte englobante" #: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "Ctrl+click _dot size:" @@ -16809,1371 +17509,1640 @@ msgstr "fois l'épaisseur courante de contour" #: ../src/ui/dialog/inkscape-preferences.cpp:205 msgid "Size of dots created with Ctrl+click (relative to current stroke width)" -msgstr "Taille des points créés avec Ctrl+clic (par rapport à l'épaisseur courante de contour)" +msgstr "" +"Taille des points créés avec Ctrl+clic (par rapport à l'épaisseur courante " +"de contour)" #: ../src/ui/dialog/inkscape-preferences.cpp:220 msgid "No objects selected to take the style from." msgstr "Aucun objet sélectionné pour en capturer le style." #: ../src/ui/dialog/inkscape-preferences.cpp:229 -msgid "More than one object selected. Cannot take style from multiple objects." -msgstr "Plus d'un objet est sélectionné. Impossible de capturer le style de plusieurs objets." +msgid "" +"More than one object selected. Cannot take style from multiple " +"objects." +msgstr "" +"Plus d'un objet est sélectionné. Impossible de capturer le style de " +"plusieurs objets." -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:265 msgid "Style of new objects" msgstr "Style des nouveaux objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:264 +#: ../src/ui/dialog/inkscape-preferences.cpp:267 msgid "Last used style" msgstr "Dernier style utilisé" -#: ../src/ui/dialog/inkscape-preferences.cpp:266 +#: ../src/ui/dialog/inkscape-preferences.cpp:269 msgid "Apply the style you last set on an object" msgstr "Appliquer le dernier style attribué à un objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:274 msgid "This tool's own style:" msgstr "Style propre à l'outil :" -#: ../src/ui/dialog/inkscape-preferences.cpp:275 -msgid "Each tool may store its own style to apply to the newly created objects. Use the button below to set it." -msgstr "Chaque outil retient son propre style à appliquer aux nouveaux objets créés. Utiliser le bouton ci-dessous pour le définir." +#: ../src/ui/dialog/inkscape-preferences.cpp:278 +msgid "" +"Each tool may store its own style to apply to the newly created objects. Use " +"the button below to set it." +msgstr "" +"Chaque outil retient son propre style à appliquer aux nouveaux objets créés. " +"Utiliser le bouton ci-dessous pour le définir." #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:279 +#: ../src/ui/dialog/inkscape-preferences.cpp:282 msgid "Take from selection" msgstr "Capturer depuis la sélection" -#: ../src/ui/dialog/inkscape-preferences.cpp:284 +#: ../src/ui/dialog/inkscape-preferences.cpp:287 msgid "This tool's style of new objects" msgstr "Style de cet outil pour les nouveaux objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:291 +#: ../src/ui/dialog/inkscape-preferences.cpp:294 msgid "Remember the style of the (first) selected object as this tool's style" -msgstr "Mémoriser le style du premier objet sélectionné comme style de cet outil" +msgstr "" +"Mémoriser le style du premier objet sélectionné comme style de cet outil" -#: ../src/ui/dialog/inkscape-preferences.cpp:296 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "Tools" msgstr "Outils" -#: ../src/ui/dialog/inkscape-preferences.cpp:299 +#: ../src/ui/dialog/inkscape-preferences.cpp:302 msgid "Bounding box to use" msgstr "Boîte englobante à utiliser" -#: ../src/ui/dialog/inkscape-preferences.cpp:300 +#: ../src/ui/dialog/inkscape-preferences.cpp:303 msgid "Visual bounding box" msgstr "Boîte englobante visuelle" -#: ../src/ui/dialog/inkscape-preferences.cpp:302 +#: ../src/ui/dialog/inkscape-preferences.cpp:305 msgid "This bounding box includes stroke width, markers, filter margins, etc." -msgstr "Cette boîte englobante comprend l'épaisseur du contour, les marqueurs, les marges des filtres, etc." +msgstr "" +"Cette boîte englobante comprend l'épaisseur du contour, les marqueurs, les " +"marges des filtres, etc." -#: ../src/ui/dialog/inkscape-preferences.cpp:303 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "Geometric bounding box" msgstr "Boîte englobante géométrique" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:308 msgid "This bounding box includes only the bare path" msgstr "Cette boîte englobante ne comprend que le chemin lui-même" -#: ../src/ui/dialog/inkscape-preferences.cpp:307 +#: ../src/ui/dialog/inkscape-preferences.cpp:310 msgid "Conversion to guides" msgstr "Convertion en guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:308 +#: ../src/ui/dialog/inkscape-preferences.cpp:311 msgid "Keep objects after conversion to guides" msgstr "Conserver les objets après leur conversion en guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:310 -msgid "When converting an object to guides, don't delete the object after the conversion" -msgstr "Lors de la conversion d'objets en guides, ne pas supprimer les objets après la conversion" +#: ../src/ui/dialog/inkscape-preferences.cpp:313 +msgid "" +"When converting an object to guides, don't delete the object after the " +"conversion" +msgstr "" +"Lors de la conversion d'objets en guides, ne pas supprimer les objets après " +"la conversion" -#: ../src/ui/dialog/inkscape-preferences.cpp:311 +#: ../src/ui/dialog/inkscape-preferences.cpp:314 msgid "Treat groups as a single object" msgstr "Manipule le groupe comme un objet unique" -#: ../src/ui/dialog/inkscape-preferences.cpp:313 -msgid "Treat groups as a single object during conversion to guides rather than converting each child separately" -msgstr "Lors de la conversion en guides, les groupes sont traités chacun comme un objet unique (la conversion n'est pas appliquée à chaque enfant séparément)" +#: ../src/ui/dialog/inkscape-preferences.cpp:316 +msgid "" +"Treat groups as a single object during conversion to guides rather than " +"converting each child separately" +msgstr "" +"Lors de la conversion en guides, les groupes sont traités chacun comme un " +"objet unique (la conversion n'est pas appliquée à chaque enfant séparément)" -#: ../src/ui/dialog/inkscape-preferences.cpp:315 +#: ../src/ui/dialog/inkscape-preferences.cpp:318 msgid "Average all sketches" msgstr "Moyenner tous les croquis" -#: ../src/ui/dialog/inkscape-preferences.cpp:316 +#: ../src/ui/dialog/inkscape-preferences.cpp:319 msgid "Width is in absolute units" msgstr "Largeur en unités absolues" -#: ../src/ui/dialog/inkscape-preferences.cpp:317 +#: ../src/ui/dialog/inkscape-preferences.cpp:320 msgid "Select new path" msgstr "Sélectionner le nouveau chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:318 +#: ../src/ui/dialog/inkscape-preferences.cpp:321 msgid "Don't attach connectors to text objects" msgstr "Ne pas lier les connecteurs aux objets texte" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:321 +#: ../src/ui/dialog/inkscape-preferences.cpp:324 msgid "Selector" msgstr "Sélecteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:326 +#: ../src/ui/dialog/inkscape-preferences.cpp:329 msgid "When transforming, show" msgstr "Lors des transformations, afficher" -#: ../src/ui/dialog/inkscape-preferences.cpp:327 +#: ../src/ui/dialog/inkscape-preferences.cpp:330 msgid "Objects" msgstr "Objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:329 +#: ../src/ui/dialog/inkscape-preferences.cpp:332 msgid "Show the actual objects when moving or transforming" msgstr "Afficher les objets lors des déplacements ou des transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:333 msgid "Box outline" msgstr "Silhouette rectangulaire" -#: ../src/ui/dialog/inkscape-preferences.cpp:332 +#: ../src/ui/dialog/inkscape-preferences.cpp:335 msgid "Show only a box outline of the objects when moving or transforming" -msgstr "N'afficher que la silhouette rectangulaire des objets lors de leurs déplacements ou transformations" +msgstr "" +"N'afficher que la silhouette rectangulaire des objets lors de leurs " +"déplacements ou transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:333 +#: ../src/ui/dialog/inkscape-preferences.cpp:336 msgid "Per-object selection cue" msgstr "Indication de sélection d'objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:334 +#: ../src/ui/dialog/inkscape-preferences.cpp:337 msgctxt "Selection cue" msgid "None" msgstr "Aucune" -#: ../src/ui/dialog/inkscape-preferences.cpp:336 +#: ../src/ui/dialog/inkscape-preferences.cpp:339 msgid "No per-object selection indication" msgstr "Aucune indication de sélection d'objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:337 +#: ../src/ui/dialog/inkscape-preferences.cpp:340 msgid "Mark" msgstr "Marque" -#: ../src/ui/dialog/inkscape-preferences.cpp:339 +#: ../src/ui/dialog/inkscape-preferences.cpp:342 msgid "Each selected object has a diamond mark in the top left corner" -msgstr "Chaque objet sélectionné est marqué d'un losange dans le coin en haut à gauche" +msgstr "" +"Chaque objet sélectionné est marqué d'un losange dans le coin en haut à " +"gauche" -#: ../src/ui/dialog/inkscape-preferences.cpp:340 +#: ../src/ui/dialog/inkscape-preferences.cpp:343 msgid "Box" msgstr "Boîte" -#: ../src/ui/dialog/inkscape-preferences.cpp:342 +#: ../src/ui/dialog/inkscape-preferences.cpp:345 msgid "Each selected object displays its bounding box" msgstr "Chaque objet sélectionné affiche sa boîte englobante" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:345 +#: ../src/ui/dialog/inkscape-preferences.cpp:348 msgid "Node" msgstr "Nœud" -#: ../src/ui/dialog/inkscape-preferences.cpp:348 +#: ../src/ui/dialog/inkscape-preferences.cpp:351 msgid "Path outline" msgstr "Contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:349 +#: ../src/ui/dialog/inkscape-preferences.cpp:352 msgid "Path outline color" msgstr "Couleur du contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:350 +#: ../src/ui/dialog/inkscape-preferences.cpp:353 msgid "Selects the color used for showing the path outline" msgstr "Sélectionner la couleur utilisée pour le contour du chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:351 +#: ../src/ui/dialog/inkscape-preferences.cpp:354 msgid "Always show outline" msgstr "Toujours afficher le contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:352 +#: ../src/ui/dialog/inkscape-preferences.cpp:355 msgid "Show outlines for all paths, not only invisible paths" -msgstr "Affiche les contours pour tous les chemins, pas seulement les chemins invisibles" +msgstr "" +"Affiche les contours pour tous les chemins, pas seulement les chemins " +"invisibles" -#: ../src/ui/dialog/inkscape-preferences.cpp:353 +#: ../src/ui/dialog/inkscape-preferences.cpp:356 msgid "Update outline when dragging nodes" msgstr "Mettre à jour le contour pendant le déplacement des nœuds" -#: ../src/ui/dialog/inkscape-preferences.cpp:354 -msgid "Update the outline when dragging or transforming nodes; if this is off, the outline will only update when completing a drag" -msgstr "Met à jour le contour pendant le déplacement ou la transformation des nœuds ; lorsque cette option est désactivée, le contour n'est mis à jour qu'à la fin du déplacement" +#: ../src/ui/dialog/inkscape-preferences.cpp:357 +msgid "" +"Update the outline when dragging or transforming nodes; if this is off, the " +"outline will only update when completing a drag" +msgstr "" +"Met à jour le contour pendant le déplacement ou la transformation des " +"nœuds ; lorsque cette option est désactivée, le contour n'est mis à jour " +"qu'à la fin du déplacement" -#: ../src/ui/dialog/inkscape-preferences.cpp:355 +#: ../src/ui/dialog/inkscape-preferences.cpp:358 msgid "Update paths when dragging nodes" msgstr "Mettre à jour les chemins pendant le déplacement des nœuds" -#: ../src/ui/dialog/inkscape-preferences.cpp:356 -msgid "Update paths when dragging or transforming nodes; if this is off, paths will only be updated when completing a drag" -msgstr "Met à jour les chemins pendant le déplacement ou la transformation des nœuds ; lorsque cette option est désactivée, les chemins ne sont mis à jour qu'à la fin du déplacement" +#: ../src/ui/dialog/inkscape-preferences.cpp:359 +msgid "" +"Update paths when dragging or transforming nodes; if this is off, paths will " +"only be updated when completing a drag" +msgstr "" +"Met à jour les chemins pendant le déplacement ou la transformation des " +"nœuds ; lorsque cette option est désactivée, les chemins ne sont mis à jour " +"qu'à la fin du déplacement" -#: ../src/ui/dialog/inkscape-preferences.cpp:357 +#: ../src/ui/dialog/inkscape-preferences.cpp:360 msgid "Show path direction on outlines" msgstr "Afficher la direction des chemins sur le contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:358 -msgid "Visualize the direction of selected paths by drawing small arrows in the middle of each outline segment" -msgstr "Visualise la direction des chemins sélectionnés en dessinant de petites flèches au milieu de chaque segment de contour" +#: ../src/ui/dialog/inkscape-preferences.cpp:361 +msgid "" +"Visualize the direction of selected paths by drawing small arrows in the " +"middle of each outline segment" +msgstr "" +"Visualise la direction des chemins sélectionnés en dessinant de petites " +"flèches au milieu de chaque segment de contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:359 +#: ../src/ui/dialog/inkscape-preferences.cpp:362 msgid "Show temporary path outline" msgstr "Afficher temporairement le contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:360 +#: ../src/ui/dialog/inkscape-preferences.cpp:363 msgid "When hovering over a path, briefly flash its outline" msgstr "Faire clignoter brièvement le contour d'un chemin lors de son survol" -#: ../src/ui/dialog/inkscape-preferences.cpp:361 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "Show temporary outline for selected paths" msgstr "Afficher temporairement le contour des chemins sélectionnés" -#: ../src/ui/dialog/inkscape-preferences.cpp:362 +#: ../src/ui/dialog/inkscape-preferences.cpp:365 msgid "Show temporary outline even when a path is selected for editing" -msgstr "Affiche temporairement le contour même lorsqu'un chemin est sélectionné pour édition" +msgstr "" +"Affiche temporairement le contour même lorsqu'un chemin est sélectionné pour " +"édition" -#: ../src/ui/dialog/inkscape-preferences.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:367 msgid "_Flash time:" msgstr "Durée de _clignotement :" -#: ../src/ui/dialog/inkscape-preferences.cpp:364 -msgid "Specifies how long the path outline will be visible after a mouse-over (in milliseconds); specify 0 to have the outline shown until mouse leaves the path" -msgstr "Définit combien de temps le contour sera visible après son survol par la souris (en millisecondes) ; choisissez 0 pour garder le contour visible jusqu'à ce que la souris quitte le chemin." +#: ../src/ui/dialog/inkscape-preferences.cpp:367 +msgid "" +"Specifies how long the path outline will be visible after a mouse-over (in " +"milliseconds); specify 0 to have the outline shown until mouse leaves the " +"path" +msgstr "" +"Définit combien de temps le contour sera visible après son survol par la " +"souris (en millisecondes) ; choisissez 0 pour garder le contour visible " +"jusqu'à ce que la souris quitte le chemin." -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Editing preferences" msgstr "Préférences d'édition" -#: ../src/ui/dialog/inkscape-preferences.cpp:366 +#: ../src/ui/dialog/inkscape-preferences.cpp:369 msgid "Show transform handles for single nodes" msgstr "Afficher les poignées de transformation pour un nœud seul" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:370 msgid "Show transform handles even when only a single node is selected" -msgstr "Affiche les poignées de transformation même lorsqu'un seul nœud est sélectionné" +msgstr "" +"Affiche les poignées de transformation même lorsqu'un seul nœud est " +"sélectionné" -#: ../src/ui/dialog/inkscape-preferences.cpp:368 +#: ../src/ui/dialog/inkscape-preferences.cpp:371 msgid "Deleting nodes preserves shape" msgstr "La suppression des nœuds préserve la forme" -#: ../src/ui/dialog/inkscape-preferences.cpp:369 -msgid "Move handles next to deleted nodes to resemble original shape; hold Ctrl to get the other behavior" -msgstr "Déplace les poignées près des nœuds supprimés pour conserver la forme originale ; maintenir Ctrl pour désactiver cette fonctionnalité" +#: ../src/ui/dialog/inkscape-preferences.cpp:372 +msgid "" +"Move handles next to deleted nodes to resemble original shape; hold Ctrl to " +"get the other behavior" +msgstr "" +"Déplace les poignées près des nœuds supprimés pour conserver la forme " +"originale ; maintenir Ctrl pour désactiver cette fonctionnalité" #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:372 +#: ../src/ui/dialog/inkscape-preferences.cpp:375 msgid "Tweak" msgstr "Ajuster" -#: ../src/ui/dialog/inkscape-preferences.cpp:373 +#: ../src/ui/dialog/inkscape-preferences.cpp:376 msgid "Object paint style" msgstr "Style de l'outil" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:378 +#: ../src/ui/dialog/inkscape-preferences.cpp:381 #: ../src/widgets/desktop-widget.cpp:631 msgid "Zoom" msgstr "Zoom" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:383 -#: ../src/verbs.cpp:2678 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 ../src/verbs.cpp:2765 msgctxt "ContextVerb" msgid "Measure" msgstr "Mesurer" -#: ../src/ui/dialog/inkscape-preferences.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:388 msgid "Ignore first and last points" msgstr "Ignorer le premier et le dernier point" -#: ../src/ui/dialog/inkscape-preferences.cpp:386 -msgid "The start and end of the measurement tool's control line will not be considered for calculating lengths. Only lengths between actual curve intersections will be displayed." -msgstr "Le début et la fin de la ligne de contrôle de l'outil de mesure ne sont pas pris en compte dans le calcul des longueurs. Seules les longueurs entre les intersections des chemins sont affichées." +#: ../src/ui/dialog/inkscape-preferences.cpp:389 +msgid "" +"The start and end of the measurement tool's control line will not be " +"considered for calculating lengths. Only lengths between actual curve " +"intersections will be displayed." +msgstr "" +"Le début et la fin de la ligne de contrôle de l'outil de mesure ne sont pas " +"pris en compte dans le calcul des longueurs. Seules les longueurs entre les " +"intersections des chemins sont affichées." #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:389 +#: ../src/ui/dialog/inkscape-preferences.cpp:392 msgid "Shapes" msgstr "Formes" -#: ../src/ui/dialog/inkscape-preferences.cpp:421 +#: ../src/ui/dialog/inkscape-preferences.cpp:424 msgid "Sketch mode" msgstr "Mode croquis" -#: ../src/ui/dialog/inkscape-preferences.cpp:423 -msgid "If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch" -msgstr "Si coché, le résultat du croquis sera moyenné avec tous les autres croquis ; sinon, la moyenne sera effectuée entre l'ancien résultat et le nouveau croquis" +#: ../src/ui/dialog/inkscape-preferences.cpp:426 +msgid "" +"If on, the sketch result will be the normal average of all sketches made, " +"instead of averaging the old result with the new sketch" +msgstr "" +"Si coché, le résultat du croquis sera moyenné avec tous les autres croquis ; " +"sinon, la moyenne sera effectuée entre l'ancien résultat et le nouveau " +"croquis" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:426 +#: ../src/ui/dialog/inkscape-preferences.cpp:429 #: ../src/ui/dialog/input.cpp:1485 msgid "Pen" msgstr "Stylo" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:432 +#: ../src/ui/dialog/inkscape-preferences.cpp:435 msgid "Calligraphy" msgstr "Plume calligraphique" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 -msgid "If on, pen width is in absolute units (px) independent of zoom; otherwise pen width depends on zoom so that it looks the same at any zoom" -msgstr "Si coché, la largeur de la plume est en unités absolues (px) indépendemment du zoom; sinon, la largeur de plume dépend du zoom afin de paraître la même quel que soit le zoom" +#: ../src/ui/dialog/inkscape-preferences.cpp:439 +msgid "" +"If on, pen width is in absolute units (px) independent of zoom; otherwise " +"pen width depends on zoom so that it looks the same at any zoom" +msgstr "" +"Si coché, la largeur de la plume est en unités absolues (px) indépendemment " +"du zoom; sinon, la largeur de plume dépend du zoom afin de paraître la même " +"quel que soit le zoom" -#: ../src/ui/dialog/inkscape-preferences.cpp:438 -msgid "If on, each newly created object will be selected (deselecting previous selection)" -msgstr "Activer pour que les nouveaux objets soient automatiquement sélectionnés (à la place de l'ancienne sélection)" +#: ../src/ui/dialog/inkscape-preferences.cpp:441 +msgid "" +"If on, each newly created object will be selected (deselecting previous " +"selection)" +msgstr "" +"Activer pour que les nouveaux objets soient automatiquement sélectionnés (à " +"la place de l'ancienne sélection)" #. Text -#: ../src/ui/dialog/inkscape-preferences.cpp:441 -#: ../src/verbs.cpp:2670 +#: ../src/ui/dialog/inkscape-preferences.cpp:444 ../src/verbs.cpp:2757 msgctxt "ContextVerb" msgid "Text" msgstr "Texte" -#: ../src/ui/dialog/inkscape-preferences.cpp:446 +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Show font samples in the drop-down list" msgstr "Afficher les échantillons de police dans la liste déroulante" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 -msgid "Show font samples alongside font names in the drop-down list in Text bar" -msgstr "Affiche les échantillons de police à côté du nom dans la liste déroulante de la barre de texte" +#: ../src/ui/dialog/inkscape-preferences.cpp:450 +msgid "" +"Show font samples alongside font names in the drop-down list in Text bar" +msgstr "" +"Affiche les échantillons de police à côté du nom dans la liste déroulante de " +"la barre de texte" -#: ../src/ui/dialog/inkscape-preferences.cpp:449 +#: ../src/ui/dialog/inkscape-preferences.cpp:452 msgid "Show font substitution warning dialog" msgstr "Afficher un avertissement lors du remplacement de polices" -#: ../src/ui/dialog/inkscape-preferences.cpp:450 -msgid "Show font substitution warning dialog when requested fonts are not available on the system" -msgstr "Afficher un avertissement de remplacement de police lorsque les polices demandées ne sont pas disponibles" - #: ../src/ui/dialog/inkscape-preferences.cpp:453 +msgid "" +"Show font substitution warning dialog when requested fonts are not available " +"on the system" +msgstr "" +"Afficher un avertissement de remplacement de police lorsque les polices " +"demandées ne sont pas disponibles" + +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Pixel" msgstr "Pixel" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Pica" msgstr "Pica" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Millimeter" msgstr "Millimètre" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Centimeter" msgstr "Centimètre" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Inch" msgstr "Pouce" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Em square" msgstr "Em carré" #. , _("Ex square"), _("Percent") #. , SP_CSS_UNIT_EX, SP_CSS_UNIT_PERCENT -#: ../src/ui/dialog/inkscape-preferences.cpp:456 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Text units" msgstr "Unités de mesure du texte" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "Text size unit type:" msgstr "Unité de mesure pour la taille du texte :" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:462 msgid "Set the type of unit used in the text toolbar and text dialogs" -msgstr "Définir le type d'unité utilisée dans la boîte de dialogue Texte et police et la barre de commande de l'outil texte" +msgstr "" +"Définir le type d'unité utilisée dans la boîte de dialogue Texte et police " +"et la barre de commande de l'outil texte" -#: ../src/ui/dialog/inkscape-preferences.cpp:460 +#: ../src/ui/dialog/inkscape-preferences.cpp:463 msgid "Always output text size in pixels (px)" msgstr "Toujours enregistrer la taille du texte en pixels (px)" -#: ../src/ui/dialog/inkscape-preferences.cpp:461 -msgid "Always convert the text size units above into pixels (px) before saving to file" -msgstr "Toujours convertir la taille du texte en pixels (px) avant d'enregistrer dans un fichier" +#: ../src/ui/dialog/inkscape-preferences.cpp:464 +msgid "" +"Always convert the text size units above into pixels (px) before saving to " +"file" +msgstr "" +"Toujours convertir la taille du texte en pixels (px) avant d'enregistrer " +"dans un fichier" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:466 +#: ../src/ui/dialog/inkscape-preferences.cpp:469 msgid "Spray" msgstr "Aérographe" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:471 +#: ../src/ui/dialog/inkscape-preferences.cpp:474 msgid "Eraser" msgstr "Gomme" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:475 +#: ../src/ui/dialog/inkscape-preferences.cpp:478 msgid "Paint Bucket" msgstr "Remplissage au seau" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:480 -#: ../src/widgets/gradient-selector.cpp:152 -#: ../src/widgets/gradient-selector.cpp:320 +#: ../src/ui/dialog/inkscape-preferences.cpp:483 +#: ../src/widgets/gradient-selector.cpp:134 +#: ../src/widgets/gradient-selector.cpp:302 msgid "Gradient" msgstr "Dégradé" -#: ../src/ui/dialog/inkscape-preferences.cpp:482 +#: ../src/ui/dialog/inkscape-preferences.cpp:485 msgid "Prevent sharing of gradient definitions" msgstr "Interdire le partage des définitions de dégradé" -#: ../src/ui/dialog/inkscape-preferences.cpp:484 -msgid "When on, shared gradient definitions are automatically forked on change; uncheck to allow sharing of gradient definitions so that editing one object may affect other objects using the same gradient" -msgstr "Si coché, les définitions communes de dégradés sont automatiquement dupliquées lors d'une modification; décocher pour autoriser le partage des définitions de dégradé de manière à ce que la modification d'un objet puisse affecter tous les objets utilisant le même dégradé" +#: ../src/ui/dialog/inkscape-preferences.cpp:487 +msgid "" +"When on, shared gradient definitions are automatically forked on change; " +"uncheck to allow sharing of gradient definitions so that editing one object " +"may affect other objects using the same gradient" +msgstr "" +"Si coché, les définitions communes de dégradés sont automatiquement " +"dupliquées lors d'une modification; décocher pour autoriser le partage des " +"définitions de dégradé de manière à ce que la modification d'un objet puisse " +"affecter tous les objets utilisant le même dégradé" -#: ../src/ui/dialog/inkscape-preferences.cpp:485 +#: ../src/ui/dialog/inkscape-preferences.cpp:488 msgid "Use legacy Gradient Editor" msgstr "Utiliser l'ancien éditeur de dégradé" -#: ../src/ui/dialog/inkscape-preferences.cpp:487 -msgid "When on, the Gradient Edit button in the Fill & Stroke dialog will show the legacy Gradient Editor dialog, when off the Gradient Tool will be used" +#: ../src/ui/dialog/inkscape-preferences.cpp:490 +msgid "" +"When on, the Gradient Edit button in the Fill & Stroke dialog will show the " +"legacy Gradient Editor dialog, when off the Gradient Tool will be used" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:490 +#: ../src/ui/dialog/inkscape-preferences.cpp:493 msgid "Linear gradient _angle:" msgstr "_Angle de dégradé linéaire :" -#: ../src/ui/dialog/inkscape-preferences.cpp:491 -msgid "Default angle of new linear gradients in degrees (clockwise from horizontal)" +#: ../src/ui/dialog/inkscape-preferences.cpp:494 +msgid "" +"Default angle of new linear gradients in degrees (clockwise from horizontal)" msgstr "" +"Angle par défaut des nouveaux gradients linéaires (en degrés, dans le sens " +"horaire à partir de l'horizontale)" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:495 +#: ../src/ui/dialog/inkscape-preferences.cpp:498 msgid "Dropper" msgstr "Pipette" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:500 +#: ../src/ui/dialog/inkscape-preferences.cpp:503 msgid "Connector" msgstr "Connecteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:503 +#: ../src/ui/dialog/inkscape-preferences.cpp:506 msgid "If on, connector attachment points will not be shown for text objects" -msgstr "Si coché, les points d'accroche de connecteur ne sont pas montrés pour des objets texte" +msgstr "" +"Si coché, les points d'accroche de connecteur ne sont pas montrés pour des " +"objets texte" #. LPETool #. disabled, because the LPETool is not finished yet. -#: ../src/ui/dialog/inkscape-preferences.cpp:508 +#: ../src/ui/dialog/inkscape-preferences.cpp:511 msgid "LPE Tool" msgstr "Outil effets de chemin en direct" -#: ../src/ui/dialog/inkscape-preferences.cpp:515 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Interface" msgstr "Interface" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "System default" msgstr "Valeur par défaut du système d'exploitation" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Albanian (sq)" msgstr "Albanais (sq)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Amharic (am)" msgstr "Amharique (am)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Arabic (ar)" msgstr "Arabe (ar)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Armenian (hy)" msgstr "Arménien (hy)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Azerbaijani (az)" msgstr "Azéri (az)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Basque (eu)" msgstr "Basque (eu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Belarusian (be)" msgstr "Biélorusse (be)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bulgarian (bg)" msgstr "Bulgare (bg)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bengali (bn)" msgstr "Bengali (bn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bengali/Bangladesh (bn_BD)" msgstr "Bengali/Bengladesh (bn_BD)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Breton (br)" msgstr "Breton (br)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Catalan (ca)" msgstr "Catalan (ca)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Valencian Catalan (ca@valencia)" msgstr "Catalan Valencien (ca@valencia)" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Chinese/China (zh_CN)" msgstr "Chinois/Chine (zh_CN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Chinese/Taiwan (zh_TW)" msgstr "Chinois/Taïwan (zh_TW)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Croatian (hr)" msgstr "Croate (hr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Czech (cs)" msgstr "Tchèque (cs)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Danish (da)" msgstr "Danois (da)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Dutch (nl)" msgstr "Néerlandais (nl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Dzongkha (dz)" msgstr "Dzongkha (dz)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "German (de)" msgstr "Allemand (de)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Greek (el)" msgstr "Grec (el)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "English (en)" msgstr "Anglais (en)" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "English/Australia (en_AU)" msgstr "Anglais/Australie (en_AU)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "English/Canada (en_CA)" msgstr "Anglais/Canada (en_CA)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "English/Great Britain (en_GB)" msgstr "Anglais/Grande-Bretagne (en_GB)" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Pig Latin (en_US@piglatin)" msgstr "Pig Latin (en_US@piglatin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Esperanto (eo)" msgstr "Espéranto (eo)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Estonian (et)" msgstr "Estonien (et)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Farsi (fa)" msgstr "Farsi (fa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Finnish (fi)" msgstr "Finnois (fi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "French (fr)" msgstr "Français (fr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Irish (ga)" msgstr "Irlandais (ga)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Galician (gl)" msgstr "Galicien (gl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Hebrew (he)" msgstr "Hébreu (he)" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Hungarian (hu)" msgstr "Hongrois (hu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Indonesian (id)" msgstr "Indonésien (id)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Italian (it)" msgstr "Italien (it)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Japanese (ja)" msgstr "Japonais (ja)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Khmer (km)" msgstr "Khmer (km)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Kinyarwanda (rw)" msgstr "Kinyarouanda (rw)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Korean (ko)" msgstr "Coréen (ko)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Lithuanian (lt)" msgstr "Lituanien (lt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Latvian (lv)" msgstr "Letton (lv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Macedonian (mk)" msgstr "Macédonien (mk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Mongolian (mn)" msgstr "Mongol (mn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Nepali (ne)" msgstr "Népalais (ne)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Norwegian Bokmål (nb)" msgstr "Norvégien Bokmål (nb)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Norwegian Nynorsk (nn)" msgstr "Norvégien Nynorsk (nn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Panjabi (pa)" msgstr "Panjabi (pa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Polish (pl)" msgstr "Polonais (pl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Portuguese (pt)" msgstr "Portugais (pt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Portuguese/Brazil (pt_BR)" msgstr "Portugais/Brésil (pt_BR)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Romanian (ro)" msgstr "Roumain (ro)" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Russian (ru)" msgstr "Russe (ru)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Serbian (sr)" msgstr "Serbe (sr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Serbian in Latin script (sr@latin)" msgstr "Serbe en alphabet latin (sr@latin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Slovak (sk)" msgstr "Slovaque (sk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Slovenian (sl)" msgstr "Slovène (sl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Spanish (es)" msgstr "Espagnol (es)" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Spanish/Mexico (es_MX)" msgstr "Espagnol/Mexique (es_MX)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Swedish (sv)" msgstr "Suédois (sv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Telugu (te)" msgstr "Télougou (te)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Thai (th)" msgstr "Thaï (th)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Turkish (tr)" msgstr "Turc (tr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Ukrainian (uk)" msgstr "Ukrainien (uk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Vietnamese (vi)" msgstr "Vietnamien (vi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:561 +#: ../src/ui/dialog/inkscape-preferences.cpp:564 msgid "Language (requires restart):" msgstr "Langue (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:562 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "Set the language for menus and number formats" msgstr "Définit la langue pour les menus et les formats numériques" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Large" msgstr "Grand" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Small" msgstr "Petit" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 msgid "Smaller" msgstr "Minuscule" -#: ../src/ui/dialog/inkscape-preferences.cpp:569 +#: ../src/ui/dialog/inkscape-preferences.cpp:572 msgid "Toolbox icon size:" msgstr "Taille des icônes de la barre d'outils :" -#: ../src/ui/dialog/inkscape-preferences.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:573 msgid "Set the size for the tool icons (requires restart)" -msgstr "Définit la taille des icônes de la barre d'outils (nécessite un redémarrage)" +msgstr "" +"Définit la taille des icônes de la barre d'outils (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:573 +#: ../src/ui/dialog/inkscape-preferences.cpp:576 msgid "Control bar icon size:" msgstr "Taille des icônes de la barre de contrôle des outils :" -#: ../src/ui/dialog/inkscape-preferences.cpp:574 -msgid "Set the size for the icons in tools' control bars to use (requires restart)" -msgstr "Définit la taille des icônes de la barre de contrôle des outils (nécessite un redémarrage)" - #: ../src/ui/dialog/inkscape-preferences.cpp:577 +msgid "" +"Set the size for the icons in tools' control bars to use (requires restart)" +msgstr "" +"Définit la taille des icônes de la barre de contrôle des outils (nécessite " +"un redémarrage)" + +#: ../src/ui/dialog/inkscape-preferences.cpp:580 msgid "Secondary toolbar icon size:" msgstr "Taille des icônes de la barre d'outils secondaire :" -#: ../src/ui/dialog/inkscape-preferences.cpp:578 -msgid "Set the size for the icons in secondary toolbars to use (requires restart)" -msgstr "Définit la taille des icônes de la barre d'outils secondaire (nécessite un redémarrage)" - #: ../src/ui/dialog/inkscape-preferences.cpp:581 +msgid "" +"Set the size for the icons in secondary toolbars to use (requires restart)" +msgstr "" +"Définit la taille des icônes de la barre d'outils secondaire (nécessite un " +"redémarrage)" + +#: ../src/ui/dialog/inkscape-preferences.cpp:584 msgid "Work-around color sliders not drawing" msgstr "Contourner le non affichage des barres de défilement de couleur" -#: ../src/ui/dialog/inkscape-preferences.cpp:583 -msgid "When on, will attempt to work around bugs in certain GTK themes drawing color sliders" -msgstr "Si activé, essayera de contourner un défaut d'affichage des barres de défilement de couleur lié à certains thèmes GTK" +#: ../src/ui/dialog/inkscape-preferences.cpp:586 +msgid "" +"When on, will attempt to work around bugs in certain GTK themes drawing " +"color sliders" +msgstr "" +"Si activé, essayera de contourner un défaut d'affichage des barres de " +"défilement de couleur lié à certains thèmes GTK" -#: ../src/ui/dialog/inkscape-preferences.cpp:588 +#: ../src/ui/dialog/inkscape-preferences.cpp:591 msgid "Clear list" msgstr "Effacer la liste" -#: ../src/ui/dialog/inkscape-preferences.cpp:591 +#: ../src/ui/dialog/inkscape-preferences.cpp:594 msgid "Maximum documents in Open _Recent:" msgstr "Nombre maximum de documents _récents :" -#: ../src/ui/dialog/inkscape-preferences.cpp:592 -msgid "Set the maximum length of the Open Recent list in the File menu, or clear the list" -msgstr "Définit la longueur maximum de la liste « Documents récents » dans le menu « Fichier », ou efface la liste" - #: ../src/ui/dialog/inkscape-preferences.cpp:595 +msgid "" +"Set the maximum length of the Open Recent list in the File menu, or clear " +"the list" +msgstr "" +"Définit la longueur maximum de la liste « Documents récents » dans le menu " +"« Fichier », ou efface la liste" + +#: ../src/ui/dialog/inkscape-preferences.cpp:598 msgid "_Zoom correction factor (in %):" msgstr "Niveau de correction du _zoom (en %) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:596 -msgid "Adjust the slider until the length of the ruler on your screen matches its real length. This information is used when zooming to 1:1, 1:2, etc., to display objects in their true sizes" -msgstr "Ajuster le curseur pour faire correspondre la longueur de la règle sur l'écran avec sa vraie valeur. Cette information est utilisée lors des zoom de niveau 1:1, 1:2, etc. pour afficher les objets avec leur taille exacte" - #: ../src/ui/dialog/inkscape-preferences.cpp:599 +msgid "" +"Adjust the slider until the length of the ruler on your screen matches its " +"real length. This information is used when zooming to 1:1, 1:2, etc., to " +"display objects in their true sizes" +msgstr "" +"Ajuster le curseur pour faire correspondre la longueur de la règle sur " +"l'écran avec sa vraie valeur. Cette information est utilisée lors des zoom " +"de niveau 1:1, 1:2, etc. pour afficher les objets avec leur taille exacte" + +#: ../src/ui/dialog/inkscape-preferences.cpp:602 msgid "Enable dynamic relayout for incomplete sections" msgstr "Activer la remise en forme dynamique des sections incomplètes" -#: ../src/ui/dialog/inkscape-preferences.cpp:601 -msgid "When on, will allow dynamic layout of components that are not completely finished being refactored" -msgstr "Lorsqu'activé, autorise la mise en forme dynamique des composants dont le réusinage n'est pas complètement achevé" +#: ../src/ui/dialog/inkscape-preferences.cpp:604 +msgid "" +"When on, will allow dynamic layout of components that are not completely " +"finished being refactored" +msgstr "" +"Lorsqu'activé, autorise la mise en forme dynamique des composants dont le " +"réusinage n'est pas complètement achevé" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:604 +#: ../src/ui/dialog/inkscape-preferences.cpp:607 msgid "Show filter primitives infobox (requires restart)" -msgstr "Affiche la boîte d'information des primitives de filtre (nécessite un redémarrage)" - -#: ../src/ui/dialog/inkscape-preferences.cpp:606 -msgid "Show icons and descriptions for the filter primitives available at the filter effects dialog" -msgstr "Afficher les icônes et les descriptions pour les primitives de filtre disponibles dans la boîte de dialogue des effets de filtre" +msgstr "" +"Affiche la boîte d'information des primitives de filtre (nécessite un " +"redémarrage)" #: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +msgid "" +"Show icons and descriptions for the filter primitives available at the " +"filter effects dialog" +msgstr "" +"Afficher les icônes et les descriptions pour les primitives de filtre " +"disponibles dans la boîte de dialogue des effets de filtre" + +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Icons only" msgstr "Icônes seulement" -#: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Text only" msgstr "Texte seulement" -#: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Icons and text" msgstr "Icônes et texte" -#: ../src/ui/dialog/inkscape-preferences.cpp:614 +#: ../src/ui/dialog/inkscape-preferences.cpp:617 msgid "Dockbar style (requires restart):" msgstr "Style de barre détachable (nécessite un redémarrage) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:615 -msgid "Selects whether the vertical bars on the dockbar will show text labels, icons, or both" +#: ../src/ui/dialog/inkscape-preferences.cpp:618 +msgid "" +"Selects whether the vertical bars on the dockbar will show text labels, " +"icons, or both" msgstr "" +"Défini si les barres verticales affichent dans la barre détachable des " +"labels, des icônes, ou les deux" -#: ../src/ui/dialog/inkscape-preferences.cpp:622 +#: ../src/ui/dialog/inkscape-preferences.cpp:625 msgid "Switcher style (requires restart):" msgstr "Style de bouton de commutation (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:623 -msgid "Selects whether the dockbar switcher will show text labels, icons, or both" +#: ../src/ui/dialog/inkscape-preferences.cpp:626 +msgid "" +"Selects whether the dockbar switcher will show text labels, icons, or both" msgstr "" +"Défini si les sélecteurs de boîtes de dialogue affichent dans la barre " +"détachable des labels, des icônes, ou les deux" #. Windows -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:630 msgid "Save and restore window geometry for each document" -msgstr "Enregistrer et restaurer la géométrie de la fenêtre pour chaque document" +msgstr "" +"Enregistrer et restaurer la géométrie de la fenêtre pour chaque document" -#: ../src/ui/dialog/inkscape-preferences.cpp:628 +#: ../src/ui/dialog/inkscape-preferences.cpp:631 msgid "Remember and use last window's geometry" msgstr "Mémoriser et utiliser la géométrie de la dernière fenêtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 msgid "Don't save window geometry" msgstr "Ne pas enregistrer la géométrie de la fenêtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:631 +#: ../src/ui/dialog/inkscape-preferences.cpp:634 msgid "Save and restore dialogs status" msgstr "Enregistrer et restaurer l'état des boîtes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:632 -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:635 +#: ../src/ui/dialog/inkscape-preferences.cpp:671 msgid "Don't save dialogs status" msgstr "Ne pas enregistrer l'état des boîtes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:634 -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:679 msgid "Dockable" msgstr "Attachable" -#: ../src/ui/dialog/inkscape-preferences.cpp:638 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Native open/save dialogs" msgstr "Boîtes de dialogue Ouvrir et Enregistrer natives" -#: ../src/ui/dialog/inkscape-preferences.cpp:639 +#: ../src/ui/dialog/inkscape-preferences.cpp:642 msgid "GTK open/save dialogs" msgstr "Boîtes de dialogue Ouvrir et Enregistrer GTK" -#: ../src/ui/dialog/inkscape-preferences.cpp:641 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Dialogs are hidden in taskbar" msgstr "Les dialogues sont cachés dans la barre des tâches" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:645 msgid "Save and restore documents viewport" msgstr "Enregistrer et restaurer l'état des boîtes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:643 +#: ../src/ui/dialog/inkscape-preferences.cpp:646 msgid "Zoom when window is resized" msgstr "Zoomer quand la fenêtre est redimensionnée" -#: ../src/ui/dialog/inkscape-preferences.cpp:644 +#: ../src/ui/dialog/inkscape-preferences.cpp:647 msgid "Show close button on dialogs" msgstr "Afficher un bouton de fermeture sur les dialogues" -#: ../src/ui/dialog/inkscape-preferences.cpp:645 +#: ../src/ui/dialog/inkscape-preferences.cpp:648 msgctxt "Dialog on top" msgid "None" msgstr "Non" -#: ../src/ui/dialog/inkscape-preferences.cpp:647 +#: ../src/ui/dialog/inkscape-preferences.cpp:650 msgid "Aggressive" msgstr "Agressif" -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Maximized" msgstr "Maximisée" -#: ../src/ui/dialog/inkscape-preferences.cpp:654 +#: ../src/ui/dialog/inkscape-preferences.cpp:657 msgid "Default window size:" msgstr "Taille de la fenêtre par défaut :" -#: ../src/ui/dialog/inkscape-preferences.cpp:655 +#: ../src/ui/dialog/inkscape-preferences.cpp:658 msgid "Set the default window size" msgstr "Définit la taille de la fenêtre par défaut" -#: ../src/ui/dialog/inkscape-preferences.cpp:658 +#: ../src/ui/dialog/inkscape-preferences.cpp:661 msgid "Saving window geometry (size and position)" msgstr "Enregistrer la géométrie de la fenêtre (taille et position)" -#: ../src/ui/dialog/inkscape-preferences.cpp:660 +#: ../src/ui/dialog/inkscape-preferences.cpp:663 msgid "Let the window manager determine placement of all windows" msgstr "Laisser le gestionnaire de fenêtre placer toutes les fenêtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:662 -msgid "Remember and use the last window's geometry (saves geometry to user preferences)" -msgstr "Mémoriser et utiliser la géométrie de la dernière fenêtre (enregistre la géométrie dans les préférences utilisateur)" +#: ../src/ui/dialog/inkscape-preferences.cpp:665 +msgid "" +"Remember and use the last window's geometry (saves geometry to user " +"preferences)" +msgstr "" +"Mémoriser et utiliser la géométrie de la dernière fenêtre (enregistre la " +"géométrie dans les préférences utilisateur)" -#: ../src/ui/dialog/inkscape-preferences.cpp:664 -msgid "Save and restore window geometry for each document (saves geometry in the document)" -msgstr "Sauver et restaurer la géométrie de la fenêtre pour chaque document (enregistre la géométrie avec le document)" +#: ../src/ui/dialog/inkscape-preferences.cpp:667 +msgid "" +"Save and restore window geometry for each document (saves geometry in the " +"document)" +msgstr "" +"Sauver et restaurer la géométrie de la fenêtre pour chaque document " +"(enregistre la géométrie avec le document)" -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:669 msgid "Saving dialogs status" msgstr "Enregistrer l'état des fenêtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:670 -msgid "Save and restore dialogs status (the last open windows dialogs are saved when it closes)" -msgstr "Enregistrer et restaurer l'état des boîtes de dialogue (dans l'état de la dernière fenêtre fermée)" +#: ../src/ui/dialog/inkscape-preferences.cpp:673 +msgid "" +"Save and restore dialogs status (the last open windows dialogs are saved " +"when it closes)" +msgstr "" +"Enregistrer et restaurer l'état des boîtes de dialogue (dans l'état de la " +"dernière fenêtre fermée)" -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:677 msgid "Dialog behavior (requires restart)" msgstr "Comportement des boîtes de dialogue (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:680 +#: ../src/ui/dialog/inkscape-preferences.cpp:683 msgid "Desktop integration" msgstr "Intégration au bureau" -#: ../src/ui/dialog/inkscape-preferences.cpp:682 +#: ../src/ui/dialog/inkscape-preferences.cpp:685 msgid "Use Windows like open and save dialogs" -msgstr "Utiliser des boîtes de dialogue à la Windows pour l'ouverture et l'enregistrement de fichiers" +msgstr "" +"Utiliser des boîtes de dialogue à la Windows pour l'ouverture et " +"l'enregistrement de fichiers" -#: ../src/ui/dialog/inkscape-preferences.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:687 msgid "Use GTK open and save dialogs " -msgstr "Utiliser les boîtes de dialogue GTK pour l'ouverture et l'enregistrement de fichiers" +msgstr "" +"Utiliser les boîtes de dialogue GTK pour l'ouverture et l'enregistrement de " +"fichiers" -#: ../src/ui/dialog/inkscape-preferences.cpp:688 +#: ../src/ui/dialog/inkscape-preferences.cpp:691 msgid "Dialogs on top:" msgstr "Dialogues au-dessus de la fenêtre :" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:694 msgid "Dialogs are treated as regular windows" msgstr "Les dialogues sont traités comme des fenêtres normales" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:696 msgid "Dialogs stay on top of document windows" msgstr "Les dialogues restent au-dessus des fenêtres de document" -#: ../src/ui/dialog/inkscape-preferences.cpp:695 +#: ../src/ui/dialog/inkscape-preferences.cpp:698 msgid "Same as Normal but may work better with some window managers" -msgstr "Comme Normal, mais fonctionne peut-être mieux avec certains gestionnaires de fenêtres" +msgstr "" +"Comme Normal, mais fonctionne peut-être mieux avec certains gestionnaires de " +"fenêtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 +#: ../src/ui/dialog/inkscape-preferences.cpp:701 msgid "Dialog Transparency" msgstr "Transparence des boîtes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:700 +#: ../src/ui/dialog/inkscape-preferences.cpp:703 msgid "_Opacity when focused:" msgstr "Opacité lorsque la fenêtre est _active :" -#: ../src/ui/dialog/inkscape-preferences.cpp:702 +#: ../src/ui/dialog/inkscape-preferences.cpp:705 msgid "Opacity when _unfocused:" msgstr "Opacité lorsque la fenêtre est _inactive :" -#: ../src/ui/dialog/inkscape-preferences.cpp:704 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "_Time of opacity change animation:" msgstr "_Temps de transition :" -#: ../src/ui/dialog/inkscape-preferences.cpp:707 +#: ../src/ui/dialog/inkscape-preferences.cpp:710 msgid "Miscellaneous" msgstr "Divers" -#: ../src/ui/dialog/inkscape-preferences.cpp:710 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "Whether dialog windows are to be hidden in the window manager taskbar" -msgstr "Si coché, les boîtes de dialogue sont cachées dans la barre des tâches du gestionnaire de fenêtre" +msgstr "" +"Si coché, les boîtes de dialogue sont cachées dans la barre des tâches du " +"gestionnaire de fenêtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:713 -msgid "Zoom drawing when document window is resized, to keep the same area visible (this is the default which can be changed in any window using the button above the right scrollbar)" -msgstr "Si coché, le dessin est rezoomé quand la fenêtre est redimensionnée, pour garder visible la même aire (c'est l'option par défaut qui peut être changée dans toute fenêtre en utilisant le boutton au dessus de la barre de défilement de droite)" +#: ../src/ui/dialog/inkscape-preferences.cpp:716 +msgid "" +"Zoom drawing when document window is resized, to keep the same area visible " +"(this is the default which can be changed in any window using the button " +"above the right scrollbar)" +msgstr "" +"Si coché, le dessin est rezoomé quand la fenêtre est redimensionnée, pour " +"garder visible la même aire (c'est l'option par défaut qui peut être changée " +"dans toute fenêtre en utilisant le boutton au dessus de la barre de " +"défilement de droite)" -#: ../src/ui/dialog/inkscape-preferences.cpp:715 -msgid "Save documents viewport (zoom and panning position). Useful to turn off when sharing version controlled files." +#: ../src/ui/dialog/inkscape-preferences.cpp:718 +msgid "" +"Save documents viewport (zoom and panning position). Useful to turn off when " +"sharing version controlled files." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:717 +#: ../src/ui/dialog/inkscape-preferences.cpp:720 msgid "Whether dialog windows have a close button (requires restart)" -msgstr "Si coché, les boîtes de dialogue ont un bouton de fermeture (nécessite un redémarrage)" +msgstr "" +"Si coché, les boîtes de dialogue ont un bouton de fermeture (nécessite un " +"redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Windows" msgstr "Fenêtres" #. Grids -#: ../src/ui/dialog/inkscape-preferences.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:724 msgid "Line color when zooming out" msgstr "Couleur des lignes pendant le zoom arrière" -#: ../src/ui/dialog/inkscape-preferences.cpp:724 +#: ../src/ui/dialog/inkscape-preferences.cpp:727 msgid "The gridlines will be shown in minor grid line color" -msgstr "Les lignes de grille seront affichées avec la couleur de grille secondaire" +msgstr "" +"Les lignes de grille seront affichées avec la couleur de grille secondaire" -#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/ui/dialog/inkscape-preferences.cpp:729 msgid "The gridlines will be shown in major grid line color" -msgstr "Les lignes de grille seront affichées avec la couleur de grille principale" +msgstr "" +"Les lignes de grille seront affichées avec la couleur de grille principale" -#: ../src/ui/dialog/inkscape-preferences.cpp:728 +#: ../src/ui/dialog/inkscape-preferences.cpp:731 msgid "Default grid settings" msgstr "Réglages par défaut de la grille" -#: ../src/ui/dialog/inkscape-preferences.cpp:734 -#: ../src/ui/dialog/inkscape-preferences.cpp:759 +#: ../src/ui/dialog/inkscape-preferences.cpp:737 +#: ../src/ui/dialog/inkscape-preferences.cpp:762 msgid "Grid units:" msgstr "Unités de la grille :" -#: ../src/ui/dialog/inkscape-preferences.cpp:739 -#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:742 +#: ../src/ui/dialog/inkscape-preferences.cpp:767 msgid "Origin X:" msgstr "Origine X :" -#: ../src/ui/dialog/inkscape-preferences.cpp:740 -#: ../src/ui/dialog/inkscape-preferences.cpp:765 +#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Origin Y:" msgstr "Origine Y :" -#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:748 msgid "Spacing X:" msgstr "Espacement X :" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Spacing Y:" msgstr "Espacement Y :" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:773 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:752 +#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Minor grid line color:" msgstr "Couleur de la grille secondaire :" -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:752 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Color used for normal grid lines" msgstr "Sélectionner la couleur utilisée pour les lignes de la grille normale" -#: ../src/ui/dialog/inkscape-preferences.cpp:750 -#: ../src/ui/dialog/inkscape-preferences.cpp:751 -#: ../src/ui/dialog/inkscape-preferences.cpp:775 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:778 +#: ../src/ui/dialog/inkscape-preferences.cpp:779 msgid "Major grid line color:" msgstr "Couleur de la grille principale :" -#: ../src/ui/dialog/inkscape-preferences.cpp:751 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:779 msgid "Color used for major (highlighted) grid lines" msgstr "Couleur des lignes de la grille principale (mise en valeur)" -#: ../src/ui/dialog/inkscape-preferences.cpp:753 -#: ../src/ui/dialog/inkscape-preferences.cpp:778 +#: ../src/ui/dialog/inkscape-preferences.cpp:756 +#: ../src/ui/dialog/inkscape-preferences.cpp:781 msgid "Major grid line every:" msgstr "Grille principale toutes les :" -#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:757 msgid "Show dots instead of lines" msgstr "Afficher des points plutôt que des lignes" -#: ../src/ui/dialog/inkscape-preferences.cpp:755 +#: ../src/ui/dialog/inkscape-preferences.cpp:758 msgid "If set, display dots at gridpoints instead of gridlines" -msgstr "Cocher pour afficher des points aux intersections de la grille plutôt que des lignes" +msgstr "" +"Cocher pour afficher des points aux intersections de la grille plutôt que " +"des lignes" -#: ../src/ui/dialog/inkscape-preferences.cpp:836 +#: ../src/ui/dialog/inkscape-preferences.cpp:839 msgid "Input/Output" msgstr "Entrée/sortie" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:842 msgid "Use current directory for \"Save As ...\"" msgstr "« Enregistrer sous... » utilise le dossier courant " -#: ../src/ui/dialog/inkscape-preferences.cpp:841 -msgid "When this option is on, the \"Save as...\" and \"Save a Copy\" dialogs will always open in the directory where the currently open document is; when it's off, each will open in the directory where you last saved a file using it" -msgstr "Lorsque cette option est active, les boîtes de dialogue « Enregistrer sous... » et « Enregistrer une copie... » s'ouvrent toujours dans le dossier contenant le document actuellement ouvert ; si l'option est désactivée, elles ouvrent alors le dernier dossier dans lequel un fichier a été enregistré avec ces boîtes de dialogue" +#: ../src/ui/dialog/inkscape-preferences.cpp:844 +#, fuzzy +msgid "" +"When this option is on, the \"Save as...\" and \"Save a Copy...\" dialogs " +"will always open in the directory where the currently open document is; when " +"it's off, each will open in the directory where you last saved a file using " +"it" +msgstr "" +"Lorsque cette option est active, les boîtes de dialogue « Enregistrer " +"sous... » et « Enregistrer une copie... » s'ouvrent toujours dans le dossier " +"contenant le document actuellement ouvert ; si l'option est désactivée, " +"elles ouvrent alors le dernier dossier dans lequel un fichier a été " +"enregistré avec ces boîtes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:846 msgid "Add label comments to printing output" msgstr "Ajouter les labels de commentaires à l'impression" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 -msgid "When on, a comment will be added to the raw print output, marking the rendered output for an object with its label" -msgstr "Si coché, un commentaire est ajouté à l'impression brute, signalant le rendu d'un objet avec son label" +#: ../src/ui/dialog/inkscape-preferences.cpp:848 +msgid "" +"When on, a comment will be added to the raw print output, marking the " +"rendered output for an object with its label" +msgstr "" +"Si coché, un commentaire est ajouté à l'impression brute, signalant le rendu " +"d'un objet avec son label" -#: ../src/ui/dialog/inkscape-preferences.cpp:847 +#: ../src/ui/dialog/inkscape-preferences.cpp:850 msgid "Add default metadata to new documents" msgstr "Ajouter les métadonnées par défaut aux nouveaux documents" -#: ../src/ui/dialog/inkscape-preferences.cpp:849 -msgid "Add default metadata to new documents. Default metadata can be set from Document Properties->Metadata." -msgstr "Ajoute les métadonnées par défaut dans les nouveaux documents. Ces métadonnées peuvent être définies dans Propriétés du document>Métadonnées." +#: ../src/ui/dialog/inkscape-preferences.cpp:852 +msgid "" +"Add default metadata to new documents. Default metadata can be set from " +"Document Properties->Metadata." +msgstr "" +"Ajoute les métadonnées par défaut dans les nouveaux documents. Ces " +"métadonnées peuvent être définies dans Propriétés du document>Métadonnées." -#: ../src/ui/dialog/inkscape-preferences.cpp:853 +#: ../src/ui/dialog/inkscape-preferences.cpp:856 msgid "_Grab sensitivity:" msgstr "Sensibilité de _capture :" -#: ../src/ui/dialog/inkscape-preferences.cpp:853 +#: ../src/ui/dialog/inkscape-preferences.cpp:856 msgid "pixels (requires restart)" msgstr "pixels (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:854 -msgid "How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)" -msgstr "Distance à partir de laquelle on peut saisir un objet à l'écran avec la souris (en pixels d'écran)" +#: ../src/ui/dialog/inkscape-preferences.cpp:857 +msgid "" +"How close on the screen you need to be to an object to be able to grab it " +"with mouse (in screen pixels)" +msgstr "" +"Distance à partir de laquelle on peut saisir un objet à l'écran avec la " +"souris (en pixels d'écran)" -#: ../src/ui/dialog/inkscape-preferences.cpp:856 +#: ../src/ui/dialog/inkscape-preferences.cpp:859 msgid "_Click/drag threshold:" msgstr "_Seuil de cliquer-déplacer :" -#: ../src/ui/dialog/inkscape-preferences.cpp:856 -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 -#: ../src/ui/dialog/inkscape-preferences.cpp:1212 +#: ../src/ui/dialog/inkscape-preferences.cpp:859 +#: ../src/ui/dialog/inkscape-preferences.cpp:1201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1215 msgid "pixels" msgstr "pixels" -#: ../src/ui/dialog/inkscape-preferences.cpp:857 -msgid "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" -msgstr "Déplacement maximal de la souris (en pixels d'écran) considéré comme un clic et non comme un déplacement" - #: ../src/ui/dialog/inkscape-preferences.cpp:860 +msgid "" +"Maximum mouse drag (in screen pixels) which is considered a click, not a drag" +msgstr "" +"Déplacement maximal de la souris (en pixels d'écran) considéré comme un clic " +"et non comme un déplacement" + +#: ../src/ui/dialog/inkscape-preferences.cpp:863 msgid "_Handle size:" msgstr "Taille de la _poignée :" -#: ../src/ui/dialog/inkscape-preferences.cpp:861 +#: ../src/ui/dialog/inkscape-preferences.cpp:864 msgid "Set the relative size of node handles" msgstr "Définir la taille relative des poignées de nœuds" -#: ../src/ui/dialog/inkscape-preferences.cpp:863 +#: ../src/ui/dialog/inkscape-preferences.cpp:866 msgid "Use pressure-sensitive tablet (requires restart)" -msgstr "Utiliser une tablette graphique sensible à la pression (nécessite un redémarrage)" +msgstr "" +"Utiliser une tablette graphique sensible à la pression (nécessite un " +"redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:865 -msgid "Use the capabilities of a tablet or other pressure-sensitive device. Disable this only if you have problems with the tablet (you can still use it as a mouse)" -msgstr "Utiliser les possibilités offertes par une tablette graphique ou un autre périphérique sensible à la pression. Désactivez ceci uniquement si vous rencontrez des problèmes avec la tablette (vous pourrez néanmoins continuer à l'utiliser comme souris)" +#: ../src/ui/dialog/inkscape-preferences.cpp:868 +msgid "" +"Use the capabilities of a tablet or other pressure-sensitive device. Disable " +"this only if you have problems with the tablet (you can still use it as a " +"mouse)" +msgstr "" +"Utiliser les possibilités offertes par une tablette graphique ou un autre " +"périphérique sensible à la pression. Désactivez ceci uniquement si vous " +"rencontrez des problèmes avec la tablette (vous pourrez néanmoins continuer " +"à l'utiliser comme souris)" -#: ../src/ui/dialog/inkscape-preferences.cpp:867 +#: ../src/ui/dialog/inkscape-preferences.cpp:870 msgid "Switch tool based on tablet device (requires restart)" -msgstr "Change d'outil en fonction des dispositifs de tablette (nécessite un redémarrage)" +msgstr "" +"Change d'outil en fonction des dispositifs de tablette (nécessite un " +"redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:869 -msgid "Change tool as different devices are used on the tablet (pen, eraser, mouse)" -msgstr "Change d'outil lorsque des dispositifs différents sont utilisés sur la tablette (crayon, gomme, souris)" +#: ../src/ui/dialog/inkscape-preferences.cpp:872 +msgid "" +"Change tool as different devices are used on the tablet (pen, eraser, mouse)" +msgstr "" +"Change d'outil lorsque des dispositifs différents sont utilisés sur la " +"tablette (crayon, gomme, souris)" -#: ../src/ui/dialog/inkscape-preferences.cpp:870 +#: ../src/ui/dialog/inkscape-preferences.cpp:873 msgid "Input devices" msgstr "Périphériques de saisie" #. SVG output options -#: ../src/ui/dialog/inkscape-preferences.cpp:873 +#: ../src/ui/dialog/inkscape-preferences.cpp:876 msgid "Use named colors" msgstr "Utiliser les couleurs nommées" -#: ../src/ui/dialog/inkscape-preferences.cpp:874 -msgid "If set, write the CSS name of the color when available (e.g. 'red' or 'magenta') instead of the numeric value" -msgstr "Si coché, écrit le nom CSS de la couleur si elle est disponible (rouge ou magenta, par exemple) à la place de sa valeur numérique" +#: ../src/ui/dialog/inkscape-preferences.cpp:877 +msgid "" +"If set, write the CSS name of the color when available (e.g. 'red' or " +"'magenta') instead of the numeric value" +msgstr "" +"Si coché, écrit le nom CSS de la couleur si elle est disponible (rouge ou " +"magenta, par exemple) à la place de sa valeur numérique" -#: ../src/ui/dialog/inkscape-preferences.cpp:876 +#: ../src/ui/dialog/inkscape-preferences.cpp:879 msgid "XML formatting" msgstr "Formatage XML" -#: ../src/ui/dialog/inkscape-preferences.cpp:878 +#: ../src/ui/dialog/inkscape-preferences.cpp:881 msgid "Inline attributes" msgstr "Attributs en ligne" -#: ../src/ui/dialog/inkscape-preferences.cpp:879 +#: ../src/ui/dialog/inkscape-preferences.cpp:882 msgid "Put attributes on the same line as the element tag" msgstr "Place les attributs sur la même ligne que l'étiquette de l'élément" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 +#: ../src/ui/dialog/inkscape-preferences.cpp:885 msgid "_Indent, spaces:" msgstr "_Distance d'indentation (en espaces) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 -msgid "The number of spaces to use for indenting nested elements; set to 0 for no indentation" -msgstr "Le nombre d'espaces utilisés pour l'indentation d'éléments imbriqués ; définir à 0 pour désactiver l'indentation" +#: ../src/ui/dialog/inkscape-preferences.cpp:885 +msgid "" +"The number of spaces to use for indenting nested elements; set to 0 for no " +"indentation" +msgstr "" +"Le nombre d'espaces utilisés pour l'indentation d'éléments imbriqués ; " +"définir à 0 pour désactiver l'indentation" -#: ../src/ui/dialog/inkscape-preferences.cpp:884 +#: ../src/ui/dialog/inkscape-preferences.cpp:887 msgid "Path data" msgstr "Données de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 msgid "Absolute" -msgstr "" +msgstr "Absolu" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 msgid "Relative" msgstr "Relatif" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 +#: ../src/ui/dialog/inkscape-preferences.cpp:1180 msgid "Optimized" msgstr "Optimisé" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:894 msgid "Path string format:" -msgstr "" +msgstr "Format de la chaîne du chemin :" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 -msgid "Path data should be written: only with absolute coordinates, only with relative coordinates, or optimized for string length (mixed absolute and relative coordinates)" +#: ../src/ui/dialog/inkscape-preferences.cpp:894 +msgid "" +"Path data should be written: only with absolute coordinates, only with " +"relative coordinates, or optimized for string length (mixed absolute and " +"relative coordinates)" msgstr "" +"Les données de chemin doivent être écrite : seulement avec des coordonnées " +"absolues, seulement avec des coordonnées relatives, ou optimisées en " +"fonction de la longueur de la chaîne (mélange de coordonnées relatives et " +"absolues)" -#: ../src/ui/dialog/inkscape-preferences.cpp:893 +#: ../src/ui/dialog/inkscape-preferences.cpp:896 msgid "Force repeat commands" msgstr "Imposer les commandes répétitives" -#: ../src/ui/dialog/inkscape-preferences.cpp:894 -msgid "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')" -msgstr "Si coché, impose la répétition de la même commande de chemin (écrit 'L 1,2 L 3,4' à la place de 'L 1,2 3,4')." +#: ../src/ui/dialog/inkscape-preferences.cpp:897 +msgid "" +"Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead " +"of 'L 1,2 3,4')" +msgstr "" +"Si coché, impose la répétition de la même commande de chemin (écrit 'L 1,2 L " +"3,4' à la place de 'L 1,2 3,4')." -#: ../src/ui/dialog/inkscape-preferences.cpp:896 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Numbers" msgstr "Nombres" -#: ../src/ui/dialog/inkscape-preferences.cpp:899 +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "_Numeric precision:" msgstr "_Précision numérique :" -#: ../src/ui/dialog/inkscape-preferences.cpp:899 +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "Significant figures of the values written to the SVG file" -msgstr "Nombre de chiffres significatifs des valeurs écrites dans le fichier SVG" +msgstr "" +"Nombre de chiffres significatifs des valeurs écrites dans le fichier SVG" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:905 msgid "Minimum _exponent:" msgstr "Exposant _minimum :" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 -msgid "The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero" -msgstr "La taille minimale d'un nombre écrite dans le SVG est 10 à la puissance de cet exposant ; les nombres plus petits s'écriront zéro" +#: ../src/ui/dialog/inkscape-preferences.cpp:905 +msgid "" +"The smallest number written to SVG is 10 to the power of this exponent; " +"anything smaller is written as zero" +msgstr "" +"La taille minimale d'un nombre écrite dans le SVG est 10 à la puissance de " +"cet exposant ; les nombres plus petits s'écriront zéro" #. Code to add controls for attribute checking options #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:907 +#: ../src/ui/dialog/inkscape-preferences.cpp:910 msgid "Improper Attributes Actions" msgstr "En cas d'attributs inappropriés" -#: ../src/ui/dialog/inkscape-preferences.cpp:909 -#: ../src/ui/dialog/inkscape-preferences.cpp:917 -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:912 +#: ../src/ui/dialog/inkscape-preferences.cpp:920 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Print warnings" msgstr "Afficher un avertissement" -#: ../src/ui/dialog/inkscape-preferences.cpp:910 -msgid "Print warning if invalid or non-useful attributes found. Database files located in inkscape_data_dir/attributes." -msgstr "Affiche un avertissement si des attributs invalides ou inappropriés sont détectés. Le fichier de données est disponible dans inkscape_data_dir/attributes." +#: ../src/ui/dialog/inkscape-preferences.cpp:913 +msgid "" +"Print warning if invalid or non-useful attributes found. Database files " +"located in inkscape_data_dir/attributes." +msgstr "" +"Affiche un avertissement si des attributs invalides ou inappropriés sont " +"détectés. Le fichier de données est disponible dans inkscape_data_dir/" +"attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:911 +#: ../src/ui/dialog/inkscape-preferences.cpp:914 msgid "Remove attributes" msgstr "Supprimer les attributs" -#: ../src/ui/dialog/inkscape-preferences.cpp:912 +#: ../src/ui/dialog/inkscape-preferences.cpp:915 msgid "Delete invalid or non-useful attributes from element tag" msgstr "Supprime les éléments invalides ou inappropriés de l'élément" #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:915 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "Inappropriate Style Properties Actions" msgstr "En cas de propriétés de style inappropriées" -#: ../src/ui/dialog/inkscape-preferences.cpp:918 -msgid "Print warning if inappropriate style properties found (i.e. 'font-family' set on a ). Database files located in inkscape_data_dir/attributes." -msgstr "Affiche un avertissement si des propriétés de style inappropriés sont détectés (par exemple 'font-family' dans un élément . Le fichier de données est disponible dans inkscape_data_dir/attributes." +#: ../src/ui/dialog/inkscape-preferences.cpp:921 +msgid "" +"Print warning if inappropriate style properties found (i.e. 'font-family' " +"set on a ). Database files located in inkscape_data_dir/attributes." +msgstr "" +"Affiche un avertissement si des propriétés de style inappropriés sont " +"détectés (par exemple 'font-family' dans un élément . Le fichier de " +"données est disponible dans inkscape_data_dir/attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:919 -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:930 msgid "Remove style properties" msgstr "Supprimer les propriétés de style" -#: ../src/ui/dialog/inkscape-preferences.cpp:920 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Delete inappropriate style properties" msgstr "Supprime les propriétés de style inappropriées" #. Add default or inherited style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:923 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Non-useful Style Properties Actions" msgstr "En cas de propriétés de style inutiles" -#: ../src/ui/dialog/inkscape-preferences.cpp:926 -msgid "Print warning if redundant style properties found (i.e. if a property has the default value and a different value is not inherited or if value is the same as would be inherited). Database files located in inkscape_data_dir/attributes." -msgstr "Affiche un avertissement si des propriétés de style inutiles sont détectés (par exemple si une propriété est définie avec sa valeur par défaut et que cette valeur ne modifie pas l'héritage). Le fichier de données est disponible dans inkscape_data_dir/attributes." +#: ../src/ui/dialog/inkscape-preferences.cpp:929 +msgid "" +"Print warning if redundant style properties found (i.e. if a property has " +"the default value and a different value is not inherited or if value is the " +"same as would be inherited). Database files located in inkscape_data_dir/" +"attributes." +msgstr "" +"Affiche un avertissement si des propriétés de style inutiles sont détectés " +"(par exemple si une propriété est définie avec sa valeur par défaut et que " +"cette valeur ne modifie pas l'héritage). Le fichier de données est " +"disponible dans inkscape_data_dir/attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:928 +#: ../src/ui/dialog/inkscape-preferences.cpp:931 msgid "Delete redundant style properties" msgstr "Supprimer les propriétés de style inutiles" -#: ../src/ui/dialog/inkscape-preferences.cpp:930 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Check Attributes and Style Properties on" msgstr "Vérifier les attributs et propriétés de style" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:935 msgid "Reading" msgstr "Lors de la lecture" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 -msgid "Check attributes and style properties on reading in SVG files (including those internal to Inkscape which will slow down startup)" -msgstr "Vérifier les attributs et les propriétés de style lors de la lecture des fichiers SVG (y compris les fichiers internes à Inkscape, ce qui ralentira le démarrage de l'application)" +#: ../src/ui/dialog/inkscape-preferences.cpp:936 +msgid "" +"Check attributes and style properties on reading in SVG files (including " +"those internal to Inkscape which will slow down startup)" +msgstr "" +"Vérifier les attributs et les propriétés de style lors de la lecture des " +"fichiers SVG (y compris les fichiers internes à Inkscape, ce qui ralentira " +"le démarrage de l'application)" -#: ../src/ui/dialog/inkscape-preferences.cpp:934 +#: ../src/ui/dialog/inkscape-preferences.cpp:937 msgid "Editing" msgstr "Lors de l'édition" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 -msgid "Check attributes and style properties while editing SVG files (may slow down Inkscape, mostly useful for debugging)" -msgstr "Vérifier les attributs et les propriétés de style lors de l'édition des fichiers SVG (peut ralentir Inkscape, à utiliser principalement pour le débogage)" +#: ../src/ui/dialog/inkscape-preferences.cpp:938 +msgid "" +"Check attributes and style properties while editing SVG files (may slow down " +"Inkscape, mostly useful for debugging)" +msgstr "" +"Vérifier les attributs et les propriétés de style lors de l'édition des " +"fichiers SVG (peut ralentir Inkscape, à utiliser principalement pour le " +"débogage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:936 +#: ../src/ui/dialog/inkscape-preferences.cpp:939 msgid "Writing" msgstr "Lors de l'écriture" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:940 msgid "Check attributes and style properties on writing out SVG files" -msgstr "Vérifier les attributs et les propriétés de style lors de l'écriture des fichiers SVG" +msgstr "" +"Vérifier les attributs et les propriétés de style lors de l'écriture des " +"fichiers SVG" -#: ../src/ui/dialog/inkscape-preferences.cpp:939 +#: ../src/ui/dialog/inkscape-preferences.cpp:942 msgid "SVG output" msgstr "Sortie SVG" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Perceptual" msgstr "Perceptif" -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Relative Colorimetric" msgstr "Colorimétrie relative" -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Absolute Colorimetric" msgstr "Colorimétrie absolue" -#: ../src/ui/dialog/inkscape-preferences.cpp:949 +#: ../src/ui/dialog/inkscape-preferences.cpp:952 msgid "(Note: Color management has been disabled in this build)" -msgstr "(NB : les fonctionnalités colorimétriques sont désactivées dans cette version)" +msgstr "" +"(NB : les fonctionnalités colorimétriques sont désactivées dans cette " +"version)" -#: ../src/ui/dialog/inkscape-preferences.cpp:953 +#: ../src/ui/dialog/inkscape-preferences.cpp:956 msgid "Display adjustment" msgstr "Ajustement de l'affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:963 +#: ../src/ui/dialog/inkscape-preferences.cpp:966 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" @@ -18182,137 +19151,157 @@ msgstr "" "Le profil ICC à utiliser pour calibrer l'affichage.\n" "Répertoires parcourus :%s" -#: ../src/ui/dialog/inkscape-preferences.cpp:964 +#: ../src/ui/dialog/inkscape-preferences.cpp:967 msgid "Display profile:" msgstr "Profil d'affichage :" -#: ../src/ui/dialog/inkscape-preferences.cpp:969 +#: ../src/ui/dialog/inkscape-preferences.cpp:972 msgid "Retrieve profile from display" msgstr "Utiliser le profil proposé par le périphérique d'affichage." -#: ../src/ui/dialog/inkscape-preferences.cpp:972 +#: ../src/ui/dialog/inkscape-preferences.cpp:975 msgid "Retrieve profiles from those attached to displays via XICC" -msgstr "Utiliser un profil parmi ceux correspondant aux périphériques d'affichage grâce à XICC" +msgstr "" +"Utiliser un profil parmi ceux correspondant aux périphériques d'affichage " +"grâce à XICC" -#: ../src/ui/dialog/inkscape-preferences.cpp:974 +#: ../src/ui/dialog/inkscape-preferences.cpp:977 msgid "Retrieve profiles from those attached to displays" -msgstr "Utiliser un profil parmi ceux correspondant aux périphériques d'affichage" +msgstr "" +"Utiliser un profil parmi ceux correspondant aux périphériques d'affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:979 +#: ../src/ui/dialog/inkscape-preferences.cpp:982 msgid "Display rendering intent:" msgstr "Intention de rendu de l'affichage :" -#: ../src/ui/dialog/inkscape-preferences.cpp:980 +#: ../src/ui/dialog/inkscape-preferences.cpp:983 msgid "The rendering intent to use to calibrate display output" msgstr "L'intention de rendu à utiliser pour calibrer la sortie de l'affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 +#: ../src/ui/dialog/inkscape-preferences.cpp:985 msgid "Proofing" msgstr "Gestion des couleurs" -#: ../src/ui/dialog/inkscape-preferences.cpp:984 +#: ../src/ui/dialog/inkscape-preferences.cpp:987 msgid "Simulate output on screen" msgstr "Simuler la sortie à l'écran" -#: ../src/ui/dialog/inkscape-preferences.cpp:986 +#: ../src/ui/dialog/inkscape-preferences.cpp:989 msgid "Simulates output of target device" msgstr "Simule la sortie du périphérique cible" -#: ../src/ui/dialog/inkscape-preferences.cpp:988 +#: ../src/ui/dialog/inkscape-preferences.cpp:991 msgid "Mark out of gamut colors" msgstr "Marquer les couleurs hors-gamut" -#: ../src/ui/dialog/inkscape-preferences.cpp:990 +#: ../src/ui/dialog/inkscape-preferences.cpp:993 msgid "Highlights colors that are out of gamut for the target device" -msgstr "Mettre en exergue les couleurs qui sont en-dehors du gamut pour le périphérique cible" +msgstr "" +"Mettre en exergue les couleurs qui sont en-dehors du gamut pour le " +"périphérique cible" -#: ../src/ui/dialog/inkscape-preferences.cpp:1002 +#: ../src/ui/dialog/inkscape-preferences.cpp:1005 msgid "Out of gamut warning color:" msgstr "Couleur d'avertissement hors-gamut :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1003 +#: ../src/ui/dialog/inkscape-preferences.cpp:1006 msgid "Selects the color used for out of gamut warning" msgstr "La couleur utilisée pour prévenir des problèmes de gamut" -#: ../src/ui/dialog/inkscape-preferences.cpp:1005 +#: ../src/ui/dialog/inkscape-preferences.cpp:1008 msgid "Device profile:" msgstr "Profil du périphérique :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1006 +#: ../src/ui/dialog/inkscape-preferences.cpp:1009 msgid "The ICC profile to use to simulate device output" msgstr "Le profil ICC utilisé pour simuler la sortie du périphérique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1009 +#: ../src/ui/dialog/inkscape-preferences.cpp:1012 msgid "Device rendering intent:" msgstr "Intention de rendu du périphérique :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1010 +#: ../src/ui/dialog/inkscape-preferences.cpp:1013 msgid "The rendering intent to use to calibrate device output" -msgstr "L'intention de rendu à utiliser pour calibrer le périphérique de sortie" +msgstr "" +"L'intention de rendu à utiliser pour calibrer le périphérique de sortie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1012 +#: ../src/ui/dialog/inkscape-preferences.cpp:1015 msgid "Black point compensation" msgstr "Compensation du point noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:1014 +#: ../src/ui/dialog/inkscape-preferences.cpp:1017 msgid "Enables black point compensation" msgstr "Active la compensation du point noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:1016 +#: ../src/ui/dialog/inkscape-preferences.cpp:1019 msgid "Preserve black" msgstr "Préserver le noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:1023 +#: ../src/ui/dialog/inkscape-preferences.cpp:1026 msgid "(LittleCMS 1.15 or later required)" msgstr "(LittleCMS 1.15 ou version supérieure requis)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1025 +#: ../src/ui/dialog/inkscape-preferences.cpp:1028 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "Préserver la composante N dans les transformaitons CMJN > CMJN" -#: ../src/ui/dialog/inkscape-preferences.cpp:1039 -#: ../src/widgets/sp-color-icc-selector.cpp:474 -#: ../src/widgets/sp-color-icc-selector.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:1042 +#: ../src/widgets/sp-color-icc-selector.cpp:449 +#: ../src/widgets/sp-color-icc-selector.cpp:741 msgid "" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1084 +#: ../src/ui/dialog/inkscape-preferences.cpp:1087 msgid "Color management" msgstr "Gestion de la couleur" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1087 +#: ../src/ui/dialog/inkscape-preferences.cpp:1090 msgid "Enable autosave (requires restart)" msgstr "Activer l'enregistrement automatique (nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 -msgid "Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash" -msgstr "Enregistre automatiquement les documents en cours, à intervalle donné, pour diminuer les risques de perte de données en cas de plantage de l'application" +#: ../src/ui/dialog/inkscape-preferences.cpp:1091 +msgid "" +"Automatically save the current document(s) at a given interval, thus " +"minimizing loss in case of a crash" +msgstr "" +"Enregistre automatiquement les documents en cours, à intervalle donné, pour " +"diminuer les risques de perte de données en cas de plantage de l'application" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgctxt "Filesystem" msgid "Autosave _directory:" msgstr "_Dossier des enregistrements automatiques :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 -msgid "The directory where autosaves will be written. This should be an absolute path (starts with / on UNIX or a drive letter such as C: on Windows). " +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 +msgid "" +"The directory where autosaves will be written. This should be an absolute " +"path (starts with / on UNIX or a drive letter such as C: on Windows). " msgstr "" +"Dossier dans lequel les enregistrements automatiques sont écrits. Il s'agit " +"d'un chemin absolu (commençant par / sur les systèmes Gnu/Linux ou Unix, ou " +"par la lettre du lecteur, C: par exemple, sous Windows)." -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "_Interval (in minutes):" msgstr "_Intervalle (en minutes) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "Interval (in minutes) at which document will be autosaved" -msgstr "Définit l'intervalle (en minutes) auquel l'espace de travail sera enregistré automatiquement" +msgstr "" +"Définit l'intervalle (en minutes) auquel l'espace de travail sera enregistré " +"automatiquement" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "_Maximum number of autosaves:" msgstr "Nombre _maximum d'enregistrements :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 -msgid "Maximum number of autosaved files; use this to limit the storage space used" -msgstr "Nombre maximum d'enregistrements automatiques ; utiliser cette valeur pour limiter l'espace de stockage utilisé" +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 +msgid "" +"Maximum number of autosaved files; use this to limit the storage space used" +msgstr "" +"Nombre maximum d'enregistrements automatiques ; utiliser cette valeur pour " +"limiter l'espace de stockage utilisé" #. When changing the interval or enabling/disabling the autosave function, #. * update our running configuration @@ -18326,739 +19315,907 @@ msgstr "Nombre maximum d'enregistrements automatiques ; utiliser cette valeur p #. _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE ); #. #. ----------- -#: ../src/ui/dialog/inkscape-preferences.cpp:1113 +#: ../src/ui/dialog/inkscape-preferences.cpp:1116 msgid "Autosave" msgstr "Enregistrement automatique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1117 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Open Clip Art Library _Server Name:" msgstr "Nom du _serveur de bibliothèque Open Clip Art :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1118 -msgid "The server name of the Open Clip Art Library webdav server; it's used by the Import and Export to OCAL function" -msgstr "Le nom du serveur webdav de la bibliothèque Open Clip Art ; il est utilisé par la fonction d'import et export vers OCAL." +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +msgid "" +"The server name of the Open Clip Art Library webdav server; it's used by the " +"Import and Export to OCAL function" +msgstr "" +"Le nom du serveur webdav de la bibliothèque Open Clip Art ; il est utilisé " +"par la fonction d'import et export vers OCAL." -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Open Clip Art Library _Username:" msgstr "Nom d'_utilisateur bibliothèque Open Clip Art :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "The username used to log into Open Clip Art Library" msgstr "Le nom d'utilisateur pour se connecter à la bibliothèque Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Open Clip Art Library _Password:" msgstr "Mot de _passe de la bibliothèque Open Clip Art :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "The password used to log into Open Clip Art Library" msgstr "Le mot de passe pour se connecter à la bibliothèque Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Open Clip Art" msgstr "Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1133 msgid "Behavior" msgstr "Comportement" -#: ../src/ui/dialog/inkscape-preferences.cpp:1134 +#: ../src/ui/dialog/inkscape-preferences.cpp:1137 msgid "_Simplification threshold:" msgstr "_Seuil de simplification :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1135 -msgid "How strong is the Node tool's Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold." -msgstr "Force par défaut de la commande Simplifier. En faisant appel à cette commande plusieurs fois de suite, elle agira de façon de plus en plus agressive ; un appel après une pause restaurera la valeur par défaut." +#: ../src/ui/dialog/inkscape-preferences.cpp:1138 +msgid "" +"How strong is the Node tool's Simplify command by default. If you invoke " +"this command several times in quick succession, it will act more and more " +"aggressively; invoking it again after a pause restores the default threshold." +msgstr "" +"Force par défaut de la commande Simplifier. En faisant appel à cette " +"commande plusieurs fois de suite, elle agira de façon de plus en plus " +"agressive ; un appel après une pause restaurera la valeur par défaut." -#: ../src/ui/dialog/inkscape-preferences.cpp:1137 +#: ../src/ui/dialog/inkscape-preferences.cpp:1140 msgid "Color stock markers the same color as object" msgstr "Colorer les marqueurs par défaut avec la même couleur que l'objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:1138 +#: ../src/ui/dialog/inkscape-preferences.cpp:1141 msgid "Color custom markers the same color as object" msgstr "Colorer les marqueurs personnalisés avec la même couleur que l'objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:1139 -#: ../src/ui/dialog/inkscape-preferences.cpp:1349 +#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1352 msgid "Update marker color when object color changes" -msgstr "Mettre à jour la couleur du marqueur lorsque la couleur de l'objet est modifiée" +msgstr "" +"Mettre à jour la couleur du marqueur lorsque la couleur de l'objet est " +"modifiée" #. Selecting options -#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1145 msgid "Select in all layers" msgstr "Sélectionner dans tous les calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1143 +#: ../src/ui/dialog/inkscape-preferences.cpp:1146 msgid "Select only within current layer" msgstr "Sélectionner seulement dans le calque courant" -#: ../src/ui/dialog/inkscape-preferences.cpp:1144 +#: ../src/ui/dialog/inkscape-preferences.cpp:1147 msgid "Select in current layer and sublayers" msgstr "Sélectionner dans le calque courant et ses sous-calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1145 +#: ../src/ui/dialog/inkscape-preferences.cpp:1148 msgid "Ignore hidden objects and layers" msgstr "Ignorer les objets et calques cachés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1146 +#: ../src/ui/dialog/inkscape-preferences.cpp:1149 msgid "Ignore locked objects and layers" msgstr "Ignorer les objets et calques verrouillés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1147 +#: ../src/ui/dialog/inkscape-preferences.cpp:1150 msgid "Deselect upon layer change" msgstr "Désélectionner en changeant de calque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1150 -msgid "Uncheck this to be able to keep the current objects selected when the current layer changes" -msgstr "Si décoché, les objets sélectionnés restent sélectionnés lorsque vous passez du calque courant à un autre" +#: ../src/ui/dialog/inkscape-preferences.cpp:1153 +msgid "" +"Uncheck this to be able to keep the current objects selected when the " +"current layer changes" +msgstr "" +"Si décoché, les objets sélectionnés restent sélectionnés lorsque vous passez " +"du calque courant à un autre" -#: ../src/ui/dialog/inkscape-preferences.cpp:1152 +#: ../src/ui/dialog/inkscape-preferences.cpp:1155 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "Ctrl+A, Tab, Maj+Tab" -#: ../src/ui/dialog/inkscape-preferences.cpp:1154 +#: ../src/ui/dialog/inkscape-preferences.cpp:1157 msgid "Make keyboard selection commands work on objects in all layers" -msgstr "Les commandes de sélection au clavier s'appliquent aux objets dans tous les calques" +msgstr "" +"Les commandes de sélection au clavier s'appliquent aux objets dans tous les " +"calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1159 msgid "Make keyboard selection commands work on objects in current layer only" -msgstr "Les commandes de sélection au clavier s'appliquent seulement dans le calque courant" +msgstr "" +"Les commandes de sélection au clavier s'appliquent seulement dans le calque " +"courant" -#: ../src/ui/dialog/inkscape-preferences.cpp:1158 -msgid "Make keyboard selection commands work on objects in current layer and all its sublayers" -msgstr "Les commandes de sélection au clavier s'appliquent seulement dans le calque courant et dans ses sous-calques" +#: ../src/ui/dialog/inkscape-preferences.cpp:1161 +msgid "" +"Make keyboard selection commands work on objects in current layer and all " +"its sublayers" +msgstr "" +"Les commandes de sélection au clavier s'appliquent seulement dans le calque " +"courant et dans ses sous-calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1160 -msgid "Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)" -msgstr "Si décoché, la sélection des objets cachés est possible (objets cachés isolés ou appartenant à calque caché)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1163 +msgid "" +"Uncheck this to be able to select objects that are hidden (either by " +"themselves or by being in a hidden layer)" +msgstr "" +"Si décoché, la sélection des objets cachés est possible (objets cachés " +"isolés ou appartenant à calque caché)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 -msgid "Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)" -msgstr "Si décoché, la sélection des objets verrouillés est possible (objets verrouillés isolés ou appartenant à un calque verrouillé)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +msgid "" +"Uncheck this to be able to select objects that are locked (either by " +"themselves or by being in a locked layer)" +msgstr "" +"Si décoché, la sélection des objets verrouillés est possible (objets " +"verrouillés isolés ou appartenant à un calque verrouillé)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1164 +#: ../src/ui/dialog/inkscape-preferences.cpp:1167 msgid "Wrap when cycling objects in z-order" -msgstr "" +msgstr "Défilement continu des objets dans le plan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1166 +#: ../src/ui/dialog/inkscape-preferences.cpp:1169 msgid "Alt+Scroll Wheel" msgstr "Alt+molette" -#: ../src/ui/dialog/inkscape-preferences.cpp:1168 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Wrap around at start and end when cycling objects in z-order" msgstr "" +"Défile la sélection des objets dans le plan en continu, sans arrêt aux " +"objets placés aux extrémités du plan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1173 msgid "Selecting" msgstr "Sélection" #. Transforms options -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 -#: ../src/widgets/select-toolbar.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:1176 +#: ../src/widgets/select-toolbar.cpp:572 msgid "Scale stroke width" msgstr "Redimensionner l'épaisseur du contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1177 msgid "Scale rounded corners in rectangles" msgstr "Redimensionner les coins arrondis des rectangles" -#: ../src/ui/dialog/inkscape-preferences.cpp:1175 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Transform gradients" msgstr "Transformer les dégradés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1176 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 msgid "Transform patterns" msgstr "Transformer les motifs de remplissage" -#: ../src/ui/dialog/inkscape-preferences.cpp:1178 +#: ../src/ui/dialog/inkscape-preferences.cpp:1181 msgid "Preserved" msgstr "Préservé" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 -#: ../src/widgets/select-toolbar.cpp:571 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 +#: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling objects, scale the stroke width by the same proportion" -msgstr "Lors d'un redimensionnement des objets, préserver la proportion des épaisseurs des contours" +msgstr "" +"Lors d'un redimensionnement des objets, préserver la proportion des " +"épaisseurs des contours" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 -#: ../src/widgets/select-toolbar.cpp:582 +#: ../src/ui/dialog/inkscape-preferences.cpp:1186 +#: ../src/widgets/select-toolbar.cpp:584 msgid "When scaling rectangles, scale the radii of rounded corners" -msgstr "Lors du redimensionnements d'un rectangle, préserver la proportion des rayons des coins arrondis" +msgstr "" +"Lors du redimensionnements d'un rectangle, préserver la proportion des " +"rayons des coins arrondis" -#: ../src/ui/dialog/inkscape-preferences.cpp:1185 -#: ../src/widgets/select-toolbar.cpp:593 +#: ../src/ui/dialog/inkscape-preferences.cpp:1188 +#: ../src/widgets/select-toolbar.cpp:595 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "Transformer les dégradés avec les objets (remplissage et contour)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1187 -#: ../src/widgets/select-toolbar.cpp:604 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 +#: ../src/widgets/select-toolbar.cpp:606 msgid "Move patterns (in fill or stroke) along with the objects" -msgstr "Transformer les motifs de remplissage avec les objets (remplissage et contour)" +msgstr "" +"Transformer les motifs de remplissage avec les objets (remplissage et " +"contour)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1188 +#: ../src/ui/dialog/inkscape-preferences.cpp:1191 msgid "Store transformation" msgstr "Enregistrement des transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:1190 -msgid "If possible, apply transformation to objects without adding a transform= attribute" -msgstr "Si possible, appliquer des transformations aux objets sans ajouter l'attribut transform=" +#: ../src/ui/dialog/inkscape-preferences.cpp:1193 +msgid "" +"If possible, apply transformation to objects without adding a transform= " +"attribute" +msgstr "" +"Si possible, appliquer des transformations aux objets sans ajouter " +"l'attribut transform=" -#: ../src/ui/dialog/inkscape-preferences.cpp:1192 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "Always store transformation as a transform= attribute on objects" -msgstr "Toujours enregistrer les transformations dans l'attribut transform= des objets" +msgstr "" +"Toujours enregistrer les transformations dans l'attribut transform= des " +"objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1197 msgid "Transforms" msgstr "Transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1201 msgid "Mouse _wheel scrolls by:" msgstr "La _molette de la souris défile de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 -msgid "One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)" -msgstr "Un cran de la molette de la souris fait défiler de tant de pixels (horizontalement avec Maj)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +msgid "" +"One mouse wheel notch scrolls by this distance in screen pixels " +"(horizontally with Shift)" +msgstr "" +"Un cran de la molette de la souris fait défiler de tant de pixels " +"(horizontalement avec Maj)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1200 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Ctrl+arrows" msgstr "Ctrl+flèches" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "Sc_roll by:" msgstr "Défile_r de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1203 +#: ../src/ui/dialog/inkscape-preferences.cpp:1206 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" -msgstr "Appuyer sur Ctrl+flèches fait défiler de cette distance (en pixels d'écran)" +msgstr "" +"Appuyer sur Ctrl+flèches fait défiler de cette distance (en pixels d'écran)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "_Acceleration:" msgstr "_Accélération :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1206 -msgid "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)" -msgstr "Garder appuyé Ctrl+flèches accélère graduellement la vitesse du défilement (0 pour aucune accélération)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1209 +msgid "" +"Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no " +"acceleration)" +msgstr "" +"Garder appuyé Ctrl+flèches accélère graduellement la vitesse du défilement " +"(0 pour aucune accélération)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 +#: ../src/ui/dialog/inkscape-preferences.cpp:1210 msgid "Autoscrolling" msgstr "Défilement automatique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1209 +#: ../src/ui/dialog/inkscape-preferences.cpp:1212 msgid "_Speed:" msgstr "_Vitesse :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1210 -msgid "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)" -msgstr "Vitesse du défilement automatique de la zone de travail lors que l'on tire un objet au dehors de la zone (0 pour aucun défilement automatique)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +msgid "" +"How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn " +"autoscroll off)" +msgstr "" +"Vitesse du défilement automatique de la zone de travail lors que l'on tire " +"un objet au dehors de la zone (0 pour aucun défilement automatique)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1212 -#: ../src/ui/dialog/tracedialog.cpp:522 -#: ../src/ui/dialog/tracedialog.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:1215 +#: ../src/ui/dialog/tracedialog.cpp:522 ../src/ui/dialog/tracedialog.cpp:721 msgid "_Threshold:" msgstr "_Seuil :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 -msgid "How far (in screen pixels) you need to be from the canvas edge to trigger autoscroll; positive is outside the canvas, negative is within the canvas" -msgstr "Distance (en pixels d'écran) à laquelle il faut être du bord de la zone de travail pour activer le défilement automatique; les valeurs positives sont en dehors de la zone, les négatives à l'intérieur" +#: ../src/ui/dialog/inkscape-preferences.cpp:1216 +msgid "" +"How far (in screen pixels) you need to be from the canvas edge to trigger " +"autoscroll; positive is outside the canvas, negative is within the canvas" +msgstr "" +"Distance (en pixels d'écran) à laquelle il faut être du bord de la zone de " +"travail pour activer le défilement automatique; les valeurs positives sont " +"en dehors de la zone, les négatives à l'intérieur" #. #. _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "/options/spacepans/value", false); #. _page_scrolling.add_line( false, "", _scroll_space, "", #. _("When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)")); #. -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1222 msgid "Mouse wheel zooms by default" msgstr "La molette de la souris zoome par défaut" -#: ../src/ui/dialog/inkscape-preferences.cpp:1221 -msgid "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl" -msgstr "Si coché, la molette de la souris zoome sans la touche Ctrl et fait défiler la zone de travail avec Ctrl ; si décoché, elle zoome avec Ctrl et fait défiler sans Ctrl." +#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +msgid "" +"When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when " +"off, it zooms with Ctrl and scrolls without Ctrl" +msgstr "" +"Si coché, la molette de la souris zoome sans la touche Ctrl et fait défiler " +"la zone de travail avec Ctrl ; si décoché, elle zoome avec Ctrl et fait " +"défiler sans Ctrl." -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "Scrolling" msgstr "Défilement" #. Snapping options -#: ../src/ui/dialog/inkscape-preferences.cpp:1225 +#: ../src/ui/dialog/inkscape-preferences.cpp:1228 msgid "Enable snap indicator" msgstr "Activer le témoin de magnétisme" -#: ../src/ui/dialog/inkscape-preferences.cpp:1227 +#: ../src/ui/dialog/inkscape-preferences.cpp:1230 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "Un symbole est dessiné sur le point d'accrochage après l'opération" -#: ../src/ui/dialog/inkscape-preferences.cpp:1230 +#: ../src/ui/dialog/inkscape-preferences.cpp:1233 msgid "_Delay (in ms):" msgstr "_Délai (en millisecondes) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1231 -msgid "Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate." -msgstr "Diffère le magnétisme aussi longtemps que la souris est en mouvement, puis attend encore une fraction de seconde supplémentaire. Ce délai additionnel est défini ici. Si la valeur est nulle ou très faible, l'aimantation est immédiate." +#: ../src/ui/dialog/inkscape-preferences.cpp:1234 +msgid "" +"Postpone snapping as long as the mouse is moving, and then wait an " +"additional fraction of a second. This additional delay is specified here. " +"When set to zero or to a very small number, snapping will be immediate." +msgstr "" +"Diffère le magnétisme aussi longtemps que la souris est en mouvement, puis " +"attend encore une fraction de seconde supplémentaire. Ce délai additionnel " +"est défini ici. Si la valeur est nulle ou très faible, l'aimantation est " +"immédiate." -#: ../src/ui/dialog/inkscape-preferences.cpp:1233 +#: ../src/ui/dialog/inkscape-preferences.cpp:1236 msgid "Only snap the node closest to the pointer" msgstr "Aimanter seulement le nœud le plus proche du pointeur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1235 -msgid "Only try to snap the node that is initially closest to the mouse pointer" +#: ../src/ui/dialog/inkscape-preferences.cpp:1238 +msgid "" +"Only try to snap the node that is initially closest to the mouse pointer" msgstr "Essayer d'aimanter le nœud initialement le plus proche du pointeur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1238 +#: ../src/ui/dialog/inkscape-preferences.cpp:1241 msgid "_Weight factor:" msgstr "_Coefficient de pondération :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1239 -msgid "When multiple snap solutions are found, then Inkscape can either prefer the closest transformation (when set to 0), or prefer the node that was initially the closest to the pointer (when set to 1)" -msgstr "Lorsque plusieurs aimantations sont possibles, Inkscape choisit soit la transformation la plus proche (si positionné à 0), soit le nœud qui était initialement le plus proche du pointeur (si positionné à 1)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1242 +msgid "" +"When multiple snap solutions are found, then Inkscape can either prefer the " +"closest transformation (when set to 0), or prefer the node that was " +"initially the closest to the pointer (when set to 1)" +msgstr "" +"Lorsque plusieurs aimantations sont possibles, Inkscape choisit soit la " +"transformation la plus proche (si positionné à 0), soit le nœud qui était " +"initialement le plus proche du pointeur (si positionné à 1)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1241 +#: ../src/ui/dialog/inkscape-preferences.cpp:1244 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "Aimanter le pointeur de souris lors du déplacement d'un nœud contraint" -#: ../src/ui/dialog/inkscape-preferences.cpp:1243 -msgid "When dragging a knot along a constraint line, then snap the position of the mouse pointer instead of snapping the projection of the knot onto the constraint line" -msgstr "Lorsqu'un nœud est déplacé le long d'une ligne de contrainte, alors aimanter la position du pointeur de souris plutôt que la projection du nœud sur la ligne de contrainte" +#: ../src/ui/dialog/inkscape-preferences.cpp:1246 +msgid "" +"When dragging a knot along a constraint line, then snap the position of the " +"mouse pointer instead of snapping the projection of the knot onto the " +"constraint line" +msgstr "" +"Lorsqu'un nœud est déplacé le long d'une ligne de contrainte, alors aimanter " +"la position du pointeur de souris plutôt que la projection du nœud sur la " +"ligne de contrainte" -#: ../src/ui/dialog/inkscape-preferences.cpp:1245 +#: ../src/ui/dialog/inkscape-preferences.cpp:1248 msgid "Snapping" msgstr "Magnétisme" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1250 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "_Arrow keys move by:" msgstr "Les _flèches déplacent de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1251 -msgid "Pressing an arrow key moves selected object(s) or node(s) by this distance" -msgstr "Appuyer sur une flèche déplace les objet(s) ou les nœud(s) sélectionnés de cette distance" +#: ../src/ui/dialog/inkscape-preferences.cpp:1254 +msgid "" +"Pressing an arrow key moves selected object(s) or node(s) by this distance" +msgstr "" +"Appuyer sur une flèche déplace les objet(s) ou les nœud(s) sélectionnés de " +"cette distance" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1254 +#: ../src/ui/dialog/inkscape-preferences.cpp:1257 msgid "> and < _scale by:" msgstr "> et < _redimensionnent de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Pressing > or < scales selection up or down by this increment" msgstr "Appuyer sur > ou < redimensionne de cet incrément" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1260 msgid "_Inset/Outset by:" msgstr "_Contracter/dilater de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1258 +#: ../src/ui/dialog/inkscape-preferences.cpp:1261 msgid "Inset and Outset commands displace the path by this distance" -msgstr "Les commandes contracter et dilater déplacent le chemin de cette distance" +msgstr "" +"Les commandes contracter et dilater déplacent le chemin de cette distance" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "Compass-like display of angles" msgstr "Afficher les angles comme sur une boussole" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 -msgid "When on, angles are displayed with 0 at north, 0 to 360 range, positive clockwise; otherwise with 0 at east, -180 to 180 range, positive counterclockwise" -msgstr "Si coché, les angles sont affichés en sens horaire de 0 (au nord) à 360; si décoché, ils sont affichés de -180 à 180 en sens anti-horaire (0 étant à l'est)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1264 +msgid "" +"When on, angles are displayed with 0 at north, 0 to 360 range, positive " +"clockwise; otherwise with 0 at east, -180 to 180 range, positive " +"counterclockwise" +msgstr "" +"Si coché, les angles sont affichés en sens horaire de 0 (au nord) à 360; si " +"décoché, ils sont affichés de -180 à 180 en sens anti-horaire (0 étant à " +"l'est)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1263 +#: ../src/ui/dialog/inkscape-preferences.cpp:1266 msgctxt "Rotation angle" msgid "None" msgstr "Aucun" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1270 msgid "_Rotation snaps every:" msgstr "Incrément de _rotation :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1270 msgid "degrees" msgstr "degrés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1268 -msgid "Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount" -msgstr "Ctrl appuyé forcera des rotations de tant de degrés; de même en appuyant sur [ ou ], les rotations se feront selon cet incrément" +#: ../src/ui/dialog/inkscape-preferences.cpp:1271 +msgid "" +"Rotating with Ctrl pressed snaps every that much degrees; also, pressing " +"[ or ] rotates by this amount" +msgstr "" +"Ctrl appuyé forcera des rotations de tant de degrés; de même en appuyant sur " +"[ ou ], les rotations se feront selon cet incrément" -#: ../src/ui/dialog/inkscape-preferences.cpp:1269 +#: ../src/ui/dialog/inkscape-preferences.cpp:1272 msgid "Relative snapping of guideline angles" msgstr "Aimanter relativement aux angles des guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:1271 -msgid "When on, the snap angles when rotating a guideline will be relative to the original angle" -msgstr "Si coché, l'angle de magnétisme lors de la rotation d'un guide est relatif à l'angle d'origine" +#: ../src/ui/dialog/inkscape-preferences.cpp:1274 +msgid "" +"When on, the snap angles when rotating a guideline will be relative to the " +"original angle" +msgstr "" +"Si coché, l'angle de magnétisme lors de la rotation d'un guide est relatif à " +"l'angle d'origine" -#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/inkscape-preferences.cpp:1276 msgid "_Zoom in/out by:" msgstr "(Dé)_Zoomer de :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/inkscape-preferences.cpp:1276 +#: ../src/ui/dialog/objects.cpp:1622 +#: ../src/ui/widget/filter-effect-chooser.cpp:27 msgid "%" msgstr "%" -#: ../src/ui/dialog/inkscape-preferences.cpp:1274 -msgid "Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier" -msgstr "Les outils de zoom (clic en mode zoom, touches +/-, clic bouton du milieu) zooment ou dézooment selon ce facteur" +#: ../src/ui/dialog/inkscape-preferences.cpp:1277 +msgid "" +"Zoom tool click, +/- keys, and middle click zoom in and out by this " +"multiplier" +msgstr "" +"Les outils de zoom (clic en mode zoom, touches +/-, clic bouton du milieu) " +"zooment ou dézooment selon ce facteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1275 +#: ../src/ui/dialog/inkscape-preferences.cpp:1278 msgid "Steps" msgstr "Incréments" #. Clones options -#: ../src/ui/dialog/inkscape-preferences.cpp:1278 +#: ../src/ui/dialog/inkscape-preferences.cpp:1281 msgid "Move in parallel" msgstr "Sont déplacés en parallèle" -#: ../src/ui/dialog/inkscape-preferences.cpp:1280 +#: ../src/ui/dialog/inkscape-preferences.cpp:1283 msgid "Stay unmoved" msgstr "Ne bougent pas" -#: ../src/ui/dialog/inkscape-preferences.cpp:1282 +#: ../src/ui/dialog/inkscape-preferences.cpp:1285 msgid "Move according to transform" msgstr "Sont déplacés en fonction leurs transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:1284 +#: ../src/ui/dialog/inkscape-preferences.cpp:1287 msgid "Are unlinked" msgstr "Sont déliés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1286 +#: ../src/ui/dialog/inkscape-preferences.cpp:1289 msgid "Are deleted" msgstr "Sont supprimés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1289 +#: ../src/ui/dialog/inkscape-preferences.cpp:1292 msgid "Moving original: clones and linked offsets" msgstr "Lorsque l'original est déplacé, ses clones et ses offsets liés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1291 +#: ../src/ui/dialog/inkscape-preferences.cpp:1294 msgid "Clones are translated by the same vector as their original" msgstr "Les clones sont déplacés du même vecteur que leur original" -#: ../src/ui/dialog/inkscape-preferences.cpp:1293 +#: ../src/ui/dialog/inkscape-preferences.cpp:1296 msgid "Clones preserve their positions when their original is moved" msgstr "Les clones restent sur place quand leur original est déplacé" -#: ../src/ui/dialog/inkscape-preferences.cpp:1295 -msgid "Each clone moves according to the value of its transform= attribute; for example, a rotated clone will move in a different direction than its original" -msgstr "Chaque clone est déplacé en fonction de son attribut transform= ; par exemple, un clone qui a déjà été tourné sera déplacé dans une direction différente de celle de son original" +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 +msgid "" +"Each clone moves according to the value of its transform= attribute; for " +"example, a rotated clone will move in a different direction than its original" +msgstr "" +"Chaque clone est déplacé en fonction de son attribut transform= ; par " +"exemple, un clone qui a déjà été tourné sera déplacé dans une direction " +"différente de celle de son original" -#: ../src/ui/dialog/inkscape-preferences.cpp:1296 +#: ../src/ui/dialog/inkscape-preferences.cpp:1299 msgid "Deleting original: clones" msgstr "Suppression de l'original : clones" -#: ../src/ui/dialog/inkscape-preferences.cpp:1298 +#: ../src/ui/dialog/inkscape-preferences.cpp:1301 msgid "Orphaned clones are converted to regular objects" msgstr "Les clones orphelins sont convertis en objets normaux" -#: ../src/ui/dialog/inkscape-preferences.cpp:1300 +#: ../src/ui/dialog/inkscape-preferences.cpp:1303 msgid "Orphaned clones are deleted along with their original" msgstr "Les clones orphelins sont supprimés en même temps que leur original" -#: ../src/ui/dialog/inkscape-preferences.cpp:1302 +#: ../src/ui/dialog/inkscape-preferences.cpp:1305 msgid "Duplicating original+clones/linked offset" -msgstr "Lors de la duplication d'un original et de ses clones ou de ses offsets liés" +msgstr "" +"Lors de la duplication d'un original et de ses clones ou de ses offsets liés" -#: ../src/ui/dialog/inkscape-preferences.cpp:1304 +#: ../src/ui/dialog/inkscape-preferences.cpp:1307 msgid "Relink duplicated clones" msgstr "Relier les clones dupliqués" -#: ../src/ui/dialog/inkscape-preferences.cpp:1306 -msgid "When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original" -msgstr "Lorsque la sélection dupliquée contient un clone et son original (dans un groupe par exemple), relier le clone dupliqué à l'objet original dupliqué plutôt qu'à l'original initial" +#: ../src/ui/dialog/inkscape-preferences.cpp:1309 +msgid "" +"When duplicating a selection containing both a clone and its original " +"(possibly in groups), relink the duplicated clone to the duplicated original " +"instead of the old original" +msgstr "" +"Lorsque la sélection dupliquée contient un clone et son original (dans un " +"groupe par exemple), relier le clone dupliqué à l'objet original dupliqué " +"plutôt qu'à l'original initial" #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:1309 +#: ../src/ui/dialog/inkscape-preferences.cpp:1312 msgid "Clones" msgstr "Clones" #. Clip paths and masks options -#: ../src/ui/dialog/inkscape-preferences.cpp:1312 +#: ../src/ui/dialog/inkscape-preferences.cpp:1315 msgid "When applying, use the topmost selected object as clippath/mask" -msgstr "Utiliser l'objet le plus haut comme chemin de découpe ou masque lors de l'application" +msgstr "" +"Utiliser l'objet le plus haut comme chemin de découpe ou masque lors de " +"l'application" -#: ../src/ui/dialog/inkscape-preferences.cpp:1314 -msgid "Uncheck this to use the bottom selected object as the clipping path or mask" -msgstr "Si décoché, l'objet le plus en-dessous de la sélection est utilisé comme chemin de découpe ou masque" +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +msgid "" +"Uncheck this to use the bottom selected object as the clipping path or mask" +msgstr "" +"Si décoché, l'objet le plus en-dessous de la sélection est utilisé comme " +"chemin de découpe ou masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1315 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Remove clippath/mask object after applying" msgstr "Supprimer le chemin de découpe ou le masque après application" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 -msgid "After applying, remove the object used as the clipping path or mask from the drawing" -msgstr "Si coché, le chemin de découpe ou masque est supprimé du dessin après avoir été appliqué" +#: ../src/ui/dialog/inkscape-preferences.cpp:1320 +msgid "" +"After applying, remove the object used as the clipping path or mask from the " +"drawing" +msgstr "" +"Si coché, le chemin de découpe ou masque est supprimé du dessin après avoir " +"été appliqué" -#: ../src/ui/dialog/inkscape-preferences.cpp:1319 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Before applying" msgstr "Avant d'appliquer une découpe ou un masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1324 msgid "Do not group clipped/masked objects" msgstr "Ne pas grouper les objets découpés ou masqués" -#: ../src/ui/dialog/inkscape-preferences.cpp:1322 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Put every clipped/masked object in its own group" msgstr "Insérer chaque objet découpé ou masqué dans son propre groupe" -#: ../src/ui/dialog/inkscape-preferences.cpp:1323 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "Put all clipped/masked objects into one group" msgstr "Mettre tous les objets découpés ou masqués dans un même groupe" -#: ../src/ui/dialog/inkscape-preferences.cpp:1326 +#: ../src/ui/dialog/inkscape-preferences.cpp:1329 msgid "Apply clippath/mask to every object" msgstr "Applique la découpe ou le masque à tous les objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:1329 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Apply clippath/mask to groups containing single object" msgstr "Applique la découpe ou le masque à des groupes contenant un objet seul" -#: ../src/ui/dialog/inkscape-preferences.cpp:1332 +#: ../src/ui/dialog/inkscape-preferences.cpp:1335 msgid "Apply clippath/mask to group containing all objects" msgstr "Applique la découpe ou le masque à un groupe contenant tous les objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:1334 +#: ../src/ui/dialog/inkscape-preferences.cpp:1337 msgid "After releasing" msgstr "Après retrait de la découpe ou du masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1336 +#: ../src/ui/dialog/inkscape-preferences.cpp:1339 msgid "Ungroup automatically created groups" msgstr "Dégrouper les groupes créés automatiquement" -#: ../src/ui/dialog/inkscape-preferences.cpp:1338 +#: ../src/ui/dialog/inkscape-preferences.cpp:1341 msgid "Ungroup groups created when setting clip/mask" -msgstr "Dégrouper les groupes créés lors de la mise en place de la découpe ou du masque" +msgstr "" +"Dégrouper les groupes créés lors de la mise en place de la découpe ou du " +"masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1340 +#: ../src/ui/dialog/inkscape-preferences.cpp:1343 msgid "Clippaths and masks" msgstr "Chemins de découpe et masques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1343 +#: ../src/ui/dialog/inkscape-preferences.cpp:1346 msgid "Stroke Style Markers" msgstr "Style de contour des marqueurs" -#: ../src/ui/dialog/inkscape-preferences.cpp:1345 -#: ../src/ui/dialog/inkscape-preferences.cpp:1347 -msgid "Stroke color same as object, fill color either object fill color or marker fill color" +#: ../src/ui/dialog/inkscape-preferences.cpp:1348 +#: ../src/ui/dialog/inkscape-preferences.cpp:1350 +msgid "" +"Stroke color same as object, fill color either object fill color or marker " +"fill color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1351 +#: ../src/ui/dialog/inkscape-preferences.cpp:1354 #: ../share/extensions/hershey.inx.h:27 msgid "Markers" msgstr "Marqueurs" -#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "Document cleanup" msgstr "Nettoyage du document" -#: ../src/ui/dialog/inkscape-preferences.cpp:1355 -#: ../src/ui/dialog/inkscape-preferences.cpp:1357 +#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1360 msgid "Remove unused swatches when doing a document cleanup" msgstr "" +"Supprimer les palettes inutilisées lorsqu'un nettoyage de document est " +"effectué" #. tooltip -#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1361 msgid "Cleanup" msgstr "Nettoyage" -#: ../src/ui/dialog/inkscape-preferences.cpp:1366 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 msgid "Number of _Threads:" msgstr "Nombre de _threads :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "(requires restart)" msgstr "(nécessite un redémarrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:1370 msgid "Configure number of processors/threads to use when rendering filters" -msgstr "Configure le nombre de processeurs/threads à utiliser pour le rendu des filtres" +msgstr "" +"Configure le nombre de processeurs/threads à utiliser pour le rendu des " +"filtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 msgid "Rendering _cache size:" msgstr "Taille du _cache de rendu :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 msgctxt "mebibyte (2^20 bytes) abbreviation" msgid "MiB" msgstr "Mio" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 -msgid "Set the amount of memory per document which can be used to store rendered parts of the drawing for later reuse; set to zero to disable caching" -msgstr "Configure la quantité de mémoire par document pouvant être utilisée pour stocker les parties affichées du dessin pour une réutilisation ultérieure ; positionnez cette valeur à zéro pour désactiver le cache" +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 +msgid "" +"Set the amount of memory per document which can be used to store rendered " +"parts of the drawing for later reuse; set to zero to disable caching" +msgstr "" +"Configure la quantité de mémoire par document pouvant être utilisée pour " +"stocker les parties affichées du dessin pour une réutilisation ultérieure ; " +"positionnez cette valeur à zéro pour désactiver le cache" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:1374 -#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1377 +#: ../src/ui/dialog/inkscape-preferences.cpp:1401 msgid "Best quality (slowest)" msgstr "Haute qualité (le plus lent)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1376 -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1379 +#: ../src/ui/dialog/inkscape-preferences.cpp:1403 msgid "Better quality (slower)" msgstr "Bonne qualité (plus lent)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 -#: ../src/ui/dialog/inkscape-preferences.cpp:1402 +#: ../src/ui/dialog/inkscape-preferences.cpp:1381 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "Average quality" msgstr "Qualité moyenne" -#: ../src/ui/dialog/inkscape-preferences.cpp:1380 -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 +#: ../src/ui/dialog/inkscape-preferences.cpp:1407 msgid "Lower quality (faster)" msgstr "Basse qualité (plus rapide)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1382 -#: ../src/ui/dialog/inkscape-preferences.cpp:1406 +#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1409 msgid "Lowest quality (fastest)" msgstr "Qualité médiocre (le plus rapide)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1388 msgid "Gaussian blur quality for display" msgstr "Qualité d'affichage du flou gaussien" -#: ../src/ui/dialog/inkscape-preferences.cpp:1387 -#: ../src/ui/dialog/inkscape-preferences.cpp:1411 -msgid "Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)" -msgstr "La plus haute qualité, mais l'affichage peut être très lent pour des zooms importants (l'export en bitmap utilise toujours la plus haute qualité)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1390 +#: ../src/ui/dialog/inkscape-preferences.cpp:1414 +msgid "" +"Best quality, but display may be very slow at high zooms (bitmap export " +"always uses best quality)" +msgstr "" +"La plus haute qualité, mais l'affichage peut être très lent pour des zooms " +"importants (l'export en bitmap utilise toujours la plus haute qualité)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1389 -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1392 +#: ../src/ui/dialog/inkscape-preferences.cpp:1416 msgid "Better quality, but slower display" msgstr "Meilleure qualité, mais affichage plus lent" -#: ../src/ui/dialog/inkscape-preferences.cpp:1391 -#: ../src/ui/dialog/inkscape-preferences.cpp:1415 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 +#: ../src/ui/dialog/inkscape-preferences.cpp:1418 msgid "Average quality, acceptable display speed" msgstr "Qualité moyenne, vitesse d'affichage acceptable" -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 -#: ../src/ui/dialog/inkscape-preferences.cpp:1417 +#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1420 msgid "Lower quality (some artifacts), but display is faster" msgstr "Qualité plus faible (présence d'artefacts), mais affichage plus rapide" -#: ../src/ui/dialog/inkscape-preferences.cpp:1395 -#: ../src/ui/dialog/inkscape-preferences.cpp:1419 +#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1422 msgid "Lowest quality (considerable artifacts), but display is fastest" -msgstr "La plus mauvaise qualité (nombreux artefacts), mais l'affichage est bien plus rapide" +msgstr "" +"La plus mauvaise qualité (nombreux artefacts), mais l'affichage est bien " +"plus rapide" -#: ../src/ui/dialog/inkscape-preferences.cpp:1409 +#: ../src/ui/dialog/inkscape-preferences.cpp:1412 msgid "Filter effects quality for display" msgstr "Qualité d'affichage des effets de filtre" #. build custom preferences tab -#: ../src/ui/dialog/inkscape-preferences.cpp:1421 +#: ../src/ui/dialog/inkscape-preferences.cpp:1424 #: ../src/ui/dialog/print.cpp:232 msgid "Rendering" msgstr "Rendu" #. Note: /options/bitmapoversample removed with Cairo renderer -#: ../src/ui/dialog/inkscape-preferences.cpp:1427 -#: ../src/verbs.cpp:156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1430 ../src/verbs.cpp:157 #: ../src/widgets/calligraphy-toolbar.cpp:626 msgid "Edit" msgstr "Édition" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1431 msgid "Automatically reload bitmaps" msgstr "Recharger automatiquement les bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 +#: ../src/ui/dialog/inkscape-preferences.cpp:1433 msgid "Automatically reload linked images when file is changed on disk" -msgstr "Active le rechargement automatique des images liées lorsqu'elles ont été modifiées sur le disque" +msgstr "" +"Active le rechargement automatique des images liées lorsqu'elles ont été " +"modifiées sur le disque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1432 +#: ../src/ui/dialog/inkscape-preferences.cpp:1435 msgid "_Bitmap editor:" msgstr "Éditeur de _bitmap :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1434 -#: ../share/extensions/guillotine.inx.h:5 -#: ../share/extensions/plotter.inx.h:55 +#: ../src/ui/dialog/inkscape-preferences.cpp:1437 +#: ../share/extensions/guillotine.inx.h:5 ../share/extensions/plotter.inx.h:55 #: ../share/extensions/print_win32_vector.inx.h:2 msgid "Export" msgstr "Exporter" -#: ../src/ui/dialog/inkscape-preferences.cpp:1436 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 msgid "Default export _resolution:" msgstr "_Résolution par défaut d'exportation :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1437 +#: ../src/ui/dialog/inkscape-preferences.cpp:1440 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" -msgstr "Résolution par défaut (point par pouce) dans la boîte de dialogue exporter" +msgstr "" +"Résolution par défaut (point par pouce) dans la boîte de dialogue exporter" -#: ../src/ui/dialog/inkscape-preferences.cpp:1438 +#: ../src/ui/dialog/inkscape-preferences.cpp:1441 #: ../src/ui/dialog/xml-tree.cpp:912 msgid "Create" msgstr "Créer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 +#: ../src/ui/dialog/inkscape-preferences.cpp:1443 msgid "Resolution for Create Bitmap _Copy:" msgstr "Résolution pour _Créer une copie bitmap :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1441 +#: ../src/ui/dialog/inkscape-preferences.cpp:1444 msgid "Resolution used by the Create Bitmap Copy command" msgstr "Résolution utilisée par la commande Créer une copie bitmap" -#: ../src/ui/dialog/inkscape-preferences.cpp:1444 +#: ../src/ui/dialog/inkscape-preferences.cpp:1447 msgid "Ask about linking and scaling when importing" msgstr "" +"Demander les options de lien et de mise à l'échelle lors de l'importation" -#: ../src/ui/dialog/inkscape-preferences.cpp:1446 +#: ../src/ui/dialog/inkscape-preferences.cpp:1449 msgid "Pop-up linking and scaling dialog when importing bitmap image." msgstr "" +"Fait apparaître une boîte de dialogue pour sélectionner les options de lien " +"et de mise à l'échelle chaque fois qu'une image matricielle est importée." -#: ../src/ui/dialog/inkscape-preferences.cpp:1452 +#: ../src/ui/dialog/inkscape-preferences.cpp:1455 msgid "Bitmap link:" msgstr "Importation de bitmap :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1459 +#: ../src/ui/dialog/inkscape-preferences.cpp:1462 msgid "Bitmap scale (image-rendering):" -msgstr "" +msgstr "Mise à l'échelle bitmap (rendu de l'image) :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 +#: ../src/ui/dialog/inkscape-preferences.cpp:1467 msgid "Default _import resolution:" msgstr "Résolution par défaut d'_importation :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1465 +#: ../src/ui/dialog/inkscape-preferences.cpp:1468 msgid "Default bitmap resolution (in dots per inch) for bitmap import" -msgstr "Résolution bitmap par défaut (point par pouce) dans la boîte de dialogue importer" +msgstr "" +"Résolution bitmap par défaut (point par pouce) dans la boîte de dialogue " +"importer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1466 +#: ../src/ui/dialog/inkscape-preferences.cpp:1469 msgid "Override file resolution" msgstr "Écraser la résolution du fichier" -#: ../src/ui/dialog/inkscape-preferences.cpp:1468 +#: ../src/ui/dialog/inkscape-preferences.cpp:1471 msgid "Use default bitmap resolution in favor of information from file" -msgstr "Utilise la résolution matricielle par défaut à la place de celle contenue dans le fichier" +msgstr "" +"Utilise la résolution matricielle par défaut à la place de celle contenue " +"dans le fichier" #. rendering outlines for pixmap image tags -#: ../src/ui/dialog/inkscape-preferences.cpp:1472 +#: ../src/ui/dialog/inkscape-preferences.cpp:1475 msgid "Images in Outline Mode" msgstr "Images en mode contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:1473 -msgid "When active will render images while in outline mode instead of a red box with an x. This is useful for manual tracing." +#: ../src/ui/dialog/inkscape-preferences.cpp:1476 +msgid "" +"When active will render images while in outline mode instead of a red box " +"with an x. This is useful for manual tracing." msgstr "" +"Si coché, les images sont affichées en mode contour (à la place de l'image " +"par défaut). Utile pour effectuer une vectorisation manuelle." -#: ../src/ui/dialog/inkscape-preferences.cpp:1475 +#: ../src/ui/dialog/inkscape-preferences.cpp:1478 msgid "Bitmaps" msgstr "Bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1487 -msgid "Select a file of predefined shortcuts to use. Any customized shortcuts you create will be added seperately to " -msgstr "Sélectionnez un fichier de raccourcis prédéfinis à utiliser. Vos modifications seront ajoutées séparément" - #: ../src/ui/dialog/inkscape-preferences.cpp:1490 +msgid "" +"Select a file of predefined shortcuts to use. Any customized shortcuts you " +"create will be added seperately to " +msgstr "" +"Sélectionnez un fichier de raccourcis prédéfinis à utiliser. Vos " +"modifications seront ajoutées séparément" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1493 msgid "Shortcut file:" msgstr "Fichier des raccourcis :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1493 +#: ../src/ui/dialog/inkscape-preferences.cpp:1496 #: ../src/ui/dialog/template-load-tab.cpp:48 msgid "Search:" msgstr "Rechercher :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1505 +#: ../src/ui/dialog/inkscape-preferences.cpp:1508 msgid "Shortcut" msgstr "Raccourci" -#: ../src/ui/dialog/inkscape-preferences.cpp:1506 +#: ../src/ui/dialog/inkscape-preferences.cpp:1509 #: ../src/ui/widget/page-sizer.cpp:260 msgid "Description" msgstr "Description" -#: ../src/ui/dialog/inkscape-preferences.cpp:1561 +#: ../src/ui/dialog/inkscape-preferences.cpp:1564 #: ../src/ui/dialog/pixelartdialog.cpp:296 #: ../src/ui/dialog/svg-fonts-dialog.cpp:698 #: ../src/ui/dialog/tracedialog.cpp:813 @@ -19066,178 +20223,200 @@ msgstr "Description" msgid "Reset" msgstr "Réinitialiser" -#: ../src/ui/dialog/inkscape-preferences.cpp:1561 -msgid "Remove all your customized keyboard shortcuts, and revert to the shortcuts in the shortcut file listed above" -msgstr "Remplace tous les raccourcis clavier personnalisés par ceux définis dans le fichier choisi" +#: ../src/ui/dialog/inkscape-preferences.cpp:1564 +msgid "" +"Remove all your customized keyboard shortcuts, and revert to the shortcuts " +"in the shortcut file listed above" +msgstr "" +"Remplace tous les raccourcis clavier personnalisés par ceux définis dans le " +"fichier choisi" -#: ../src/ui/dialog/inkscape-preferences.cpp:1565 +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Import ..." msgstr "Importer..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1565 +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Import custom keyboard shortcuts from a file" msgstr "Importer des raccourcis clavier personnalisés à partir d'un fichier" -#: ../src/ui/dialog/inkscape-preferences.cpp:1568 +#: ../src/ui/dialog/inkscape-preferences.cpp:1571 msgid "Export ..." msgstr "Exporter..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1568 +#: ../src/ui/dialog/inkscape-preferences.cpp:1571 msgid "Export custom keyboard shortcuts to a file" msgstr "Exporter les raccourcis clavier personnalisés dans un fichier" -#: ../src/ui/dialog/inkscape-preferences.cpp:1578 +#: ../src/ui/dialog/inkscape-preferences.cpp:1581 msgid "Keyboard Shortcuts" msgstr "Raccourcis clavier" #. Find this group in the tree -#: ../src/ui/dialog/inkscape-preferences.cpp:1741 +#: ../src/ui/dialog/inkscape-preferences.cpp:1744 msgid "Misc" msgstr "Divers" -#: ../src/ui/dialog/inkscape-preferences.cpp:1839 +#: ../src/ui/dialog/inkscape-preferences.cpp:1842 msgctxt "Spellchecker language" msgid "None" msgstr "Aucune" -#: ../src/ui/dialog/inkscape-preferences.cpp:1860 +#: ../src/ui/dialog/inkscape-preferences.cpp:1863 msgid "Set the main spell check language" msgstr "Définit la langue principale du correcteur orthographique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1863 +#: ../src/ui/dialog/inkscape-preferences.cpp:1866 msgid "Second language:" msgstr "Deuxième langue :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1864 -msgid "Set the second spell check language; checking will only stop on words unknown in ALL chosen languages" -msgstr "Définit la deuxième langue du correcteur orthographique ; la vérification ne s'arrêtera que sur les mots inconnus de toutes les langues sélectionnées" - #: ../src/ui/dialog/inkscape-preferences.cpp:1867 +msgid "" +"Set the second spell check language; checking will only stop on words " +"unknown in ALL chosen languages" +msgstr "" +"Définit la deuxième langue du correcteur orthographique ; la vérification ne " +"s'arrêtera que sur les mots inconnus de toutes les langues sélectionnées" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1870 msgid "Third language:" msgstr "Troisième langue :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1868 -msgid "Set the third spell check language; checking will only stop on words unknown in ALL chosen languages" -msgstr "Définit la troisième langue du correcteur orthographique ; la vérification ne s'arrêtera que sur les mots inconnus de toutes les langues sélectionnées" +#: ../src/ui/dialog/inkscape-preferences.cpp:1871 +msgid "" +"Set the third spell check language; checking will only stop on words unknown " +"in ALL chosen languages" +msgstr "" +"Définit la troisième langue du correcteur orthographique ; la vérification " +"ne s'arrêtera que sur les mots inconnus de toutes les langues sélectionnées" -#: ../src/ui/dialog/inkscape-preferences.cpp:1870 +#: ../src/ui/dialog/inkscape-preferences.cpp:1873 msgid "Ignore words with digits" msgstr "Ignorer les mots contenant des chiffres" -#: ../src/ui/dialog/inkscape-preferences.cpp:1872 +#: ../src/ui/dialog/inkscape-preferences.cpp:1875 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "Ignorer les mots contenant des chiffres, comme « R2D2 »" -#: ../src/ui/dialog/inkscape-preferences.cpp:1874 +#: ../src/ui/dialog/inkscape-preferences.cpp:1877 msgid "Ignore words in ALL CAPITALS" msgstr "Ignorer les mots tout en capitales" -#: ../src/ui/dialog/inkscape-preferences.cpp:1876 +#: ../src/ui/dialog/inkscape-preferences.cpp:1879 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "Ignorer les mots tout en capitales, comme « GNU »" -#: ../src/ui/dialog/inkscape-preferences.cpp:1878 +#: ../src/ui/dialog/inkscape-preferences.cpp:1881 msgid "Spellcheck" msgstr "Vérification orthographique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "Latency _skew:" msgstr "_Décalage temporel :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1899 -msgid "Factor by which the event clock is skewed from the actual time (0.9766 on some systems)" -msgstr "Facteur de décalage entre l'horloge de l'événement et le temps réel (0,9766 sur certains systèmes)" +#: ../src/ui/dialog/inkscape-preferences.cpp:1902 +msgid "" +"Factor by which the event clock is skewed from the actual time (0.9766 on " +"some systems)" +msgstr "" +"Facteur de décalage entre l'horloge de l'événement et le temps réel (0,9766 " +"sur certains systèmes)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1901 +#: ../src/ui/dialog/inkscape-preferences.cpp:1904 msgid "Pre-render named icons" msgstr "Préafficher les icônes nommées" -#: ../src/ui/dialog/inkscape-preferences.cpp:1903 -msgid "When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification" -msgstr "Si coché, les icônes nommées sont rendues avant l'affichage de l'interface utilisateur. Il s'agit du contournement d'un bug sur la notification des icônes nommées dans GTK+." +#: ../src/ui/dialog/inkscape-preferences.cpp:1906 +msgid "" +"When on, named icons will be rendered before displaying the ui. This is for " +"working around bugs in GTK+ named icon notification" +msgstr "" +"Si coché, les icônes nommées sont rendues avant l'affichage de l'interface " +"utilisateur. Il s'agit du contournement d'un bug sur la notification des " +"icônes nommées dans GTK+." -#: ../src/ui/dialog/inkscape-preferences.cpp:1911 +#: ../src/ui/dialog/inkscape-preferences.cpp:1914 msgid "System info" msgstr "Informations système" -#: ../src/ui/dialog/inkscape-preferences.cpp:1915 +#: ../src/ui/dialog/inkscape-preferences.cpp:1918 msgid "User config: " msgstr "Configuration utilisateur : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1915 +#: ../src/ui/dialog/inkscape-preferences.cpp:1918 msgid "Location of users configuration" msgstr "Emplacement de la configuration utilisateur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1919 +#: ../src/ui/dialog/inkscape-preferences.cpp:1922 msgid "User preferences: " msgstr "Préférences de l'utilisateur :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1919 +#: ../src/ui/dialog/inkscape-preferences.cpp:1922 msgid "Location of the users preferences file" msgstr "Emplacement du fichier de préférences de l'utilisateur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1926 msgid "User extensions: " msgstr "Extensions de l'utilisateur :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1926 msgid "Location of the users extensions" msgstr "Emplacement des extensions de l'utilisateur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1927 +#: ../src/ui/dialog/inkscape-preferences.cpp:1930 msgid "User cache: " msgstr "Cache utilisateur : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1927 +#: ../src/ui/dialog/inkscape-preferences.cpp:1930 msgid "Location of users cache" msgstr "Emplacement du cache utilisateur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1935 +#: ../src/ui/dialog/inkscape-preferences.cpp:1938 msgid "Temporary files: " msgstr "Fichiers temporaires :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1935 +#: ../src/ui/dialog/inkscape-preferences.cpp:1938 msgid "Location of the temporary files used for autosave" -msgstr "Emplacement des fichiers temporaires utilisés pour l'enregistrement automatique" +msgstr "" +"Emplacement des fichiers temporaires utilisés pour l'enregistrement " +"automatique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1939 +#: ../src/ui/dialog/inkscape-preferences.cpp:1942 msgid "Inkscape data: " msgstr "Données d'Inkscape :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1939 +#: ../src/ui/dialog/inkscape-preferences.cpp:1942 msgid "Location of Inkscape data" msgstr "Emplacement des données d'Inkscape" -#: ../src/ui/dialog/inkscape-preferences.cpp:1943 +#: ../src/ui/dialog/inkscape-preferences.cpp:1946 msgid "Inkscape extensions: " msgstr "Extensions d'Inkscape :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1943 +#: ../src/ui/dialog/inkscape-preferences.cpp:1946 msgid "Location of the Inkscape extensions" msgstr "Emplacement des extensions d'Inkscape" -#: ../src/ui/dialog/inkscape-preferences.cpp:1952 +#: ../src/ui/dialog/inkscape-preferences.cpp:1955 msgid "System data: " msgstr "Données système : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1952 +#: ../src/ui/dialog/inkscape-preferences.cpp:1955 msgid "Locations of system data" msgstr "Emplacement des données du système" -#: ../src/ui/dialog/inkscape-preferences.cpp:1976 +#: ../src/ui/dialog/inkscape-preferences.cpp:1979 msgid "Icon theme: " msgstr "Thème d'icônes : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1976 +#: ../src/ui/dialog/inkscape-preferences.cpp:1979 msgid "Locations of icon themes" msgstr "Emplacement des thèmes d'icône" -#: ../src/ui/dialog/inkscape-preferences.cpp:1978 +#: ../src/ui/dialog/inkscape-preferences.cpp:1981 msgid "System" msgstr "Système" -#: ../src/ui/dialog/input.cpp:360 -#: ../src/ui/dialog/input.cpp:381 +#: ../src/ui/dialog/input.cpp:360 ../src/ui/dialog/input.cpp:381 #: ../src/ui/dialog/input.cpp:1641 msgid "Disabled" msgstr "Désactivé" @@ -19247,8 +20426,7 @@ msgctxt "Input device" msgid "Screen" msgstr "Superposition" -#: ../src/ui/dialog/input.cpp:362 -#: ../src/ui/dialog/input.cpp:383 +#: ../src/ui/dialog/input.cpp:362 ../src/ui/dialog/input.cpp:383 msgid "Window" msgstr "Fenêtre" @@ -19260,8 +20438,7 @@ msgstr "Zone de test" msgid "Axis" msgstr "Axe" -#: ../src/ui/dialog/input.cpp:708 -#: ../share/extensions/svgcalendar.inx.h:2 +#: ../src/ui/dialog/input.cpp:708 ../share/extensions/svgcalendar.inx.h:2 msgid "Configuration" msgstr "Configuration" @@ -19273,8 +20450,7 @@ msgstr "Matériel" msgid "Link:" msgstr "Lien :" -#: ../src/ui/dialog/input.cpp:742 -#: ../src/ui/dialog/input.cpp:743 +#: ../src/ui/dialog/input.cpp:742 ../src/ui/dialog/input.cpp:743 #: ../src/ui/dialog/input.cpp:1571 msgid "None" msgstr "Aucun" @@ -19295,14 +20471,15 @@ msgstr "Nombre de boutons :" msgid "Tablet" msgstr "Tablette" -#: ../src/ui/dialog/input.cpp:1039 -#: ../src/ui/dialog/input.cpp:1928 +#: ../src/ui/dialog/input.cpp:1039 ../src/ui/dialog/input.cpp:1928 msgid "pad" msgstr "pad" #: ../src/ui/dialog/input.cpp:1081 msgid "_Use pressure-sensitive tablet (requires restart)" -msgstr "_Utiliser une tablette graphique sensible à la pression (nécessite un redémarrage)" +msgstr "" +"_Utiliser une tablette graphique sensible à la pression (nécessite un " +"redémarrage)" #: ../src/ui/dialog/input.cpp:1086 msgid "Axes" @@ -19313,26 +20490,29 @@ msgid "Keys" msgstr "Touches" #: ../src/ui/dialog/input.cpp:1170 -msgid "A device can be 'Disabled', its co-ordinates mapped to the whole 'Screen', or to a single (usually focused) 'Window'" +msgid "" +"A device can be 'Disabled', its co-ordinates mapped to the whole 'Screen', " +"or to a single (usually focused) 'Window'" msgstr "" +"Un périphérique peut être désactivé, ou ses coordonnées peuvent être " +"appliquées à l'ensemble de l'écran ou à une seule fenêtre (généralement " +"sélectionnée)" -#: ../src/ui/dialog/input.cpp:1616 -#: ../src/widgets/calligraphy-toolbar.cpp:578 -#: ../src/widgets/spray-toolbar.cpp:224 -#: ../src/widgets/tweak-toolbar.cpp:372 +#: ../src/ui/dialog/input.cpp:1616 ../src/widgets/calligraphy-toolbar.cpp:578 +#: ../src/widgets/spray-toolbar.cpp:224 ../src/widgets/tweak-toolbar.cpp:372 msgid "Pressure" msgstr "Pression" #: ../src/ui/dialog/input.cpp:1616 msgid "X tilt" -msgstr "" +msgstr "Inclinaison X" #: ../src/ui/dialog/input.cpp:1616 msgid "Y tilt" -msgstr "" +msgstr "Inclinaison Y" #: ../src/ui/dialog/input.cpp:1616 -#: ../src/widgets/sp-color-wheel-selector.cpp:59 +#: ../src/widgets/sp-color-wheel-selector.cpp:32 msgid "Wheel" msgstr "Roue" @@ -19367,9 +20547,8 @@ msgstr "Renommer le calque" #. TODO: find an unused layer number, forming name from _("Layer ") + "%d" #: ../src/ui/dialog/layer-properties.cpp:354 -#: ../src/ui/dialog/layer-properties.cpp:410 -#: ../src/verbs.cpp:194 -#: ../src/verbs.cpp:2289 +#: ../src/ui/dialog/layer-properties.cpp:410 ../src/verbs.cpp:195 +#: ../src/verbs.cpp:2372 msgid "Layer" msgstr "Calque" @@ -19377,8 +20556,7 @@ msgstr "Calque" msgid "_Rename" msgstr "_Renommer" -#: ../src/ui/dialog/layer-properties.cpp:368 -#: ../src/ui/dialog/layers.cpp:750 +#: ../src/ui/dialog/layer-properties.cpp:368 ../src/ui/dialog/layers.cpp:750 msgid "Rename layer" msgstr "Renommer le calque" @@ -19404,37 +20582,34 @@ msgid "Move to Layer" msgstr "Déplacer vers le calque" #: ../src/ui/dialog/layer-properties.cpp:411 +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:120 #: ../src/ui/dialog/transformation.cpp:114 msgid "_Move" msgstr "Déplace_ment" -#: ../src/ui/dialog/layers.cpp:525 -#: ../src/ui/widget/layer-selector.cpp:613 +#: ../src/ui/dialog/layers.cpp:525 ../src/ui/widget/layer-selector.cpp:613 msgid "Unhide layer" msgstr "Montrer le calque" -#: ../src/ui/dialog/layers.cpp:525 -#: ../src/ui/widget/layer-selector.cpp:613 +#: ../src/ui/dialog/layers.cpp:525 ../src/ui/widget/layer-selector.cpp:613 msgid "Hide layer" msgstr "Cacher le calque" -#: ../src/ui/dialog/layers.cpp:536 -#: ../src/ui/widget/layer-selector.cpp:605 +#: ../src/ui/dialog/layers.cpp:536 ../src/ui/widget/layer-selector.cpp:605 msgid "Lock layer" msgstr "Verrouiller le calque" -#: ../src/ui/dialog/layers.cpp:536 -#: ../src/ui/widget/layer-selector.cpp:605 +#: ../src/ui/dialog/layers.cpp:536 ../src/ui/widget/layer-selector.cpp:605 msgid "Unlock layer" msgstr "Déverrouiller le calque" -#: ../src/ui/dialog/layers.cpp:624 -#: ../src/verbs.cpp:1405 +#: ../src/ui/dialog/layers.cpp:624 ../src/ui/dialog/objects.cpp:845 +#: ../src/verbs.cpp:1438 msgid "Toggle layer solo" msgstr "Afficher ou masquer les autres calques" -#: ../src/ui/dialog/layers.cpp:627 -#: ../src/verbs.cpp:1429 +#: ../src/ui/dialog/layers.cpp:627 ../src/ui/dialog/objects.cpp:848 +#: ../src/verbs.cpp:1462 msgid "Lock other layers" msgstr "Verrouiller les autres calques" @@ -19487,60 +20662,106 @@ msgstr "Monter l'effet de chemin courant" msgid "Lower the current path effect" msgstr "Descendre l'effet de chemin courant" -#: ../src/ui/dialog/livepatheffect-editor.cpp:313 +#: ../src/ui/dialog/livepatheffect-editor.cpp:312 msgid "Unknown effect is applied" msgstr "Un effet inconnu est appliqué" -#: ../src/ui/dialog/livepatheffect-editor.cpp:316 +#: ../src/ui/dialog/livepatheffect-editor.cpp:315 msgid "Click button to add an effect" msgstr "Cliquez sur le bouton pour ajouter un effet" -#: ../src/ui/dialog/livepatheffect-editor.cpp:329 +#: ../src/ui/dialog/livepatheffect-editor.cpp:330 msgid "Click add button to convert clone" msgstr "Cliquez sur le bouton ajouter pour convertir un clone" -#: ../src/ui/dialog/livepatheffect-editor.cpp:334 -#: ../src/ui/dialog/livepatheffect-editor.cpp:338 -#: ../src/ui/dialog/livepatheffect-editor.cpp:346 +#: ../src/ui/dialog/livepatheffect-editor.cpp:335 +#: ../src/ui/dialog/livepatheffect-editor.cpp:339 +#: ../src/ui/dialog/livepatheffect-editor.cpp:348 msgid "Select a path or shape" msgstr "Sélectionnez un chemin ou une forme" -#: ../src/ui/dialog/livepatheffect-editor.cpp:342 +#: ../src/ui/dialog/livepatheffect-editor.cpp:344 msgid "Only one item can be selected" msgstr "On ne peut sélectionner qu'un objet à la fois" -#: ../src/ui/dialog/livepatheffect-editor.cpp:374 +#: ../src/ui/dialog/livepatheffect-editor.cpp:376 msgid "Unknown effect" msgstr "Un effet inconnu est appliqué" -#: ../src/ui/dialog/livepatheffect-editor.cpp:450 +#: ../src/ui/dialog/livepatheffect-editor.cpp:452 msgid "Create and apply path effect" msgstr "Créer et appliquer un effet de chemin" -#: ../src/ui/dialog/livepatheffect-editor.cpp:485 +#: ../src/ui/dialog/livepatheffect-editor.cpp:488 msgid "Create and apply Clone original path effect" msgstr "Créer et appliquer l'effet de chemin Cloner l'original" -#: ../src/ui/dialog/livepatheffect-editor.cpp:505 +#: ../src/ui/dialog/livepatheffect-editor.cpp:510 msgid "Remove path effect" msgstr "Supprimer l'effet de chemin" -#: ../src/ui/dialog/livepatheffect-editor.cpp:522 +#: ../src/ui/dialog/livepatheffect-editor.cpp:528 msgid "Move path effect up" msgstr "Monter l'effet de chemin" -#: ../src/ui/dialog/livepatheffect-editor.cpp:538 +#: ../src/ui/dialog/livepatheffect-editor.cpp:545 msgid "Move path effect down" msgstr "Descendre l'effet de chemin" -#: ../src/ui/dialog/livepatheffect-editor.cpp:577 +#: ../src/ui/dialog/livepatheffect-editor.cpp:584 msgid "Activate path effect" msgstr "Activer l'effet de chemin" -#: ../src/ui/dialog/livepatheffect-editor.cpp:577 +#: ../src/ui/dialog/livepatheffect-editor.cpp:584 msgid "Deactivate path effect" msgstr "Désactiver l'effet de chemin" +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:57 +#, fuzzy +msgid "Radius (pixels):" +msgstr "Rayon (px) :" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:69 +#, fuzzy +msgid "Chamfer subdivisions:" +msgstr "Sous-divisions :" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:144 +msgid "Modify Fillet-Chamfer" +msgstr "" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:145 +#, fuzzy +msgid "_Modify" +msgstr "Modifer le chemin" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:210 +#, fuzzy +msgid "Radius " +msgstr "Rayon :" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:212 +msgid "Radius approximated " +msgstr "" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:215 +#, fuzzy +msgid "Knot distance " +msgstr "Distance d'attraction" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:222 +#, fuzzy +msgid "Position (%):" +msgstr "Position :" + +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:226 +msgid "(" +msgstr "" + +#: ../src/ui/dialog/lpe-powerstroke-properties.cpp:119 +msgid "Modify Node Position" +msgstr "" + #: ../src/ui/dialog/memory.cpp:96 msgid "Heap" msgstr "Tas" @@ -19559,10 +20780,8 @@ msgstr "Inutilisée" msgid "Total" msgstr "Total" -#: ../src/ui/dialog/memory.cpp:141 -#: ../src/ui/dialog/memory.cpp:147 -#: ../src/ui/dialog/memory.cpp:154 -#: ../src/ui/dialog/memory.cpp:186 +#: ../src/ui/dialog/memory.cpp:141 ../src/ui/dialog/memory.cpp:147 +#: ../src/ui/dialog/memory.cpp:154 ../src/ui/dialog/memory.cpp:186 msgid "Unknown" msgstr "Inconnu" @@ -19590,11 +20809,11 @@ msgstr "Capture des logs démarrée." msgid "Log capture stopped." msgstr "Capture des logs arrêtée." -#: ../src/ui/dialog/new-from-template.cpp:24 +#: ../src/ui/dialog/new-from-template.cpp:27 msgid "Create from template" msgstr "Créer à partir du modèle" -#: ../src/ui/dialog/new-from-template.cpp:26 +#: ../src/ui/dialog/new-from-template.cpp:29 msgid "New From Template" msgstr "Nouveau à partir d'un modèle" @@ -19657,8 +20876,11 @@ msgstr "Verr_ouiller" #. Create the entry box for the object id #: ../src/ui/dialog/object-properties.cpp:139 -msgid "The id= attribute (only letters, digits, and the characters .-_: allowed)" -msgstr "L'attribut id= (seuls les chiffres, lettres, et les caractères .-_: sont autorisés)" +msgid "" +"The id= attribute (only letters, digits, and the characters .-_: allowed)" +msgstr "" +"L'attribut id= (seuls les chiffres, lettres, et les caractères .-_: sont " +"autorisés)" #. Create the entry box for the object label #: ../src/ui/dialog/object-properties.cpp:174 @@ -19676,8 +20898,15 @@ msgid "" "\t'auto' no preference;\n" "\t'optimizeQuality' smooth;\n" "\t'optimizeSpeed' blocky.\n" -"Note that this behaviour is not defined in the SVG 1.1 specification and not all browsers follow this interpretation." +"Note that this behaviour is not defined in the SVG 1.1 specification and not " +"all browsers follow this interpretation." msgstr "" +"Ce paramètre peut joueur sur la façon dont un bitmap est agrandi :\n" +"\t'auto' pas de préférence;\n" +"\t'optimizeQuality' lissé;\n" +"\t'optimizeSpeed' pixélisé.\n" +"Notez que ce comportement n'est pas défini dans la spécification SVG 1.1 et " +"que tous les navigateurs ne suivent pas cette interprétation." #. Hide #: ../src/ui/dialog/object-properties.cpp:293 @@ -19691,9 +20920,8 @@ msgid "Check to make the object insensitive (not selectable by mouse)" msgstr "Si coché, l'objet devient insensible (non sélectionnable à la souris)" #. Button for setting the object's id, label, title and description. -#: ../src/ui/dialog/object-properties.cpp:325 -#: ../src/verbs.cpp:2632 -#: ../src/verbs.cpp:2638 +#: ../src/ui/dialog/object-properties.cpp:325 ../src/verbs.cpp:2715 +#: ../src/verbs.cpp:2721 msgid "_Set" msgstr "_Définir" @@ -19747,6 +20975,97 @@ msgstr "Cacher l'objet" msgid "Unhide object" msgstr "Montrer l'objet" +#: ../src/ui/dialog/objects.cpp:875 +#, fuzzy +msgid "Unhide objects" +msgstr "Montrer l'objet" + +#: ../src/ui/dialog/objects.cpp:875 +#, fuzzy +msgid "Hide objects" +msgstr "Cacher l'objet" + +#: ../src/ui/dialog/objects.cpp:895 +#, fuzzy +msgid "Lock objects" +msgstr "Verrouiller l'objet" + +#: ../src/ui/dialog/objects.cpp:895 +#, fuzzy +msgid "Unlock objects" +msgstr "Déverrouiller l'objet" + +#: ../src/ui/dialog/objects.cpp:907 +#, fuzzy +msgid "Layer to group" +msgstr "Calque au premier plan" + +#: ../src/ui/dialog/objects.cpp:907 +#, fuzzy +msgid "Group to layer" +msgstr "Groupe en symbole" + +#: ../src/ui/dialog/objects.cpp:1105 +#, fuzzy +msgid "Moved objects" +msgstr "Aucun objet" + +#: ../src/ui/dialog/objects.cpp:1354 ../src/ui/dialog/tags.cpp:875 +#: ../src/ui/dialog/tags.cpp:882 +#, fuzzy +msgid "Rename object" +msgstr "Tourner les objets" + +#: ../src/ui/dialog/objects.cpp:1461 +#, fuzzy +msgid "Set object highlight color" +msgstr "Définir le titre d'un objet" + +#: ../src/ui/dialog/objects.cpp:1471 +#, fuzzy +msgid "Set object opacity" +msgstr "Définir le titre d'un objet" + +#: ../src/ui/dialog/objects.cpp:1504 +#, fuzzy +msgid "Set object blend mode" +msgstr "Définir l'étiquette de l'objet" + +#: ../src/ui/dialog/objects.cpp:1560 +#, fuzzy +msgid "Set object blur" +msgstr "Définir l'étiquette de l'objet" + +#: ../src/ui/dialog/objects.cpp:1802 +#, fuzzy +msgid "Add layer..." +msgstr "_Ajouter un calque..." + +#: ../src/ui/dialog/objects.cpp:1817 +#, fuzzy +msgid "Remove object" +msgstr "Supprimer la fonte" + +#: ../src/ui/dialog/objects.cpp:1832 +#, fuzzy +msgid "Move To Bottom" +msgstr "Descendre à l'arrière-pl_an" + +#: ../src/ui/dialog/objects.cpp:1877 +#, fuzzy +msgid "Move To Top" +msgstr "Mode déplacement" + +#: ../src/ui/dialog/objects.cpp:1892 +#, fuzzy +msgid "Collapse All" +msgstr "Efface_r tout" + +#: ../src/ui/dialog/objects.cpp:1974 +#, fuzzy +msgid "Select Highlight Color" +msgstr "Couleur d'emp_hase :" + #: ../src/ui/dialog/ocaldialogs.cpp:715 msgid "Clipart found" msgstr "Clipart trouvé" @@ -19775,8 +21094,7 @@ msgstr "Aucune description" msgid "Searching clipart..." msgstr "Recherche du clipart..." -#: ../src/ui/dialog/ocaldialogs.cpp:1099 -#: ../src/ui/dialog/ocaldialogs.cpp:1120 +#: ../src/ui/dialog/ocaldialogs.cpp:1099 ../src/ui/dialog/ocaldialogs.cpp:1120 msgid "Could not connect to the Open Clip Art Library" msgstr "Connexion à la bibliothèque Open Clip Art impossible" @@ -19789,8 +21107,12 @@ msgid "No clipart named %1 was found." msgstr "Aucun clipart nommé %1 n'a été trouvé." #: ../src/ui/dialog/ocaldialogs.cpp:1179 -msgid "Please make sure all keywords are spelled correctly, or try again with different keywords." -msgstr "Veuillez vous assurer que les mots clé ont été correctement épelé, ou essayez avec des mots clé différents." +msgid "" +"Please make sure all keywords are spelled correctly, or try again with " +"different keywords." +msgstr "" +"Veuillez vous assurer que les mots clé ont été correctement épelé, ou " +"essayez avec des mots clé différents." #: ../src/ui/dialog/ocaldialogs.cpp:1231 msgid "Search" @@ -19802,45 +21124,43 @@ msgstr "Fermer" #: ../src/ui/dialog/pixelartdialog.cpp:190 msgid "_Curves (multiplier):" -msgstr "" +msgstr "_Courbes (multiplicateur) :" #: ../src/ui/dialog/pixelartdialog.cpp:193 msgid "Favors connections that are part of a long curve" -msgstr "" +msgstr "Favorise les connexion faisant partie d'une longue courbe" #: ../src/ui/dialog/pixelartdialog.cpp:204 -#, fuzzy msgid "_Islands (weight):" -msgstr "Hauteur de capitale :" +msgstr "_Îles (poids) :" #: ../src/ui/dialog/pixelartdialog.cpp:207 msgid "Avoid single disconnected pixels" -msgstr "" +msgstr "Éviter les pixels seuls déconnectés" #: ../src/ui/dialog/pixelartdialog.cpp:209 -#, fuzzy msgid "A constant vote value" -msgstr "angle contraint" +msgstr "Valeur de vote constant" #: ../src/ui/dialog/pixelartdialog.cpp:219 msgid "Sparse pixels (window _radius):" -msgstr "" +msgstr "Pixels clairsemés (_rayon de fenêtre) :" #: ../src/ui/dialog/pixelartdialog.cpp:228 msgid "The radius of the window analyzed" -msgstr "" +msgstr "Rayon de la fenêtre analysée" #: ../src/ui/dialog/pixelartdialog.cpp:229 msgid "Sparse pixels (_multiplier):" -msgstr "" +msgstr "Pixels clairsemés (_multiplicateur) :" #: ../src/ui/dialog/pixelartdialog.cpp:240 msgid "Favors connections that are part of foreground color" -msgstr "" +msgstr "Favorise les connexion faisant partie d'une couleur de fond" #: ../src/ui/dialog/pixelartdialog.cpp:246 msgid "The heuristic computed vote will be multiplied by this value" -msgstr "" +msgstr "Le vote calculé heuristique sera multiplié par cette valeur" #: ../src/ui/dialog/pixelartdialog.cpp:259 msgid "Heuristics" @@ -19855,14 +21175,12 @@ msgid "Output composed of straight lines" msgstr "Sortie composée de lignes droites" #: ../src/ui/dialog/pixelartdialog.cpp:273 -#, fuzzy msgid "Convert to _B-spline curves" -msgstr "Convertir en canvas HTML5" +msgstr "Convertir en courbes _B-spline" #: ../src/ui/dialog/pixelartdialog.cpp:274 -#, fuzzy msgid "Preserve staircasing artifacts" -msgstr "Préserver les identifiants débutant par :" +msgstr "Préserver les artefacts en marche d'escalier" #: ../src/ui/dialog/pixelartdialog.cpp:281 msgid "_Smooth curves" @@ -19894,11 +21212,13 @@ msgstr "Lancer la vectorisation" #: ../src/ui/dialog/pixelartdialog.cpp:388 #: ../src/ui/dialog/pixelartdialog.cpp:422 msgid "" -"Image looks too big. Process may take a while and it is wise to save your document before continuing.\n" +"Image looks too big. Process may take a while and it is wise to save your " +"document before continuing.\n" "\n" "Continue the procedure (without saving)?" msgstr "" -"L'image semble trop grosse. Le traitement risque de prendre assez longtemps et il serait préférable d'enregistrer votre document avant de continuer.\n" +"L'image semble trop grosse. Le traitement risque de prendre assez longtemps " +"et il serait préférable d'enregistrer votre document avant de continuer.\n" "\n" "Continuer (sans enregistrer) ?" @@ -19906,62 +21226,62 @@ msgstr "" msgid "Trace pixel art" msgstr "Vectoriser en pixel art" -#: ../src/ui/dialog/polar-arrange-tab.cpp:43 +#: ../src/ui/dialog/polar-arrange-tab.cpp:48 msgctxt "Polar arrange tab" msgid "Anchor point:" msgstr "Point d'encrage :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:47 +#: ../src/ui/dialog/polar-arrange-tab.cpp:52 msgctxt "Polar arrange tab" msgid "Object's bounding box:" msgstr "Boîte englobante de l'objet :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:54 +#: ../src/ui/dialog/polar-arrange-tab.cpp:59 msgctxt "Polar arrange tab" msgid "Object's rotational center" msgstr "Centre de rotation de l'objet" -#: ../src/ui/dialog/polar-arrange-tab.cpp:59 +#: ../src/ui/dialog/polar-arrange-tab.cpp:64 msgctxt "Polar arrange tab" msgid "Arrange on:" msgstr "Organiser sur :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:63 +#: ../src/ui/dialog/polar-arrange-tab.cpp:68 msgctxt "Polar arrange tab" msgid "First selected circle/ellipse/arc" msgstr "Premier cercle/ellipse/arc sélectionné" -#: ../src/ui/dialog/polar-arrange-tab.cpp:68 +#: ../src/ui/dialog/polar-arrange-tab.cpp:73 msgctxt "Polar arrange tab" msgid "Last selected circle/ellipse/arc" msgstr "Dernier cercle/ellipse/arc sélectionné" -#: ../src/ui/dialog/polar-arrange-tab.cpp:73 +#: ../src/ui/dialog/polar-arrange-tab.cpp:78 msgctxt "Polar arrange tab" msgid "Parameterized:" msgstr "Paramétré :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:78 +#: ../src/ui/dialog/polar-arrange-tab.cpp:83 msgid "Center X/Y:" msgstr "Centre X/Y :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:91 +#: ../src/ui/dialog/polar-arrange-tab.cpp:105 msgid "Radius X/Y:" msgstr "Rayon X/Y :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:104 +#: ../src/ui/dialog/polar-arrange-tab.cpp:127 msgid "Angle X/Y:" msgstr "Angle X/Y :" -#: ../src/ui/dialog/polar-arrange-tab.cpp:118 +#: ../src/ui/dialog/polar-arrange-tab.cpp:150 msgid "Rotate objects" msgstr "Tourner les objets" -#: ../src/ui/dialog/polar-arrange-tab.cpp:306 +#: ../src/ui/dialog/polar-arrange-tab.cpp:338 msgid "Couldn't find an ellipse in selection" msgstr "La sélection ne contient aucune ellipse" -#: ../src/ui/dialog/polar-arrange-tab.cpp:371 +#: ../src/ui/dialog/polar-arrange-tab.cpp:403 msgid "Arrange on ellipse" msgstr "Organiser sur une ellipse" @@ -20198,8 +21518,7 @@ msgstr "fonte" msgid "Add font" msgstr "Ajouter une fonte" -#: ../src/ui/dialog/svg-fonts-dialog.cpp:912 -#: ../src/ui/dialog/text-edit.cpp:69 +#: ../src/ui/dialog/svg-fonts-dialog.cpp:912 ../src/ui/dialog/text-edit.cpp:69 msgid "_Font" msgstr "_Police" @@ -20224,10 +21543,9 @@ msgstr "Texte exemple" msgid "Preview Text:" msgstr "Texte de l'aperçu :" -#: ../src/ui/dialog/swatches.cpp:203 -#: ../src/ui/tools/gradient-tool.cpp:367 -#: ../src/ui/tools/gradient-tool.cpp:465 -#: ../src/widgets/gradient-vector.cpp:814 +#: ../src/ui/dialog/swatches.cpp:203 ../src/ui/tools/gradient-tool.cpp:370 +#: ../src/ui/tools/gradient-tool.cpp:468 +#: ../src/widgets/gradient-vector.cpp:794 msgid "Add gradient stop" msgstr "Ajouter un stop au dégradé" @@ -20255,69 +21573,98 @@ msgid "Palettes directory (%s) is unavailable." msgstr "Le dossier des palettes (%s) est indisponible." #. ******************* Symbol Sets ************************ -#: ../src/ui/dialog/symbols.cpp:127 +#: ../src/ui/dialog/symbols.cpp:139 msgid "Symbol set: " msgstr "Jeu de symboles :" #. Fill in later -#: ../src/ui/dialog/symbols.cpp:136 -#: ../src/ui/dialog/symbols.cpp:137 +#: ../src/ui/dialog/symbols.cpp:148 ../src/ui/dialog/symbols.cpp:149 msgid "Current Document" msgstr "Document courant" -#: ../src/ui/dialog/symbols.cpp:204 +#: ../src/ui/dialog/symbols.cpp:216 msgid "Add Symbol from the current document." msgstr "Ajouter un symbole à partir du document courant." -#: ../src/ui/dialog/symbols.cpp:213 +#: ../src/ui/dialog/symbols.cpp:225 msgid "Remove Symbol from the current document." msgstr "Supprimer un symbole du document courant." -#: ../src/ui/dialog/symbols.cpp:227 +#: ../src/ui/dialog/symbols.cpp:239 msgid "Display more icons in row." msgstr "Afficher plus d'icônes sur chaque ligne" -#: ../src/ui/dialog/symbols.cpp:236 +#: ../src/ui/dialog/symbols.cpp:248 msgid "Display fewer icons in row." msgstr "Afficher moins d'icônes sur chaque ligne" -#: ../src/ui/dialog/symbols.cpp:246 +#: ../src/ui/dialog/symbols.cpp:258 msgid "Toggle 'fit' symbols in icon space." -msgstr "" +msgstr "Contraindre les symboles à leur zone d'affichage" -#: ../src/ui/dialog/symbols.cpp:258 +#: ../src/ui/dialog/symbols.cpp:270 msgid "Make symbols smaller by zooming out." msgstr "Rendre les icônes plus petites en dézoomant" -#: ../src/ui/dialog/symbols.cpp:268 +#: ../src/ui/dialog/symbols.cpp:280 msgid "Make symbols bigger by zooming in." msgstr "Rendre les icônes plus petites en zoomant" -#: ../src/ui/dialog/symbols.cpp:622 +#: ../src/ui/dialog/symbols.cpp:639 msgid "Unnamed Symbols" msgstr "Symboles sans nom" -#: ../src/ui/dialog/template-widget.cpp:36 +#: ../src/ui/dialog/tags.cpp:293 ../src/ui/dialog/tags.cpp:591 +#: ../src/ui/dialog/tags.cpp:705 +#, fuzzy +msgid "Remove from selection set" +msgstr "Retirer le masque de la sélection" + +#: ../src/ui/dialog/tags.cpp:449 +msgid "Items" +msgstr "" + +#: ../src/ui/dialog/tags.cpp:688 +#, fuzzy +msgid "Add selection to set" +msgstr "Monter la sélection au premier plan" + +#: ../src/ui/dialog/tags.cpp:846 +#, fuzzy +msgid "Moved sets" +msgstr "Déplacements" + +#: ../src/ui/dialog/tags.cpp:1016 +#, fuzzy +msgid "Add a new selection set" +msgstr "Ajouter un nouveau point de connexion" + +#: ../src/ui/dialog/tags.cpp:1025 +#, fuzzy +msgid "Remove Item/Set" +msgstr "Retirer les effets" + +#: ../src/ui/dialog/template-widget.cpp:37 msgid "More info" msgstr "Informations" -#: ../src/ui/dialog/template-widget.cpp:38 +#: ../src/ui/dialog/template-widget.cpp:39 msgid "no template selected" msgstr "Aucun modèle sélectionné" -#: ../src/ui/dialog/template-widget.cpp:119 +#: ../src/ui/dialog/template-widget.cpp:123 msgid "Path: " msgstr "Chemin : " -#: ../src/ui/dialog/template-widget.cpp:122 +#: ../src/ui/dialog/template-widget.cpp:126 msgid "Description: " msgstr "Description : " -#: ../src/ui/dialog/template-widget.cpp:124 +#: ../src/ui/dialog/template-widget.cpp:128 msgid "Keywords: " msgstr "Mots clés : " -#: ../src/ui/dialog/template-widget.cpp:131 +#: ../src/ui/dialog/template-widget.cpp:135 msgid "By: " msgstr "Par : " @@ -20332,42 +21679,35 @@ msgid "AaBbCcIiPpQq12369$€¢?.;/()" msgstr "AaBbCcIiPpQq12369$€¢?.;/()" #. Align buttons -#: ../src/ui/dialog/text-edit.cpp:96 -#: ../src/widgets/text-toolbar.cpp:1344 -#: ../src/widgets/text-toolbar.cpp:1345 +#: ../src/ui/dialog/text-edit.cpp:96 ../src/widgets/text-toolbar.cpp:1346 +#: ../src/widgets/text-toolbar.cpp:1347 msgid "Align left" msgstr "Aligner à gauche" -#: ../src/ui/dialog/text-edit.cpp:97 -#: ../src/widgets/text-toolbar.cpp:1352 -#: ../src/widgets/text-toolbar.cpp:1353 +#: ../src/ui/dialog/text-edit.cpp:97 ../src/widgets/text-toolbar.cpp:1354 +#: ../src/widgets/text-toolbar.cpp:1355 msgid "Align center" msgstr "Centrer" -#: ../src/ui/dialog/text-edit.cpp:98 -#: ../src/widgets/text-toolbar.cpp:1360 -#: ../src/widgets/text-toolbar.cpp:1361 +#: ../src/ui/dialog/text-edit.cpp:98 ../src/widgets/text-toolbar.cpp:1362 +#: ../src/widgets/text-toolbar.cpp:1363 msgid "Align right" msgstr "Aligner à droite" -#: ../src/ui/dialog/text-edit.cpp:99 -#: ../src/widgets/text-toolbar.cpp:1369 +#: ../src/ui/dialog/text-edit.cpp:99 ../src/widgets/text-toolbar.cpp:1371 msgid "Justify (only flowed text)" msgstr "Justifier (texte encadré seulement)" #. Direction buttons -#: ../src/ui/dialog/text-edit.cpp:108 -#: ../src/widgets/text-toolbar.cpp:1404 +#: ../src/ui/dialog/text-edit.cpp:108 ../src/widgets/text-toolbar.cpp:1406 msgid "Horizontal text" msgstr "Texte horizontal" -#: ../src/ui/dialog/text-edit.cpp:109 -#: ../src/widgets/text-toolbar.cpp:1411 +#: ../src/ui/dialog/text-edit.cpp:109 ../src/widgets/text-toolbar.cpp:1413 msgid "Vertical text" msgstr "Texte vertical" -#: ../src/ui/dialog/text-edit.cpp:129 -#: ../src/ui/dialog/text-edit.cpp:130 +#: ../src/ui/dialog/text-edit.cpp:129 ../src/ui/dialog/text-edit.cpp:130 msgid "Spacing between lines (percent of font size)" msgstr "Espacement entre les lignes (pourcentage de la taille de la police)" @@ -20375,8 +21715,7 @@ msgstr "Espacement entre les lignes (pourcentage de la taille de la police)" msgid "Text path offset" msgstr "Décalage du chemin de texte" -#: ../src/ui/dialog/text-edit.cpp:587 -#: ../src/ui/dialog/text-edit.cpp:661 +#: ../src/ui/dialog/text-edit.cpp:587 ../src/ui/dialog/text-edit.cpp:661 #: ../src/ui/tools/text-tool.cpp:1455 msgid "Set text style" msgstr "Appliquer un style à un texte" @@ -20433,7 +21772,9 @@ msgstr "Vectoriser en utilisant l'algorithme détection d'arêtes de J. Canny" #: ../src/ui/dialog/tracedialog.cpp:556 msgid "Brightness cutoff for adjacent pixels (determines edge thickness)" -msgstr "Limite de luminosité pour déterminer les pixels adjacents (détermine la finesse des arrêtes)" +msgstr "" +"Limite de luminosité pour déterminer les pixels adjacents (détermine la " +"finesse des arrêtes)" #: ../src/ui/dialog/tracedialog.cpp:559 msgid "T_hreshold:" @@ -20517,8 +21858,12 @@ msgid "Stac_k scans" msgstr "Em_piler les passes" #: ../src/ui/dialog/tracedialog.cpp:661 -msgid "Stack scans on top of one another (no gaps) instead of tiling (usually with gaps)" -msgstr "Empiler les passes verticalement (sans espacement) au lieu de les juxtaposer (souvent avec de l'espacement)" +msgid "" +"Stack scans on top of one another (no gaps) instead of tiling (usually with " +"gaps)" +msgstr "" +"Empiler les passes verticalement (sans espacement) au lieu de les juxtaposer " +"(souvent avec de l'espacement)" #: ../src/ui/dialog/tracedialog.cpp:665 msgid "Remo_ve background" @@ -20575,11 +21920,17 @@ msgstr "_Optimiser les chemins" #: ../src/ui/dialog/tracedialog.cpp:729 msgid "Try to optimize paths by joining adjacent Bezier curve segments" -msgstr "Tenter d'optimiser les chemins en joignant les segments de courbes de Bézier adjacents" +msgstr "" +"Tenter d'optimiser les chemins en joignant les segments de courbes de Bézier " +"adjacents" #: ../src/ui/dialog/tracedialog.cpp:737 -msgid "Increase this to reduce the number of nodes in the trace by more aggressive optimization" -msgstr "Augmenter ce paramètre pour diminuer le nombre de nœuds de la vectorisation avec une optimisation plus aggressive" +msgid "" +"Increase this to reduce the number of nodes in the trace by more aggressive " +"optimization" +msgstr "" +"Augmenter ce paramètre pour diminuer le nombre de nœuds de la vectorisation " +"avec une optimisation plus aggressive" #: ../src/ui/dialog/tracedialog.cpp:739 msgid "To_lerance:" @@ -20629,8 +21980,12 @@ msgstr "_Mettre à jour" #. I guess it's correct to call the "intermediate bitmap" a preview of the trace #: ../src/ui/dialog/tracedialog.cpp:796 -msgid "Preview the intermediate bitmap with the current settings, without actual tracing" -msgstr "Aperçu du bitmap intermédiaire avec les paramètres définis, sans vectorisation effective" +msgid "" +"Preview the intermediate bitmap with the current settings, without actual " +"tracing" +msgstr "" +"Aperçu du bitmap intermédiaire avec les paramètres définis, sans " +"vectorisation effective" #: ../src/ui/dialog/tracedialog.cpp:800 msgid "Preview" @@ -20672,12 +22027,20 @@ msgid "Rotation angle (positive = counterclockwise)" msgstr "Angle de rotation (positif = sens anti-horaire)" #: ../src/ui/dialog/transformation.cpp:86 -msgid "Horizontal skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" -msgstr "Angle d'inclinaison horizontal (positif = sens anti-horaire) ou déplacement absolu, ou pourcentage de déplacement" +msgid "" +"Horizontal skew angle (positive = counterclockwise), or absolute " +"displacement, or percentage displacement" +msgstr "" +"Angle d'inclinaison horizontal (positif = sens anti-horaire) ou déplacement " +"absolu, ou pourcentage de déplacement" #: ../src/ui/dialog/transformation.cpp:88 -msgid "Vertical skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" -msgstr "Angle d'inclinaison vertical (positif = sens anti-horaire) ou déplacement absolu, ou pourcentage de déplacement" +msgid "" +"Vertical skew angle (positive = counterclockwise), or absolute displacement, " +"or percentage displacement" +msgstr "" +"Angle d'inclinaison vertical (positif = sens anti-horaire) ou déplacement " +"absolu, ou pourcentage de déplacement" #: ../src/ui/dialog/transformation.cpp:91 msgid "Transformation matrix element A" @@ -20708,8 +22071,12 @@ msgid "Rela_tive move" msgstr "Déplacement rela_tif" #: ../src/ui/dialog/transformation.cpp:101 -msgid "Add the specified relative displacement to the current position; otherwise, edit the current absolute position directly" -msgstr "Ajoute le déplacement relatif spécifié à la position courante; sinon, modifie directement la position absolue courante" +msgid "" +"Add the specified relative displacement to the current position; otherwise, " +"edit the current absolute position directly" +msgstr "" +"Ajoute le déplacement relatif spécifié à la position courante; sinon, " +"modifie directement la position absolue courante" #: ../src/ui/dialog/transformation.cpp:102 msgid "_Scale proportionally" @@ -20724,16 +22091,24 @@ msgid "Apply to each _object separately" msgstr "Appliquer à chaque _objet séparément" #: ../src/ui/dialog/transformation.cpp:103 -msgid "Apply the scale/rotate/skew to each selected object separately; otherwise, transform the selection as a whole" -msgstr "Appliquer la transformation à chaque objet séparément; sinon, transformer la sélection comme un tout" +msgid "" +"Apply the scale/rotate/skew to each selected object separately; otherwise, " +"transform the selection as a whole" +msgstr "" +"Appliquer la transformation à chaque objet séparément; sinon, transformer la " +"sélection comme un tout" #: ../src/ui/dialog/transformation.cpp:104 msgid "Edit c_urrent matrix" msgstr "Editer la matrice co_urante" #: ../src/ui/dialog/transformation.cpp:104 -msgid "Edit the current transform= matrix; otherwise, post-multiply transform= by this matrix" -msgstr "Si coché, édite la matrice de la transformation courante; sinon, post-multiplie la transformation courante par cette matrice." +msgid "" +"Edit the current transform= matrix; otherwise, post-multiply transform= by " +"this matrix" +msgstr "" +"Si coché, édite la matrice de la transformation courante; sinon, post-" +"multiplie la transformation courante par cette matrice." #: ../src/ui/dialog/transformation.cpp:117 msgid "_Scale" @@ -20785,29 +22160,24 @@ msgstr "Éditer la matrice de transformation" msgid "Rotation angle (positive = clockwise)" msgstr "Angle de rotation (positif = sens horaire)" -#: ../src/ui/dialog/xml-tree.cpp:70 -#: ../src/ui/dialog/xml-tree.cpp:126 +#: ../src/ui/dialog/xml-tree.cpp:70 ../src/ui/dialog/xml-tree.cpp:126 msgid "New element node" msgstr "Nouveau nœud élément" -#: ../src/ui/dialog/xml-tree.cpp:71 -#: ../src/ui/dialog/xml-tree.cpp:132 +#: ../src/ui/dialog/xml-tree.cpp:71 ../src/ui/dialog/xml-tree.cpp:132 msgid "New text node" msgstr "Nouveau nœud texte" -#: ../src/ui/dialog/xml-tree.cpp:72 -#: ../src/ui/dialog/xml-tree.cpp:146 +#: ../src/ui/dialog/xml-tree.cpp:72 ../src/ui/dialog/xml-tree.cpp:146 msgid "nodeAsInXMLdialogTooltip|Delete node" msgstr "Supprimer le nœud" -#: ../src/ui/dialog/xml-tree.cpp:73 -#: ../src/ui/dialog/xml-tree.cpp:138 +#: ../src/ui/dialog/xml-tree.cpp:73 ../src/ui/dialog/xml-tree.cpp:138 #: ../src/ui/dialog/xml-tree.cpp:977 msgid "Duplicate node" msgstr "Dupliquer le nœud" -#: ../src/ui/dialog/xml-tree.cpp:79 -#: ../src/ui/dialog/xml-tree.cpp:191 +#: ../src/ui/dialog/xml-tree.cpp:79 ../src/ui/dialog/xml-tree.cpp:191 #: ../src/ui/dialog/xml-tree.cpp:1013 msgid "Delete attribute" msgstr "Supprimer l'attribut" @@ -20820,26 +22190,22 @@ msgstr "Définir" msgid "Drag to reorder nodes" msgstr "Cliquer-déplacer pour réorganiser les nœuds" -#: ../src/ui/dialog/xml-tree.cpp:152 -#: ../src/ui/dialog/xml-tree.cpp:153 +#: ../src/ui/dialog/xml-tree.cpp:152 ../src/ui/dialog/xml-tree.cpp:153 #: ../src/ui/dialog/xml-tree.cpp:1135 msgid "Unindent node" msgstr "Désindenter le nœud" -#: ../src/ui/dialog/xml-tree.cpp:157 -#: ../src/ui/dialog/xml-tree.cpp:158 +#: ../src/ui/dialog/xml-tree.cpp:157 ../src/ui/dialog/xml-tree.cpp:158 #: ../src/ui/dialog/xml-tree.cpp:1113 msgid "Indent node" msgstr "Indenter le nœud" -#: ../src/ui/dialog/xml-tree.cpp:162 -#: ../src/ui/dialog/xml-tree.cpp:163 +#: ../src/ui/dialog/xml-tree.cpp:162 ../src/ui/dialog/xml-tree.cpp:163 #: ../src/ui/dialog/xml-tree.cpp:1064 msgid "Raise node" msgstr "Monter le nœud" -#: ../src/ui/dialog/xml-tree.cpp:167 -#: ../src/ui/dialog/xml-tree.cpp:168 +#: ../src/ui/dialog/xml-tree.cpp:167 ../src/ui/dialog/xml-tree.cpp:168 #: ../src/ui/dialog/xml-tree.cpp:1082 msgid "Lower node" msgstr "Descendre le nœud" @@ -20854,7 +22220,9 @@ msgstr "Valeur de l'attribut" #: ../src/ui/dialog/xml-tree.cpp:311 msgid "Click to select nodes, drag to rearrange." -msgstr "Cliquer pour sélectionner des nœuds, cliquer-déplacer pour les déplacer." +msgstr "" +"Cliquer pour sélectionner des nœuds, cliquer-déplacer pour les " +"déplacer." #: ../src/ui/dialog/xml-tree.cpp:322 msgid "Click attribute to edit." @@ -20862,8 +22230,12 @@ msgstr "Cliquer sur les attributs pour pouvoir les éditer." #: ../src/ui/dialog/xml-tree.cpp:326 #, c-format -msgid "Attribute %s selected. Press Ctrl+Enter when done editing to commit changes." -msgstr "Attribut %s sélectionné. Appuyer sur Ctrl+Enter après édition pour valider." +msgid "" +"Attribute %s selected. Press Ctrl+Enter when done editing to " +"commit changes." +msgstr "" +"Attribut %s sélectionné. Appuyer sur Ctrl+Enter après édition " +"pour valider." #: ../src/ui/dialog/xml-tree.cpp:566 msgid "Drag XML subtree" @@ -20893,40 +22265,414 @@ msgstr "Supprimer le nœud" msgid "Change attribute" msgstr "Modifier l'attribut" -#: ../src/ui/tool/curve-drag-point.cpp:100 +#: ../src/ui/interface.cpp:748 +msgctxt "Interface setup" +msgid "Default" +msgstr "Défaut" + +#: ../src/ui/interface.cpp:748 +msgid "Default interface setup" +msgstr "Paramètres par défaut de l'interface" + +#: ../src/ui/interface.cpp:749 +msgctxt "Interface setup" +msgid "Custom" +msgstr "Personnalisé" + +#: ../src/ui/interface.cpp:749 +msgid "Setup for custom task" +msgstr "Paramétrage personnalisée" + +#: ../src/ui/interface.cpp:750 +msgctxt "Interface setup" +msgid "Wide" +msgstr "Large" + +#: ../src/ui/interface.cpp:750 +msgid "Setup for widescreen work" +msgstr "Paramétrage pour écran large" + +#: ../src/ui/interface.cpp:862 +#, c-format +msgid "Verb \"%s\" Unknown" +msgstr "Verbe « %s » inconnu" + +#: ../src/ui/interface.cpp:901 +msgid "Open _Recent" +msgstr "Documents _récents" + +#: ../src/ui/interface.cpp:1009 ../src/ui/interface.cpp:1095 +#: ../src/ui/interface.cpp:1198 ../src/ui/widget/selected-style.cpp:545 +msgid "Drop color" +msgstr "Déposer la couleur" + +#: ../src/ui/interface.cpp:1048 ../src/ui/interface.cpp:1158 +msgid "Drop color on gradient" +msgstr "Déposer la couleur dans le dégradé" + +#: ../src/ui/interface.cpp:1211 +msgid "Could not parse SVG data" +msgstr "Impossible de parcourir les données SVG" + +#: ../src/ui/interface.cpp:1250 +msgid "Drop SVG" +msgstr "Déposer un SVG" + +#: ../src/ui/interface.cpp:1263 +msgid "Drop Symbol" +msgstr "Déposer le symbole" + +#: ../src/ui/interface.cpp:1294 +msgid "Drop bitmap image" +msgstr "Déposer une image bitmap" + +#: ../src/ui/interface.cpp:1386 +#, c-format +msgid "" +"A file named \"%s\" already exists. Do " +"you want to replace it?\n" +"\n" +"The file already exists in \"%s\". Replacing it will overwrite its contents." +msgstr "" +"Le fichier « %s » existe déjà.\n" +"Voulez-vous l'écraser ?\n" +"\n" +"Le fichier existe déjà dans « %s ». Le remplacer écrase son contenu." + +#: ../src/ui/interface.cpp:1393 ../share/extensions/web-set-att.inx.h:21 +#: ../share/extensions/web-transmit-att.inx.h:19 +msgid "Replace" +msgstr "Remplacer" + +#: ../src/ui/interface.cpp:1464 +msgid "Go to parent" +msgstr "Sélectionner le parent" + +#. TRANSLATORS: #%1 is the id of the group e.g. , not a number. +#: ../src/ui/interface.cpp:1505 +msgid "Enter group #%1" +msgstr "Entrer dans le groupe #%1" + +#. Item dialog +#: ../src/ui/interface.cpp:1641 ../src/verbs.cpp:2936 +msgid "_Object Properties..." +msgstr "Propriétés de l'_objet..." + +#: ../src/ui/interface.cpp:1650 +msgid "_Select This" +msgstr "_Sélectionner ceci" + +#: ../src/ui/interface.cpp:1661 +msgid "Select Same" +msgstr "Sélectionner même" + +#. Select same fill and stroke +#: ../src/ui/interface.cpp:1671 +msgid "Fill and Stroke" +msgstr "Remplissage et contour" + +#. Select same fill color +#: ../src/ui/interface.cpp:1678 +msgid "Fill Color" +msgstr "Couleur de remplissage" + +#. Select same stroke color +#: ../src/ui/interface.cpp:1685 +msgid "Stroke Color" +msgstr "Couleur de contour" + +#. Select same stroke style +#: ../src/ui/interface.cpp:1692 +msgid "Stroke Style" +msgstr "Style de contour" + +#. Select same stroke style +#: ../src/ui/interface.cpp:1699 +msgid "Object type" +msgstr "Types d'objet" + +#. Move to layer +#: ../src/ui/interface.cpp:1706 +msgid "_Move to layer ..." +msgstr "_Déplacer vers le calque..." + +#. Create link +#: ../src/ui/interface.cpp:1716 +msgid "Create _Link" +msgstr "Créer un _lien" + +#. Set mask +#: ../src/ui/interface.cpp:1739 +msgid "Set Mask" +msgstr "Définir un masque" + +#. Release mask +#: ../src/ui/interface.cpp:1750 +msgid "Release Mask" +msgstr "Retirer le masque" + +#. SSet Clip Group +#: ../src/ui/interface.cpp:1761 +#, fuzzy +msgid "Create Clip G_roup" +msgstr "Créer un clo_ne" + +#. Set Clip +#: ../src/ui/interface.cpp:1768 +msgid "Set Cl_ip" +msgstr "Définir une dé_coupe" + +#. Release Clip +#: ../src/ui/interface.cpp:1779 +msgid "Release C_lip" +msgstr "Retirer _la découpe" + +#. Group +#: ../src/ui/interface.cpp:1790 ../src/verbs.cpp:2569 +msgid "_Group" +msgstr "_Grouper" + +#: ../src/ui/interface.cpp:1861 +msgid "Create link" +msgstr "Créer un lien" + +#. Ungroup +#: ../src/ui/interface.cpp:1896 ../src/verbs.cpp:2571 +msgid "_Ungroup" +msgstr "_Dégrouper" + +#. Link dialog +#: ../src/ui/interface.cpp:1921 +msgid "Link _Properties..." +msgstr "_Propriétés du lien..." + +#. Select item +#: ../src/ui/interface.cpp:1927 +msgid "_Follow Link" +msgstr "_Suivre le lien" + +#. Reset transformations +#: ../src/ui/interface.cpp:1933 +msgid "_Remove Link" +msgstr "_Retirer le lien" + +#: ../src/ui/interface.cpp:1964 +msgid "Remove link" +msgstr "Retirer le lien" + +#. Image properties +#: ../src/ui/interface.cpp:1975 +msgid "Image _Properties..." +msgstr "_Propriétés de l'image..." + +#. Edit externally +#: ../src/ui/interface.cpp:1981 +msgid "Edit Externally..." +msgstr "Éditer avec un logiciel externe..." + +#. Trace Bitmap +#. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) +#: ../src/ui/interface.cpp:1990 ../src/verbs.cpp:2632 +msgid "_Trace Bitmap..." +msgstr "Vec_toriser le bitmap..." + +#. Trace Pixel Art +#: ../src/ui/interface.cpp:1999 +msgid "Trace Pixel Art" +msgstr "Vectoriser en Pixel Art" + +#: ../src/ui/interface.cpp:2009 +msgctxt "Context menu" +msgid "Embed Image" +msgstr "Incorporer l'image" + +#: ../src/ui/interface.cpp:2020 +msgctxt "Context menu" +msgid "Extract Image..." +msgstr "Extraire une image..." + +#. Item dialog +#. Fill and Stroke dialog +#: ../src/ui/interface.cpp:2165 ../src/ui/interface.cpp:2185 +#: ../src/verbs.cpp:2899 +msgid "_Fill and Stroke..." +msgstr "_Remplissage et contour..." + +#. Edit Text dialog +#: ../src/ui/interface.cpp:2191 ../src/verbs.cpp:2918 +msgid "_Text and Font..." +msgstr "_Texte et police..." + +#. Spellcheck dialog +#: ../src/ui/interface.cpp:2197 ../src/verbs.cpp:2926 +msgid "Check Spellin_g..." +msgstr "Vérification ortho_graphique..." + +#: ../src/ui/object-edit.cpp:456 +msgid "" +"Adjust the horizontal rounding radius; with Ctrl to make the " +"vertical radius the same" +msgstr "" +"Ajuster le rayon d'arrondi horizontal; Ctrl que le rayon " +"vertical soit identique" + +#: ../src/ui/object-edit.cpp:461 +msgid "" +"Adjust the vertical rounding radius; with Ctrl to make the " +"horizontal radius the same" +msgstr "" +"Ajuster le rayon d'arrondi vertical; Ctrl pour que le rayon " +"horizontal soit identique" + +#: ../src/ui/object-edit.cpp:466 ../src/ui/object-edit.cpp:471 +msgid "" +"Adjust the width and height of the rectangle; with Ctrl to " +"lock ratio or stretch in one dimension only" +msgstr "" +"Ajuster la hauteur et la largeur du rectangle ; Ctrl " +"pour verrouiller le rapport des dimensions ou incliner dans une seule " +"dimension" + +#: ../src/ui/object-edit.cpp:718 ../src/ui/object-edit.cpp:722 +#: ../src/ui/object-edit.cpp:726 ../src/ui/object-edit.cpp:730 +msgid "" +"Resize box in X/Y direction; with Shift along the Z axis; with " +"Ctrl to constrain to the directions of edges or diagonals" +msgstr "" +"Redimensionner la boîte suivant les axes X/Y. Avec Shift, suivant " +"l'axe Z; avec Ctrl pour préserver les directions des arêtes ou des " +"diagonales." + +#: ../src/ui/object-edit.cpp:734 ../src/ui/object-edit.cpp:738 +#: ../src/ui/object-edit.cpp:742 ../src/ui/object-edit.cpp:746 +msgid "" +"Resize box along the Z axis; with Shift in X/Y direction; with " +"Ctrl to constrain to the directions of edges or diagonals" +msgstr "" +"Redimensionner la boîte suivant l'axe Z. Avec Shift, suivant les axes " +"X/Y; avec Ctrl pour préserver les directions des arêtes ou des " +"diagonales." + +#: ../src/ui/object-edit.cpp:750 +msgid "Move the box in perspective" +msgstr "Déplacer la boîte en perspective." + +#: ../src/ui/object-edit.cpp:989 +msgid "Adjust ellipse width, with Ctrl to make circle" +msgstr "" +"Ajuster la largeur de l'ellipse; Ctrl pour en faire un cercle" + +#: ../src/ui/object-edit.cpp:993 +msgid "Adjust ellipse height, with Ctrl to make circle" +msgstr "" +"Ajuster la hauteur de l'ellipse; Ctrl pour en faire un cercle" + +#: ../src/ui/object-edit.cpp:997 +msgid "" +"Position the start point of the arc or segment; with Ctrl to " +"snap angle; drag inside the ellipse for arc, outside for " +"segment" +msgstr "" +"Positionner le point de départ de l'arc ou du camembert ; Ctrl " +"pour tourner par incréments ; déplacer vers l'intérieur de l'ellipse " +"pour un arc, vers l'extérieur pour un camembert" + +#: ../src/ui/object-edit.cpp:1002 +msgid "" +"Position the end point of the arc or segment; with Ctrl to " +"snap angle; drag inside the ellipse for arc, outside for " +"segment" +msgstr "" +"Positionner le point final de l'arc ou du camembert; Ctrl pour " +"tourner par incréments; déplacer vers l'intérieur de l'ellipse pour " +"un arc, vers l'extérieur pour un camembert" + +#: ../src/ui/object-edit.cpp:1148 +msgid "" +"Adjust the tip radius of the star or polygon; with Shift to " +"round; with Alt to randomize" +msgstr "" +"Ajuster le rayon des sommets de l'étoile ou du polygone; Maj " +"pour arrondir; Alt pour rendre aléatoire" + +#: ../src/ui/object-edit.cpp:1156 +msgid "" +"Adjust the base radius of the star; with Ctrl to keep star " +"rays radial (no skew); with Shift to round; with Alt to " +"randomize" +msgstr "" +"Ajuster le rayon de base de l'étoile; Ctrl pour garder " +"l'étoile parfaitement radiale (pas d'inclinaison); Maj pour arrondir; " +"Alt pour rendre aléatoire" + +#: ../src/ui/object-edit.cpp:1351 +msgid "" +"Roll/unroll the spiral from inside; with Ctrl to snap angle; " +"with Alt to converge/diverge" +msgstr "" +"Enrouler/dérouler la spirale depuis l'intérieur; Ctrl pour " +"tourner par incréments; Alt pour la faire converger/diverger" + +#: ../src/ui/object-edit.cpp:1355 +msgid "" +"Roll/unroll the spiral from outside; with Ctrl to snap angle; " +"with Shift to scale/rotate; with Alt to lock radius" +msgstr "" +"Enrouler/dérouler la spirale depuis l'extérieur ; Ctrl pour " +"tourner par incréments ; Maj pour redimensionner/ tourner ; Alt pour verrouiller le rayon" + +#: ../src/ui/object-edit.cpp:1402 +msgid "Adjust the offset distance" +msgstr "Ajuster la distance d'offset" + +#: ../src/ui/object-edit.cpp:1439 +msgid "Drag to resize the flowed text frame" +msgstr "Cliquer-déplacer pour redimensionner le cadre du texte" + +#: ../src/ui/tool/curve-drag-point.cpp:105 msgid "Drag curve" msgstr "Déplacer la courbe" -#: ../src/ui/tool/curve-drag-point.cpp:157 +#: ../src/ui/tool/curve-drag-point.cpp:162 msgid "Add node" msgstr "Ajouter un nœud" -#: ../src/ui/tool/curve-drag-point.cpp:167 +#: ../src/ui/tool/curve-drag-point.cpp:172 msgctxt "Path segment tip" msgid "Shift: click to toggle segment selection" msgstr "Maj : cliquer pour inverser l'état de sélection" -#: ../src/ui/tool/curve-drag-point.cpp:171 +#: ../src/ui/tool/curve-drag-point.cpp:176 msgctxt "Path segment tip" msgid "Ctrl+Alt: click to insert a node" msgstr "Ctrl+Alt : cliquer pour insérer un nœud" -#: ../src/ui/tool/curve-drag-point.cpp:175 +#: ../src/ui/tool/curve-drag-point.cpp:180 msgctxt "Path segment tip" -msgid "Linear segment: drag to convert to a Bezier segment, doubleclick to insert node, click to select (more: Shift, Ctrl+Alt)" -msgstr "Segment linéaire : cliquer-déplacer pour convertir en segment de Bézier, double-cliquer pour insérer un nœud, cliquer pour sélectionner (modificateurs : Maj, Ctrl+Alt)" +msgid "" +"Linear segment: drag to convert to a Bezier segment, doubleclick to " +"insert node, click to select (more: Shift, Ctrl+Alt)" +msgstr "" +"Segment linéaire : cliquer-déplacer pour convertir en segment de " +"Bézier, double-cliquer pour insérer un nœud, cliquer pour sélectionner " +"(modificateurs : Maj, Ctrl+Alt)" -#: ../src/ui/tool/curve-drag-point.cpp:179 +#: ../src/ui/tool/curve-drag-point.cpp:184 msgctxt "Path segment tip" -msgid "Bezier segment: drag to shape the segment, doubleclick to insert node, click to select (more: Shift, Ctrl+Alt)" -msgstr "Segment de Bézier : cliquer-déplacer pour modeler le segment, double-cliquer pour insérer un nœud, cliquer pour sélectionner (modificateurs : Maj, Ctrl+Alt)" +msgid "" +"Bezier segment: drag to shape the segment, doubleclick to insert " +"node, click to select (more: Shift, Ctrl+Alt)" +msgstr "" +"Segment de Bézier : cliquer-déplacer pour modeler le segment, double-" +"cliquer pour insérer un nœud, cliquer pour sélectionner (modificateurs : " +"Maj, Ctrl+Alt)" #: ../src/ui/tool/multi-path-manipulator.cpp:315 msgid "Retract handles" msgstr "Rétracter les poignées" -#: ../src/ui/tool/multi-path-manipulator.cpp:315 -#: ../src/ui/tool/node.cpp:270 +#: ../src/ui/tool/multi-path-manipulator.cpp:315 ../src/ui/tool/node.cpp:296 msgid "Change node type" msgstr "Modifier le type de nœud" @@ -20964,226 +22710,299 @@ msgstr "Séparer les nœuds" msgid "Delete nodes" msgstr "Supprimer les nœuds" -#: ../src/ui/tool/multi-path-manipulator.cpp:757 +#: ../src/ui/tool/multi-path-manipulator.cpp:768 msgid "Move nodes" msgstr "Déplacer les nœuds" -#: ../src/ui/tool/multi-path-manipulator.cpp:760 +#: ../src/ui/tool/multi-path-manipulator.cpp:771 msgid "Move nodes horizontally" msgstr "Déplacer les nœuds horizontalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:764 +#: ../src/ui/tool/multi-path-manipulator.cpp:775 msgid "Move nodes vertically" msgstr "Déplacer les nœuds verticalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:768 -#: ../src/ui/tool/multi-path-manipulator.cpp:771 +#: ../src/ui/tool/multi-path-manipulator.cpp:779 +#: ../src/ui/tool/multi-path-manipulator.cpp:782 msgid "Rotate nodes" msgstr "Tourner les nœuds" -#: ../src/ui/tool/multi-path-manipulator.cpp:775 -#: ../src/ui/tool/multi-path-manipulator.cpp:781 +#: ../src/ui/tool/multi-path-manipulator.cpp:786 +#: ../src/ui/tool/multi-path-manipulator.cpp:792 msgid "Scale nodes uniformly" msgstr "Redimensionner les nœuds uniformément" -#: ../src/ui/tool/multi-path-manipulator.cpp:778 +#: ../src/ui/tool/multi-path-manipulator.cpp:789 msgid "Scale nodes" msgstr "Redimensionner les nœuds" -#: ../src/ui/tool/multi-path-manipulator.cpp:785 +#: ../src/ui/tool/multi-path-manipulator.cpp:796 msgid "Scale nodes horizontally" msgstr "Redimensionner les nœuds horizontalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:789 +#: ../src/ui/tool/multi-path-manipulator.cpp:800 msgid "Scale nodes vertically" msgstr "Redimensionner les nœuds verticalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:793 +#: ../src/ui/tool/multi-path-manipulator.cpp:804 msgid "Skew nodes horizontally" msgstr "Incliner les nœuds horizontalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:797 +#: ../src/ui/tool/multi-path-manipulator.cpp:808 msgid "Skew nodes vertically" msgstr "Incliner les nœuds verticalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:801 +#: ../src/ui/tool/multi-path-manipulator.cpp:812 msgid "Flip nodes horizontally" msgstr "Retourner les nœuds horizontalement" -#: ../src/ui/tool/multi-path-manipulator.cpp:804 +#: ../src/ui/tool/multi-path-manipulator.cpp:815 msgid "Flip nodes vertically" msgstr "Retourner les nœuds verticalement" -#: ../src/ui/tool/node.cpp:245 +#: ../src/ui/tool/node.cpp:271 msgid "Cusp node handle" msgstr "Poignée de point de rebroussement" -#: ../src/ui/tool/node.cpp:246 +#: ../src/ui/tool/node.cpp:272 msgid "Smooth node handle" msgstr "Poignée de nœud doux" -#: ../src/ui/tool/node.cpp:247 +#: ../src/ui/tool/node.cpp:273 msgid "Symmetric node handle" msgstr "Poignée de nœud symétrique" -#: ../src/ui/tool/node.cpp:248 +#: ../src/ui/tool/node.cpp:274 msgid "Auto-smooth node handle" msgstr "Poignée de nœud automatique" -#: ../src/ui/tool/node.cpp:432 +#: ../src/ui/tool/node.cpp:493 msgctxt "Path handle tip" msgid "more: Shift, Ctrl, Alt" msgstr "modificateurs : Maj, Ctrl, Alt" -#: ../src/ui/tool/node.cpp:434 +#: ../src/ui/tool/node.cpp:495 +#, fuzzy +msgctxt "Path handle tip" +msgid "more: Ctrl" +msgstr "modificateurs : Ctrl, Alt" + +#: ../src/ui/tool/node.cpp:497 msgctxt "Path handle tip" msgid "more: Ctrl, Alt" msgstr "modificateurs : Ctrl, Alt" -#: ../src/ui/tool/node.cpp:440 +#: ../src/ui/tool/node.cpp:503 #, c-format msgctxt "Path handle tip" -msgid "Shift+Ctrl+Alt: preserve length and snap rotation angle to %g° increments while rotating both handles" -msgstr "Maj+Ctrl+Alt : préserver la longueur et forcer l'incrément de l'angle de rotation à %g ° lorsque les deux poignées sont tournées" +msgid "" +"Shift+Ctrl+Alt: preserve length and snap rotation angle to %g° " +"increments while rotating both handles" +msgstr "" +"Maj+Ctrl+Alt : préserver la longueur et forcer l'incrément de l'angle " +"de rotation à %g ° lorsque les deux poignées sont tournées" -#: ../src/ui/tool/node.cpp:445 +#: ../src/ui/tool/node.cpp:508 #, c-format msgctxt "Path handle tip" -msgid "Ctrl+Alt: preserve length and snap rotation angle to %g° increments" -msgstr "Ctrl+Alt : préserver la longueur et forcer l'incrément de l'angle de rotation à %g °" +msgid "" +"Ctrl+Alt: preserve length and snap rotation angle to %g° increments" +msgstr "" +"Ctrl+Alt : préserver la longueur et forcer l'incrément de l'angle de " +"rotation à %g °" -#: ../src/ui/tool/node.cpp:451 +#: ../src/ui/tool/node.cpp:514 msgctxt "Path handle tip" msgid "Shift+Alt: preserve handle length and rotate both handles" -msgstr "Maj+Alt : préserver la longueur des poignées et tourner les deux poignées" +msgstr "" +"Maj+Alt : préserver la longueur des poignées et tourner les deux " +"poignées" -#: ../src/ui/tool/node.cpp:454 +#: ../src/ui/tool/node.cpp:517 msgctxt "Path handle tip" msgid "Alt: preserve handle length while dragging" msgstr "Alt : préserver la longueur des poignées lors des déplacements" -#: ../src/ui/tool/node.cpp:461 +#: ../src/ui/tool/node.cpp:524 #, c-format msgctxt "Path handle tip" -msgid "Shift+Ctrl: snap rotation angle to %g° increments and rotate both handles" -msgstr "Maj+Ctrl : forcer l'incrément de l'angle de rotation à %g ° et tourner les deux poignées" +msgid "" +"Shift+Ctrl: snap rotation angle to %g° increments and rotate both " +"handles" +msgstr "" +"Maj+Ctrl : forcer l'incrément de l'angle de rotation à %g ° et " +"tourner les deux poignées" + +#: ../src/ui/tool/node.cpp:528 +msgctxt "Path handle tip" +msgid "Ctrl: Move handle by his actual steps in BSpline Live Effect" +msgstr "" -#: ../src/ui/tool/node.cpp:465 +#: ../src/ui/tool/node.cpp:531 #, c-format msgctxt "Path handle tip" msgid "Ctrl: snap rotation angle to %g° increments, click to retract" -msgstr "Ctrl : forcer l'incrément de l'angle de rotation à %g °, cliquer pour rétracter" +msgstr "" +"Ctrl : forcer l'incrément de l'angle de rotation à %g °, cliquer pour " +"rétracter" -#: ../src/ui/tool/node.cpp:470 +#: ../src/ui/tool/node.cpp:536 msgctxt "Path hande tip" msgid "Shift: rotate both handles by the same angle" msgstr "Maj : applique une rotation d'angle identique aux deux poignées" -#: ../src/ui/tool/node.cpp:477 +#: ../src/ui/tool/node.cpp:539 +#, fuzzy +msgctxt "Path hande tip" +msgid "Shift: move handle" +msgstr "Déplacer les poignées de nœuds" + +#: ../src/ui/tool/node.cpp:546 ../src/ui/tool/node.cpp:550 #, c-format msgctxt "Path handle tip" msgid "Auto node handle: drag to convert to smooth node (%s)" -msgstr "Poignées de nœud automatique : cliquer-déplacer pour convertir en nœud doux (%s)" +msgstr "" +"Poignées de nœud automatique : cliquer-déplacer pour convertir en " +"nœud doux (%s)" -#: ../src/ui/tool/node.cpp:480 -#, c-format +#: ../src/ui/tool/node.cpp:553 +#, fuzzy, c-format msgctxt "Path handle tip" -msgid "%s: drag to shape the segment (%s)" -msgstr "%s : cliquer-déplacer pour modeler le segment (%s)" +msgid "BSpline node handle: Shift to drag, double click to reset (%s)" +msgstr "" +"Poignées de nœud automatique : cliquer-déplacer pour convertir en " +"nœud doux (%s)" -#: ../src/ui/tool/node.cpp:500 +#: ../src/ui/tool/node.cpp:573 #, c-format msgctxt "Path handle tip" msgid "Move handle by %s, %s; angle %.2f°, length %s" msgstr "Déplacement des poignées de %s, %s; angle %.2f°, longueur %s" -#: ../src/ui/tool/node.cpp:1270 +#: ../src/ui/tool/node.cpp:1447 msgctxt "Path node tip" msgid "Shift: drag out a handle, click to toggle selection" -msgstr "Maj : cliquer-déplacer pour étirer une poignée, cliquer pour inverser l'état de sélection" +msgstr "" +"Maj : cliquer-déplacer pour étirer une poignée, cliquer pour inverser " +"l'état de sélection" -#: ../src/ui/tool/node.cpp:1272 +#: ../src/ui/tool/node.cpp:1449 msgctxt "Path node tip" msgid "Shift: click to toggle selection" msgstr "Maj : cliquer pour inverser l'état de sélection" -#: ../src/ui/tool/node.cpp:1277 +#: ../src/ui/tool/node.cpp:1454 msgctxt "Path node tip" msgid "Ctrl+Alt: move along handle lines, click to delete node" -msgstr "Ctrl+Alt : déplacer le long des lignes des poignées, cliquer pour effacer le nœud" +msgstr "" +"Ctrl+Alt : déplacer le long des lignes des poignées, cliquer pour " +"effacer le nœud" -#: ../src/ui/tool/node.cpp:1280 +#: ../src/ui/tool/node.cpp:1457 msgctxt "Path node tip" msgid "Ctrl: move along axes, click to change node type" -msgstr "Ctrl : déplacer le long des axes, cliquer pour changer de type de nœud" +msgstr "" +"Ctrl : déplacer le long des axes, cliquer pour changer de type de nœud" -#: ../src/ui/tool/node.cpp:1284 +#: ../src/ui/tool/node.cpp:1461 msgctxt "Path node tip" msgid "Alt: sculpt nodes" msgstr "Alt : sculpter les nœuds" -#: ../src/ui/tool/node.cpp:1292 +#: ../src/ui/tool/node.cpp:1469 #, c-format msgctxt "Path node tip" msgid "%s: drag to shape the path (more: Shift, Ctrl, Alt)" -msgstr "%s : cliquer-déplacer pour modeler le chemin (modificateurs : Maj, Ctrl, Alt)" +msgstr "" +"%s : cliquer-déplacer pour modeler le chemin (modificateurs : Maj, " +"Ctrl, Alt)" + +#: ../src/ui/tool/node.cpp:1472 +#, fuzzy, c-format +msgctxt "Path node tip" +msgid "" +"BSpline node: %g weight, drag to shape the path (more: Shift, Ctrl, " +"Alt)" +msgstr "" +"%s : cliquer-déplacer pour modeler le chemin (modificateurs : Maj, " +"Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1295 +#: ../src/ui/tool/node.cpp:1475 #, c-format msgctxt "Path node tip" -msgid "%s: drag to shape the path, click to toggle scale/rotation handles (more: Shift, Ctrl, Alt)" -msgstr "%s : cliquer-déplacer pour modeler le chemin, cliquer pour basculer entre les poignées de sélection et de rotation (modificateurs : Maj, Ctrl, Alt)" +msgid "" +"%s: drag to shape the path, click to toggle scale/rotation handles " +"(more: Shift, Ctrl, Alt)" +msgstr "" +"%s : cliquer-déplacer pour modeler le chemin, cliquer pour basculer " +"entre les poignées de sélection et de rotation (modificateurs : Maj, Ctrl, " +"Alt)" -#: ../src/ui/tool/node.cpp:1298 +#: ../src/ui/tool/node.cpp:1479 #, c-format msgctxt "Path node tip" -msgid "%s: drag to shape the path, click to select only this node (more: Shift, Ctrl, Alt)" -msgstr "%s : cliquer-déplacer pour modeler le chemin, cliquer pour sélectionner seulement ce nœud (modificateurs : Maj, Ctrl, Alt)" +msgid "" +"%s: drag to shape the path, click to select only this node (more: " +"Shift, Ctrl, Alt)" +msgstr "" +"%s : cliquer-déplacer pour modeler le chemin, cliquer pour " +"sélectionner seulement ce nœud (modificateurs : Maj, Ctrl, Alt)" + +#: ../src/ui/tool/node.cpp:1482 +#, fuzzy +msgctxt "Path node tip" +msgid "" +"BSpline node: drag to shape the path, click to select only this node " +"(more: Shift, Ctrl, Alt)" +msgstr "" +"%s : cliquer-déplacer pour modeler le chemin, cliquer pour " +"sélectionner seulement ce nœud (modificateurs : Maj, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1309 +#: ../src/ui/tool/node.cpp:1495 #, c-format msgctxt "Path node tip" msgid "Move node by %s, %s" msgstr "Déplacement du nœud de %s, %s" -#: ../src/ui/tool/node.cpp:1320 +#: ../src/ui/tool/node.cpp:1506 msgid "Symmetric node" msgstr "Nœud symétrique" -#: ../src/ui/tool/node.cpp:1321 +#: ../src/ui/tool/node.cpp:1507 msgid "Auto-smooth node" msgstr "Nœud automatique" -#: ../src/ui/tool/path-manipulator.cpp:821 +#: ../src/ui/tool/path-manipulator.cpp:836 msgid "Scale handle" msgstr "Redimensionner la poignée" -#: ../src/ui/tool/path-manipulator.cpp:845 +#: ../src/ui/tool/path-manipulator.cpp:860 msgid "Rotate handle" msgstr "Faire tourner la poignée" #. We need to call MPM's method because it could have been our last node -#: ../src/ui/tool/path-manipulator.cpp:1384 +#: ../src/ui/tool/path-manipulator.cpp:1520 #: ../src/widgets/node-toolbar.cpp:397 msgid "Delete node" msgstr "Supprimer le nœud" -#: ../src/ui/tool/path-manipulator.cpp:1392 +#: ../src/ui/tool/path-manipulator.cpp:1528 msgid "Cycle node type" msgstr "Permuter le type de nœud" -#: ../src/ui/tool/path-manipulator.cpp:1407 +#: ../src/ui/tool/path-manipulator.cpp:1543 msgid "Drag handle" msgstr "Étirer la poignée" -#: ../src/ui/tool/path-manipulator.cpp:1416 +#: ../src/ui/tool/path-manipulator.cpp:1552 msgid "Retract handle" msgstr "Retracter la poignée" #: ../src/ui/tool/transform-handle-set.cpp:195 msgctxt "Transform handle tip" msgid "Shift+Ctrl: scale uniformly about the rotation center" -msgstr "Maj+Ctrl : redimensionne uniformément autour du centre de rotation" +msgstr "" +"Maj+Ctrl : redimensionne uniformément autour du centre de rotation" #: ../src/ui/tool/transform-handle-set.cpp:197 msgctxt "Transform handle tip" @@ -21192,8 +23011,11 @@ msgstr "Ctrl : redimensionner uniformément" #: ../src/ui/tool/transform-handle-set.cpp:202 msgctxt "Transform handle tip" -msgid "Shift+Alt: scale using an integer ratio about the rotation center" -msgstr "Maj+Alt : redimensionne conformément à un rapport entier autour du centre de rotation" +msgid "" +"Shift+Alt: scale using an integer ratio about the rotation center" +msgstr "" +"Maj+Alt : redimensionne conformément à un rapport entier autour du " +"centre de rotation" #: ../src/ui/tool/transform-handle-set.cpp:204 msgctxt "Transform handle tip" @@ -21208,7 +23030,9 @@ msgstr "Alt : redimensionne conformément à un rapport entier" #: ../src/ui/tool/transform-handle-set.cpp:209 msgctxt "Transform handle tip" msgid "Scale handle: drag to scale the selection" -msgstr "Poignée de redimensionnement : cliquer-déplacer pour redimensionner la sélection" +msgstr "" +"Poignée de redimensionnement : cliquer-déplacer pour redimensionner " +"la sélection" #: ../src/ui/tool/transform-handle-set.cpp:214 #, c-format @@ -21219,7 +23043,9 @@ msgstr "Redimensionnement de %.2f%% x %.2f%%" #: ../src/ui/tool/transform-handle-set.cpp:438 #, c-format msgctxt "Transform handle tip" -msgid "Shift+Ctrl: rotate around the opposite corner and snap angle to %f° increments" +msgid "" +"Shift+Ctrl: rotate around the opposite corner and snap angle to %f° " +"increments" msgstr "Maj+Ctrl : tourne autour du coin opposé par incréments de %f °" #: ../src/ui/tool/transform-handle-set.cpp:441 @@ -21235,8 +23061,12 @@ msgstr "Ctrl : tourner par incréments de %f °" #: ../src/ui/tool/transform-handle-set.cpp:447 msgctxt "Transform handle tip" -msgid "Rotation handle: drag to rotate the selection around the rotation center" -msgstr "Poignée de rotation : cliquer-déplacer pour faire tourner la sélection autour du centre de rotation" +msgid "" +"Rotation handle: drag to rotate the selection around the rotation " +"center" +msgstr "" +"Poignée de rotation : cliquer-déplacer pour faire tourner la " +"sélection autour du centre de rotation" #. event #: ../src/ui/tool/transform-handle-set.cpp:452 @@ -21248,8 +23078,12 @@ msgstr "Rotation de %.2f °" #: ../src/ui/tool/transform-handle-set.cpp:578 #, c-format msgctxt "Transform handle tip" -msgid "Shift+Ctrl: skew about the rotation center with snapping to %f° increments" -msgstr "Maj+Ctrl : incliner par rapport au centre de rotation par incréments de %f °" +msgid "" +"Shift+Ctrl: skew about the rotation center with snapping to %f° " +"increments" +msgstr "" +"Maj+Ctrl : incliner par rapport au centre de rotation par incréments " +"de %f °" #: ../src/ui/tool/transform-handle-set.cpp:581 msgctxt "Transform handle tip" @@ -21264,8 +23098,11 @@ msgstr "Ctrl : incliner par incréments de %f °" #: ../src/ui/tool/transform-handle-set.cpp:588 msgctxt "Transform handle tip" -msgid "Skew handle: drag to skew (shear) selection about the opposite handle" -msgstr "Poignée d'inclinaison : cliquer-déplacer pour incliner la sélection par rapport à la poignée opposée" +msgid "" +"Skew handle: drag to skew (shear) selection about the opposite handle" +msgstr "" +"Poignée d'inclinaison : cliquer-déplacer pour incliner la sélection " +"par rapport à la poignée opposée" #: ../src/ui/tool/transform-handle-set.cpp:594 #, c-format @@ -21282,37 +23119,212 @@ msgstr "Incline verticalement de %.2f °" #: ../src/ui/tool/transform-handle-set.cpp:656 msgctxt "Transform handle tip" msgid "Rotation center: drag to change the origin of transforms" -msgstr "Centre de rotation : cliquer-déplacer pour modifier l'origine des transformations" +msgstr "" +"Centre de rotation : cliquer-déplacer pour modifier l'origine des " +"transformations" + +#: ../src/ui/tools-switch.cpp:95 +msgid "" +"Click to Select and Transform objects, Drag to select many " +"objects." +msgstr "" +"Cliquer pour sélectionner et transformer des objets, cliquer-" +"déplacer pour sélectionner plusieurs objets." + +#: ../src/ui/tools-switch.cpp:96 +msgid "Modify selected path points (nodes) directly." +msgstr "Modifier les points du chemin (nœuds) sélectionnés directement." + +#: ../src/ui/tools-switch.cpp:97 +msgid "To tweak a path by pushing, select it and drag over it." +msgstr "" +"Pour perturber un chemin en le poussant, sélectionnez-le et faites glisser " +"la souris dessus." + +#: ../src/ui/tools-switch.cpp:98 +msgid "" +"Drag, click or click and scroll to spray the selected " +"objects." +msgstr "" +"Cliquer-déplacer, cliquer ou défiler pour pulvériser " +"les objets sélectionnés." + +#: ../src/ui/tools-switch.cpp:99 +msgid "" +"Drag to create a rectangle. Drag controls to round corners and " +"resize. Click to select." +msgstr "" +"Cliquer-déplacer pour créer un rectangle. Déplacer les poignées pour arrondir les coins. Cliquer pour sélectionner." + +#: ../src/ui/tools-switch.cpp:100 +msgid "" +"Drag to create a 3D box. Drag controls to resize in " +"perspective. Click to select (with Ctrl+Alt for single faces)." +msgstr "" +"Cliquer-déplacer pour créer une boîte 3D. Déplacer les poignées pour redimensionner en perspective. Cliquer pour sélectionner " +"(avec Ctrl+Alt pour sélectionner les faces)." + +#: ../src/ui/tools-switch.cpp:101 +msgid "" +"Drag to create an ellipse. Drag controls to make an arc or " +"segment. Click to select." +msgstr "" +"Cliquer-déplacer pour créer une ellipse. Déplacer les poignées " +"pour faire des arcs ou des camemberts. Cliquer pour sélectionner." + +#: ../src/ui/tools-switch.cpp:102 +msgid "" +"Drag to create a star. Drag controls to edit the star shape. " +"Click to select." +msgstr "" +"Cliquer-déplacer pour créer une étoile. Déplacer les poignées " +"pour éditer la forme de l'étoile. Cliquer pour sélectionner." + +#: ../src/ui/tools-switch.cpp:103 +msgid "" +"Drag to create a spiral. Drag controls to edit the spiral " +"shape. Click to select." +msgstr "" +"Cliquer-déplacer pour créer une spirale. Déplacer les poignées " +"pour modifier la forme de la spirale. Cliquer pour sélectionner." + +#: ../src/ui/tools-switch.cpp:104 +msgid "" +"Drag to create a freehand line. Shift appends to selected " +"path, Alt activates sketch mode." +msgstr "" +"Cliquer-déplacer pour créer une ligne à main levée. Maj pour " +"l'ajouter au chemin sélectionné. Alt pour activer le mode croquis." + +#: ../src/ui/tools-switch.cpp:105 +msgid "" +"Click or click and drag to start a path; with Shift to " +"append to selected path. Ctrl+click to create single dots (straight " +"line modes only)." +msgstr "" +"Cliquer ou cliquer-déplacer pour commencer un chemin; Maj pour ajouter au chemin sélectionné; Ctrl+clic pour créer des " +"points isolés (avec les modes lignes droites)." + +#: ../src/ui/tools-switch.cpp:106 +msgid "" +"Drag to draw a calligraphic stroke; with Ctrl to track a guide " +"path. Arrow keys adjust width (left/right) and angle (up/down)." +msgstr "" +"Cliquer-déplacer pour calligraphier; Ctrl pour suivre un " +"guide. Les flèches gauche/droite ajustent la largeur de la " +"plume, haut/bas son angle." + +#: ../src/ui/tools-switch.cpp:107 ../src/ui/tools/text-tool.cpp:1593 +msgid "" +"Click to select or create text, drag to create flowed text; " +"then type." +msgstr "" +"Cliquer pour sélectionner ou créer un texte, cliquer-déplacer " +"pour créer un texte encadré; puis taper le texte." + +#: ../src/ui/tools-switch.cpp:108 +msgid "" +"Drag or double click to create a gradient on selected objects, " +"drag handles to adjust gradients." +msgstr "" +"Cliquer-déplacer ou double-cliquer pour créer un dégradé sur " +"les objets sélectionnés, déplacer les poignées pour ajuster les " +"dégradés." + +#: ../src/ui/tools-switch.cpp:109 +msgid "" +"Drag or double click to create a mesh on selected objects, " +"drag handles to adjust meshes." +msgstr "" +"Cliquer-déplacer ou double-cliquer pour créer une toile sur " +"les objets sélectionnés, déplacer les poignées pour ajuster les " +"toiles." + +#: ../src/ui/tools-switch.cpp:110 +msgid "" +"Click or drag around an area to zoom in, Shift+click to " +"zoom out." +msgstr "" +"Cliquer ou cliquer-déplacer sur une zone pour zoomer, Maj" +"+clic pour dézoomer." + +#: ../src/ui/tools-switch.cpp:111 +msgid "Drag to measure the dimensions of objects." +msgstr "Cliquer-glisser pour mesurer les dimensions des objets." + +#: ../src/ui/tools-switch.cpp:112 ../src/ui/tools/dropper-tool.cpp:285 +msgid "" +"Click to set fill, Shift+click to set stroke; drag to " +"average color in area; with Alt to pick inverse color; Ctrl+C " +"to copy the color under mouse to clipboard" +msgstr "" +"Cliquer pour appliquer au remplissage, Maj+clic pour appliquer " +"au contour; cliquer-déplacer pour capturer la couleur moyenne sur une " +"zone; à combiner avec Alt pour capturer la couleur inverse; Ctrl" +"+C pour copier la couleur sous le curseur de la souris vers le presse-" +"papiers " + +#: ../src/ui/tools-switch.cpp:113 +msgid "Click and drag between shapes to create a connector." +msgstr "Cliquer et déplacer entre des formes pour créer un connecteur." + +#: ../src/ui/tools-switch.cpp:114 +msgid "" +"Click to paint a bounded area, Shift+click to union the new " +"fill with the current selection, Ctrl+click to change the clicked " +"object's fill and stroke to the current setting." +msgstr "" +"Cliquer pour remplir une région bornée. Maj+Clic pour faire " +"une union du remplissage avec la sélection courante, Ctrl+Clic pour " +"changer le trait et le remplissage de l'objet désigné" + +#: ../src/ui/tools-switch.cpp:115 +msgid "Drag to erase." +msgstr "Cliquer-déplacer pour effacer" + +#: ../src/ui/tools-switch.cpp:116 +msgid "Choose a subtool from the toolbar" +msgstr "Sélectionner un outil secondaire dans la barre d'outils" #: ../src/ui/tools/arc-tool.cpp:252 -msgid "Ctrl: make circle or integer-ratio ellipse, snap arc/segment angle" -msgstr "Ctrl : dessiner des cercles ou des ellipses de ratio entier, forcer la modification des angles des arcs/camemberts par incréments" +msgid "" +"Ctrl: make circle or integer-ratio ellipse, snap arc/segment angle" +msgstr "" +"Ctrl : dessiner des cercles ou des ellipses de ratio entier, forcer " +"la modification des angles des arcs/camemberts par incréments" -#: ../src/ui/tools/arc-tool.cpp:253 -#: ../src/ui/tools/rect-tool.cpp:289 +#: ../src/ui/tools/arc-tool.cpp:253 ../src/ui/tools/rect-tool.cpp:289 msgid "Shift: draw around the starting point" msgstr "Maj : dessiner autour du point de départ" #: ../src/ui/tools/arc-tool.cpp:422 #, c-format -msgid "Ellipse: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point" -msgstr "Ellipse : %s × %s; (contrainte de ratio %d:%d); Maj pour dessiner autour du point de départ" +msgid "" +"Ellipse: %s × %s (constrained to ratio %d:%d); with Shift " +"to draw around the starting point" +msgstr "" +"Ellipse : %s × %s; (contrainte de ratio %d:%d); Maj pour " +"dessiner autour du point de départ" #: ../src/ui/tools/arc-tool.cpp:424 #, c-format -msgid "Ellipse: %s × %s; with Ctrl to make square or integer-ratio ellipse; with Shift to draw around the starting point" -msgstr "Ellipse : %s × %s; Ctrl pour dessiner des cercles ou des ellipses de ratio entier, Maj pour dessiner autour du point de départ" +msgid "" +"Ellipse: %s × %s; with Ctrl to make square or integer-" +"ratio ellipse; with Shift to draw around the starting point" +msgstr "" +"Ellipse : %s × %s; Ctrl pour dessiner des cercles ou des " +"ellipses de ratio entier, Maj pour dessiner autour du point de départ" #: ../src/ui/tools/arc-tool.cpp:447 msgid "Create ellipse" msgstr "Créer une ellipse" -#: ../src/ui/tools/box3d-tool.cpp:370 -#: ../src/ui/tools/box3d-tool.cpp:377 -#: ../src/ui/tools/box3d-tool.cpp:384 -#: ../src/ui/tools/box3d-tool.cpp:391 -#: ../src/ui/tools/box3d-tool.cpp:398 -#: ../src/ui/tools/box3d-tool.cpp:405 +#: ../src/ui/tools/box3d-tool.cpp:370 ../src/ui/tools/box3d-tool.cpp:377 +#: ../src/ui/tools/box3d-tool.cpp:384 ../src/ui/tools/box3d-tool.cpp:391 +#: ../src/ui/tools/box3d-tool.cpp:398 ../src/ui/tools/box3d-tool.cpp:405 msgid "Change perspective (angle of PLs)" msgstr "Changer la perspective (angle des LP)" @@ -21326,8 +23338,11 @@ msgid "Create 3D box" msgstr "Créer une boîte 3D" #: ../src/ui/tools/calligraphic-tool.cpp:536 -msgid "Guide path selected; start drawing along the guide with Ctrl" -msgstr "Guide sélectionné; commencer à dessiner le long du guide avec Ctrl" +msgid "" +"Guide path selected; start drawing along the guide with Ctrl" +msgstr "" +"Guide sélectionné; commencer à dessiner le long du guide avec " +"Ctrl" #: ../src/ui/tools/calligraphic-tool.cpp:538 msgid "Select a guide path to track with Ctrl" @@ -21371,7 +23386,9 @@ msgstr "Tracé du connecteur terminé" #: ../src/ui/tools/connector-tool.cpp:1191 msgid "Connector endpoint: drag to reroute or connect to new shapes" -msgstr "Fin de connecteur : déplacer pour rerouter ou connecter à de nouvelles formes" +msgstr "" +"Fin de connecteur : déplacer pour rerouter ou connecter à de " +"nouvelles formes" #: ../src/ui/tools/connector-tool.cpp:1336 msgid "Select at least one non-connector object." @@ -21451,10 +23468,14 @@ msgstr "Trop de contraction, le résultat est vide." #: ../src/ui/tools/flood-tool.cpp:476 #, c-format -msgid "Area filled, path with %d node created and unioned with selection." -msgid_plural "Area filled, path with %d nodes created and unioned with selection." -msgstr[0] "Zone remplie, création d'un chemin de %d nœud, ajouté à la sélection." -msgstr[1] "Zone remplie, création d'un chemin de %d nœuds, ajouté à la sélection." +msgid "" +"Area filled, path with %d node created and unioned with selection." +msgid_plural "" +"Area filled, path with %d nodes created and unioned with selection." +msgstr[0] "" +"Zone remplie, création d'un chemin de %d nœud, ajouté à la sélection." +msgstr[1] "" +"Zone remplie, création d'un chemin de %d nœuds, ajouté à la sélection." #: ../src/ui/tools/flood-tool.cpp:482 #, c-format @@ -21463,17 +23484,19 @@ msgid_plural "Area filled, path with %d nodes created." msgstr[0] "Zone remplie, création d'un chemin avec %d nœud." msgstr[1] "Zone remplie, création d'un chemin avec %d nœuds." -#: ../src/ui/tools/flood-tool.cpp:750 -#: ../src/ui/tools/flood-tool.cpp:1060 +#: ../src/ui/tools/flood-tool.cpp:750 ../src/ui/tools/flood-tool.cpp:1060 msgid "Area is not bounded, cannot fill." msgstr "Zone non bornée, impossible de remplir." #: ../src/ui/tools/flood-tool.cpp:1065 -msgid "Only the visible part of the bounded area was filled. If you want to fill all of the area, undo, zoom out, and fill again." -msgstr "Seule la partie visible de la zone a été remplie. Pour remplir toute la zone, annulez, dézoomez et remplissez à nouveau." +msgid "" +"Only the visible part of the bounded area was filled. If you want to " +"fill all of the area, undo, zoom out, and fill again." +msgstr "" +"Seule la partie visible de la zone a été remplie. Pour remplir toute " +"la zone, annulez, dézoomez et remplissez à nouveau." -#: ../src/ui/tools/flood-tool.cpp:1083 -#: ../src/ui/tools/flood-tool.cpp:1234 +#: ../src/ui/tools/flood-tool.cpp:1083 ../src/ui/tools/flood-tool.cpp:1234 msgid "Fill bounded area" msgstr "Remplissage d'une zone bornée" @@ -21483,40 +23506,40 @@ msgstr "Appliquer un style à l'objet" #: ../src/ui/tools/flood-tool.cpp:1159 msgid "Draw over areas to add to fill, hold Alt for touch fill" -msgstr "Dessiner au-dessus d'une zone pour la remplir, avec Alt pour remplir au toucher" +msgstr "" +"Dessiner au-dessus d'une zone pour la remplir, avec Alt pour " +"remplir au toucher" #. We hit green anchor, closing Green-Blue-Red -#: ../src/ui/tools/freehand-base.cpp:517 +#: ../src/ui/tools/freehand-base.cpp:559 msgid "Path is closed." msgstr "Le chemin est fermé." #. We hit bot start and end of single curve, closing paths -#: ../src/ui/tools/freehand-base.cpp:532 +#: ../src/ui/tools/freehand-base.cpp:574 msgid "Closing path." msgstr "Fermeture de chemin." -#: ../src/ui/tools/freehand-base.cpp:634 +#: ../src/ui/tools/freehand-base.cpp:711 msgid "Draw path" msgstr "Dessiner un chemin" -#: ../src/ui/tools/freehand-base.cpp:791 +#: ../src/ui/tools/freehand-base.cpp:867 msgid "Creating single dot" msgstr "Création d'un point isolé" -#: ../src/ui/tools/freehand-base.cpp:792 +#: ../src/ui/tools/freehand-base.cpp:868 msgid "Create single dot" msgstr "Créer un point isolé" #. TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message -#: ../src/ui/tools/gradient-tool.cpp:131 -#: ../src/ui/tools/mesh-tool.cpp:130 +#: ../src/ui/tools/gradient-tool.cpp:131 ../src/ui/tools/mesh-tool.cpp:130 #, c-format msgid "%s selected" msgstr "%s sélectionné" #. TRANSLATORS: Mind the space in front. This is part of a compound message -#: ../src/ui/tools/gradient-tool.cpp:133 -#: ../src/ui/tools/gradient-tool.cpp:142 +#: ../src/ui/tools/gradient-tool.cpp:133 ../src/ui/tools/gradient-tool.cpp:142 #, c-format msgid " out of %d gradient handle" msgid_plural " out of %d gradient handles" @@ -21524,12 +23547,9 @@ msgstr[0] " sur %d poignée de dégradé" msgstr[1] " sur %d poignées de dégradé" #. TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message -#: ../src/ui/tools/gradient-tool.cpp:134 -#: ../src/ui/tools/gradient-tool.cpp:143 -#: ../src/ui/tools/gradient-tool.cpp:150 -#: ../src/ui/tools/mesh-tool.cpp:133 -#: ../src/ui/tools/mesh-tool.cpp:144 -#: ../src/ui/tools/mesh-tool.cpp:152 +#: ../src/ui/tools/gradient-tool.cpp:134 ../src/ui/tools/gradient-tool.cpp:143 +#: ../src/ui/tools/gradient-tool.cpp:150 ../src/ui/tools/mesh-tool.cpp:133 +#: ../src/ui/tools/mesh-tool.cpp:144 ../src/ui/tools/mesh-tool.cpp:152 #, c-format msgid " on %d selected object" msgid_plural " on %d selected objects" @@ -21537,13 +23557,18 @@ msgstr[0] " dans %d objet sélectionné" msgstr[1] " dans %d objets sélectionnés" #. TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) -#: ../src/ui/tools/gradient-tool.cpp:140 -#: ../src/ui/tools/mesh-tool.cpp:140 +#: ../src/ui/tools/gradient-tool.cpp:140 ../src/ui/tools/mesh-tool.cpp:140 #, c-format -msgid "One handle merging %d stop (drag with Shift to separate) selected" -msgid_plural "One handle merging %d stops (drag with Shift to separate) selected" -msgstr[0] "Une poignée de dégradé rassemblant %d stops (cliquer-glissser avec Maj pour les séparer) sélectionnée" -msgstr[1] "Une poignée de dégradé rassemblant %d stops (cliquer-glissser avec Maj pour les séparer) sélectionnée" +msgid "" +"One handle merging %d stop (drag with Shift to separate) selected" +msgid_plural "" +"One handle merging %d stops (drag with Shift to separate) selected" +msgstr[0] "" +"Une poignée de dégradé rassemblant %d stops (cliquer-glissser avec Maj pour les séparer) sélectionnée" +msgstr[1] "" +"Une poignée de dégradé rassemblant %d stops (cliquer-glissser avec Maj pour les séparer) sélectionnée" #. TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) #: ../src/ui/tools/gradient-tool.cpp:148 @@ -21557,75 +23582,82 @@ msgstr[1] "%d poignées de dégradé sélectionnées sur %d" #: ../src/ui/tools/gradient-tool.cpp:155 #, c-format msgid "No gradient handles selected out of %d on %d selected object" -msgid_plural "No gradient handles selected out of %d on %d selected objects" +msgid_plural "" +"No gradient handles selected out of %d on %d selected objects" msgstr[0] "Aucune poignée sélectionnée sur %d dans %d objet sélectionné" -msgstr[1] "Aucune poignée sélectionnée sur %d dans %d objets sélectionnés" +msgstr[1] "" +"Aucune poignée sélectionnée sur %d dans %d objets sélectionnés" -#: ../src/ui/tools/gradient-tool.cpp:440 +#: ../src/ui/tools/gradient-tool.cpp:443 msgid "Simplify gradient" msgstr "Simplifier le dégradé" -#: ../src/ui/tools/gradient-tool.cpp:516 +#: ../src/ui/tools/gradient-tool.cpp:519 msgid "Create default gradient" msgstr "Créer un dégradé par défaut" -#: ../src/ui/tools/gradient-tool.cpp:575 -#: ../src/ui/tools/mesh-tool.cpp:570 +#: ../src/ui/tools/gradient-tool.cpp:578 ../src/ui/tools/mesh-tool.cpp:570 msgid "Draw around handles to select them" msgstr "Dessiner autour des poignées pour les sélectionner" -#: ../src/ui/tools/gradient-tool.cpp:698 +#: ../src/ui/tools/gradient-tool.cpp:701 msgid "Ctrl: snap gradient angle" -msgstr "Ctrl : pour forcer la modification de l'inclinaison du dégradé par incréments" +msgstr "" +"Ctrl : pour forcer la modification de l'inclinaison du dégradé par " +"incréments" -#: ../src/ui/tools/gradient-tool.cpp:699 +#: ../src/ui/tools/gradient-tool.cpp:702 msgid "Shift: draw gradient around the starting point" msgstr "Maj : pour dessiner le dégradé autour du point de départ" -#: ../src/ui/tools/gradient-tool.cpp:953 -#: ../src/ui/tools/mesh-tool.cpp:993 +#: ../src/ui/tools/gradient-tool.cpp:956 ../src/ui/tools/mesh-tool.cpp:993 #, c-format msgid "Gradient for %d object; with Ctrl to snap angle" msgid_plural "Gradient for %d objects; with Ctrl to snap angle" -msgstr[0] "Dégradé appliqué à %d objet; déplacer avec Ctrl pour forcer la modification de l'inclinaison par incréments" -msgstr[1] "Dégradé appliqué à %d objets; déplacer avec Ctrl pour forcer la modification de l'inclinaison par incréments" - -#: ../src/ui/tools/gradient-tool.cpp:957 -#: ../src/ui/tools/mesh-tool.cpp:997 +msgstr[0] "" +"Dégradé appliqué à %d objet; déplacer avec Ctrl pour forcer la " +"modification de l'inclinaison par incréments" +msgstr[1] "" +"Dégradé appliqué à %d objets; déplacer avec Ctrl pour forcer " +"la modification de l'inclinaison par incréments" + +#: ../src/ui/tools/gradient-tool.cpp:960 ../src/ui/tools/mesh-tool.cpp:997 msgid "Select objects on which to create gradient." msgstr "Sélectionner des objets auxquels appliquer un dégradé." -#: ../src/ui/tools/lpe-tool.cpp:207 +#: ../src/ui/tools/lpe-tool.cpp:206 msgid "Choose a construction tool from the toolbar." msgstr "Sélectionner un outil de construction dans la barre d'outils" #. TRANSLATORS: Mind the space in front. This is part of a compound message -#: ../src/ui/tools/mesh-tool.cpp:132 -#: ../src/ui/tools/mesh-tool.cpp:143 -#, fuzzy, c-format +#: ../src/ui/tools/mesh-tool.cpp:132 ../src/ui/tools/mesh-tool.cpp:143 +#, c-format msgid " out of %d mesh handle" msgid_plural " out of %d mesh handles" -msgstr[0] " sur %d poignée de dégradé" -msgstr[1] " sur %d poignées de dégradé" +msgstr[0] " sur %d poignée de filet" +msgstr[1] " sur %d poignées de filet" #: ../src/ui/tools/mesh-tool.cpp:150 -#, fuzzy, c-format +#, c-format msgid "%d mesh handle selected out of %d" msgid_plural "%d mesh handles selected out of %d" -msgstr[0] "%d poignée de dégradé sélectionnée sur %d" -msgstr[1] "%d poignées de dégradé sélectionnées sur %d" +msgstr[0] "%d poignée de filet sélectionnée sur %d" +msgstr[1] "%d poignées de filet sélectionnées sur %d" #. TRANSLATORS: The plural refers to number of selected objects #: ../src/ui/tools/mesh-tool.cpp:157 -#, fuzzy, c-format +#, c-format msgid "No mesh handles selected out of %d on %d selected object" msgid_plural "No mesh handles selected out of %d on %d selected objects" -msgstr[0] "Aucune poignée sélectionnée sur %d dans %d objet sélectionné" -msgstr[1] "Aucune poignée sélectionnée sur %d dans %d objets sélectionnés" +msgstr[0] "" +"Aucune poignée de filet sélectionnée sur %d dans %d objet sélectionné" +msgstr[1] "" +"Aucune poignée de filet sélectionnée sur %d dans %d objets " +"sélectionnés" #: ../src/ui/tools/mesh-tool.cpp:321 msgid "Split mesh row/column" -msgstr "" +msgstr "Inverser les lignes et colonnes du filet" #: ../src/ui/tools/mesh-tool.cpp:407 msgid "Toggled mesh path type." @@ -21640,184 +23672,274 @@ msgid "Toggled mesh tensors." msgstr "" #: ../src/ui/tools/mesh-tool.cpp:419 -#, fuzzy msgid "Smoothed mesh corner color." -msgstr "_Adoucir les coins" +msgstr "Couleur de coin de filet adoucie." #: ../src/ui/tools/mesh-tool.cpp:423 -#, fuzzy msgid "Picked mesh corner color." -msgstr "Capturer la teinte de la couleur" +msgstr "Couleur de coin de filet choisie." #: ../src/ui/tools/mesh-tool.cpp:498 -#, fuzzy msgid "Create default mesh" -msgstr "Créer un dégradé par défaut" +msgstr "Créer un filet par défaut" #: ../src/ui/tools/mesh-tool.cpp:718 -#, fuzzy msgid "FIXMECtrl: snap mesh angle" -msgstr "Ctrl : pour tourner par incréments" +msgstr "Ctrl : aimanter au angles du filet" #: ../src/ui/tools/mesh-tool.cpp:719 -#, fuzzy msgid "FIXMEShift: draw mesh around the starting point" -msgstr "Maj : dessiner autour du point de départ" +msgstr "Maj : dessiner le filet autour du point de départ" -#: ../src/ui/tools/node-tool.cpp:594 +#: ../src/ui/tools/node-tool.cpp:612 msgctxt "Node tool tip" -msgid "Shift: drag to add nodes to the selection, click to toggle object selection" -msgstr "Maj : cliquer-déplacer pour ajouter des nœuds à la sélection, cliquer pour inverser l'état de sélection de l'objet" +msgid "" +"Shift: drag to add nodes to the selection, click to toggle object " +"selection" +msgstr "" +"Maj : cliquer-déplacer pour ajouter des nœuds à la sélection, cliquer " +"pour inverser l'état de sélection de l'objet" -#: ../src/ui/tools/node-tool.cpp:598 +#: ../src/ui/tools/node-tool.cpp:616 msgctxt "Node tool tip" msgid "Shift: drag to add nodes to the selection" msgstr "Maj : cliquer-déplacer pour ajouter des nœuds à la sélection" -#: ../src/ui/tools/node-tool.cpp:610 +#: ../src/ui/tools/node-tool.cpp:628 #, c-format msgid "%u of %u node selected." msgid_plural "%u of %u nodes selected." msgstr[0] "%u objet sur %u sélectionné" msgstr[1] "%u objets sur %u sélectionnés" -#: ../src/ui/tools/node-tool.cpp:616 +#: ../src/ui/tools/node-tool.cpp:634 #, c-format msgctxt "Node tool tip" msgid "%s Drag to select nodes, click to edit only this object (more: Shift)" -msgstr "%s Cliquer-glisser pour sélectionner des nœuds, cliquer pour sélectionner seulement cet objet (plus d'actions avec Maj)" +msgstr "" +"%s Cliquer-glisser pour sélectionner des nœuds, cliquer pour sélectionner " +"seulement cet objet (plus d'actions avec Maj)" -#: ../src/ui/tools/node-tool.cpp:622 +#: ../src/ui/tools/node-tool.cpp:640 #, c-format msgctxt "Node tool tip" msgid "%s Drag to select nodes, click clear the selection" -msgstr "%s Cliquer-glisser pour sélectionner des nœuds, cliquer pour libérer la sélection" +msgstr "" +"%s Cliquer-glisser pour sélectionner des nœuds, cliquer pour libérer la " +"sélection" -#: ../src/ui/tools/node-tool.cpp:631 +#: ../src/ui/tools/node-tool.cpp:649 msgctxt "Node tool tip" msgid "Drag to select nodes, click to edit only this object" -msgstr "Cliquer-glisser pour sélectionner des nœuds, cliquer pour sélectionner seulement cet objet" +msgstr "" +"Cliquer-glisser pour sélectionner des nœuds, cliquer pour sélectionner " +"seulement cet objet" -#: ../src/ui/tools/node-tool.cpp:634 +#: ../src/ui/tools/node-tool.cpp:652 msgctxt "Node tool tip" msgid "Drag to select nodes, click to clear the selection" -msgstr "Cliquer-glisser pour sélectionner des nœuds, cliquer pour libérer la sélection" +msgstr "" +"Cliquer-glisser pour sélectionner des nœuds, cliquer pour libérer la " +"sélection" -#: ../src/ui/tools/node-tool.cpp:639 +#: ../src/ui/tools/node-tool.cpp:657 msgctxt "Node tool tip" msgid "Drag to select objects to edit, click to edit this object (more: Shift)" -msgstr "Cliquer-glisser pour sélectionner les objets à éditer, cliquer pour éditer les objets (modificateur : Maj)" +msgstr "" +"Cliquer-glisser pour sélectionner les objets à éditer, cliquer pour éditer " +"les objets (modificateur : Maj)" -#: ../src/ui/tools/node-tool.cpp:642 +#: ../src/ui/tools/node-tool.cpp:660 msgctxt "Node tool tip" msgid "Drag to select objects to edit" msgstr "Cliquer-glisser pour sélectionner les objets à éditer" -#: ../src/ui/tools/pen-tool.cpp:186 -#: ../src/ui/tools/pencil-tool.cpp:465 +#: ../src/ui/tools/pen-tool.cpp:230 ../src/ui/tools/pencil-tool.cpp:466 msgid "Drawing cancelled" msgstr "Tracé annulé" -#: ../src/ui/tools/pen-tool.cpp:407 -#: ../src/ui/tools/pencil-tool.cpp:203 +#: ../src/ui/tools/pen-tool.cpp:466 ../src/ui/tools/pencil-tool.cpp:204 msgid "Continuing selected path" msgstr "Prolongation du chemin sélectionné" -#: ../src/ui/tools/pen-tool.cpp:417 -#: ../src/ui/tools/pencil-tool.cpp:211 +#: ../src/ui/tools/pen-tool.cpp:476 ../src/ui/tools/pencil-tool.cpp:212 msgid "Creating new path" msgstr "Création d'un nouveau chemin" -#: ../src/ui/tools/pen-tool.cpp:419 -#: ../src/ui/tools/pencil-tool.cpp:214 +#: ../src/ui/tools/pen-tool.cpp:478 ../src/ui/tools/pencil-tool.cpp:215 msgid "Appending to selected path" msgstr "Ajout au chemin sélectionné" -#: ../src/ui/tools/pen-tool.cpp:576 +#: ../src/ui/tools/pen-tool.cpp:638 msgid "Click or click and drag to close and finish the path." -msgstr "Cliquer ou cliquer-déplacer pour fermer et terminer le chemin." +msgstr "" +"Cliquer ou cliquer-déplacer pour fermer et terminer le chemin." -#: ../src/ui/tools/pen-tool.cpp:586 -msgid "Click or click and drag to continue the path from this point." -msgstr "Cliquer ou cliquer-déplacer pour prolonger le chemin à partir de ce point." +#: ../src/ui/tools/pen-tool.cpp:640 +#, fuzzy +msgid "" +"Click or click and drag to close and finish the path. Shift" +"+Click make a cusp node" +msgstr "" +"Cliquer ou cliquer-déplacer pour fermer et terminer le chemin." -#: ../src/ui/tools/pen-tool.cpp:1211 +#: ../src/ui/tools/pen-tool.cpp:652 +msgid "" +"Click or click and drag to continue the path from this point." +msgstr "" +"Cliquer ou cliquer-déplacer pour prolonger le chemin à partir " +"de ce point." + +#: ../src/ui/tools/pen-tool.cpp:654 +#, fuzzy +msgid "" +"Click or click and drag to continue the path from this point. " +"Shift+Click make a cusp node" +msgstr "" +"Cliquer ou cliquer-déplacer pour prolonger le chemin à partir " +"de ce point." + +#: ../src/ui/tools/pen-tool.cpp:2096 #, c-format -msgid "Curve segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter to finish the path" -msgstr "Segment de courbe : angle %3.2f°, distance %s ; Ctrl pour tourner par incréments ; Entrée pour terminer le chemin" +msgid "" +"Curve segment: angle %3.2f°, distance %s; with Ctrl to " +"snap angle, Enter to finish the path" +msgstr "" +"Segment de courbe : angle %3.2f°, distance %s ; Ctrl pour " +"tourner par incréments ; Entrée pour terminer le chemin" -#: ../src/ui/tools/pen-tool.cpp:1212 +#: ../src/ui/tools/pen-tool.cpp:2097 #, c-format -msgid "Line segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter to finish the path" -msgstr "Segment de droite : angle %3.2f°, distance %s ; Ctrl pour tourner par incréments ; Entrée pour terminer le chemin" +msgid "" +"Line segment: angle %3.2f°, distance %s; with Ctrl to " +"snap angle, Enter to finish the path" +msgstr "" +"Segment de droite : angle %3.2f°, distance %s ; Ctrl pour " +"tourner par incréments ; Entrée pour terminer le chemin" -#: ../src/ui/tools/pen-tool.cpp:1228 +#: ../src/ui/tools/pen-tool.cpp:2100 +#, fuzzy, c-format +msgid "" +"Curve segment: angle %3.2f°, distance %s; with Shift+Click make a cusp node, Enter to finish the path" +msgstr "" +"Segment de courbe : angle %3.2f°, distance %s ; Ctrl pour " +"tourner par incréments ; Entrée pour terminer le chemin" + +#: ../src/ui/tools/pen-tool.cpp:2101 +#, fuzzy, c-format +msgid "" +"Line segment: angle %3.2f°, distance %s; with Shift+Click " +"make a cusp node, Enter to finish the path" +msgstr "" +"Segment de droite : angle %3.2f°, distance %s ; Ctrl pour " +"tourner par incréments ; Entrée pour terminer le chemin" + +#: ../src/ui/tools/pen-tool.cpp:2118 #, c-format -msgid "Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle" -msgstr "Poignée de contrôle: angle %3.2f°, longueur %s; Ctrl pour tourner par incréments" +msgid "" +"Curve handle: angle %3.2f°, length %s; with Ctrl to snap " +"angle" +msgstr "" +"Poignée de contrôle: angle %3.2f°, longueur %s; Ctrl pour " +"tourner par incréments" -#: ../src/ui/tools/pen-tool.cpp:1250 +#: ../src/ui/tools/pen-tool.cpp:2142 #, c-format -msgid "Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only" -msgstr "Poignée de la courbe, symétrique : angle %3.2f°, longueur %s ; avec Ctrl pour tourner par incréments ; Maj pour ne déplacer que cette poignée" +msgid "" +"Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only" +msgstr "" +"Poignée de la courbe, symétrique : angle %3.2f°, longueur %s ; " +"avec Ctrl pour tourner par incréments ; Maj pour ne déplacer " +"que cette poignée" -#: ../src/ui/tools/pen-tool.cpp:1251 +#: ../src/ui/tools/pen-tool.cpp:2143 #, c-format -msgid "Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only" -msgstr "Poignée de la courbe : angle %3.2f°, longueur %s ; avec Ctrl pour tourner par incréments ; Maj pour ne déplacer que cette poignée" +msgid "" +"Curve handle: angle %3.2f°, length %s; with Ctrl to snap " +"angle, with Shift to move this handle only" +msgstr "" +"Poignée de la courbe : angle %3.2f°, longueur %s ; avec Ctrl pour tourner par incréments ; Maj pour ne déplacer que cette " +"poignée" -#: ../src/ui/tools/pen-tool.cpp:1294 +#: ../src/ui/tools/pen-tool.cpp:2191 msgid "Drawing finished" msgstr "Tracé terminé" -#: ../src/ui/tools/pencil-tool.cpp:315 +#: ../src/ui/tools/pencil-tool.cpp:316 msgid "Release here to close and finish the path." msgstr "Relâcher ici pour fermer et terminer le chemin." -#: ../src/ui/tools/pencil-tool.cpp:321 +#: ../src/ui/tools/pencil-tool.cpp:322 msgid "Drawing a freehand path" msgstr "Dessin d'une ligne à main levée" -#: ../src/ui/tools/pencil-tool.cpp:326 +#: ../src/ui/tools/pencil-tool.cpp:327 msgid "Drag to continue the path from this point." msgstr "Déplacer pour continuer le chemin à partir de ce point." #. Write curves to object -#: ../src/ui/tools/pencil-tool.cpp:411 +#: ../src/ui/tools/pencil-tool.cpp:412 msgid "Finishing freehand" msgstr "Dessin à main levée terminé" -#: ../src/ui/tools/pencil-tool.cpp:514 -msgid "Sketch mode: holding Alt interpolates between sketched paths. Release Alt to finalize." -msgstr "Mode croquis : maintenir Alt pour réaliser une interpolation entre les chemins croqués. Relacher Alt pour finaliser." +#: ../src/ui/tools/pencil-tool.cpp:515 +msgid "" +"Sketch mode: holding Alt interpolates between sketched paths. " +"Release Alt to finalize." +msgstr "" +"Mode croquis : maintenir Alt pour réaliser une interpolation " +"entre les chemins croqués. Relacher Alt pour finaliser." -#: ../src/ui/tools/pencil-tool.cpp:541 +#: ../src/ui/tools/pencil-tool.cpp:542 msgid "Finishing freehand sketch" msgstr "Croquis à main levée terminé" #: ../src/ui/tools/rect-tool.cpp:288 -msgid "Ctrl: make square or integer-ratio rect, lock a rounded corner circular" -msgstr "Ctrl : forcer un rectangle carré ou de ratio entier, préserver le rayon d'arrondi d'un coin" +msgid "" +"Ctrl: make square or integer-ratio rect, lock a rounded corner " +"circular" +msgstr "" +"Ctrl : forcer un rectangle carré ou de ratio entier, préserver le " +"rayon d'arrondi d'un coin" #: ../src/ui/tools/rect-tool.cpp:449 #, c-format -msgid "Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point" -msgstr "Rectangle : %s × %s; (contraint de ratio %d:%d) ; Maj pour dessiner autour du point de départ" +msgid "" +"Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point" +msgstr "" +"Rectangle : %s × %s; (contraint de ratio %d:%d) ; Maj " +"pour dessiner autour du point de départ" #: ../src/ui/tools/rect-tool.cpp:452 #, c-format -msgid "Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with Shift to draw around the starting point" -msgstr "Rectangle : %s × %s; (contraint au ratio du Nombre d'Or 1.618 : 1) ; Maj dessiner autour du point de départ" +msgid "" +"Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with " +"Shift to draw around the starting point" +msgstr "" +"Rectangle : %s × %s; (contraint au ratio du Nombre d'Or 1.618 : " +"1) ; Maj dessiner autour du point de départ" #: ../src/ui/tools/rect-tool.cpp:454 #, c-format -msgid "Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with Shift to draw around the starting point" -msgstr "Rectangle : %s × %s; (contraint au ratio du Nombre d'Or 1 : 1.618) ; Maj pour dessiner autour du point de départ" +msgid "" +"Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with " +"Shift to draw around the starting point" +msgstr "" +"Rectangle : %s × %s; (contraint au ratio du Nombre d'Or 1 : " +"1.618) ; Maj pour dessiner autour du point de départ" #: ../src/ui/tools/rect-tool.cpp:458 #, c-format -msgid "Rectangle: %s × %s; with Ctrl to make square or integer-ratio rectangle; with Shift to draw around the starting point" -msgstr "Rectangle : %s × %s; Ctrl forcer un rectangle carré ou de ratio entier; Maj dessiner autour du point de départ" +msgid "" +"Rectangle: %s × %s; with Ctrl to make square or integer-" +"ratio rectangle; with Shift to draw around the starting point" +msgstr "" +"Rectangle : %s × %s; Ctrl forcer un rectangle carré ou de " +"ratio entier; Maj dessiner autour du point de départ" #: ../src/ui/tools/rect-tool.cpp:481 msgid "Create rectangle" @@ -21825,11 +23947,17 @@ msgstr "Créer un rectangle" #: ../src/ui/tools/select-tool.cpp:169 msgid "Click selection to toggle scale/rotation handles" -msgstr "Cliquer sur la sélection pour alterner entre poignées de redimensionnement et de rotation" +msgstr "" +"Cliquer sur la sélection pour alterner entre poignées de redimensionnement " +"et de rotation" #: ../src/ui/tools/select-tool.cpp:170 -msgid "No objects selected. Click, Shift+click, Alt+scroll mouse on top of objects, or drag around objects to select." -msgstr "Aucun objet sélectionné. Sélectionnez des objets par Clic, Maj+Clic ou Alt+molette, ou cliquez-déplacez autour des objets à sélectionner." +msgid "" +"No objects selected. Click, Shift+click, Alt+scroll mouse on top of objects, " +"or drag around objects to select." +msgstr "" +"Aucun objet sélectionné. Sélectionnez des objets par Clic, Maj+Clic ou Alt" +"+molette, ou cliquez-déplacez autour des objets à sélectionner." #: ../src/ui/tools/select-tool.cpp:223 msgid "Move canceled." @@ -21839,27 +23967,44 @@ msgstr "Déplacement annulé." msgid "Selection canceled." msgstr "Sélection annulée." -#: ../src/ui/tools/select-tool.cpp:642 -msgid "Draw over objects to select them; release Alt to switch to rubberband selection" -msgstr "Tracer un trait passant par des objets pour les sélectionner. Lâcher la touche Alt pour repasser en mode sélection rectangle" +#: ../src/ui/tools/select-tool.cpp:653 +msgid "" +"Draw over objects to select them; release Alt to switch to " +"rubberband selection" +msgstr "" +"Tracer un trait passant par des objets pour les sélectionner. Lâcher " +"la touche Alt pour repasser en mode sélection rectangle" -#: ../src/ui/tools/select-tool.cpp:644 -msgid "Drag around objects to select them; press Alt to switch to touch selection" -msgstr "Entourer les objets pour les sélectionner; appuyer sur Alt pour passer en « toucher pour sélectionner »" +#: ../src/ui/tools/select-tool.cpp:655 +msgid "" +"Drag around objects to select them; press Alt to switch to " +"touch selection" +msgstr "" +"Entourer les objets pour les sélectionner; appuyer sur Alt " +"pour passer en « toucher pour sélectionner »" -#: ../src/ui/tools/select-tool.cpp:932 +#: ../src/ui/tools/select-tool.cpp:950 msgid "Ctrl: click to select in groups; drag to move hor/vert" -msgstr "Ctrl : Cliquer pour sélectionner dans les groupes; cliquer-déplacer pour déplacer horizontalement/verticalment" +msgstr "" +"Ctrl : Cliquer pour sélectionner dans les groupes; cliquer-déplacer " +"pour déplacer horizontalement/verticalment" -#: ../src/ui/tools/select-tool.cpp:933 +#: ../src/ui/tools/select-tool.cpp:951 msgid "Shift: click to toggle select; drag for rubberband selection" -msgstr "Maj : cliquer pour inverser l'état de sélection, cliquer-déplacer pour activer la sélection rectangle" +msgstr "" +"Maj : cliquer pour inverser l'état de sélection, cliquer-déplacer " +"pour activer la sélection rectangle" -#: ../src/ui/tools/select-tool.cpp:934 -msgid "Alt: click to select under; scroll mouse-wheel to cycle-select; drag to move selected or select by touch" -msgstr "Alt : cliquer pour sélectionner sous, utiliser la molette pour sélectionner cycliquement, cliquer-déplacer pour déplacer ou passer en « toucher pour sélectionner »" +#: ../src/ui/tools/select-tool.cpp:952 +msgid "" +"Alt: click to select under; scroll mouse-wheel to cycle-select; drag " +"to move selected or select by touch" +msgstr "" +"Alt : cliquer pour sélectionner sous, utiliser la molette pour " +"sélectionner cycliquement, cliquer-déplacer pour déplacer ou passer en " +"« toucher pour sélectionner »" -#: ../src/ui/tools/select-tool.cpp:1142 +#: ../src/ui/tools/select-tool.cpp:1160 msgid "Selected object is not a group. Cannot enter." msgstr "L'objet sélectionné n'est pas un groupe. Impossible d'y entrer." @@ -21873,72 +24018,89 @@ msgstr "Alt : verrouiller le rayon de la spirale" #: ../src/ui/tools/spiral-tool.cpp:400 #, c-format -msgid "Spiral: radius %s, angle %5g°; with Ctrl to snap angle" -msgstr "Spirale : rayon %s, angle %5g° ; avec Ctrl pour tourner par incréments" +msgid "" +"Spiral: radius %s, angle %5g°; with Ctrl to snap angle" +msgstr "" +"Spirale : rayon %s, angle %5g° ; avec Ctrl pour tourner " +"par incréments" #: ../src/ui/tools/spiral-tool.cpp:421 msgid "Create spiral" msgstr "Créer une spirale" -#: ../src/ui/tools/spray-tool.cpp:192 -#: ../src/ui/tools/tweak-tool.cpp:167 +#: ../src/ui/tools/spray-tool.cpp:192 ../src/ui/tools/tweak-tool.cpp:167 #, c-format msgid "%i object selected" msgid_plural "%i objects selected" msgstr[0] "%i objet sélectionné" msgstr[1] "%i objets sélectionnés" -#: ../src/ui/tools/spray-tool.cpp:194 -#: ../src/ui/tools/tweak-tool.cpp:169 +#: ../src/ui/tools/spray-tool.cpp:194 ../src/ui/tools/tweak-tool.cpp:169 msgid "Nothing selected" msgstr "Rien n'a été sélectionné." #: ../src/ui/tools/spray-tool.cpp:199 #, c-format -msgid "%s. Drag, click or click and scroll to spray copies of the initial selection." -msgstr "%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser des copies de la sélection initiale." +msgid "" +"%s. Drag, click or click and scroll to spray copies of the initial " +"selection." +msgstr "" +"%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser des copies " +"de la sélection initiale." #: ../src/ui/tools/spray-tool.cpp:202 #, c-format -msgid "%s. Drag, click or click and scroll to spray clones of the initial selection." -msgstr "%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser des clones de la sélection initiale." +msgid "" +"%s. Drag, click or click and scroll to spray clones of the initial " +"selection." +msgstr "" +"%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser des clones " +"de la sélection initiale." #: ../src/ui/tools/spray-tool.cpp:205 #, c-format -msgid "%s. Drag, click or click and scroll to spray in a single path of the initial selection." -msgstr "%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser dans un chemin unique la sélection initiale." +msgid "" +"%s. Drag, click or click and scroll to spray in a single path of the " +"initial selection." +msgstr "" +"%s. Cliquer-déplacer, cliquer ou défiler pour pulvériser dans un chemin " +"unique la sélection initiale." -#: ../src/ui/tools/spray-tool.cpp:656 +#: ../src/ui/tools/spray-tool.cpp:664 msgid "Nothing selected! Select objects to spray." msgstr "Sélection vide ! Sélectionner les objets à pulvériser." -#: ../src/ui/tools/spray-tool.cpp:731 -#: ../src/widgets/spray-toolbar.cpp:166 +#: ../src/ui/tools/spray-tool.cpp:739 ../src/widgets/spray-toolbar.cpp:166 msgid "Spray with copies" msgstr "Pulvérise avec des copies" -#: ../src/ui/tools/spray-tool.cpp:735 -#: ../src/widgets/spray-toolbar.cpp:173 +#: ../src/ui/tools/spray-tool.cpp:743 ../src/widgets/spray-toolbar.cpp:173 msgid "Spray with clones" msgstr "Pulvérise avec des clones" -#: ../src/ui/tools/spray-tool.cpp:739 +#: ../src/ui/tools/spray-tool.cpp:747 msgid "Spray in single path" msgstr "Pulvérisation par union des formes" #: ../src/ui/tools/star-tool.cpp:271 msgid "Ctrl: snap angle; keep rays radial" -msgstr "Ctrl pour tourner par incréments; forcer la radialité des branches" +msgstr "" +"Ctrl pour tourner par incréments; forcer la radialité des branches" #: ../src/ui/tools/star-tool.cpp:417 #, c-format -msgid "Polygon: radius %s, angle %5g°; with Ctrl to snap angle" -msgstr "Polygone : rayon %s, angle %5g° ; Ctrl pour tourner par incréments" +msgid "" +"Polygon: radius %s, angle %5g°; with Ctrl to snap angle" +msgstr "" +"Polygone : rayon %s, angle %5g° ; Ctrl pour tourner par " +"incréments" #: ../src/ui/tools/star-tool.cpp:418 #, c-format msgid "Star: radius %s, angle %5g°; with Ctrl to snap angle" -msgstr "Étoile : rayon %s, angle %5g° ; Ctrl pour tourner/incliner par incréments" +msgstr "" +"Étoile : rayon %s, angle %5g° ; Ctrl pour tourner/" +"incliner par incréments" #: ../src/ui/tools/star-tool.cpp:446 msgid "Create star" @@ -21946,11 +24108,16 @@ msgstr "Créer une étoile" #: ../src/ui/tools/text-tool.cpp:379 msgid "Click to edit the text, drag to select part of the text." -msgstr "Cliquer pour éditer le texte, cliquer-déplacer pour sélectionner une partie du texte." +msgstr "" +"Cliquer pour éditer le texte, cliquer-déplacer pour " +"sélectionner une partie du texte." #: ../src/ui/tools/text-tool.cpp:381 -msgid "Click to edit the flowed text, drag to select part of the text." -msgstr "Cliquer pour éditer le texte encadré, cliquer-déplacer pour sélectionner une partie du texte." +msgid "" +"Click to edit the flowed text, drag to select part of the text." +msgstr "" +"Cliquer pour éditer le texte encadré, cliquer-déplacer pour " +"sélectionner une partie du texte." #: ../src/ui/tools/text-tool.cpp:435 msgid "Create text" @@ -21969,8 +24136,7 @@ msgstr "Insérer un caractère Unicode" msgid "Unicode (Enter to finish): %s: %s" msgstr "Unicode (Entrée pour terminer) : %s: %s" -#: ../src/ui/tools/text-tool.cpp:512 -#: ../src/ui/tools/text-tool.cpp:817 +#: ../src/ui/tools/text-tool.cpp:512 ../src/ui/tools/text-tool.cpp:817 msgid "Unicode (Enter to finish): " msgstr "Unicode (Entrée pour terminer) : " @@ -21992,8 +24158,12 @@ msgid "Create flowed text" msgstr "Créer un texte encadré" #: ../src/ui/tools/text-tool.cpp:667 -msgid "The frame is too small for the current font size. Flowed text not created." -msgstr "Le cadre est trop petit pour la taille de police courante. Le texte encadré n'a pas été créé." +msgid "" +"The frame is too small for the current font size. Flowed text not " +"created." +msgstr "" +"Le cadre est trop petit pour la taille de police courante. Le texte " +"encadré n'a pas été créé." #: ../src/ui/tools/text-tool.cpp:803 msgid "No-break space" @@ -22065,26 +24235,38 @@ msgstr "Coller le texte" #: ../src/ui/tools/text-tool.cpp:1583 #, c-format -msgid "Type or edit flowed text (%d character%s); Enter to start new paragraph." -msgid_plural "Type or edit flowed text (%d characters%s); Enter to start new paragraph." -msgstr[0] "Saisir ou modifier le texte encadré (%d caractère%s) ; Entrée pour commencer un nouveau paragraphe." -msgstr[1] "Saisir ou modifier le texte encadré (%d caractères%s) ; Entrée pour commencer un nouveau paragraphe." +msgid "" +"Type or edit flowed text (%d character%s); Enter to start new " +"paragraph." +msgid_plural "" +"Type or edit flowed text (%d characters%s); Enter to start new " +"paragraph." +msgstr[0] "" +"Saisir ou modifier le texte encadré (%d caractère%s) ; Entrée pour " +"commencer un nouveau paragraphe." +msgstr[1] "" +"Saisir ou modifier le texte encadré (%d caractères%s) ; Entrée pour " +"commencer un nouveau paragraphe." #: ../src/ui/tools/text-tool.cpp:1585 #, c-format msgid "Type or edit text (%d character%s); Enter to start new line." -msgid_plural "Type or edit text (%d characters%s); Enter to start new line." -msgstr[0] "Saisir ou modifier le texte (%d caractère%s) ; Entrée pour commencer une nouvelle ligne." -msgstr[1] "Saisir ou modifier le texte (%d caractères%s) ; Entrée pour commencer une nouvelle ligne." +msgid_plural "" +"Type or edit text (%d characters%s); Enter to start new line." +msgstr[0] "" +"Saisir ou modifier le texte (%d caractère%s) ; Entrée pour commencer " +"une nouvelle ligne." +msgstr[1] "" +"Saisir ou modifier le texte (%d caractères%s) ; Entrée pour commencer " +"une nouvelle ligne." #: ../src/ui/tools/text-tool.cpp:1695 msgid "Type text" msgstr "Taper du texte" -#: ../src/ui/tools/tool-base.cpp:703 -#, fuzzy +#: ../src/ui/tools/tool-base.cpp:705 msgid "Space+mouse move to pan canvas" -msgstr "Espace+déplacer avec la souris pour bouger la zone de travail" +msgstr "Espace+déplacer avec la souris pour déplacer la zone de travail" #: ../src/ui/tools/tweak-tool.cpp:174 #, c-format @@ -22094,7 +24276,9 @@ msgstr "%s. Cliquer-glisser pour déplacer." #: ../src/ui/tools/tweak-tool.cpp:178 #, c-format msgid "%s. Drag or click to move in; with Shift to move out." -msgstr "%s. Cliquer-glisser ou cliquer pour rapprocher; avec Maj pour éloigner." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour rapprocher; avec Maj pour " +"éloigner." #: ../src/ui/tools/tweak-tool.cpp:186 #, c-format @@ -22104,17 +24288,24 @@ msgstr "%s. Glisser ou cliquer pour déplacer aléatoirement." #: ../src/ui/tools/tweak-tool.cpp:190 #, c-format msgid "%s. Drag or click to scale down; with Shift to scale up." -msgstr "%s. Cliquer-glisser ou cliquer pour réduire; avec Maj pour agrandir." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour réduire; avec Maj pour " +"agrandir." #: ../src/ui/tools/tweak-tool.cpp:198 #, c-format -msgid "%s. Drag or click to rotate clockwise; with Shift, counterclockwise." -msgstr "%s. Glisser ou cliquer pour pivoter dans le sens horaire ; avec Maj, dans le sens anti-horaire." +msgid "" +"%s. Drag or click to rotate clockwise; with Shift, " +"counterclockwise." +msgstr "" +"%s. Glisser ou cliquer pour pivoter dans le sens horaire ; avec Maj, " +"dans le sens anti-horaire." #: ../src/ui/tools/tweak-tool.cpp:206 #, c-format msgid "%s. Drag or click to duplicate; with Shift, delete." -msgstr "%s. Glisser ou cliquer pour dupliquer ; avec Maj, supprime." +msgstr "" +"%s. Glisser ou cliquer pour dupliquer ; avec Maj, supprime." #: ../src/ui/tools/tweak-tool.cpp:214 #, c-format @@ -22124,12 +24315,16 @@ msgstr "%s. Glisser pour pousser les chemins." #: ../src/ui/tools/tweak-tool.cpp:218 #, c-format msgid "%s. Drag or click to inset paths; with Shift to outset." -msgstr "%s. Cliquer-glisser ou cliquer pour rétrécir les chemins; avec Maj pour les élargir." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour rétrécir les chemins; avec Maj " +"pour les élargir." #: ../src/ui/tools/tweak-tool.cpp:226 #, c-format msgid "%s. Drag or click to attract paths; with Shift to repel." -msgstr "%s. Cliquer-glisser ou cliquer pour attirer les chemins; avec Maj pour les repousser." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour attirer les chemins; avec Maj " +"pour les repousser." #: ../src/ui/tools/tweak-tool.cpp:234 #, c-format @@ -22139,75 +24334,86 @@ msgstr "%s. Cliquer-glisser ou cliquer pour rendre les chemins rugueux." #: ../src/ui/tools/tweak-tool.cpp:238 #, c-format msgid "%s. Drag or click to paint objects with color." -msgstr "%s. Cliquer-glisser ou cliquer pour peindre les objets avec une couleur." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour peindre les objets avec une " +"couleur." #: ../src/ui/tools/tweak-tool.cpp:242 #, c-format msgid "%s. Drag or click to randomize colors." -msgstr "%s. Cliquer-glisser ou cliquer pour peindre avec une couleur aléatoire." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour peindre avec une couleur aléatoire." #: ../src/ui/tools/tweak-tool.cpp:246 #, c-format -msgid "%s. Drag or click to increase blur; with Shift to decrease." -msgstr "%s. Cliquer-glisser ou cliquer pour augmenter le flou; avec Maj pour le diminuer." +msgid "" +"%s. Drag or click to increase blur; with Shift to decrease." +msgstr "" +"%s. Cliquer-glisser ou cliquer pour augmenter le flou; avec Maj pour " +"le diminuer." -#: ../src/ui/tools/tweak-tool.cpp:1193 +#: ../src/ui/tools/tweak-tool.cpp:1205 msgid "Nothing selected! Select objects to tweak." msgstr "Sélection vide ! Sélectionner les objets à ajuster." -#: ../src/ui/tools/tweak-tool.cpp:1227 +#: ../src/ui/tools/tweak-tool.cpp:1239 msgid "Move tweak" msgstr "Ajuster en déplaçant" -#: ../src/ui/tools/tweak-tool.cpp:1231 +#: ../src/ui/tools/tweak-tool.cpp:1243 msgid "Move in/out tweak" msgstr "Ajuster en rapprochant ou en s'éloignant du curseur" -#: ../src/ui/tools/tweak-tool.cpp:1235 +#: ../src/ui/tools/tweak-tool.cpp:1247 msgid "Move jitter tweak" msgstr "Ajuster en déplaçant aléatoirement" -#: ../src/ui/tools/tweak-tool.cpp:1239 +#: ../src/ui/tools/tweak-tool.cpp:1251 msgid "Scale tweak" msgstr "Ajuster en redimensionnant" -#: ../src/ui/tools/tweak-tool.cpp:1243 +#: ../src/ui/tools/tweak-tool.cpp:1255 msgid "Rotate tweak" msgstr "Ajuster en pivotant" -#: ../src/ui/tools/tweak-tool.cpp:1247 +#: ../src/ui/tools/tweak-tool.cpp:1259 msgid "Duplicate/delete tweak" msgstr "Ajuster en dupliquant ou supprimant" -#: ../src/ui/tools/tweak-tool.cpp:1251 +#: ../src/ui/tools/tweak-tool.cpp:1263 msgid "Push path tweak" msgstr "Ajuster en poussant le chemin" -#: ../src/ui/tools/tweak-tool.cpp:1255 +#: ../src/ui/tools/tweak-tool.cpp:1267 msgid "Shrink/grow path tweak" msgstr "Ajuster en contractant ou en dilatant le chemin" -#: ../src/ui/tools/tweak-tool.cpp:1259 +#: ../src/ui/tools/tweak-tool.cpp:1271 msgid "Attract/repel path tweak" msgstr "Ajuster en attirant ou en repoussant le chemin" -#: ../src/ui/tools/tweak-tool.cpp:1263 +#: ../src/ui/tools/tweak-tool.cpp:1275 msgid "Roughen path tweak" msgstr "Ajuster en rendant le chemin plus rugueux" -#: ../src/ui/tools/tweak-tool.cpp:1267 +#: ../src/ui/tools/tweak-tool.cpp:1279 msgid "Color paint tweak" msgstr "Ajuster en peignant la couleur" -#: ../src/ui/tools/tweak-tool.cpp:1271 +#: ../src/ui/tools/tweak-tool.cpp:1283 msgid "Color jitter tweak" msgstr "Ajuster en variant les couleurs" -#: ../src/ui/tools/tweak-tool.cpp:1275 +#: ../src/ui/tools/tweak-tool.cpp:1287 msgid "Blur tweak" msgstr "Ajuster le niveau de flou" -#: ../src/ui/widget/filter-effect-chooser.cpp:27 +#: ../src/ui/widget/filter-effect-chooser.cpp:26 +msgid "_Blur:" +msgstr "_Flou :" + +#: ../src/ui/widget/filter-effect-chooser.cpp:29 msgid "Blur (%)" msgstr "Flou (%)" @@ -22236,8 +24442,8 @@ msgid "MetadataLicence|Other" msgstr "Autre" #: ../src/ui/widget/object-composite-settings.cpp:67 -#: ../src/ui/widget/selected-style.cpp:1099 -#: ../src/ui/widget/selected-style.cpp:1100 +#: ../src/ui/widget/selected-style.cpp:1120 +#: ../src/ui/widget/selected-style.cpp:1121 msgid "Opacity (%)" msgstr "Opacité (%)" @@ -22246,8 +24452,8 @@ msgid "Change blur" msgstr "Modifier le flou" #: ../src/ui/widget/object-composite-settings.cpp:220 -#: ../src/ui/widget/selected-style.cpp:931 -#: ../src/ui/widget/selected-style.cpp:1225 +#: ../src/ui/widget/selected-style.cpp:944 +#: ../src/ui/widget/selected-style.cpp:1248 msgid "Change opacity" msgstr "Modifier l'opacité" @@ -22321,8 +24527,12 @@ msgid "_Resize page to drawing or selection" msgstr "A_juster la page au dessin ou à la sélection" #: ../src/ui/widget/page-sizer.cpp:420 -msgid "Resize the page to fit the current selection, or the entire drawing if there is no selection" -msgstr "Redimensionner la page pour l'ajuster à la sélection, ou au dessin entier s'il n'y a pas de sélection" +msgid "" +"Resize the page to fit the current selection, or the entire drawing if there " +"is no selection" +msgstr "" +"Redimensionner la page pour l'ajuster à la sélection, ou au dessin entier " +"s'il n'y a pas de sélection" #: ../src/ui/widget/page-sizer.cpp:488 msgid "Set page size" @@ -22427,8 +24637,12 @@ msgid "Select a bitmap editor" msgstr "Sélectionnez un éditeur de bitmap" #: ../src/ui/widget/random.cpp:84 -msgid "Reseed the random number generator; this creates a different sequence of random numbers." -msgstr "Réinitialiser le générateur pseudo-aléatoire; cela crée une nouvelle suite de nombre aléatoires." +msgid "" +"Reseed the random number generator; this creates a different sequence of " +"random numbers." +msgstr "" +"Réinitialiser le générateur pseudo-aléatoire; cela crée une nouvelle suite " +"de nombre aléatoires." #: ../src/ui/widget/rendering-options.cpp:33 msgid "Backend" @@ -22451,341 +24665,388 @@ msgid "Preferred resolution of rendering, in dots per inch." msgstr "Résolution préférée (point par pouce) du rendu." #: ../src/ui/widget/rendering-options.cpp:47 -msgid "Render using Cairo vector operations. The resulting image is usually smaller in file size and can be arbitrarily scaled, but some filter effects will not be correctly rendered." -msgstr "Utiliser les opérateurs vectoriels Cairo. Le fichier image résultant est en général moins volumineux et reste redimensionnable; cependant les motifs de remplissage seront perdus." +msgid "" +"Render using Cairo vector operations. The resulting image is usually " +"smaller in file size and can be arbitrarily scaled, but some filter effects " +"will not be correctly rendered." +msgstr "" +"Utiliser les opérateurs vectoriels Cairo. Le fichier image résultant est en " +"général moins volumineux et reste redimensionnable; cependant les motifs de " +"remplissage seront perdus." #: ../src/ui/widget/rendering-options.cpp:52 -msgid "Render everything as bitmap. The resulting image is usually larger in file size and cannot be arbitrarily scaled without quality loss, but all objects will be rendered exactly as displayed." -msgstr "Tout imprimer en tant que bitmap. Le fichier image résultant sera en général plus volumineux et n'est plus redimensionnable sans perte de qualité, cependant tous les objets seront rendus tels qu'affichés." +msgid "" +"Render everything as bitmap. The resulting image is usually larger in file " +"size and cannot be arbitrarily scaled without quality loss, but all objects " +"will be rendered exactly as displayed." +msgstr "" +"Tout imprimer en tant que bitmap. Le fichier image résultant sera en général " +"plus volumineux et n'est plus redimensionnable sans perte de qualité, " +"cependant tous les objets seront rendus tels qu'affichés." -#: ../src/ui/widget/selected-style.cpp:130 +#: ../src/ui/widget/selected-style.cpp:131 #: ../src/ui/widget/style-swatch.cpp:127 msgid "Fill:" msgstr "Remplissage :" # Opacity -#: ../src/ui/widget/selected-style.cpp:132 +#: ../src/ui/widget/selected-style.cpp:133 msgid "O:" msgstr "O :" -#: ../src/ui/widget/selected-style.cpp:177 +#: ../src/ui/widget/selected-style.cpp:178 msgid "N/A" msgstr "N/A" -#: ../src/ui/widget/selected-style.cpp:180 -#: ../src/ui/widget/selected-style.cpp:1092 -#: ../src/ui/widget/selected-style.cpp:1093 +#: ../src/ui/widget/selected-style.cpp:181 +#: ../src/ui/widget/selected-style.cpp:1113 +#: ../src/ui/widget/selected-style.cpp:1114 #: ../src/widgets/gradient-toolbar.cpp:162 msgid "Nothing selected" msgstr "Aucune sélection" -#: ../src/ui/widget/selected-style.cpp:183 +#: ../src/ui/widget/selected-style.cpp:184 msgctxt "Fill" msgid "None" msgstr "Aucun" -#: ../src/ui/widget/selected-style.cpp:185 +#: ../src/ui/widget/selected-style.cpp:186 msgctxt "Stroke" msgid "None" msgstr "Aucun" -#: ../src/ui/widget/selected-style.cpp:189 +#: ../src/ui/widget/selected-style.cpp:190 #: ../src/ui/widget/style-swatch.cpp:322 msgctxt "Fill and stroke" msgid "No fill" msgstr "Aucun remplissage" -#: ../src/ui/widget/selected-style.cpp:189 +#: ../src/ui/widget/selected-style.cpp:190 #: ../src/ui/widget/style-swatch.cpp:322 msgctxt "Fill and stroke" msgid "No stroke" msgstr "Aucun contour" -#: ../src/ui/widget/selected-style.cpp:191 -#: ../src/ui/widget/style-swatch.cpp:301 -#: ../src/widgets/paint-selector.cpp:242 +#: ../src/ui/widget/selected-style.cpp:192 +#: ../src/ui/widget/style-swatch.cpp:301 ../src/widgets/paint-selector.cpp:234 msgid "Pattern" msgstr "Motif" -#: ../src/ui/widget/selected-style.cpp:194 +#: ../src/ui/widget/selected-style.cpp:195 #: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern fill" msgstr "Motif de remplissage" -#: ../src/ui/widget/selected-style.cpp:194 +#: ../src/ui/widget/selected-style.cpp:195 #: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern stroke" msgstr "Motif de contour" -#: ../src/ui/widget/selected-style.cpp:196 +#: ../src/ui/widget/selected-style.cpp:197 msgid "L" msgstr "L" -#: ../src/ui/widget/selected-style.cpp:199 +#: ../src/ui/widget/selected-style.cpp:200 #: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient fill" msgstr "Dégradé linéaire de remplissage" -#: ../src/ui/widget/selected-style.cpp:199 +#: ../src/ui/widget/selected-style.cpp:200 #: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient stroke" msgstr "Dégradé linéaire de contour" -#: ../src/ui/widget/selected-style.cpp:206 +#: ../src/ui/widget/selected-style.cpp:207 msgid "R" msgstr "R" -#: ../src/ui/widget/selected-style.cpp:209 +#: ../src/ui/widget/selected-style.cpp:210 #: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient fill" msgstr "Dégradé radial de remplissage" -#: ../src/ui/widget/selected-style.cpp:209 +#: ../src/ui/widget/selected-style.cpp:210 #: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient stroke" msgstr "Dégradé radial de contour" -#: ../src/ui/widget/selected-style.cpp:216 +#: ../src/ui/widget/selected-style.cpp:218 +#, fuzzy +msgid "M" +msgstr "L" + +#: ../src/ui/widget/selected-style.cpp:221 +#, fuzzy +msgid "Mesh gradient fill" +msgstr "Dégradé linéaire de remplissage" + +#: ../src/ui/widget/selected-style.cpp:221 +#, fuzzy +msgid "Mesh gradient stroke" +msgstr "Dégradé linéaire de contour" + +#: ../src/ui/widget/selected-style.cpp:229 msgid "Different" msgstr "Différents" -#: ../src/ui/widget/selected-style.cpp:219 +#: ../src/ui/widget/selected-style.cpp:232 msgid "Different fills" msgstr "Remplissages différents" -#: ../src/ui/widget/selected-style.cpp:219 +#: ../src/ui/widget/selected-style.cpp:232 msgid "Different strokes" msgstr "Contours différents" -#: ../src/ui/widget/selected-style.cpp:221 +#: ../src/ui/widget/selected-style.cpp:234 #: ../src/ui/widget/style-swatch.cpp:325 msgid "Unset" msgstr "Indéfini" #. TRANSLATORS COMMENT: unset is a verb here -#: ../src/ui/widget/selected-style.cpp:224 -#: ../src/ui/widget/selected-style.cpp:282 -#: ../src/ui/widget/selected-style.cpp:563 -#: ../src/ui/widget/style-swatch.cpp:327 -#: ../src/widgets/fill-style.cpp:712 +#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:295 +#: ../src/ui/widget/selected-style.cpp:576 +#: ../src/ui/widget/style-swatch.cpp:327 ../src/widgets/fill-style.cpp:712 msgid "Unset fill" msgstr "Ne pas définir le remplissage" -#: ../src/ui/widget/selected-style.cpp:224 -#: ../src/ui/widget/selected-style.cpp:282 -#: ../src/ui/widget/selected-style.cpp:579 -#: ../src/ui/widget/style-swatch.cpp:327 -#: ../src/widgets/fill-style.cpp:712 +#: ../src/ui/widget/selected-style.cpp:237 +#: ../src/ui/widget/selected-style.cpp:295 +#: ../src/ui/widget/selected-style.cpp:592 +#: ../src/ui/widget/style-swatch.cpp:327 ../src/widgets/fill-style.cpp:712 msgid "Unset stroke" msgstr "Ne pas définir le contour" -#: ../src/ui/widget/selected-style.cpp:227 +#: ../src/ui/widget/selected-style.cpp:240 msgid "Flat color fill" msgstr "Aplat de remplissage" -#: ../src/ui/widget/selected-style.cpp:227 +#: ../src/ui/widget/selected-style.cpp:240 msgid "Flat color stroke" msgstr "Aplat de contour" #. TRANSLATOR COMMENT: A means "Averaged" -#: ../src/ui/widget/selected-style.cpp:230 +#: ../src/ui/widget/selected-style.cpp:243 msgid "a" msgstr "m" -#: ../src/ui/widget/selected-style.cpp:233 +#: ../src/ui/widget/selected-style.cpp:246 msgid "Fill is averaged over selected objects" msgstr "Le remplissage est moyenné sur les objets sélectionnés" -#: ../src/ui/widget/selected-style.cpp:233 +#: ../src/ui/widget/selected-style.cpp:246 msgid "Stroke is averaged over selected objects" msgstr "Le contour est moyenné sur les objets sélectionnés" #. TRANSLATOR COMMENT: M means "Multiple" -#: ../src/ui/widget/selected-style.cpp:236 +#: ../src/ui/widget/selected-style.cpp:249 msgid "m" msgstr "p" -#: ../src/ui/widget/selected-style.cpp:239 +#: ../src/ui/widget/selected-style.cpp:252 msgid "Multiple selected objects have the same fill" msgstr "Plusieurs objets sélectionnés ont le même remplissage" -#: ../src/ui/widget/selected-style.cpp:239 +#: ../src/ui/widget/selected-style.cpp:252 msgid "Multiple selected objects have the same stroke" msgstr "Plusieurs objets sélectionnés ont le même contour" -#: ../src/ui/widget/selected-style.cpp:241 +#: ../src/ui/widget/selected-style.cpp:254 msgid "Edit fill..." msgstr "Éditer le remplissage..." -#: ../src/ui/widget/selected-style.cpp:241 +#: ../src/ui/widget/selected-style.cpp:254 msgid "Edit stroke..." msgstr "Éditer le contour..." -#: ../src/ui/widget/selected-style.cpp:245 +#: ../src/ui/widget/selected-style.cpp:258 msgid "Last set color" msgstr "Dernière couleur définie" -#: ../src/ui/widget/selected-style.cpp:249 +#: ../src/ui/widget/selected-style.cpp:262 msgid "Last selected color" msgstr "Dernière couleur sélectionnée" -#: ../src/ui/widget/selected-style.cpp:265 +#: ../src/ui/widget/selected-style.cpp:278 msgid "Copy color" msgstr "Copier la couleur" -#: ../src/ui/widget/selected-style.cpp:269 +#: ../src/ui/widget/selected-style.cpp:282 msgid "Paste color" msgstr "Coller la couleur" -#: ../src/ui/widget/selected-style.cpp:273 -#: ../src/ui/widget/selected-style.cpp:856 +#: ../src/ui/widget/selected-style.cpp:286 +#: ../src/ui/widget/selected-style.cpp:869 msgid "Swap fill and stroke" msgstr "Intervertir remplissage et contour" -#: ../src/ui/widget/selected-style.cpp:277 -#: ../src/ui/widget/selected-style.cpp:588 -#: ../src/ui/widget/selected-style.cpp:597 +#: ../src/ui/widget/selected-style.cpp:290 +#: ../src/ui/widget/selected-style.cpp:601 +#: ../src/ui/widget/selected-style.cpp:610 msgid "Make fill opaque" msgstr "Rendre le remplissage opaque" -#: ../src/ui/widget/selected-style.cpp:277 +#: ../src/ui/widget/selected-style.cpp:290 msgid "Make stroke opaque" msgstr "Rendre le contour opaque" -#: ../src/ui/widget/selected-style.cpp:286 -#: ../src/ui/widget/selected-style.cpp:545 -#: ../src/widgets/fill-style.cpp:510 +#: ../src/ui/widget/selected-style.cpp:299 +#: ../src/ui/widget/selected-style.cpp:558 ../src/widgets/fill-style.cpp:510 msgid "Remove fill" msgstr "Supprimer le remplissage" -#: ../src/ui/widget/selected-style.cpp:286 -#: ../src/ui/widget/selected-style.cpp:554 -#: ../src/widgets/fill-style.cpp:510 +#: ../src/ui/widget/selected-style.cpp:299 +#: ../src/ui/widget/selected-style.cpp:567 ../src/widgets/fill-style.cpp:510 msgid "Remove stroke" msgstr "Supprimer le contour" -#: ../src/ui/widget/selected-style.cpp:609 +#: ../src/ui/widget/selected-style.cpp:622 msgid "Apply last set color to fill" msgstr "Appliquer la dernière couleur définie au remplissage" -#: ../src/ui/widget/selected-style.cpp:621 +#: ../src/ui/widget/selected-style.cpp:634 msgid "Apply last set color to stroke" msgstr "Appliquer la dernière couleur définie au contour" -#: ../src/ui/widget/selected-style.cpp:632 +#: ../src/ui/widget/selected-style.cpp:645 msgid "Apply last selected color to fill" msgstr "Appliquer la dernière couleur sélectionnée au remplissage" -#: ../src/ui/widget/selected-style.cpp:643 +#: ../src/ui/widget/selected-style.cpp:656 msgid "Apply last selected color to stroke" msgstr "Appliquer la dernière couleur sélectionnée au contour" -#: ../src/ui/widget/selected-style.cpp:669 +#: ../src/ui/widget/selected-style.cpp:682 msgid "Invert fill" msgstr "Inverser le remplissage" -#: ../src/ui/widget/selected-style.cpp:693 +#: ../src/ui/widget/selected-style.cpp:706 msgid "Invert stroke" msgstr "Inverser le contour" -#: ../src/ui/widget/selected-style.cpp:705 +#: ../src/ui/widget/selected-style.cpp:718 msgid "White fill" msgstr "Remplissage blanc" -#: ../src/ui/widget/selected-style.cpp:717 +#: ../src/ui/widget/selected-style.cpp:730 msgid "White stroke" msgstr "Contour blanc" -#: ../src/ui/widget/selected-style.cpp:729 +#: ../src/ui/widget/selected-style.cpp:742 msgid "Black fill" msgstr "Remplissage noir" -#: ../src/ui/widget/selected-style.cpp:741 +#: ../src/ui/widget/selected-style.cpp:754 msgid "Black stroke" msgstr "Contour noir" -#: ../src/ui/widget/selected-style.cpp:784 +#: ../src/ui/widget/selected-style.cpp:797 msgid "Paste fill" msgstr "Coller le remplissage" -#: ../src/ui/widget/selected-style.cpp:802 +#: ../src/ui/widget/selected-style.cpp:815 msgid "Paste stroke" msgstr "Coller le contour" -#: ../src/ui/widget/selected-style.cpp:958 +#: ../src/ui/widget/selected-style.cpp:971 msgid "Change stroke width" msgstr "Modifier l'épaisseur du contour" -#: ../src/ui/widget/selected-style.cpp:1053 +#: ../src/ui/widget/selected-style.cpp:1074 msgid ", drag to adjust" msgstr ", cliquer-déplacer pour ajuster" -#: ../src/ui/widget/selected-style.cpp:1138 +#: ../src/ui/widget/selected-style.cpp:1159 #, c-format msgid "Stroke width: %.5g%s%s" msgstr "Épaisseur de contour : %.5g%s%s" -#: ../src/ui/widget/selected-style.cpp:1142 +#: ../src/ui/widget/selected-style.cpp:1163 msgid " (averaged)" msgstr " (moyenné)" -#: ../src/ui/widget/selected-style.cpp:1170 +#: ../src/ui/widget/selected-style.cpp:1191 msgid "0 (transparent)" msgstr "0 (transparent)" -#: ../src/ui/widget/selected-style.cpp:1194 +#: ../src/ui/widget/selected-style.cpp:1215 msgid "100% (opaque)" msgstr "100% (opaque)" -#: ../src/ui/widget/selected-style.cpp:1366 +#: ../src/ui/widget/selected-style.cpp:1389 msgid "Adjust alpha" msgstr "Ajuster l'opacité" -#: ../src/ui/widget/selected-style.cpp:1368 +#: ../src/ui/widget/selected-style.cpp:1391 #, c-format -msgid "Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust hue" -msgstr "Ajustement de l'opacité : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Ctrl pour ajuster la luminosité, Maj pour ajuster la saturation, sans touche modificatrice pour ajuster la teinte" +msgid "" +"Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without " +"modifiers to adjust hue" +msgstr "" +"Ajustement de l'opacité : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Ctrl pour ajuster la luminosité, Maj pour " +"ajuster la saturation, sans touche modificatrice pour ajuster la teinte" -#: ../src/ui/widget/selected-style.cpp:1372 +#: ../src/ui/widget/selected-style.cpp:1395 msgid "Adjust saturation" msgstr "Ajuster la saturation" -#: ../src/ui/widget/selected-style.cpp:1374 +#: ../src/ui/widget/selected-style.cpp:1397 #, c-format -msgid "Adjusting saturation: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue" -msgstr "Ajustement de la saturation : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Ctrl pour ajuster la luminosité, csans touche modificatrice pour ajuster la teinte" +msgid "" +"Adjusting saturation: was %.3g, now %.3g (diff %.3g); with " +"Ctrl to adjust lightness, with Alt to adjust alpha, without " +"modifiers to adjust hue" +msgstr "" +"Ajustement de la saturation : valeur précédente %.3g, désormais " +"%.3g (diff. %.3g) ; Ctrl pour ajuster la luminosité, csans touche " +"modificatrice pour ajuster la teinte" -#: ../src/ui/widget/selected-style.cpp:1378 +#: ../src/ui/widget/selected-style.cpp:1401 msgid "Adjust lightness" msgstr "Ajuster la luminosité" -#: ../src/ui/widget/selected-style.cpp:1380 +#: ../src/ui/widget/selected-style.cpp:1403 #, c-format -msgid "Adjusting lightness: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue" -msgstr "Ajustement de la luminosité : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Maj pour ajuster la saturation, Alt pour ajuster l'opacité, sans touche modificatrice pour ajuster la teinte" +msgid "" +"Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " +"Shift to adjust saturation, with Alt to adjust alpha, without " +"modifiers to adjust hue" +msgstr "" +"Ajustement de la luminosité : valeur précédente %.3g, désormais " +"%.3g (diff. %.3g) ; Maj pour ajuster la saturation, Alt " +"pour ajuster l'opacité, sans touche modificatrice pour ajuster la teinte" -#: ../src/ui/widget/selected-style.cpp:1384 +#: ../src/ui/widget/selected-style.cpp:1407 msgid "Adjust hue" msgstr "Ajuster la teinte" -#: ../src/ui/widget/selected-style.cpp:1386 +#: ../src/ui/widget/selected-style.cpp:1409 #, c-format -msgid "Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust lightness" -msgstr "Ajustement de la teinte : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Maj pour ajuster la saturation, Ctrl pour ajuster la luminosité, Alt pour ajuster l'opacité" +msgid "" +"Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl " +"to adjust lightness" +msgstr "" +"Ajustement de la teinte : valeur précédente %.3g, désormais %.3g (diff. %.3g) ; Maj pour ajuster la saturation, Ctrl pour " +"ajuster la luminosité, Alt pour ajuster l'opacité" -#: ../src/ui/widget/selected-style.cpp:1504 -#: ../src/ui/widget/selected-style.cpp:1518 +#: ../src/ui/widget/selected-style.cpp:1527 +#: ../src/ui/widget/selected-style.cpp:1541 msgid "Adjust stroke width" msgstr "Ajustement de l'épaisseur du contour" -#: ../src/ui/widget/selected-style.cpp:1505 +#: ../src/ui/widget/selected-style.cpp:1528 #, c-format msgid "Adjusting stroke width: was %.3g, now %.3g (diff %.3g)" -msgstr "Ajustement de l'épaisseur du contour : de %.3g vers %.3g (diff %.3g)" +msgstr "" +"Ajustement de l'épaisseur du contour : de %.3g vers %.3g (diff " +"%.3g)" #. TRANSLATORS: "Link" means to _link_ two sliders together -#: ../src/ui/widget/spin-scale.cpp:138 -#: ../src/ui/widget/spin-slider.cpp:156 +#: ../src/ui/widget/spin-scale.cpp:138 ../src/ui/widget/spin-slider.cpp:156 msgctxt "Sliders" msgid "Link" msgstr "Lier" @@ -22828,2444 +25089,2573 @@ msgstr "O: %2.0f" msgid "Opacity: %2.1f %%" msgstr "Opacité : %2.1f %%" -#: ../src/vanishing-point.cpp:132 +#: ../src/vanishing-point.cpp:133 msgid "Split vanishing points" msgstr "Séparer les points de fuite" -#: ../src/vanishing-point.cpp:177 +#: ../src/vanishing-point.cpp:178 msgid "Merge vanishing points" msgstr "Fusionner les points de fuite" -#: ../src/vanishing-point.cpp:243 +#: ../src/vanishing-point.cpp:244 msgid "3D box: Move vanishing point" msgstr "Boîte 3D : déplacer le point de fuite" #: ../src/vanishing-point.cpp:327 #, c-format msgid "Finite vanishing point shared by %d box" -msgid_plural "Finite vanishing point shared by %d boxes; drag with Shift to separate selected box(es)" +msgid_plural "" +"Finite vanishing point shared by %d boxes; drag with Shift to separate selected box(es)" msgstr[0] "Point de fuite fini partagé par %d boîte" -msgstr[1] "Point de fuite fini partagé par %d boîtes; cliquer-déplacer avec Maj pour séparer les boîte(s) sélectionnée(s)" +msgstr[1] "" +"Point de fuite fini partagé par %d boîtes; cliquer-déplacer " +"avec Maj pour séparer les boîte(s) sélectionnée(s)" #. This won't make sense any more when infinite VPs are not shown on the canvas, #. but currently we update the status message anyway #: ../src/vanishing-point.cpp:334 #, c-format msgid "Infinite vanishing point shared by %d box" -msgid_plural "Infinite vanishing point shared by %d boxes; drag with Shift to separate selected box(es)" +msgid_plural "" +"Infinite vanishing point shared by %d boxes; drag with " +"Shift to separate selected box(es)" msgstr[0] "Point de fuite infini partagé par %d boîte" -msgstr[1] "Point de fuite infini partagé par %d boîtes; cliquer-déplacer avec Maj pour séparer les boîte(s) sélectionnée(s)" +msgstr[1] "" +"Point de fuite infini partagé par %d boîtes; cliquer-déplacer " +"avec Maj pour séparer les boîte(s) sélectionnée(s)" #: ../src/vanishing-point.cpp:342 #, c-format -msgid "shared by %d box; drag with Shift to separate selected box(es)" -msgid_plural "shared by %d boxes; drag with Shift to separate selected box(es)" -msgstr[0] "partagé par %d boîte; déplacer avec Maj pour séparer les boîte(s) sélectionnée(s)" -msgstr[1] "partagé par %d boîtes; déplacer avec Maj pour séparer la boîte sélectionnée" - -#: ../src/verbs.cpp:137 +msgid "" +"shared by %d box; drag with Shift to separate selected box(es)" +msgid_plural "" +"shared by %d boxes; drag with Shift to separate selected box" +"(es)" +msgstr[0] "" +"partagé par %d boîte; déplacer avec Maj pour séparer les boîte" +"(s) sélectionnée(s)" +msgstr[1] "" +"partagé par %d boîtes; déplacer avec Maj pour séparer la boîte " +"sélectionnée" + +#: ../src/verbs.cpp:138 msgid "File" msgstr "Fichier" -#: ../src/verbs.cpp:232 +#: ../src/verbs.cpp:233 ../share/extensions/interp_att_g.inx.h:22 +msgid "Tag" +msgstr "Étiquette" + +#: ../src/verbs.cpp:252 msgid "Context" msgstr "Contexte" -#: ../src/verbs.cpp:251 -#: ../src/verbs.cpp:2223 +#: ../src/verbs.cpp:271 ../src/verbs.cpp:2306 #: ../share/extensions/jessyInk_view.inx.h:1 #: ../share/extensions/polyhedron_3d.inx.h:26 msgid "View" msgstr "Vue" -#: ../src/verbs.cpp:271 +#: ../src/verbs.cpp:291 msgid "Dialog" msgstr "Boîte de dialogue" -#: ../src/verbs.cpp:1227 +#: ../src/verbs.cpp:1260 msgid "Switch to next layer" msgstr "Transférer sur le calque suivant" -#: ../src/verbs.cpp:1228 +#: ../src/verbs.cpp:1261 msgid "Switched to next layer." msgstr "Transféré sur le calque suivant." -#: ../src/verbs.cpp:1230 +#: ../src/verbs.cpp:1263 msgid "Cannot go past last layer." msgstr "Impossible de transférer au-dessus du dernier calque." -#: ../src/verbs.cpp:1239 +#: ../src/verbs.cpp:1272 msgid "Switch to previous layer" msgstr "Transférer sur le calque précédent" -#: ../src/verbs.cpp:1240 +#: ../src/verbs.cpp:1273 msgid "Switched to previous layer." msgstr "Transféré sur le calque précédent." -#: ../src/verbs.cpp:1242 +#: ../src/verbs.cpp:1275 msgid "Cannot go before first layer." msgstr "Impossible de transférer sous le premier calque." -#: ../src/verbs.cpp:1263 -#: ../src/verbs.cpp:1360 -#: ../src/verbs.cpp:1396 -#: ../src/verbs.cpp:1402 -#: ../src/verbs.cpp:1426 -#: ../src/verbs.cpp:1441 +#: ../src/verbs.cpp:1296 ../src/verbs.cpp:1393 ../src/verbs.cpp:1429 +#: ../src/verbs.cpp:1435 ../src/verbs.cpp:1459 ../src/verbs.cpp:1474 msgid "No current layer." msgstr "Aucun calque courant." -#: ../src/verbs.cpp:1292 -#: ../src/verbs.cpp:1296 +#: ../src/verbs.cpp:1325 ../src/verbs.cpp:1329 #, c-format msgid "Raised layer %s." msgstr "Calque %s monté." -#: ../src/verbs.cpp:1293 +#: ../src/verbs.cpp:1326 msgid "Layer to top" msgstr "Calque au premier plan" -#: ../src/verbs.cpp:1297 +#: ../src/verbs.cpp:1330 msgid "Raise layer" msgstr "Monter le calque" -#: ../src/verbs.cpp:1300 -#: ../src/verbs.cpp:1304 +#: ../src/verbs.cpp:1333 ../src/verbs.cpp:1337 #, c-format msgid "Lowered layer %s." msgstr "Calque %s descendu." -#: ../src/verbs.cpp:1301 +#: ../src/verbs.cpp:1334 msgid "Layer to bottom" msgstr "Calque à l'arrière-plan" -#: ../src/verbs.cpp:1305 +#: ../src/verbs.cpp:1338 msgid "Lower layer" msgstr "Descendre le calque" -#: ../src/verbs.cpp:1314 +#: ../src/verbs.cpp:1347 msgid "Cannot move layer any further." msgstr "Impossible de déplacer le calque plus loin." -#: ../src/verbs.cpp:1328 -#: ../src/verbs.cpp:1347 +#: ../src/verbs.cpp:1361 ../src/verbs.cpp:1380 #, c-format msgid "%s copy" msgstr "Copie de %s" -#: ../src/verbs.cpp:1355 +#: ../src/verbs.cpp:1388 msgid "Duplicate layer" msgstr "Dupliquer le calque" #. TRANSLATORS: this means "The layer has been duplicated." -#: ../src/verbs.cpp:1358 +#: ../src/verbs.cpp:1391 msgid "Duplicated layer." msgstr "Calque dupliqué." -#: ../src/verbs.cpp:1391 +#: ../src/verbs.cpp:1424 msgid "Delete layer" msgstr "Supprimer le calque" #. TRANSLATORS: this means "The layer has been deleted." -#: ../src/verbs.cpp:1394 +#: ../src/verbs.cpp:1427 msgid "Deleted layer." msgstr "Calque supprimé." -#: ../src/verbs.cpp:1411 +#: ../src/verbs.cpp:1444 msgid "Show all layers" msgstr "Afficher tous les calques" -#: ../src/verbs.cpp:1416 +#: ../src/verbs.cpp:1449 msgid "Hide all layers" msgstr "Masquer tous les calques" -#: ../src/verbs.cpp:1421 +#: ../src/verbs.cpp:1454 msgid "Lock all layers" msgstr "Verrouiller tous les calques" -#: ../src/verbs.cpp:1435 +#: ../src/verbs.cpp:1468 msgid "Unlock all layers" msgstr "Déverrouiller tous les calques" -#: ../src/verbs.cpp:1519 +#: ../src/verbs.cpp:1552 msgid "Flip horizontally" msgstr "Retourner horizontalement" -#: ../src/verbs.cpp:1524 +#: ../src/verbs.cpp:1557 msgid "Flip vertically" msgstr "Retourner verticalement" +#: ../src/verbs.cpp:1618 ../src/verbs.cpp:2731 +#, fuzzy +msgid "Create new selection set" +msgstr "Créer un nouveau nœud élément" + # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: If you have translated the tutorial-basic.en.svgz file to your language, #. then translate this string as "tutorial-basic.LANG.svgz" (where LANG is your language #. code); otherwise leave as "tutorial-basic.svg". -#: ../src/verbs.cpp:2105 +#: ../src/verbs.cpp:2188 msgid "tutorial-basic.svg" msgstr "tutorial-basic.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2109 +#: ../src/verbs.cpp:2192 msgid "tutorial-shapes.svg" msgstr "tutorial-shapes.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2113 +#: ../src/verbs.cpp:2196 msgid "tutorial-advanced.svg" msgstr "tutorial-advanced.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2117 +#: ../src/verbs.cpp:2200 msgid "tutorial-tracing.svg" msgstr "tutorial-tracing.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. -#: ../src/verbs.cpp:2120 +#: ../src/verbs.cpp:2203 msgid "tutorial-tracing-pixelart.svg" msgstr "tutorial-tracing-pixelart.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2124 +#: ../src/verbs.cpp:2207 msgid "tutorial-calligraphy.svg" msgstr "tutorial-calligraphy.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2128 +#: ../src/verbs.cpp:2211 msgid "tutorial-interpolate.svg" msgstr "tutorial-interpolate.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2132 +#: ../src/verbs.cpp:2215 msgid "tutorial-elements.svg" msgstr "tutorial-elements.fr.svg" # Name of the displayed file (in Help > tutorials > ...). To be translated if the tutorial has been translated. #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2136 +#: ../src/verbs.cpp:2219 msgid "tutorial-tips.svg" msgstr "tutorial-tips.fr.svg" -#: ../src/verbs.cpp:2322 -#: ../src/verbs.cpp:2913 +#: ../src/verbs.cpp:2405 ../src/verbs.cpp:3004 msgid "Unlock all objects in the current layer" msgstr "Déverrouiller tous les objets sur le calque courant" -#: ../src/verbs.cpp:2326 -#: ../src/verbs.cpp:2915 +#: ../src/verbs.cpp:2409 ../src/verbs.cpp:3006 msgid "Unlock all objects in all layers" msgstr "Déverouiller tous les objets sur tous les calques" -#: ../src/verbs.cpp:2330 -#: ../src/verbs.cpp:2917 +#: ../src/verbs.cpp:2413 ../src/verbs.cpp:3008 msgid "Unhide all objects in the current layer" msgstr "Montrer tous les objets sur le calque courant" -#: ../src/verbs.cpp:2334 -#: ../src/verbs.cpp:2919 +#: ../src/verbs.cpp:2417 ../src/verbs.cpp:3010 msgid "Unhide all objects in all layers" msgstr "Montrer tous les objets sur tous les calques" -#: ../src/verbs.cpp:2349 +#: ../src/verbs.cpp:2432 msgctxt "Verb" msgid "None" msgstr "Aucun" -#: ../src/verbs.cpp:2349 +#: ../src/verbs.cpp:2432 msgid "Does nothing" msgstr "Ne fait rien" -#: ../src/verbs.cpp:2352 +#: ../src/verbs.cpp:2435 msgid "Create new document from the default template" msgstr "Créer un nouveau document depuis le modèle par défaut" -#: ../src/verbs.cpp:2354 +#: ../src/verbs.cpp:2437 msgid "_Open..." msgstr "_Ouvrir..." -#: ../src/verbs.cpp:2355 +#: ../src/verbs.cpp:2438 msgid "Open an existing document" msgstr "Ouvrir un document existant" -#: ../src/verbs.cpp:2356 +#: ../src/verbs.cpp:2439 msgid "Re_vert" msgstr "_Recharger" -#: ../src/verbs.cpp:2357 +#: ../src/verbs.cpp:2440 msgid "Revert to the last saved version of document (changes will be lost)" -msgstr "Recharger le dernier enregistrement du document (les changements seront perdus)" +msgstr "" +"Recharger le dernier enregistrement du document (les changements seront " +"perdus)" -#: ../src/verbs.cpp:2358 +#: ../src/verbs.cpp:2441 msgid "Save document" msgstr "Enregistrer le document" -#: ../src/verbs.cpp:2360 +#: ../src/verbs.cpp:2443 msgid "Save _As..." msgstr "Enregistrer _sous..." -#: ../src/verbs.cpp:2361 +#: ../src/verbs.cpp:2444 msgid "Save document under a new name" msgstr "Enregistrer le document sous un nouveau nom" -#: ../src/verbs.cpp:2362 +#: ../src/verbs.cpp:2445 msgid "Save a Cop_y..." msgstr "Enregistrer une cop_ie..." -#: ../src/verbs.cpp:2363 +#: ../src/verbs.cpp:2446 msgid "Save a copy of the document under a new name" msgstr "Enregistrer une copie du document sous un nouveau nom" -#: ../src/verbs.cpp:2364 +#: ../src/verbs.cpp:2447 msgid "_Print..." msgstr "Im_primer..." -#: ../src/verbs.cpp:2364 +#: ../src/verbs.cpp:2447 msgid "Print document" msgstr "Imprimer le document" #. TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions) -#: ../src/verbs.cpp:2367 +#: ../src/verbs.cpp:2450 msgid "Clean _up document" msgstr "Nettoyer le doc_ument" -#: ../src/verbs.cpp:2367 -msgid "Remove unused definitions (such as gradients or clipping paths) from the <defs> of the document" -msgstr "Retirer les définitions inutilisées (comme des dégradés ou des chemins de découpe) des <defs> du document" +#: ../src/verbs.cpp:2450 +msgid "" +"Remove unused definitions (such as gradients or clipping paths) from the <" +"defs> of the document" +msgstr "" +"Retirer les définitions inutilisées (comme des dégradés ou des chemins de " +"découpe) des <defs> du document" -#: ../src/verbs.cpp:2369 +#: ../src/verbs.cpp:2452 msgid "_Import..." msgstr "_Importer..." -#: ../src/verbs.cpp:2370 +#: ../src/verbs.cpp:2453 msgid "Import a bitmap or SVG image into this document" msgstr "Importer une image SVG ou bitmap dans ce document" #. new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."), N_("Export this document or a selection as a bitmap image"), INKSCAPE_ICON("document-export")), -#: ../src/verbs.cpp:2372 +#: ../src/verbs.cpp:2455 msgid "Import Clip Art..." msgstr "Importer un Clip Art..." -#: ../src/verbs.cpp:2373 +#: ../src/verbs.cpp:2456 msgid "Import clipart from Open Clip Art Library" msgstr "Importer depuis la bibliothèque Open Clip Art" #. new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("Export To Open Clip Art Library"), N_("Export this document to Open Clip Art Library"), INKSCAPE_ICON_DOCUMENT_EXPORT_OCAL), -#: ../src/verbs.cpp:2375 +#: ../src/verbs.cpp:2458 msgid "N_ext Window" msgstr "Fenêtre _suivante" -#: ../src/verbs.cpp:2376 +#: ../src/verbs.cpp:2459 msgid "Switch to the next document window" msgstr "Passer à la fenêtre (document) suivante" -#: ../src/verbs.cpp:2377 +#: ../src/verbs.cpp:2460 msgid "P_revious Window" msgstr "Fenêtre _précédente" -#: ../src/verbs.cpp:2378 +#: ../src/verbs.cpp:2461 msgid "Switch to the previous document window" msgstr "Passer à la fenêtre (document) précédente" -#: ../src/verbs.cpp:2379 +#: ../src/verbs.cpp:2462 msgid "_Close" msgstr "_Fermer" -#: ../src/verbs.cpp:2380 +#: ../src/verbs.cpp:2463 msgid "Close this document window" msgstr "Fermer cette fenêtre document" -#: ../src/verbs.cpp:2381 +#: ../src/verbs.cpp:2464 msgid "_Quit" msgstr "_Quitter" -#: ../src/verbs.cpp:2381 +#: ../src/verbs.cpp:2464 msgid "Quit Inkscape" msgstr "Quitter Inkscape" -#: ../src/verbs.cpp:2382 +#: ../src/verbs.cpp:2465 msgid "_Templates..." msgstr "_Modèles..." -#: ../src/verbs.cpp:2383 +#: ../src/verbs.cpp:2466 msgid "Create new project from template" msgstr "Créer un nouveau document depuis un modèle" -#: ../src/verbs.cpp:2386 +#: ../src/verbs.cpp:2469 msgid "Undo last action" msgstr "Annuler la dernière action" -#: ../src/verbs.cpp:2389 +#: ../src/verbs.cpp:2472 msgid "Do again the last undone action" msgstr "Refaire la dernière action annulée" -#: ../src/verbs.cpp:2390 +#: ../src/verbs.cpp:2473 msgid "Cu_t" msgstr "_Couper" -#: ../src/verbs.cpp:2391 +#: ../src/verbs.cpp:2474 msgid "Cut selection to clipboard" msgstr "Couper la sélection vers le presse-papiers" -#: ../src/verbs.cpp:2392 +#: ../src/verbs.cpp:2475 msgid "_Copy" msgstr "Co_pier" -#: ../src/verbs.cpp:2393 +#: ../src/verbs.cpp:2476 msgid "Copy selection to clipboard" msgstr "Copier la sélection vers le presse-papiers" -#: ../src/verbs.cpp:2394 +#: ../src/verbs.cpp:2477 msgid "_Paste" msgstr "C_oller" -#: ../src/verbs.cpp:2395 +#: ../src/verbs.cpp:2478 msgid "Paste objects from clipboard to mouse point, or paste text" -msgstr "Coller les objets du presse-papiers sous le pointeur de souris, ou coller du texte" +msgstr "" +"Coller les objets du presse-papiers sous le pointeur de souris, ou coller du " +"texte" -#: ../src/verbs.cpp:2396 +#: ../src/verbs.cpp:2479 msgid "Paste _Style" msgstr "Coller le st_yle" -#: ../src/verbs.cpp:2397 +#: ../src/verbs.cpp:2480 msgid "Apply the style of the copied object to selection" msgstr "Appliquer le style de l'objet copié à la sélection" -#: ../src/verbs.cpp:2399 +#: ../src/verbs.cpp:2482 msgid "Scale selection to match the size of the copied object" -msgstr "Redimensionner la sélection afin de correspondre aux dimensions de l'objet sélectionné" +msgstr "" +"Redimensionner la sélection afin de correspondre aux dimensions de l'objet " +"sélectionné" -#: ../src/verbs.cpp:2400 +#: ../src/verbs.cpp:2483 msgid "Paste _Width" msgstr "Coller la _largeur" -#: ../src/verbs.cpp:2401 +#: ../src/verbs.cpp:2484 msgid "Scale selection horizontally to match the width of the copied object" -msgstr "Redimensionne horizontalement la sélection afin d'avoir la largeur de l'objet copié" +msgstr "" +"Redimensionne horizontalement la sélection afin d'avoir la largeur de " +"l'objet copié" -#: ../src/verbs.cpp:2402 +#: ../src/verbs.cpp:2485 msgid "Paste _Height" msgstr "Coller la _hauteur" -#: ../src/verbs.cpp:2403 +#: ../src/verbs.cpp:2486 msgid "Scale selection vertically to match the height of the copied object" -msgstr "Redimensionne verticalement la sélection afin d'avoir la hauteur de l'objet copié" +msgstr "" +"Redimensionne verticalement la sélection afin d'avoir la hauteur de l'objet " +"copié" -#: ../src/verbs.cpp:2404 +#: ../src/verbs.cpp:2487 msgid "Paste Size Separately" msgstr "Coller les dimensions séparément" -#: ../src/verbs.cpp:2405 +#: ../src/verbs.cpp:2488 msgid "Scale each selected object to match the size of the copied object" -msgstr "Redimensionner chaque objet sélectionné afin de correspondre aux dimensions de l'objet copié" +msgstr "" +"Redimensionner chaque objet sélectionné afin de correspondre aux dimensions " +"de l'objet copié" -#: ../src/verbs.cpp:2406 +#: ../src/verbs.cpp:2489 msgid "Paste Width Separately" msgstr "Coller la largeur séparément" -#: ../src/verbs.cpp:2407 -msgid "Scale each selected object horizontally to match the width of the copied object" -msgstr "Redimensionner horizontalement chaque objet sélectionné afin de correspondre à la largeur de l'objet copié" +#: ../src/verbs.cpp:2490 +msgid "" +"Scale each selected object horizontally to match the width of the copied " +"object" +msgstr "" +"Redimensionner horizontalement chaque objet sélectionné afin de correspondre " +"à la largeur de l'objet copié" -#: ../src/verbs.cpp:2408 +#: ../src/verbs.cpp:2491 msgid "Paste Height Separately" msgstr "Coller la hauteur séparément" -#: ../src/verbs.cpp:2409 -msgid "Scale each selected object vertically to match the height of the copied object" -msgstr "Redimensionner verticalement chaque objet sélectionné afin de correspondre à la hauteur de l'objet copié" +#: ../src/verbs.cpp:2492 +msgid "" +"Scale each selected object vertically to match the height of the copied " +"object" +msgstr "" +"Redimensionner verticalement chaque objet sélectionné afin de correspondre à " +"la hauteur de l'objet copié" -#: ../src/verbs.cpp:2410 +#: ../src/verbs.cpp:2493 msgid "Paste _In Place" msgstr "Coller sur pl_ace" -#: ../src/verbs.cpp:2411 +#: ../src/verbs.cpp:2494 msgid "Paste objects from clipboard to the original location" msgstr "Coller les objets du presse-papiers à leur emplacement d'origine" -#: ../src/verbs.cpp:2412 +#: ../src/verbs.cpp:2495 msgid "Paste Path _Effect" msgstr "Coller l'effet de chemin" -#: ../src/verbs.cpp:2413 +#: ../src/verbs.cpp:2496 msgid "Apply the path effect of the copied object to selection" msgstr "Appliquer l'effet de chemin de l'objet copié à la sélection" -#: ../src/verbs.cpp:2414 +#: ../src/verbs.cpp:2497 msgid "Remove Path _Effect" msgstr "Supprimer l'_effet de chemin" -#: ../src/verbs.cpp:2415 +#: ../src/verbs.cpp:2498 msgid "Remove any path effects from selected objects" msgstr "Retirer tous les effets de chemin de la sélection" -#: ../src/verbs.cpp:2416 +#: ../src/verbs.cpp:2499 msgid "_Remove Filters" msgstr "Supp_rimer les filtres" -#: ../src/verbs.cpp:2417 +#: ../src/verbs.cpp:2500 msgid "Remove any filters from selected objects" msgstr "Retirer tous les filtres de la sélection" -#: ../src/verbs.cpp:2418 +#: ../src/verbs.cpp:2501 msgid "_Delete" msgstr "_Supprimer" -#: ../src/verbs.cpp:2419 +#: ../src/verbs.cpp:2502 msgid "Delete selection" msgstr "Supprimer la sélection" -#: ../src/verbs.cpp:2420 +#: ../src/verbs.cpp:2503 msgid "Duplic_ate" msgstr "Dupli_quer" -#: ../src/verbs.cpp:2421 +#: ../src/verbs.cpp:2504 msgid "Duplicate selected objects" msgstr "Dupliquer les objets sélectionnés" -#: ../src/verbs.cpp:2422 +#: ../src/verbs.cpp:2505 msgid "Create Clo_ne" msgstr "Créer un clo_ne" -#: ../src/verbs.cpp:2423 +#: ../src/verbs.cpp:2506 msgid "Create a clone (a copy linked to the original) of selected object" msgstr "Créer un clone (une copie liée à l'original) de l'objet sélectionné" -#: ../src/verbs.cpp:2424 +#: ../src/verbs.cpp:2507 msgid "Unlin_k Clone" msgstr "_Délier le clone" -#: ../src/verbs.cpp:2425 -msgid "Cut the selected clones' links to the originals, turning them into standalone objects" -msgstr "Couper le lien entre le clone sélectionné et son original, le transformant en objet indépendant" +#: ../src/verbs.cpp:2508 +msgid "" +"Cut the selected clones' links to the originals, turning them into " +"standalone objects" +msgstr "" +"Couper le lien entre le clone sélectionné et son original, le transformant " +"en objet indépendant" -#: ../src/verbs.cpp:2426 +#: ../src/verbs.cpp:2509 msgid "Relink to Copied" msgstr "Relier à la copie" -#: ../src/verbs.cpp:2427 +#: ../src/verbs.cpp:2510 msgid "Relink the selected clones to the object currently on the clipboard" -msgstr "Relier les clones sélectionnés à l'objet actuellement placé dans le presse-papier" +msgstr "" +"Relier les clones sélectionnés à l'objet actuellement placé dans le presse-" +"papier" -#: ../src/verbs.cpp:2428 +#: ../src/verbs.cpp:2511 msgid "Select _Original" msgstr "Sélectionner l'_original" -#: ../src/verbs.cpp:2429 +#: ../src/verbs.cpp:2512 msgid "Select the object to which the selected clone is linked" msgstr "Sélectionner l'objet auquel le clone sélectionné est lié" -#: ../src/verbs.cpp:2430 +#: ../src/verbs.cpp:2513 msgid "Clone original path (LPE)" msgstr "Cloner le chemin original (LPE)" -#: ../src/verbs.cpp:2431 -msgid "Creates a new path, applies the Clone original LPE, and refers it to the selected path" +#: ../src/verbs.cpp:2514 +msgid "" +"Creates a new path, applies the Clone original LPE, and refers it to the " +"selected path" msgstr "" -#: ../src/verbs.cpp:2432 +#: ../src/verbs.cpp:2515 msgid "Objects to _Marker" msgstr "Objets en _marqueur" -#: ../src/verbs.cpp:2433 +#: ../src/verbs.cpp:2516 msgid "Convert selection to a line marker" msgstr "Transforme la sélection en marqueur de ligne" -#: ../src/verbs.cpp:2434 +#: ../src/verbs.cpp:2517 msgid "Objects to Gu_ides" msgstr "Objets en gu_ides" -#: ../src/verbs.cpp:2435 -msgid "Convert selected objects to a collection of guidelines aligned with their edges" -msgstr "Convertir les objets sélectionnés en une collection de guides alignés avec leurs bords" +#: ../src/verbs.cpp:2518 +msgid "" +"Convert selected objects to a collection of guidelines aligned with their " +"edges" +msgstr "" +"Convertir les objets sélectionnés en une collection de guides alignés avec " +"leurs bords" -#: ../src/verbs.cpp:2436 +#: ../src/verbs.cpp:2519 msgid "Objects to Patter_n" msgstr "Objets en _motif" -#: ../src/verbs.cpp:2437 +#: ../src/verbs.cpp:2520 msgid "Convert selection to a rectangle with tiled pattern fill" msgstr "Convertir la sélection en rectangle rempli par ce motif" -#: ../src/verbs.cpp:2438 +#: ../src/verbs.cpp:2521 msgid "Pattern to _Objects" msgstr "Motif en _objets" -#: ../src/verbs.cpp:2439 +#: ../src/verbs.cpp:2522 msgid "Extract objects from a tiled pattern fill" msgstr "Extraire des objet(s) d'un motif de remplissage" -#: ../src/verbs.cpp:2440 +#: ../src/verbs.cpp:2523 msgid "Group to Symbol" msgstr "Groupe en symbole" -#: ../src/verbs.cpp:2441 +#: ../src/verbs.cpp:2524 msgid "Convert group to a symbol" msgstr "Convertir un groupe en symbole" -#: ../src/verbs.cpp:2442 +#: ../src/verbs.cpp:2525 msgid "Symbol to Group" msgstr "Symbole en groupe" -#: ../src/verbs.cpp:2443 +#: ../src/verbs.cpp:2526 msgid "Extract group from a symbol" msgstr "Extraire un groupe à partir d'un symbole" -#: ../src/verbs.cpp:2444 +#: ../src/verbs.cpp:2527 msgid "Clea_r All" msgstr "Efface_r tout" -#: ../src/verbs.cpp:2445 +#: ../src/verbs.cpp:2528 msgid "Delete all objects from document" msgstr "Supprimer tous les objets du document" -#: ../src/verbs.cpp:2446 +#: ../src/verbs.cpp:2529 msgid "Select Al_l" msgstr "Sélectionner _tout" -#: ../src/verbs.cpp:2447 +#: ../src/verbs.cpp:2530 msgid "Select all objects or all nodes" msgstr "Sélectionner tous les objets ou tous les nœuds" -#: ../src/verbs.cpp:2448 +#: ../src/verbs.cpp:2531 msgid "Select All in All La_yers" msgstr "Tout s_électionner dans tous les calques" -#: ../src/verbs.cpp:2449 +#: ../src/verbs.cpp:2532 msgid "Select all objects in all visible and unlocked layers" -msgstr "Sélectionner tous les objets dans tous les calques visibles et non verrouillés" +msgstr "" +"Sélectionner tous les objets dans tous les calques visibles et non " +"verrouillés" -#: ../src/verbs.cpp:2450 +#: ../src/verbs.cpp:2533 msgid "Fill _and Stroke" msgstr "Remplissage _et contour" -#: ../src/verbs.cpp:2451 -msgid "Select all objects with the same fill and stroke as the selected objects" -msgstr "Sélectionner tous les objets de même remplissage et contour que la sélection" +#: ../src/verbs.cpp:2534 +msgid "" +"Select all objects with the same fill and stroke as the selected objects" +msgstr "" +"Sélectionner tous les objets de même remplissage et contour que la sélection" -#: ../src/verbs.cpp:2452 +#: ../src/verbs.cpp:2535 msgid "_Fill Color" msgstr "Couleur du _remplissage" -#: ../src/verbs.cpp:2453 +#: ../src/verbs.cpp:2536 msgid "Select all objects with the same fill as the selected objects" msgstr "Sélectionner tous les objets de même remplissage que la sélection" -#: ../src/verbs.cpp:2454 +#: ../src/verbs.cpp:2537 msgid "_Stroke Color" msgstr "Couleur du _contour" -#: ../src/verbs.cpp:2455 +#: ../src/verbs.cpp:2538 msgid "Select all objects with the same stroke as the selected objects" msgstr "Sélectionner tous les objets de même contour que la sélection" -#: ../src/verbs.cpp:2456 +#: ../src/verbs.cpp:2539 msgid "Stroke St_yle" msgstr "St_yle du contour" -#: ../src/verbs.cpp:2457 -msgid "Select all objects with the same stroke style (width, dash, markers) as the selected objects" -msgstr "Sélectionner tous les objets de même style de contour (épaisseur, pointillés, marqueurs) que la sélection" +#: ../src/verbs.cpp:2540 +msgid "" +"Select all objects with the same stroke style (width, dash, markers) as the " +"selected objects" +msgstr "" +"Sélectionner tous les objets de même style de contour (épaisseur, " +"pointillés, marqueurs) que la sélection" -#: ../src/verbs.cpp:2458 +#: ../src/verbs.cpp:2541 msgid "_Object Type" msgstr "Type d'_objet" -#: ../src/verbs.cpp:2459 -msgid "Select all objects with the same object type (rect, arc, text, path, bitmap etc) as the selected objects" -msgstr "Sélectionner tous les objets de même type (rectangle, arc, texte, chemin, bitmap, etc.) que la sélection" +#: ../src/verbs.cpp:2542 +msgid "" +"Select all objects with the same object type (rect, arc, text, path, bitmap " +"etc) as the selected objects" +msgstr "" +"Sélectionner tous les objets de même type (rectangle, arc, texte, chemin, " +"bitmap, etc.) que la sélection" -#: ../src/verbs.cpp:2460 +#: ../src/verbs.cpp:2543 msgid "In_vert Selection" msgstr "In_verser la sélection" -#: ../src/verbs.cpp:2461 +#: ../src/verbs.cpp:2544 msgid "Invert selection (unselect what is selected and select everything else)" -msgstr "Inverser la sélection (désélectionner tout ce qui était sélectionné, et sélectionner tout le reste)" +msgstr "" +"Inverser la sélection (désélectionner tout ce qui était sélectionné, et " +"sélectionner tout le reste)" -#: ../src/verbs.cpp:2462 +#: ../src/verbs.cpp:2545 msgid "Invert in All Layers" msgstr "Inverser dans tous les calques" -#: ../src/verbs.cpp:2463 +#: ../src/verbs.cpp:2546 msgid "Invert selection in all visible and unlocked layers" -msgstr "Inverser la sélection dans tous les calques visibles et non verrouillés" +msgstr "" +"Inverser la sélection dans tous les calques visibles et non verrouillés" -#: ../src/verbs.cpp:2464 +#: ../src/verbs.cpp:2547 msgid "Select Next" msgstr "Sélectionner suivant" -#: ../src/verbs.cpp:2465 +#: ../src/verbs.cpp:2548 msgid "Select next object or node" msgstr "Sélectionner l'objet ou nœud suivant" -#: ../src/verbs.cpp:2466 +#: ../src/verbs.cpp:2549 msgid "Select Previous" msgstr "Sélectionner précédent" -#: ../src/verbs.cpp:2467 +#: ../src/verbs.cpp:2550 msgid "Select previous object or node" msgstr "Sélectionner l'objet ou nœud précédent" -#: ../src/verbs.cpp:2468 +#: ../src/verbs.cpp:2551 msgid "D_eselect" msgstr "_Désélectionner" -#: ../src/verbs.cpp:2469 +#: ../src/verbs.cpp:2552 msgid "Deselect any selected objects or nodes" msgstr "Désélectionner tous les objets ou nœuds" -#: ../src/verbs.cpp:2471 +#: ../src/verbs.cpp:2554 msgid "Delete all the guides in the document" msgstr "Supprimer tous les guides du document" -#: ../src/verbs.cpp:2472 +#: ../src/verbs.cpp:2555 msgid "Create _Guides Around the Page" msgstr "Créer des _guides autour de la page" -#: ../src/verbs.cpp:2473 +#: ../src/verbs.cpp:2556 msgid "Create four guides aligned with the page borders" msgstr "Crée quatre guides alignés sur les bords de la page" -#: ../src/verbs.cpp:2474 +#: ../src/verbs.cpp:2557 msgid "Next path effect parameter" msgstr "Paramètre de l'effect de chemin suivant" -#: ../src/verbs.cpp:2475 +#: ../src/verbs.cpp:2558 msgid "Show next editable path effect parameter" msgstr "Afficher le paramètre de l'effet de chemin suivant" #. Selection -#: ../src/verbs.cpp:2478 +#: ../src/verbs.cpp:2561 msgid "Raise to _Top" msgstr "Monter au premier p_lan" -#: ../src/verbs.cpp:2479 +#: ../src/verbs.cpp:2562 msgid "Raise selection to top" msgstr "Monter la sélection au premier plan" -#: ../src/verbs.cpp:2480 +#: ../src/verbs.cpp:2563 msgid "Lower to _Bottom" msgstr "Descendre à l'arrière-pl_an" -#: ../src/verbs.cpp:2481 +#: ../src/verbs.cpp:2564 msgid "Lower selection to bottom" msgstr "Descendre la sélection à l'arrière-plan" -#: ../src/verbs.cpp:2482 +#: ../src/verbs.cpp:2565 msgid "_Raise" msgstr "_Monter" -#: ../src/verbs.cpp:2483 +#: ../src/verbs.cpp:2566 msgid "Raise selection one step" msgstr "Monter la sélection d'un cran" -#: ../src/verbs.cpp:2484 +#: ../src/verbs.cpp:2567 msgid "_Lower" msgstr "D_escendre" -#: ../src/verbs.cpp:2485 +#: ../src/verbs.cpp:2568 msgid "Lower selection one step" msgstr "Descendre la sélection d'un cran" -#: ../src/verbs.cpp:2487 +#: ../src/verbs.cpp:2570 msgid "Group selected objects" msgstr "Grouper les objets sélectionnés" -#: ../src/verbs.cpp:2489 +#: ../src/verbs.cpp:2572 msgid "Ungroup selected groups" msgstr "Dégrouper les groupes sélectionnés" -#: ../src/verbs.cpp:2491 +#: ../src/verbs.cpp:2574 msgid "_Put on Path" msgstr "Mettre _suivant un chemin" -#: ../src/verbs.cpp:2493 +#: ../src/verbs.cpp:2576 msgid "_Remove from Path" msgstr "_Retirer du chemin" -#: ../src/verbs.cpp:2495 +#: ../src/verbs.cpp:2578 msgid "Remove Manual _Kerns" msgstr "Retirer les crénages _manuels" #. TRANSLATORS: "glyph": An image used in the visual representation of characters; #. roughly speaking, how a character looks. A font is a set of glyphs. -#: ../src/verbs.cpp:2498 +#: ../src/verbs.cpp:2581 msgid "Remove all manual kerns and glyph rotations from a text object" msgstr "Retirer les crénages manuels et rotations de glyphes d'un texte" -#: ../src/verbs.cpp:2500 +#: ../src/verbs.cpp:2583 msgid "_Union" msgstr "_Union" -#: ../src/verbs.cpp:2501 +#: ../src/verbs.cpp:2584 msgid "Create union of selected paths" msgstr "Créer l'union des chemins sélectionnés" -#: ../src/verbs.cpp:2502 +#: ../src/verbs.cpp:2585 msgid "_Intersection" msgstr "_Intersection" -#: ../src/verbs.cpp:2503 +#: ../src/verbs.cpp:2586 msgid "Create intersection of selected paths" msgstr "Créer l'intersection des chemins sélectionnés" -#: ../src/verbs.cpp:2504 +#: ../src/verbs.cpp:2587 msgid "_Difference" msgstr "_Différence" -#: ../src/verbs.cpp:2505 +#: ../src/verbs.cpp:2588 msgid "Create difference of selected paths (bottom minus top)" msgstr "Créer la différence des chemins sélectionnés (dessous moins dessus)" -#: ../src/verbs.cpp:2506 +#: ../src/verbs.cpp:2589 msgid "E_xclusion" msgstr "E_xclusion" -#: ../src/verbs.cpp:2507 -msgid "Create exclusive OR of selected paths (those parts that belong to only one path)" -msgstr "Créer un OU exclusif des chemins sélectionnés (seules les parties qui n'appartiennent qu'à un seul chemin)" +#: ../src/verbs.cpp:2590 +msgid "" +"Create exclusive OR of selected paths (those parts that belong to only one " +"path)" +msgstr "" +"Créer un OU exclusif des chemins sélectionnés (seules les parties qui " +"n'appartiennent qu'à un seul chemin)" -#: ../src/verbs.cpp:2508 +#: ../src/verbs.cpp:2591 msgid "Di_vision" msgstr "Di_vision" -#: ../src/verbs.cpp:2509 +#: ../src/verbs.cpp:2592 msgid "Cut the bottom path into pieces" msgstr "Couper le chemin du dessous en morceaux" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2512 +#: ../src/verbs.cpp:2595 msgid "Cut _Path" msgstr "Décou_per le chemin" -#: ../src/verbs.cpp:2513 +#: ../src/verbs.cpp:2596 msgid "Cut the bottom path's stroke into pieces, removing fill" msgstr "Couper le contour du chemin du dessous, et supprimer son remplissage" #. TRANSLATORS: "outset": expand a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2517 +#: ../src/verbs.cpp:2600 msgid "Outs_et" msgstr "Dil_ater" -#: ../src/verbs.cpp:2518 +#: ../src/verbs.cpp:2601 msgid "Outset selected paths" msgstr "Dilater les chemins sélectionnés" -#: ../src/verbs.cpp:2520 +#: ../src/verbs.cpp:2603 msgid "O_utset Path by 1 px" msgstr "_Dilater le chemin de 1px" -#: ../src/verbs.cpp:2521 +#: ../src/verbs.cpp:2604 msgid "Outset selected paths by 1 px" msgstr "Dilater les chemins sélectionnés de 1 px" -#: ../src/verbs.cpp:2523 +#: ../src/verbs.cpp:2606 msgid "O_utset Path by 10 px" msgstr "_Dilater le chemin de 10 px" -#: ../src/verbs.cpp:2524 +#: ../src/verbs.cpp:2607 msgid "Outset selected paths by 10 px" msgstr "Dilater les chemins sélectionnés de 10 px" #. TRANSLATORS: "inset": contract a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2528 +#: ../src/verbs.cpp:2611 msgid "I_nset" msgstr "Co_ntracter" -#: ../src/verbs.cpp:2529 +#: ../src/verbs.cpp:2612 msgid "Inset selected paths" msgstr "Contracter les chemins sélectionnés" -#: ../src/verbs.cpp:2531 +#: ../src/verbs.cpp:2614 msgid "I_nset Path by 1 px" msgstr "Co_ntracter le chemin de 1 px" -#: ../src/verbs.cpp:2532 +#: ../src/verbs.cpp:2615 msgid "Inset selected paths by 1 px" msgstr "Contracter les chemins sélectionnés de 1 px" -#: ../src/verbs.cpp:2534 +#: ../src/verbs.cpp:2617 msgid "I_nset Path by 10 px" msgstr "Co_ntracter le chemin de 10 px" -#: ../src/verbs.cpp:2535 +#: ../src/verbs.cpp:2618 msgid "Inset selected paths by 10 px" msgstr "Contracter les chemins sélectionnés de 10 px" -#: ../src/verbs.cpp:2537 +#: ../src/verbs.cpp:2620 msgid "D_ynamic Offset" msgstr "Offset d_ynamique" -#: ../src/verbs.cpp:2537 +#: ../src/verbs.cpp:2620 msgid "Create a dynamic offset object" msgstr "Créer un objet offset dynamique" -#: ../src/verbs.cpp:2539 +#: ../src/verbs.cpp:2622 msgid "_Linked Offset" msgstr "Offset _lié" -#: ../src/verbs.cpp:2540 +#: ../src/verbs.cpp:2623 msgid "Create a dynamic offset object linked to the original path" msgstr "Créer un objet offset dynamique lié au chemin original" -#: ../src/verbs.cpp:2542 +#: ../src/verbs.cpp:2625 msgid "_Stroke to Path" msgstr "_Contour en chemin" -#: ../src/verbs.cpp:2543 +#: ../src/verbs.cpp:2626 msgid "Convert selected object's stroke to paths" msgstr "Convertir les contours des objets sélectionnés en chemins" -#: ../src/verbs.cpp:2544 +#: ../src/verbs.cpp:2627 msgid "Si_mplify" msgstr "Si_mplifier" -#: ../src/verbs.cpp:2545 +#: ../src/verbs.cpp:2628 msgid "Simplify selected paths (remove extra nodes)" msgstr "Simplifier les chemins sélectionnés (supprimer des nœuds superflus)" -#: ../src/verbs.cpp:2546 +#: ../src/verbs.cpp:2629 msgid "_Reverse" msgstr "Invers_er" -#: ../src/verbs.cpp:2547 +#: ../src/verbs.cpp:2630 msgid "Reverse the direction of selected paths (useful for flipping markers)" -msgstr "Inverser la direction des chemins sélectionnés (utile pour retourner des marqueurs)" +msgstr "" +"Inverser la direction des chemins sélectionnés (utile pour retourner des " +"marqueurs)" -#: ../src/verbs.cpp:2550 +#: ../src/verbs.cpp:2633 msgid "Create one or more paths from a bitmap by tracing it" msgstr "Créer un ou plusieurs chemin en vectorisant un bitmap" -#: ../src/verbs.cpp:2551 +#: ../src/verbs.cpp:2634 msgid "Trace Pixel Art..." msgstr "Vec_toriser en pixel art..." -#: ../src/verbs.cpp:2552 +#: ../src/verbs.cpp:2635 msgid "Create paths using Kopf-Lischinski algorithm to vectorize pixel art" msgstr "" +"Créer des chemins en utilisant l'algorithme de Kopt-Lischinski pour " +"vectoriser en pixel art" -#: ../src/verbs.cpp:2553 +#: ../src/verbs.cpp:2636 msgid "Make a _Bitmap Copy" msgstr "Faire une copie bit_map" -#: ../src/verbs.cpp:2554 +#: ../src/verbs.cpp:2637 msgid "Export selection to a bitmap and insert it into document" msgstr "Exporter la sélection en bitmap et insérer celui-ci dans le document" -#: ../src/verbs.cpp:2555 +#: ../src/verbs.cpp:2638 msgid "_Combine" msgstr "Com_biner" -#: ../src/verbs.cpp:2556 +#: ../src/verbs.cpp:2639 msgid "Combine several paths into one" msgstr "Combiner plusieurs chemins en un seul" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2559 +#: ../src/verbs.cpp:2642 msgid "Break _Apart" msgstr "Sépa_rer" -#: ../src/verbs.cpp:2560 +#: ../src/verbs.cpp:2643 msgid "Break selected paths into subpaths" msgstr "Séparer les chemins sélectionnés en sous-chemins" -#: ../src/verbs.cpp:2561 +#: ../src/verbs.cpp:2644 msgid "_Arrange..." msgstr "_Organiser..." -#: ../src/verbs.cpp:2562 +#: ../src/verbs.cpp:2645 msgid "Arrange selected objects in a table or circle" msgstr "Arranger les objets sélectionnés dans une table ou un cercle" #. Layer -#: ../src/verbs.cpp:2564 +#: ../src/verbs.cpp:2647 msgid "_Add Layer..." msgstr "_Ajouter un calque..." -#: ../src/verbs.cpp:2565 +#: ../src/verbs.cpp:2648 msgid "Create a new layer" msgstr "Créer un nouveau calque" -#: ../src/verbs.cpp:2566 +#: ../src/verbs.cpp:2649 msgid "Re_name Layer..." msgstr "Re_nommer le calque..." -#: ../src/verbs.cpp:2567 +#: ../src/verbs.cpp:2650 msgid "Rename the current layer" msgstr "Renommer le calque courant" -#: ../src/verbs.cpp:2568 +#: ../src/verbs.cpp:2651 msgid "Switch to Layer Abov_e" msgstr "Passer au calque supéri_eur" -#: ../src/verbs.cpp:2569 +#: ../src/verbs.cpp:2652 msgid "Switch to the layer above the current" msgstr "Passer au calque au-dessus du calque courant" -#: ../src/verbs.cpp:2570 +#: ../src/verbs.cpp:2653 msgid "Switch to Layer Belo_w" msgstr "Passer au calque inférie_ur" -#: ../src/verbs.cpp:2571 +#: ../src/verbs.cpp:2654 msgid "Switch to the layer below the current" msgstr "Passer au calque en-dessous du calque courant" -#: ../src/verbs.cpp:2572 +#: ../src/verbs.cpp:2655 msgid "Move Selection to Layer Abo_ve" msgstr "Déplacer la sélection au calque su_périeur" -#: ../src/verbs.cpp:2573 +#: ../src/verbs.cpp:2656 msgid "Move selection to the layer above the current" msgstr "Déplacer la sélection vers le calque au-dessus du calque courant" -#: ../src/verbs.cpp:2574 +#: ../src/verbs.cpp:2657 msgid "Move Selection to Layer Bel_ow" msgstr "Déplacer la sélection au calque in_férieur" -#: ../src/verbs.cpp:2575 +#: ../src/verbs.cpp:2658 msgid "Move selection to the layer below the current" msgstr "Déplacer la sélection vers le calque en-dessous du calque courant" -#: ../src/verbs.cpp:2576 +#: ../src/verbs.cpp:2659 msgid "Move Selection to Layer..." msgstr "Déplacer la sélection vers le calque..." -#: ../src/verbs.cpp:2578 +#: ../src/verbs.cpp:2661 msgid "Layer to _Top" msgstr "Calque au pre_mier plan" -#: ../src/verbs.cpp:2579 +#: ../src/verbs.cpp:2662 msgid "Raise the current layer to the top" msgstr "Monter le calque courant au premier plan" -#: ../src/verbs.cpp:2580 +#: ../src/verbs.cpp:2663 msgid "Layer to _Bottom" msgstr "Calque à l'a_rrière-plan" -#: ../src/verbs.cpp:2581 +#: ../src/verbs.cpp:2664 msgid "Lower the current layer to the bottom" msgstr "Descendre le calque courant à l'arrière-plan" -#: ../src/verbs.cpp:2582 +#: ../src/verbs.cpp:2665 msgid "_Raise Layer" msgstr "M_onter le calque" -#: ../src/verbs.cpp:2583 +#: ../src/verbs.cpp:2666 msgid "Raise the current layer" msgstr "Monter le calque courant" -#: ../src/verbs.cpp:2584 +#: ../src/verbs.cpp:2667 msgid "_Lower Layer" msgstr "Descen_dre le calque" -#: ../src/verbs.cpp:2585 +#: ../src/verbs.cpp:2668 msgid "Lower the current layer" msgstr "Descendre le calque courant" -#: ../src/verbs.cpp:2586 +#: ../src/verbs.cpp:2669 msgid "D_uplicate Current Layer" msgstr "D_upliquer le calque courant" -#: ../src/verbs.cpp:2587 +#: ../src/verbs.cpp:2670 msgid "Duplicate an existing layer" msgstr "Dupliquer un calque existant" -#: ../src/verbs.cpp:2588 +#: ../src/verbs.cpp:2671 msgid "_Delete Current Layer" msgstr "_Supprimer le calque courant" -#: ../src/verbs.cpp:2589 +#: ../src/verbs.cpp:2672 msgid "Delete the current layer" msgstr "Supprimer le calque courant" -#: ../src/verbs.cpp:2590 +#: ../src/verbs.cpp:2673 msgid "_Show/hide other layers" msgstr "Afficher ou masquer les autres calques" -#: ../src/verbs.cpp:2591 +#: ../src/verbs.cpp:2674 msgid "Solo the current layer" msgstr "Afficher le calque courant uniquement" -#: ../src/verbs.cpp:2592 +#: ../src/verbs.cpp:2675 msgid "_Show all layers" msgstr "_Montrer tous les calques" -#: ../src/verbs.cpp:2593 +#: ../src/verbs.cpp:2676 msgid "Show all the layers" msgstr "Afficher tous les calques" -#: ../src/verbs.cpp:2594 +#: ../src/verbs.cpp:2677 msgid "_Hide all layers" msgstr "_Cacher tous les calques" -#: ../src/verbs.cpp:2595 +#: ../src/verbs.cpp:2678 msgid "Hide all the layers" msgstr "Cacher tous les calques" -#: ../src/verbs.cpp:2596 +#: ../src/verbs.cpp:2679 msgid "_Lock all layers" msgstr "_Verrouiller tous les calques" -#: ../src/verbs.cpp:2597 +#: ../src/verbs.cpp:2680 msgid "Lock all the layers" msgstr "Verrouiller tous les calques" -#: ../src/verbs.cpp:2598 +#: ../src/verbs.cpp:2681 msgid "Lock/Unlock _other layers" msgstr "Verrouiller ou libérer les _autres calques" -#: ../src/verbs.cpp:2599 +#: ../src/verbs.cpp:2682 msgid "Lock all the other layers" msgstr "Verrouiller tous les autres calques" -#: ../src/verbs.cpp:2600 +#: ../src/verbs.cpp:2683 msgid "_Unlock all layers" msgstr "_Déverrouiller tous les calques" -#: ../src/verbs.cpp:2601 +#: ../src/verbs.cpp:2684 msgid "Unlock all the layers" msgstr "Déverrouiller tous les calques" -#: ../src/verbs.cpp:2602 +#: ../src/verbs.cpp:2685 msgid "_Lock/Unlock Current Layer" msgstr "Verrouiller ou _libérer le calque courant" -#: ../src/verbs.cpp:2603 +#: ../src/verbs.cpp:2686 msgid "Toggle lock on current layer" msgstr "Afficher le calque courant uniquement" -#: ../src/verbs.cpp:2604 +#: ../src/verbs.cpp:2687 msgid "_Show/hide Current Layer" msgstr "Afficher ou _masquer le calque courant" -#: ../src/verbs.cpp:2605 +#: ../src/verbs.cpp:2688 msgid "Toggle visibility of current layer" msgstr "Afficher le calque courant uniquement" #. Object -#: ../src/verbs.cpp:2608 +#: ../src/verbs.cpp:2691 msgid "Rotate _90° CW" msgstr "Tourner de _90° dans le sens horaire" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2611 +#: ../src/verbs.cpp:2694 msgid "Rotate selection 90° clockwise" msgstr "Tourner la sélection de 90° dans le sens horaire" -#: ../src/verbs.cpp:2612 +#: ../src/verbs.cpp:2695 msgid "Rotate 9_0° CCW" msgstr "Tourner de 9_0° dans le sens anti-horaire" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2615 +#: ../src/verbs.cpp:2698 msgid "Rotate selection 90° counter-clockwise" msgstr "Tourner la sélection de 90° dans le sens anti-horaire" -#: ../src/verbs.cpp:2616 +#: ../src/verbs.cpp:2699 msgid "Remove _Transformations" msgstr "Retirer les _transformations" -#: ../src/verbs.cpp:2617 +#: ../src/verbs.cpp:2700 msgid "Remove transformations from object" msgstr "retirer les transformations de l'objet" -#: ../src/verbs.cpp:2618 +#: ../src/verbs.cpp:2701 msgid "_Object to Path" msgstr "_Objet en chemin" -#: ../src/verbs.cpp:2619 +#: ../src/verbs.cpp:2702 msgid "Convert selected object to path" msgstr "Convertir les objets sélectionnés en chemins" -#: ../src/verbs.cpp:2620 +#: ../src/verbs.cpp:2703 msgid "_Flow into Frame" msgstr "_Encadrer" -#: ../src/verbs.cpp:2621 -msgid "Put text into a frame (path or shape), creating a flowed text linked to the frame object" -msgstr "Placer du texte dans un cadre (chemin ou forme), créant un texte encadré lié à l'objet cadre" +#: ../src/verbs.cpp:2704 +msgid "" +"Put text into a frame (path or shape), creating a flowed text linked to the " +"frame object" +msgstr "" +"Placer du texte dans un cadre (chemin ou forme), créant un texte encadré lié " +"à l'objet cadre" -#: ../src/verbs.cpp:2622 +#: ../src/verbs.cpp:2705 msgid "_Unflow" msgstr "_Désencadrer" -#: ../src/verbs.cpp:2623 +#: ../src/verbs.cpp:2706 msgid "Remove text from frame (creates a single-line text object)" msgstr "Retirer le texte du cadre (crée un objet texte d'une seule ligne)" -#: ../src/verbs.cpp:2624 +#: ../src/verbs.cpp:2707 msgid "_Convert to Text" msgstr "_Convertir en texte" -#: ../src/verbs.cpp:2625 +#: ../src/verbs.cpp:2708 msgid "Convert flowed text to regular text object (preserves appearance)" -msgstr "Convertir du texte encadré en objet texte normal (en préservant l'apparence)" +msgstr "" +"Convertir du texte encadré en objet texte normal (en préservant l'apparence)" -#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2710 msgid "Flip _Horizontal" msgstr "Retourner _horizontalement" -#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2710 msgid "Flip selected objects horizontally" msgstr "Retourner horizontalement les objets sélectionnés" -#: ../src/verbs.cpp:2630 +#: ../src/verbs.cpp:2713 msgid "Flip _Vertical" msgstr "Retourner _verticalement" -#: ../src/verbs.cpp:2630 +#: ../src/verbs.cpp:2713 msgid "Flip selected objects vertically" msgstr "Retourner verticalement les objets sélectionnés" -#: ../src/verbs.cpp:2633 +#: ../src/verbs.cpp:2716 msgid "Apply mask to selection (using the topmost object as mask)" -msgstr "Appliquer un masque à la sélection (en utilisant l'objet le plus au-dessus comme masque)" +msgstr "" +"Appliquer un masque à la sélection (en utilisant l'objet le plus au-dessus " +"comme masque)" -#: ../src/verbs.cpp:2635 +#: ../src/verbs.cpp:2718 msgid "Edit mask" msgstr "Modifier le masque" -#: ../src/verbs.cpp:2636 -#: ../src/verbs.cpp:2642 +#: ../src/verbs.cpp:2719 ../src/verbs.cpp:2727 msgid "_Release" msgstr "_Retirer" -#: ../src/verbs.cpp:2637 +#: ../src/verbs.cpp:2720 msgid "Remove mask from selection" msgstr "Retirer le masque de la sélection" -#: ../src/verbs.cpp:2639 -msgid "Apply clipping path to selection (using the topmost object as clipping path)" -msgstr "Appliquer un chemin de découpe à la sélection (en utilisant l'objet le plus au-dessus comme chemin de découpe)" +#: ../src/verbs.cpp:2722 +msgid "" +"Apply clipping path to selection (using the topmost object as clipping path)" +msgstr "" +"Appliquer un chemin de découpe à la sélection (en utilisant l'objet le plus " +"au-dessus comme chemin de découpe)" + +#: ../src/verbs.cpp:2723 +#, fuzzy +msgid "Create Cl_ip Group" +msgstr "Créer un clo_ne" + +#: ../src/verbs.cpp:2724 +#, fuzzy +msgid "Creates a clip group using the selected objects as a base" +msgstr "Créer un clone (une copie liée à l'original) de l'objet sélectionné" -#: ../src/verbs.cpp:2641 +#: ../src/verbs.cpp:2726 msgid "Edit clipping path" msgstr "Modifier le chemin de découpe" -#: ../src/verbs.cpp:2643 +#: ../src/verbs.cpp:2728 msgid "Remove clipping path from selection" msgstr "Retirer le chemin de découpe de la sélection" #. Tools -#: ../src/verbs.cpp:2646 +#: ../src/verbs.cpp:2733 msgctxt "ContextVerb" msgid "Select" msgstr "Sélectionner" -#: ../src/verbs.cpp:2647 +#: ../src/verbs.cpp:2734 msgid "Select and transform objects" msgstr "Sélectionner et transformer des objets" -#: ../src/verbs.cpp:2648 +#: ../src/verbs.cpp:2735 msgctxt "ContextVerb" msgid "Node Edit" msgstr "Éditer les nœuds" -#: ../src/verbs.cpp:2649 +#: ../src/verbs.cpp:2736 msgid "Edit paths by nodes" msgstr "Éditer les nœuds ou les poignées de contrôle d'un chemin" -#: ../src/verbs.cpp:2650 +#: ../src/verbs.cpp:2737 msgctxt "ContextVerb" msgid "Tweak" msgstr "Ajuster" -#: ../src/verbs.cpp:2651 +#: ../src/verbs.cpp:2738 msgid "Tweak objects by sculpting or painting" msgstr "Ajuster les objets en les sculptant ou en les peignant" -#: ../src/verbs.cpp:2652 +#: ../src/verbs.cpp:2739 msgctxt "ContextVerb" msgid "Spray" msgstr "Aérographe" -#: ../src/verbs.cpp:2653 +#: ../src/verbs.cpp:2740 msgid "Spray objects by sculpting or painting" msgstr "Pulvériser les objets en les sculptant ou en les peignant" -#: ../src/verbs.cpp:2654 +#: ../src/verbs.cpp:2741 msgctxt "ContextVerb" msgid "Rectangle" msgstr "Rectangle" -#: ../src/verbs.cpp:2655 +#: ../src/verbs.cpp:2742 msgid "Create rectangles and squares" msgstr "Créer des rectangles et des carrés" -#: ../src/verbs.cpp:2656 +#: ../src/verbs.cpp:2743 msgctxt "ContextVerb" msgid "3D Box" msgstr "Boîte 3D" -#: ../src/verbs.cpp:2657 +#: ../src/verbs.cpp:2744 msgid "Create 3D boxes" msgstr "Créer une boîte 3D" -#: ../src/verbs.cpp:2658 +#: ../src/verbs.cpp:2745 msgctxt "ContextVerb" msgid "Ellipse" msgstr "Ellipse" -#: ../src/verbs.cpp:2659 +#: ../src/verbs.cpp:2746 msgid "Create circles, ellipses, and arcs" msgstr "Créer des cercles, des ellipses et des arcs" -#: ../src/verbs.cpp:2660 +#: ../src/verbs.cpp:2747 msgctxt "ContextVerb" msgid "Star" msgstr "Étoile" -#: ../src/verbs.cpp:2661 +#: ../src/verbs.cpp:2748 msgid "Create stars and polygons" msgstr "Créer des étoiles et des polygones" -#: ../src/verbs.cpp:2662 +#: ../src/verbs.cpp:2749 msgctxt "ContextVerb" msgid "Spiral" msgstr "Spirale" -#: ../src/verbs.cpp:2663 +#: ../src/verbs.cpp:2750 msgid "Create spirals" msgstr "Créer des spirales" -#: ../src/verbs.cpp:2664 +#: ../src/verbs.cpp:2751 msgctxt "ContextVerb" msgid "Pencil" msgstr "Crayon" -#: ../src/verbs.cpp:2665 +#: ../src/verbs.cpp:2752 msgid "Draw freehand lines" msgstr "Dessiner des lignes à main levée" -#: ../src/verbs.cpp:2666 +#: ../src/verbs.cpp:2753 msgctxt "ContextVerb" msgid "Pen" msgstr "Stylo" -#: ../src/verbs.cpp:2667 +#: ../src/verbs.cpp:2754 msgid "Draw Bezier curves and straight lines" msgstr "Tracer des courbes de Bézier et des segments de droites" -#: ../src/verbs.cpp:2668 +#: ../src/verbs.cpp:2755 msgctxt "ContextVerb" msgid "Calligraphy" msgstr "Plume calligraphique" -#: ../src/verbs.cpp:2669 +#: ../src/verbs.cpp:2756 msgid "Draw calligraphic or brush strokes" msgstr "Créer un tracé calligraphique ou au pinceau" -#: ../src/verbs.cpp:2671 +#: ../src/verbs.cpp:2758 msgid "Create and edit text objects" msgstr "Créer et éditer des objets textes" -#: ../src/verbs.cpp:2672 +#: ../src/verbs.cpp:2759 msgctxt "ContextVerb" msgid "Gradient" msgstr "Dégradé" -#: ../src/verbs.cpp:2673 +#: ../src/verbs.cpp:2760 msgid "Create and edit gradients" msgstr "Créer et éditer des dégradés" -#: ../src/verbs.cpp:2674 +#: ../src/verbs.cpp:2761 msgctxt "ContextVerb" msgid "Mesh" -msgstr "" +msgstr "Filet" -#: ../src/verbs.cpp:2675 +#: ../src/verbs.cpp:2762 msgid "Create and edit meshes" msgstr "Créer et éditer des toiles de dégradés" -#: ../src/verbs.cpp:2676 +#: ../src/verbs.cpp:2763 msgctxt "ContextVerb" msgid "Zoom" msgstr "Zoom" -#: ../src/verbs.cpp:2677 +#: ../src/verbs.cpp:2764 msgid "Zoom in or out" msgstr "(Dé)zoomer" -#: ../src/verbs.cpp:2679 +#: ../src/verbs.cpp:2766 msgid "Measurement tool" msgstr "Outil de mesure" -#: ../src/verbs.cpp:2680 +#: ../src/verbs.cpp:2767 msgctxt "ContextVerb" msgid "Dropper" msgstr "Pipette" -#: ../src/verbs.cpp:2681 -#: ../src/widgets/sp-color-notebook.cpp:411 +#: ../src/verbs.cpp:2768 ../src/widgets/sp-color-notebook.cpp:396 msgid "Pick colors from image" msgstr "Capturer des couleurs depuis l'image" -#: ../src/verbs.cpp:2682 +#: ../src/verbs.cpp:2769 msgctxt "ContextVerb" msgid "Connector" msgstr "Connecteur" -#: ../src/verbs.cpp:2683 +#: ../src/verbs.cpp:2770 msgid "Create diagram connectors" msgstr "Créer des connecteurs" -#: ../src/verbs.cpp:2684 +#: ../src/verbs.cpp:2771 msgctxt "ContextVerb" msgid "Paint Bucket" msgstr "Remplissage au seau" -#: ../src/verbs.cpp:2685 +#: ../src/verbs.cpp:2772 msgid "Fill bounded areas" msgstr "Remplir une zone bornée" -#: ../src/verbs.cpp:2686 +#: ../src/verbs.cpp:2773 msgctxt "ContextVerb" msgid "LPE Edit" msgstr "Édition des effets de chemin en direct" -#: ../src/verbs.cpp:2687 +#: ../src/verbs.cpp:2774 msgid "Edit Path Effect parameters" msgstr "Modifier les paramètres des effets de chemin" -#: ../src/verbs.cpp:2688 +#: ../src/verbs.cpp:2775 msgctxt "ContextVerb" msgid "Eraser" msgstr "Gomme" -#: ../src/verbs.cpp:2689 +#: ../src/verbs.cpp:2776 msgid "Erase existing paths" msgstr "Effacer les chemins existants" -#: ../src/verbs.cpp:2690 +#: ../src/verbs.cpp:2777 msgctxt "ContextVerb" msgid "LPE Tool" msgstr "Outil effets de chemin en direct" -#: ../src/verbs.cpp:2691 +#: ../src/verbs.cpp:2778 msgid "Do geometric constructions" msgstr "Réalise des contructions géométriques" #. Tool prefs -#: ../src/verbs.cpp:2693 +#: ../src/verbs.cpp:2780 msgid "Selector Preferences" msgstr "Préférences du sélecteur" -#: ../src/verbs.cpp:2694 +#: ../src/verbs.cpp:2781 msgid "Open Preferences for the Selector tool" msgstr "Ouvrir les préférences de l'outil sélecteur" -#: ../src/verbs.cpp:2695 +#: ../src/verbs.cpp:2782 msgid "Node Tool Preferences" msgstr "Préférences des nœuds" -#: ../src/verbs.cpp:2696 +#: ../src/verbs.cpp:2783 msgid "Open Preferences for the Node tool" msgstr "Ouvrir les préférences de l'outil nœud" # flo: je ne suis pas certain du nom bidouillage, à changer si tu as mieux. -#: ../src/verbs.cpp:2697 +#: ../src/verbs.cpp:2784 msgid "Tweak Tool Preferences" msgstr "Préférences de l'outil d'ajustement" -#: ../src/verbs.cpp:2698 +#: ../src/verbs.cpp:2785 msgid "Open Preferences for the Tweak tool" msgstr "Ouvrir les préférences de l'outil d'ajustement" -#: ../src/verbs.cpp:2699 +#: ../src/verbs.cpp:2786 msgid "Spray Tool Preferences" msgstr "Préférences de l'outil aérographe" -#: ../src/verbs.cpp:2700 +#: ../src/verbs.cpp:2787 msgid "Open Preferences for the Spray tool" msgstr "Ouvrir les préférences de l'outil aérographe" -#: ../src/verbs.cpp:2701 +#: ../src/verbs.cpp:2788 msgid "Rectangle Preferences" msgstr "Préférences des rectangles" -#: ../src/verbs.cpp:2702 +#: ../src/verbs.cpp:2789 msgid "Open Preferences for the Rectangle tool" msgstr "Ouvrir les préférences de l'outil rectangle" -#: ../src/verbs.cpp:2703 +#: ../src/verbs.cpp:2790 msgid "3D Box Preferences" msgstr "Préférences des boîtes 3D" -#: ../src/verbs.cpp:2704 +#: ../src/verbs.cpp:2791 msgid "Open Preferences for the 3D Box tool" msgstr "Ouvrir les préférences de l'outil boîte 3D" -#: ../src/verbs.cpp:2705 +#: ../src/verbs.cpp:2792 msgid "Ellipse Preferences" msgstr "Préférences des ellipses" -#: ../src/verbs.cpp:2706 +#: ../src/verbs.cpp:2793 msgid "Open Preferences for the Ellipse tool" msgstr "Ouvrir les préférences de l'outil ellipse" -#: ../src/verbs.cpp:2707 +#: ../src/verbs.cpp:2794 msgid "Star Preferences" msgstr "Préférences des étoiles" -#: ../src/verbs.cpp:2708 +#: ../src/verbs.cpp:2795 msgid "Open Preferences for the Star tool" msgstr "Ouvrir les préférences de l'outil étoile" -#: ../src/verbs.cpp:2709 +#: ../src/verbs.cpp:2796 msgid "Spiral Preferences" msgstr "Préférences des spirales" -#: ../src/verbs.cpp:2710 +#: ../src/verbs.cpp:2797 msgid "Open Preferences for the Spiral tool" msgstr "Ouvrir les préférences de l'outil spirale" -#: ../src/verbs.cpp:2711 +#: ../src/verbs.cpp:2798 msgid "Pencil Preferences" msgstr "Préférences du crayon" -#: ../src/verbs.cpp:2712 +#: ../src/verbs.cpp:2799 msgid "Open Preferences for the Pencil tool" msgstr "Ouvrir les préférences de l'outil crayon" -#: ../src/verbs.cpp:2713 +#: ../src/verbs.cpp:2800 msgid "Pen Preferences" msgstr "Préférences du stylo" -#: ../src/verbs.cpp:2714 +#: ../src/verbs.cpp:2801 msgid "Open Preferences for the Pen tool" msgstr "Ouvrir les préférences de l'outil stylo" -#: ../src/verbs.cpp:2715 +#: ../src/verbs.cpp:2802 msgid "Calligraphic Preferences" msgstr "Préférences de la plume calligraphique" -#: ../src/verbs.cpp:2716 +#: ../src/verbs.cpp:2803 msgid "Open Preferences for the Calligraphy tool" msgstr "Ouvrir les préférences de la plume calligraphique" -#: ../src/verbs.cpp:2717 +#: ../src/verbs.cpp:2804 msgid "Text Preferences" msgstr "Préférences des textes" -#: ../src/verbs.cpp:2718 +#: ../src/verbs.cpp:2805 msgid "Open Preferences for the Text tool" msgstr "Ouvrir les préférences de l'outil texte" -#: ../src/verbs.cpp:2719 +#: ../src/verbs.cpp:2806 msgid "Gradient Preferences" msgstr "Préférences des dégradés" -#: ../src/verbs.cpp:2720 +#: ../src/verbs.cpp:2807 msgid "Open Preferences for the Gradient tool" msgstr "Ouvrir les préférences de l'outil de dégradé" -#: ../src/verbs.cpp:2721 +#: ../src/verbs.cpp:2808 msgid "Mesh Preferences" msgstr "Préférences de l'outil Mesh" -#: ../src/verbs.cpp:2722 +#: ../src/verbs.cpp:2809 msgid "Open Preferences for the Mesh tool" msgstr "Ouvrir les préférences de l'outil de Mesh" -#: ../src/verbs.cpp:2723 +#: ../src/verbs.cpp:2810 msgid "Zoom Preferences" msgstr "Préférences du zoom" -#: ../src/verbs.cpp:2724 +#: ../src/verbs.cpp:2811 msgid "Open Preferences for the Zoom tool" msgstr "Ouvrir les préférences de l'outil zoom" -#: ../src/verbs.cpp:2725 +#: ../src/verbs.cpp:2812 msgid "Measure Preferences" msgstr "Préférences de l'outil de mesure" -#: ../src/verbs.cpp:2726 +#: ../src/verbs.cpp:2813 msgid "Open Preferences for the Measure tool" msgstr "Ouvrir les préférences de l'outil de mesure" -#: ../src/verbs.cpp:2727 +#: ../src/verbs.cpp:2814 msgid "Dropper Preferences" msgstr "Préférences de la pipette" -#: ../src/verbs.cpp:2728 +#: ../src/verbs.cpp:2815 msgid "Open Preferences for the Dropper tool" msgstr "Ouvrir les préférences de l'outil pipette" -#: ../src/verbs.cpp:2729 +#: ../src/verbs.cpp:2816 msgid "Connector Preferences" msgstr "Préférences des connecteurs" -#: ../src/verbs.cpp:2730 +#: ../src/verbs.cpp:2817 msgid "Open Preferences for the Connector tool" msgstr "Ouvrir les préférences de l'outil connecteur" -#: ../src/verbs.cpp:2731 +#: ../src/verbs.cpp:2818 msgid "Paint Bucket Preferences" msgstr "Préférences de remplissage au seau" -#: ../src/verbs.cpp:2732 +#: ../src/verbs.cpp:2819 msgid "Open Preferences for the Paint Bucket tool" msgstr "Ouvrir les préférences de l'outil de remplissage au seau" -#: ../src/verbs.cpp:2733 +#: ../src/verbs.cpp:2820 msgid "Eraser Preferences" msgstr "Préférences de la gomme" -#: ../src/verbs.cpp:2734 +#: ../src/verbs.cpp:2821 msgid "Open Preferences for the Eraser tool" msgstr "Ouvrir les préférences de l'outil gomme" -#: ../src/verbs.cpp:2735 +#: ../src/verbs.cpp:2822 msgid "LPE Tool Preferences" msgstr "Préférences de l'outil Effets de chemin en direct" -#: ../src/verbs.cpp:2736 +#: ../src/verbs.cpp:2823 msgid "Open Preferences for the LPETool tool" msgstr "Ouvrir les préférences de l'outil Effets de chemin en direct" #. Zoom/View -#: ../src/verbs.cpp:2738 +#: ../src/verbs.cpp:2825 msgid "Zoom In" msgstr "Zoomer" -#: ../src/verbs.cpp:2738 +#: ../src/verbs.cpp:2825 msgid "Zoom in" msgstr "Zoomer" -#: ../src/verbs.cpp:2739 +#: ../src/verbs.cpp:2826 msgid "Zoom Out" msgstr "Dézoomer" -#: ../src/verbs.cpp:2739 +#: ../src/verbs.cpp:2826 msgid "Zoom out" msgstr "Dézoomer" -#: ../src/verbs.cpp:2740 +#: ../src/verbs.cpp:2827 msgid "_Rulers" msgstr "_Règles" -#: ../src/verbs.cpp:2740 +#: ../src/verbs.cpp:2827 msgid "Show or hide the canvas rulers" msgstr "Afficher ou non les règles de la zone de travail" -#: ../src/verbs.cpp:2741 +#: ../src/verbs.cpp:2828 msgid "Scroll_bars" msgstr "_Barres de défilement" -#: ../src/verbs.cpp:2741 +#: ../src/verbs.cpp:2828 msgid "Show or hide the canvas scrollbars" msgstr "Afficher ou non les barres de défilement de la zone de travail" -#: ../src/verbs.cpp:2742 +#: ../src/verbs.cpp:2829 msgid "Page _Grid" msgstr "_Grille" -#: ../src/verbs.cpp:2742 +#: ../src/verbs.cpp:2829 msgid "Show or hide the page grid" msgstr "Afficher ou non la grille" -#: ../src/verbs.cpp:2743 +#: ../src/verbs.cpp:2830 msgid "G_uides" msgstr "G_uides" -#: ../src/verbs.cpp:2743 +#: ../src/verbs.cpp:2830 msgid "Show or hide guides (drag from a ruler to create a guide)" -msgstr "Afficher ou non les guides (pour créer un guide, effectuer un cliquer-déplacer depuis une règle)" +msgstr "" +"Afficher ou non les guides (pour créer un guide, effectuer un cliquer-" +"déplacer depuis une règle)" -#: ../src/verbs.cpp:2744 +#: ../src/verbs.cpp:2831 msgid "Enable snapping" msgstr "Activer le magnétisme" -#: ../src/verbs.cpp:2745 +#: ../src/verbs.cpp:2832 msgid "_Commands Bar" msgstr "Barre des _commandes" -#: ../src/verbs.cpp:2745 +#: ../src/verbs.cpp:2832 msgid "Show or hide the Commands bar (under the menu)" msgstr "Afficher ou non la barre des commandes (sous le menu)" -#: ../src/verbs.cpp:2746 +#: ../src/verbs.cpp:2833 msgid "Sn_ap Controls Bar" msgstr "Barre des contrôles du m_agnétisme" -#: ../src/verbs.cpp:2746 +#: ../src/verbs.cpp:2833 msgid "Show or hide the snapping controls" msgstr "Afficher ou non la barre des contrôles du magnétisme" -#: ../src/verbs.cpp:2747 +#: ../src/verbs.cpp:2834 msgid "T_ool Controls Bar" msgstr "Barre des contrôles d'_outils" -#: ../src/verbs.cpp:2747 +#: ../src/verbs.cpp:2834 msgid "Show or hide the Tool Controls bar" msgstr "Afficher ou non la barre des contrôles d'outils" -#: ../src/verbs.cpp:2748 +#: ../src/verbs.cpp:2835 msgid "_Toolbox" msgstr "Boîte à _outils" -#: ../src/verbs.cpp:2748 +#: ../src/verbs.cpp:2835 msgid "Show or hide the main toolbox (on the left)" msgstr "Afficher ou non la boîte à outils principale (à gauche)" -#: ../src/verbs.cpp:2749 +#: ../src/verbs.cpp:2836 msgid "_Palette" msgstr "_Palette" -#: ../src/verbs.cpp:2749 +#: ../src/verbs.cpp:2836 msgid "Show or hide the color palette" msgstr "Afficher ou non la palette de couleurs" -#: ../src/verbs.cpp:2750 +#: ../src/verbs.cpp:2837 msgid "_Statusbar" msgstr "Barre d'_état" -#: ../src/verbs.cpp:2750 +#: ../src/verbs.cpp:2837 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "Afficher ou non la barre d'état (en bas de la fenêtre)" -#: ../src/verbs.cpp:2751 +#: ../src/verbs.cpp:2838 msgid "Nex_t Zoom" msgstr "Zoom suivan_t" -#: ../src/verbs.cpp:2751 +#: ../src/verbs.cpp:2838 msgid "Next zoom (from the history of zooms)" msgstr "Zoom suivant (dans l'historique des zooms)" -#: ../src/verbs.cpp:2753 +#: ../src/verbs.cpp:2840 msgid "Pre_vious Zoom" msgstr "Zoom _précédent" -#: ../src/verbs.cpp:2753 +#: ../src/verbs.cpp:2840 msgid "Previous zoom (from the history of zooms)" msgstr "Zoom précédent (dans l'historique des zooms)" -#: ../src/verbs.cpp:2755 +#: ../src/verbs.cpp:2842 msgid "Zoom 1:_1" msgstr "Zoom 1:_1" -#: ../src/verbs.cpp:2755 +#: ../src/verbs.cpp:2842 msgid "Zoom to 1:1" msgstr "Zoomer à 1:1" -#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2844 msgid "Zoom 1:_2" msgstr "Zoom 1:_2" -#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2844 msgid "Zoom to 1:2" msgstr "Zoomer à 1:2" -#: ../src/verbs.cpp:2759 +#: ../src/verbs.cpp:2846 msgid "_Zoom 2:1" msgstr "_Zoom 2:1" -#: ../src/verbs.cpp:2759 +#: ../src/verbs.cpp:2846 msgid "Zoom to 2:1" msgstr "Zoomer à 2:1" -#: ../src/verbs.cpp:2762 +#: ../src/verbs.cpp:2849 msgid "_Fullscreen" msgstr "Plein _écran" -#: ../src/verbs.cpp:2762 -#: ../src/verbs.cpp:2764 +#: ../src/verbs.cpp:2849 ../src/verbs.cpp:2851 msgid "Stretch this document window to full screen" msgstr "Afficher cette fenêtre (document) en plein écran" -#: ../src/verbs.cpp:2764 +#: ../src/verbs.cpp:2851 msgid "Fullscreen & Focus Mode" msgstr "Plein écran et mode de _focus" -#: ../src/verbs.cpp:2767 +#: ../src/verbs.cpp:2854 msgid "Toggle _Focus Mode" msgstr "Inverser le mode de _focus" -#: ../src/verbs.cpp:2767 +#: ../src/verbs.cpp:2854 msgid "Remove excess toolbars to focus on drawing" msgstr "Supprime les barres superflues pour se concentrer sur le dessin" -#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2856 msgid "Duplic_ate Window" msgstr "Dupliquer la _fenêtre" -#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2856 msgid "Open a new window with the same document" msgstr "Ouvrir une nouvelle fenêtre avec le même document" -#: ../src/verbs.cpp:2771 +#: ../src/verbs.cpp:2858 msgid "_New View Preview" msgstr "_Nouvel aperçu" -#: ../src/verbs.cpp:2772 +#: ../src/verbs.cpp:2859 msgid "New View Preview" msgstr "Nouvel aperçu" #. "view_new_preview" -#: ../src/verbs.cpp:2774 -#: ../src/verbs.cpp:2782 +#: ../src/verbs.cpp:2861 ../src/verbs.cpp:2869 msgid "_Normal" msgstr "_Normal" -#: ../src/verbs.cpp:2775 +#: ../src/verbs.cpp:2862 msgid "Switch to normal display mode" msgstr "Passer en mode d'affichage normal" -#: ../src/verbs.cpp:2776 +#: ../src/verbs.cpp:2863 msgid "No _Filters" msgstr "Sans _filtre" -#: ../src/verbs.cpp:2777 +#: ../src/verbs.cpp:2864 msgid "Switch to normal display without filters" msgstr "Passer en mode d'affichage normal, sans filtre" -#: ../src/verbs.cpp:2778 +#: ../src/verbs.cpp:2865 msgid "_Outline" msgstr "_Contour" -#: ../src/verbs.cpp:2779 +#: ../src/verbs.cpp:2866 msgid "Switch to outline (wireframe) display mode" msgstr "Passer en mode d'affichage contour (fil de fer)" #. new ZoomVerb(SP_VERB_VIEW_COLOR_MODE_PRINT_COLORS_PREVIEW, "ViewColorModePrintColorsPreview", N_("_Print Colors Preview"), #. N_("Switch to print colors preview mode"), NULL), -#: ../src/verbs.cpp:2780 -#: ../src/verbs.cpp:2788 +#: ../src/verbs.cpp:2867 ../src/verbs.cpp:2875 msgid "_Toggle" msgstr "Al_terner" -#: ../src/verbs.cpp:2781 +#: ../src/verbs.cpp:2868 msgid "Toggle between normal and outline display modes" msgstr "Alterner entre les modes d'affichage normal et contour" -#: ../src/verbs.cpp:2783 +#: ../src/verbs.cpp:2870 msgid "Switch to normal color display mode" msgstr "Passer en mode d'affichage de couleur normal" -#: ../src/verbs.cpp:2784 +#: ../src/verbs.cpp:2871 msgid "_Grayscale" msgstr "Niveaux de _gris" -#: ../src/verbs.cpp:2785 +#: ../src/verbs.cpp:2872 msgid "Switch to grayscale display mode" msgstr "Passer en mode d'affichage niveaux de gris" -#: ../src/verbs.cpp:2789 +#: ../src/verbs.cpp:2876 msgid "Toggle between normal and grayscale color display modes" -msgstr "Alterner entre les modes d'affichage de couleur normal et niveaux de gris" +msgstr "" +"Alterner entre les modes d'affichage de couleur normal et niveaux de gris" -#: ../src/verbs.cpp:2791 +#: ../src/verbs.cpp:2878 msgid "Color-managed view" msgstr "Affichage avec gestion des couleurs" -#: ../src/verbs.cpp:2792 +#: ../src/verbs.cpp:2879 msgid "Toggle color-managed display for this document window" -msgstr "Alterner entre le mode d'affichage avec gestion des couleurs et le mode normal pour cette fenêtre de document" +msgstr "" +"Alterner entre le mode d'affichage avec gestion des couleurs et le mode " +"normal pour cette fenêtre de document" -#: ../src/verbs.cpp:2794 +#: ../src/verbs.cpp:2881 msgid "Ico_n Preview..." msgstr "Aperçu d'_icône..." -#: ../src/verbs.cpp:2795 +#: ../src/verbs.cpp:2882 msgid "Open a window to preview objects at different icon resolutions" -msgstr "Ouvrir une fenêtre d'aperçu des objets en icônes à différentes résolutions" +msgstr "" +"Ouvrir une fenêtre d'aperçu des objets en icônes à différentes résolutions" -#: ../src/verbs.cpp:2797 +#: ../src/verbs.cpp:2884 msgid "Zoom to fit page in window" msgstr "Ajuster la page à la fenêtre" -#: ../src/verbs.cpp:2798 +#: ../src/verbs.cpp:2885 msgid "Page _Width" msgstr "_Largeur de la page" -#: ../src/verbs.cpp:2799 +#: ../src/verbs.cpp:2886 msgid "Zoom to fit page width in window" msgstr "Zoomer pour ajuster la largeur de la page à la fenêtre" -#: ../src/verbs.cpp:2801 +#: ../src/verbs.cpp:2888 msgid "Zoom to fit drawing in window" msgstr "Zoomer pour ajuster le dessin à la fenêtre" -#: ../src/verbs.cpp:2803 +#: ../src/verbs.cpp:2890 msgid "Zoom to fit selection in window" msgstr "Zoomer pour ajuster la sélection à la fenêtre" #. Dialogs -#: ../src/verbs.cpp:2806 +#: ../src/verbs.cpp:2893 msgid "P_references..." msgstr "P_références..." -#: ../src/verbs.cpp:2807 +#: ../src/verbs.cpp:2894 msgid "Edit global Inkscape preferences" msgstr "Éditer les préférences globales d'Inkscape" -#: ../src/verbs.cpp:2808 +#: ../src/verbs.cpp:2895 msgid "_Document Properties..." msgstr "Propriétés du do_cument..." -#: ../src/verbs.cpp:2809 +#: ../src/verbs.cpp:2896 msgid "Edit properties of this document (to be saved with the document)" msgstr "Éditer les préférences du document (enregistrées avec celui-ci)" -#: ../src/verbs.cpp:2810 +#: ../src/verbs.cpp:2897 msgid "Document _Metadata..." msgstr "_Métadonnées du document..." -#: ../src/verbs.cpp:2811 +#: ../src/verbs.cpp:2898 msgid "Edit document metadata (to be saved with the document)" msgstr "Éditer les métadonnées du document (enregistrées avec celui-ci)" -#: ../src/verbs.cpp:2813 -msgid "Edit objects' colors, gradients, arrowheads, and other fill and stroke properties..." -msgstr "Éditer les couleurs de l'objet, ses dégradés, les têtes de flèches, et autres propriétés de remplissage et contour..." +#: ../src/verbs.cpp:2900 +msgid "" +"Edit objects' colors, gradients, arrowheads, and other fill and stroke " +"properties..." +msgstr "" +"Éditer les couleurs de l'objet, ses dégradés, les têtes de flèches, et " +"autres propriétés de remplissage et contour..." #. FIXME: Probably better to either use something from the icon naming spec or ship our own "select-font" icon -#: ../src/verbs.cpp:2815 +#: ../src/verbs.cpp:2902 msgid "Gl_yphs..." msgstr "Gl_yphes..." -#: ../src/verbs.cpp:2816 +#: ../src/verbs.cpp:2903 msgid "Select characters from a glyphs palette" msgstr "Sélectionner des caractères depuis une palette de glyphes" #. FIXME: Probably better to either use something from the icon naming spec or ship our own "select-color" icon #. TRANSLATORS: "Swatches" means: color samples -#: ../src/verbs.cpp:2819 +#: ../src/verbs.cpp:2906 msgid "S_watches..." msgstr "_Palettes..." -#: ../src/verbs.cpp:2820 +#: ../src/verbs.cpp:2907 msgid "Select colors from a swatches palette" msgstr "Sélectionner des couleurs depuis une palette" -#: ../src/verbs.cpp:2821 +#: ../src/verbs.cpp:2908 msgid "S_ymbols..." msgstr "S_ymboles..." -#: ../src/verbs.cpp:2822 +#: ../src/verbs.cpp:2909 msgid "Select symbol from a symbols palette" msgstr "Sélectionnez un symbole depuis une palette" -#: ../src/verbs.cpp:2823 +#: ../src/verbs.cpp:2910 msgid "Transfor_m..." msgstr "_Transformer..." -#: ../src/verbs.cpp:2824 +#: ../src/verbs.cpp:2911 msgid "Precisely control objects' transformations" msgstr "Contrôler précisément les transformations d'objets" -#: ../src/verbs.cpp:2825 +#: ../src/verbs.cpp:2912 msgid "_Align and Distribute..." msgstr "Aligner et distri_buer..." -#: ../src/verbs.cpp:2826 +#: ../src/verbs.cpp:2913 msgid "Align and distribute objects" msgstr "Aligner et distribuer des objets" -#: ../src/verbs.cpp:2827 +#: ../src/verbs.cpp:2914 msgid "_Spray options..." msgstr "Options du pulvéri_sateur..." -#: ../src/verbs.cpp:2828 +#: ../src/verbs.cpp:2915 msgid "Some options for the spray" msgstr "Options pour l'aérographe" -#: ../src/verbs.cpp:2829 +#: ../src/verbs.cpp:2916 msgid "Undo _History..." msgstr "_Historique des annulations" -#: ../src/verbs.cpp:2830 +#: ../src/verbs.cpp:2917 msgid "Undo History" msgstr "Historique des annulations" -#: ../src/verbs.cpp:2832 +#: ../src/verbs.cpp:2919 msgid "View and select font family, font size and other text properties" -msgstr "Voir et sélectionner une police, une taille de police et autres propriétés de texte" +msgstr "" +"Voir et sélectionner une police, une taille de police et autres propriétés " +"de texte" -#: ../src/verbs.cpp:2833 +#: ../src/verbs.cpp:2920 msgid "_XML Editor..." msgstr "Éditeur _XML..." -#: ../src/verbs.cpp:2834 +#: ../src/verbs.cpp:2921 msgid "View and edit the XML tree of the document" msgstr "Voir et éditer l'arbre XML du document" -#: ../src/verbs.cpp:2835 +#: ../src/verbs.cpp:2922 msgid "_Find/Replace..." msgstr "Rechercher/_remplacer..." -#: ../src/verbs.cpp:2836 +#: ../src/verbs.cpp:2923 msgid "Find objects in document" msgstr "Rechercher des objets dans le document" -#: ../src/verbs.cpp:2837 +#: ../src/verbs.cpp:2924 msgid "Find and _Replace Text..." msgstr "Trouver et _remplacer le texte..." -#: ../src/verbs.cpp:2838 +#: ../src/verbs.cpp:2925 msgid "Find and replace text in document" msgstr "Rechercher et remplacer du texte dans le document" -#: ../src/verbs.cpp:2840 +#: ../src/verbs.cpp:2927 msgid "Check spelling of text in document" msgstr "Vérifier l'orthographe des texte du document" -#: ../src/verbs.cpp:2841 +#: ../src/verbs.cpp:2928 msgid "_Messages..." msgstr "_Messages..." -#: ../src/verbs.cpp:2842 +#: ../src/verbs.cpp:2929 msgid "View debug messages" msgstr "Voir les messages de débuggage" -#: ../src/verbs.cpp:2843 +#: ../src/verbs.cpp:2930 msgid "Show/Hide D_ialogs" msgstr "Afficher/cacher les boîtes de d_ialogue" -#: ../src/verbs.cpp:2844 +#: ../src/verbs.cpp:2931 msgid "Show or hide all open dialogs" msgstr "Afficher ou non les dialogues ouverts" -#: ../src/verbs.cpp:2845 +#: ../src/verbs.cpp:2932 msgid "Create Tiled Clones..." msgstr "Créer un pavage avec des clones..." -#: ../src/verbs.cpp:2846 -msgid "Create multiple clones of selected object, arranging them into a pattern or scattering" -msgstr "Créer des clones multiple d'un objet, et les arranger selon un motif ou les disperser" +#: ../src/verbs.cpp:2933 +msgid "" +"Create multiple clones of selected object, arranging them into a pattern or " +"scattering" +msgstr "" +"Créer des clones multiple d'un objet, et les arranger selon un motif ou les " +"disperser" -#: ../src/verbs.cpp:2847 +#: ../src/verbs.cpp:2934 msgid "_Object attributes..." msgstr "_Attributs de l'objet..." -#: ../src/verbs.cpp:2848 +#: ../src/verbs.cpp:2935 msgid "Edit the object attributes..." msgstr "Éditer les attributs de l'objet..." -#: ../src/verbs.cpp:2850 +#: ../src/verbs.cpp:2937 msgid "Edit the ID, locked and visible status, and other object properties" -msgstr "Editer l'Id, les statuts de visibilité et de verrouillage et autres propriétés des objets" +msgstr "" +"Editer l'Id, les statuts de visibilité et de verrouillage et autres " +"propriétés des objets" -#: ../src/verbs.cpp:2851 +#: ../src/verbs.cpp:2938 msgid "_Input Devices..." msgstr "Périp_hériques de saisie..." -#: ../src/verbs.cpp:2852 +#: ../src/verbs.cpp:2939 msgid "Configure extended input devices, such as a graphics tablet" -msgstr "Configurer les périphériques de saisie étendus, comme une tablette graphique" +msgstr "" +"Configurer les périphériques de saisie étendus, comme une tablette graphique" -#: ../src/verbs.cpp:2853 +#: ../src/verbs.cpp:2940 msgid "_Extensions..." msgstr "_Extensions..." -#: ../src/verbs.cpp:2854 +#: ../src/verbs.cpp:2941 msgid "Query information about extensions" msgstr "Demander des informations à propos des extensions" -#: ../src/verbs.cpp:2855 +#: ../src/verbs.cpp:2942 msgid "Layer_s..." msgstr "_Calques..." -#: ../src/verbs.cpp:2856 +#: ../src/verbs.cpp:2943 msgid "View Layers" msgstr "Afficher les calques" -#: ../src/verbs.cpp:2857 +#: ../src/verbs.cpp:2944 +#, fuzzy +msgid "Object_s..." +msgstr "Objets" + +#: ../src/verbs.cpp:2945 +#, fuzzy +msgid "View Objects" +msgstr "Objets" + +#: ../src/verbs.cpp:2946 +#, fuzzy +msgid "Selection se_ts..." +msgstr "Zone de sélection" + +#: ../src/verbs.cpp:2947 +#, fuzzy +msgid "View Tags" +msgstr "Afficher les calques" + +#: ../src/verbs.cpp:2948 msgid "Path E_ffects ..." msgstr "E_ffets de chemin..." -#: ../src/verbs.cpp:2858 +#: ../src/verbs.cpp:2949 msgid "Manage, edit, and apply path effects" msgstr "Créer, modifier et appliquer des effets de chemin" -#: ../src/verbs.cpp:2859 +#: ../src/verbs.cpp:2950 msgid "Filter _Editor..." msgstr "Édit_eur de filtres..." -#: ../src/verbs.cpp:2860 +#: ../src/verbs.cpp:2951 msgid "Manage, edit, and apply SVG filters" msgstr "Gérer, modifier et appliquer des filtres SVG" -#: ../src/verbs.cpp:2861 +#: ../src/verbs.cpp:2952 msgid "SVG Font Editor..." msgstr "Éditeur de fontes SVG..." -#: ../src/verbs.cpp:2862 +#: ../src/verbs.cpp:2953 msgid "Edit SVG fonts" msgstr "Éditer les fontes SVG" -#: ../src/verbs.cpp:2863 +#: ../src/verbs.cpp:2954 msgid "Print Colors..." msgstr "Imprimer les couleurs..." -#: ../src/verbs.cpp:2864 -msgid "Select which color separations to render in Print Colors Preview rendermode" -msgstr "Sélectionner quelles séparations de couleur afficher en mode aperçu des couleurs d'impression" +#: ../src/verbs.cpp:2955 +msgid "" +"Select which color separations to render in Print Colors Preview rendermode" +msgstr "" +"Sélectionner quelles séparations de couleur afficher en mode aperçu des " +"couleurs d'impression" -#: ../src/verbs.cpp:2865 +#: ../src/verbs.cpp:2956 msgid "_Export PNG Image..." msgstr "_Exporter une image PNG..." -#: ../src/verbs.cpp:2866 +#: ../src/verbs.cpp:2957 msgid "Export this document or a selection as a PNG image" msgstr "Exporter ce document ou une sélection en une image PNG" #. Help -#: ../src/verbs.cpp:2868 +#: ../src/verbs.cpp:2959 msgid "About E_xtensions" msgstr "À propos des e_xtensions" -#: ../src/verbs.cpp:2869 +#: ../src/verbs.cpp:2960 msgid "Information on Inkscape extensions" msgstr "Information sur les extensions d'Inkscape" -#: ../src/verbs.cpp:2870 +#: ../src/verbs.cpp:2961 msgid "About _Memory" msgstr "Gestion _mémoire" -#: ../src/verbs.cpp:2871 +#: ../src/verbs.cpp:2962 msgid "Memory usage information" msgstr "Information sur l'utilisation de la mémoire" -#: ../src/verbs.cpp:2872 +#: ../src/verbs.cpp:2963 msgid "_About Inkscape" msgstr "À _propos d'Inkscape" -#: ../src/verbs.cpp:2873 +#: ../src/verbs.cpp:2964 msgid "Inkscape version, authors, license" msgstr "Version, auteurs et licence d'Inkscape" #. new HelpVerb(SP_VERB_SHOW_LICENSE, "ShowLicense", N_("_License"), #. N_("Distribution terms"), /*"show_license"*/"inkscape_options"), #. Tutorials -#: ../src/verbs.cpp:2878 +#: ../src/verbs.cpp:2969 msgid "Inkscape: _Basic" msgstr "Inkscape : _basique" -#: ../src/verbs.cpp:2879 +#: ../src/verbs.cpp:2970 msgid "Getting started with Inkscape" msgstr "Premiers pas avec Inkscape" #. "tutorial_basic" -#: ../src/verbs.cpp:2880 +#: ../src/verbs.cpp:2971 msgid "Inkscape: _Shapes" msgstr "Inkscape : _formes" -#: ../src/verbs.cpp:2881 +#: ../src/verbs.cpp:2972 msgid "Using shape tools to create and edit shapes" msgstr "Utilisation des outils de formes pour créer et éditer des formes" -#: ../src/verbs.cpp:2882 +#: ../src/verbs.cpp:2973 msgid "Inkscape: _Advanced" msgstr "Inkscape : _avancé" -#: ../src/verbs.cpp:2883 +#: ../src/verbs.cpp:2974 msgid "Advanced Inkscape topics" msgstr "Sujets avancés d'Inkscape" #. "tutorial_advanced" #. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/verbs.cpp:2885 +#: ../src/verbs.cpp:2976 msgid "Inkscape: T_racing" msgstr "Inkscape : _vectorisation" -#: ../src/verbs.cpp:2886 +#: ../src/verbs.cpp:2977 msgid "Using bitmap tracing" msgstr "Vectorisation de bitmap" #. "tutorial_tracing" -#: ../src/verbs.cpp:2887 +#: ../src/verbs.cpp:2978 msgid "Inkscape: Tracing Pixel Art" msgstr "Inkscape : vectorisation en pixel art" -#: ../src/verbs.cpp:2888 +#: ../src/verbs.cpp:2979 msgid "Using Trace Pixel Art dialog" msgstr "" -#: ../src/verbs.cpp:2889 +#: ../src/verbs.cpp:2980 msgid "Inkscape: _Calligraphy" msgstr "Inkscape : _calligraphie" -#: ../src/verbs.cpp:2890 +#: ../src/verbs.cpp:2981 msgid "Using the Calligraphy pen tool" msgstr "Utilisation de la plume calligraphique d'Inkscape" -#: ../src/verbs.cpp:2891 +#: ../src/verbs.cpp:2982 msgid "Inkscape: _Interpolate" msgstr "Inkscape : _Interpolation" -#: ../src/verbs.cpp:2892 +#: ../src/verbs.cpp:2983 msgid "Using the interpolate extension" msgstr "Utiliser l'extension Interpoler" #. "tutorial_interpolate" -#: ../src/verbs.cpp:2893 +#: ../src/verbs.cpp:2984 msgid "_Elements of Design" msgstr "Rudiments de _design" -#: ../src/verbs.cpp:2894 +#: ../src/verbs.cpp:2985 msgid "Principles of design in the tutorial form" msgstr "Rudiments de design sous forme de didacticiel" #. "tutorial_design" -#: ../src/verbs.cpp:2895 +#: ../src/verbs.cpp:2986 msgid "_Tips and Tricks" msgstr "_Trucs et astuces" -#: ../src/verbs.cpp:2896 +#: ../src/verbs.cpp:2987 msgid "Miscellaneous tips and tricks" msgstr "Divers trucs et astuces" #. "tutorial_tips" #. Effect -- renamed Extension -#: ../src/verbs.cpp:2899 +#: ../src/verbs.cpp:2990 msgid "Previous Exte_nsion" msgstr "Exte_nsion précédente" -#: ../src/verbs.cpp:2900 +#: ../src/verbs.cpp:2991 msgid "Repeat the last extension with the same settings" msgstr "Répéter la dernière extension avec les mêmes paramètres" -#: ../src/verbs.cpp:2901 +#: ../src/verbs.cpp:2992 msgid "_Previous Extension Settings..." msgstr "_Paramètres de l'extension précédente..." -#: ../src/verbs.cpp:2902 +#: ../src/verbs.cpp:2993 msgid "Repeat the last extension with new settings" msgstr "Répéter la dernière extension avec les nouveaux paramètres" -#: ../src/verbs.cpp:2906 +#: ../src/verbs.cpp:2997 msgid "Fit the page to the current selection" msgstr "Ajuster la page à la sélection courante" -#: ../src/verbs.cpp:2908 +#: ../src/verbs.cpp:2999 msgid "Fit the page to the drawing" msgstr "Ajuster la page au dessin" -#: ../src/verbs.cpp:2910 -msgid "Fit the page to the current selection or the drawing if there is no selection" -msgstr "Ajuster la page à la sélection courante ou au dessin s'il n'y a pas de sélection" +#: ../src/verbs.cpp:3001 +msgid "" +"Fit the page to the current selection or the drawing if there is no selection" +msgstr "" +"Ajuster la page à la sélection courante ou au dessin s'il n'y a pas de " +"sélection" #. LockAndHide -#: ../src/verbs.cpp:2912 +#: ../src/verbs.cpp:3003 msgid "Unlock All" msgstr "Déverrouiller tout" -#: ../src/verbs.cpp:2914 +#: ../src/verbs.cpp:3005 msgid "Unlock All in All Layers" msgstr "Tout déverouiller dans tous les calques" -#: ../src/verbs.cpp:2916 +#: ../src/verbs.cpp:3007 msgid "Unhide All" msgstr "Montrer tout" -#: ../src/verbs.cpp:2918 +#: ../src/verbs.cpp:3009 msgid "Unhide All in All Layers" msgstr "Tout montrer dans tous les calques" -#: ../src/verbs.cpp:2922 +#: ../src/verbs.cpp:3013 msgid "Link an ICC color profile" msgstr "Lier un profil de couleur ICC" -#: ../src/verbs.cpp:2923 +#: ../src/verbs.cpp:3014 msgid "Remove Color Profile" msgstr "Supprimer le profil de couleur" -#: ../src/verbs.cpp:2924 +#: ../src/verbs.cpp:3015 msgid "Remove a linked ICC color profile" msgstr "Supprimer un profil de couleur ICC lié" -#: ../src/verbs.cpp:2927 +#: ../src/verbs.cpp:3018 msgid "Add External Script" msgstr "Ajouter un programme externe" -#: ../src/verbs.cpp:2927 +#: ../src/verbs.cpp:3018 msgid "Add an external script" msgstr "Ajouter un programme externe" -#: ../src/verbs.cpp:2929 +#: ../src/verbs.cpp:3020 msgid "Add Embedded Script" msgstr "Ajouter un programme incorporé" -#: ../src/verbs.cpp:2929 +#: ../src/verbs.cpp:3020 msgid "Add an embedded script" msgstr "Ajouter un programme incorporé" -#: ../src/verbs.cpp:2931 +#: ../src/verbs.cpp:3022 msgid "Edit Embedded Script" msgstr "Éditer un programme incorporé" -#: ../src/verbs.cpp:2931 +#: ../src/verbs.cpp:3022 msgid "Edit an embedded script" msgstr "Éditer un programme incorporé" -#: ../src/verbs.cpp:2933 +#: ../src/verbs.cpp:3024 msgid "Remove External Script" msgstr "Supprimer un programme externe" -#: ../src/verbs.cpp:2933 +#: ../src/verbs.cpp:3024 msgid "Remove an external script" msgstr "Supprimer un programme externe" -#: ../src/verbs.cpp:2935 +#: ../src/verbs.cpp:3026 msgid "Remove Embedded Script" msgstr "Retirer un programme incorporé" -#: ../src/verbs.cpp:2935 +#: ../src/verbs.cpp:3026 msgid "Remove an embedded script" msgstr "Retirer un programme incorporé" -#: ../src/verbs.cpp:2957 -#: ../src/verbs.cpp:2958 +#: ../src/verbs.cpp:3048 ../src/verbs.cpp:3049 msgid "Center on horizontal and vertical axis" msgstr "Centrer horizontalement et verticalement" -#: ../src/widgets/arc-toolbar.cpp:131 +#: ../src/widgets/arc-toolbar.cpp:132 msgid "Arc: Change start/end" msgstr "Arc : déplacer début/fin" -#: ../src/widgets/arc-toolbar.cpp:197 +#: ../src/widgets/arc-toolbar.cpp:198 msgid "Arc: Change open/closed" msgstr "Arc : modifier ouvert/fermé" -#: ../src/widgets/arc-toolbar.cpp:288 -#: ../src/widgets/arc-toolbar.cpp:317 -#: ../src/widgets/rect-toolbar.cpp:258 -#: ../src/widgets/rect-toolbar.cpp:296 -#: ../src/widgets/spiral-toolbar.cpp:214 -#: ../src/widgets/spiral-toolbar.cpp:238 -#: ../src/widgets/star-toolbar.cpp:383 -#: ../src/widgets/star-toolbar.cpp:444 +#: ../src/widgets/arc-toolbar.cpp:289 ../src/widgets/arc-toolbar.cpp:319 +#: ../src/widgets/rect-toolbar.cpp:261 ../src/widgets/rect-toolbar.cpp:300 +#: ../src/widgets/spiral-toolbar.cpp:214 ../src/widgets/spiral-toolbar.cpp:238 +#: ../src/widgets/star-toolbar.cpp:384 ../src/widgets/star-toolbar.cpp:446 msgid "New:" msgstr "Créer :" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("Average:")); -#: ../src/widgets/arc-toolbar.cpp:291 -#: ../src/widgets/arc-toolbar.cpp:302 -#: ../src/widgets/rect-toolbar.cpp:266 -#: ../src/widgets/rect-toolbar.cpp:284 -#: ../src/widgets/spiral-toolbar.cpp:216 -#: ../src/widgets/spiral-toolbar.cpp:227 -#: ../src/widgets/star-toolbar.cpp:385 +#: ../src/widgets/arc-toolbar.cpp:292 ../src/widgets/arc-toolbar.cpp:303 +#: ../src/widgets/rect-toolbar.cpp:269 ../src/widgets/rect-toolbar.cpp:287 +#: ../src/widgets/spiral-toolbar.cpp:216 ../src/widgets/spiral-toolbar.cpp:227 +#: ../src/widgets/star-toolbar.cpp:386 msgid "Change:" msgstr "Modifier :" -#: ../src/widgets/arc-toolbar.cpp:326 +#: ../src/widgets/arc-toolbar.cpp:328 msgid "Start:" msgstr "Début :" -#: ../src/widgets/arc-toolbar.cpp:327 +#: ../src/widgets/arc-toolbar.cpp:329 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "Angle (en degrés) entre l'horizontale et le début de l'arc" -#: ../src/widgets/arc-toolbar.cpp:339 +#: ../src/widgets/arc-toolbar.cpp:341 msgid "End:" msgstr "Fin :" -#: ../src/widgets/arc-toolbar.cpp:340 +#: ../src/widgets/arc-toolbar.cpp:342 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "Angle (en degrés) entre l'horizontale et la fin de l'arc" -#: ../src/widgets/arc-toolbar.cpp:356 +#: ../src/widgets/arc-toolbar.cpp:358 msgid "Closed arc" msgstr "Arc fermé" -#: ../src/widgets/arc-toolbar.cpp:357 +#: ../src/widgets/arc-toolbar.cpp:359 msgid "Switch to segment (closed shape with two radii)" msgstr "Tracer un camembert (forme fermée entre deux rayons)" -#: ../src/widgets/arc-toolbar.cpp:363 +#: ../src/widgets/arc-toolbar.cpp:365 msgid "Open Arc" msgstr "Arc ouvert" -#: ../src/widgets/arc-toolbar.cpp:364 +#: ../src/widgets/arc-toolbar.cpp:366 msgid "Switch to arc (unclosed shape)" msgstr "Tracer un arc (courbe non fermée)" -#: ../src/widgets/arc-toolbar.cpp:387 +#: ../src/widgets/arc-toolbar.cpp:389 msgid "Make whole" msgstr "Refermer" -#: ../src/widgets/arc-toolbar.cpp:388 +#: ../src/widgets/arc-toolbar.cpp:390 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "Transformer en ellipse pleine (pas un arc ou un camembert)" # ligne d'horizon ? #. TODO: use the correct axis here, too -#: ../src/widgets/box3d-toolbar.cpp:232 +#: ../src/widgets/box3d-toolbar.cpp:233 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "Boîte 3D: changer la perspective (angle de ligne d'horizon)" -#: ../src/widgets/box3d-toolbar.cpp:299 +#: ../src/widgets/box3d-toolbar.cpp:302 msgid "Angle in X direction" msgstr "Angle dans la direction X" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:301 +#: ../src/widgets/box3d-toolbar.cpp:304 msgid "Angle of PLs in X direction" msgstr "Angle des lignes parallèles dans la direction X" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:323 +#: ../src/widgets/box3d-toolbar.cpp:326 msgid "State of VP in X direction" msgstr "État du point de fuite dans la direction X" -#: ../src/widgets/box3d-toolbar.cpp:324 +#: ../src/widgets/box3d-toolbar.cpp:327 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" -msgstr "Alterner le point de fuite dans la direction X entre « fini » et « infini » (=parallèles)" +msgstr "" +"Alterner le point de fuite dans la direction X entre « fini » et " +"« infini » (=parallèles)" -#: ../src/widgets/box3d-toolbar.cpp:339 +#: ../src/widgets/box3d-toolbar.cpp:342 msgid "Angle in Y direction" msgstr "Angle dans la direction Y" -#: ../src/widgets/box3d-toolbar.cpp:339 +#: ../src/widgets/box3d-toolbar.cpp:342 msgid "Angle Y:" msgstr "Angle Y :" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:341 +#: ../src/widgets/box3d-toolbar.cpp:344 msgid "Angle of PLs in Y direction" msgstr "Angle des lignes parallèles dans la direction Y" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:362 +#: ../src/widgets/box3d-toolbar.cpp:365 msgid "State of VP in Y direction" msgstr "État du point de fuite dans la direction Y" -#: ../src/widgets/box3d-toolbar.cpp:363 +#: ../src/widgets/box3d-toolbar.cpp:366 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" -msgstr "Alterner le point de fuite dans la direction Y entre « fini » et « infini » (=parallèles)" +msgstr "" +"Alterner le point de fuite dans la direction Y entre « fini » et " +"« infini » (=parallèles)" -#: ../src/widgets/box3d-toolbar.cpp:378 +#: ../src/widgets/box3d-toolbar.cpp:381 msgid "Angle in Z direction" msgstr "Angle dans la direction Z" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:380 +#: ../src/widgets/box3d-toolbar.cpp:383 msgid "Angle of PLs in Z direction" msgstr "Angle des lignes parallèles dans la direction Z" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:401 +#: ../src/widgets/box3d-toolbar.cpp:404 msgid "State of VP in Z direction" msgstr "État du point de fuite dans la direction Z" -#: ../src/widgets/box3d-toolbar.cpp:402 +#: ../src/widgets/box3d-toolbar.cpp:405 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" -msgstr "Alterner le point de fuite dans la direction Z entre « fini » et « infini » (=parallèles)" +msgstr "" +"Alterner le point de fuite dans la direction Z entre « fini » et " +"« infini » (=parallèles)" #. gint preset_index = ege_select_one_action_get_active( sel ); #: ../src/widgets/calligraphy-toolbar.cpp:218 @@ -25285,16 +27675,11 @@ msgstr "(sans épaisseur)" #. Scale #: ../src/widgets/calligraphy-toolbar.cpp:427 #: ../src/widgets/calligraphy-toolbar.cpp:460 -#: ../src/widgets/eraser-toolbar.cpp:125 -#: ../src/widgets/pencil-toolbar.cpp:269 -#: ../src/widgets/spray-toolbar.cpp:113 -#: ../src/widgets/spray-toolbar.cpp:129 -#: ../src/widgets/spray-toolbar.cpp:145 -#: ../src/widgets/spray-toolbar.cpp:205 -#: ../src/widgets/spray-toolbar.cpp:235 -#: ../src/widgets/spray-toolbar.cpp:253 -#: ../src/widgets/tweak-toolbar.cpp:125 -#: ../src/widgets/tweak-toolbar.cpp:142 +#: ../src/widgets/eraser-toolbar.cpp:125 ../src/widgets/pencil-toolbar.cpp:275 +#: ../src/widgets/spray-toolbar.cpp:113 ../src/widgets/spray-toolbar.cpp:129 +#: ../src/widgets/spray-toolbar.cpp:145 ../src/widgets/spray-toolbar.cpp:205 +#: ../src/widgets/spray-toolbar.cpp:235 ../src/widgets/spray-toolbar.cpp:253 +#: ../src/widgets/tweak-toolbar.cpp:125 ../src/widgets/tweak-toolbar.cpp:142 #: ../src/widgets/tweak-toolbar.cpp:350 msgid "(default)" msgstr "(défaut)" @@ -25343,8 +27728,12 @@ msgid "Thinning:" msgstr "Amincissement :" #: ../src/widgets/calligraphy-toolbar.cpp:448 -msgid "How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 makes them broader, 0 makes width independent of velocity)" -msgstr "Largeur du tracé en fonction de la vélocité. (>0 la vitesse du tracé diminue sa largeur, <0 l'augmente, 0 ne l'influence pas)" +msgid "" +"How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 " +"makes them broader, 0 makes width independent of velocity)" +msgstr "" +"Largeur du tracé en fonction de la vélocité. (>0 la vitesse du tracé diminue " +"sa largeur, <0 l'augmente, 0 ne l'influence pas)" #. Angle #: ../src/widgets/calligraphy-toolbar.cpp:460 @@ -25364,14 +27753,17 @@ msgid "Pen Angle" msgstr "Angle du stylo" #: ../src/widgets/calligraphy-toolbar.cpp:463 -#: ../share/extensions/motion.inx.h:3 -#: ../share/extensions/restack.inx.h:10 +#: ../share/extensions/motion.inx.h:3 ../share/extensions/restack.inx.h:10 msgid "Angle:" msgstr "Angle :" #: ../src/widgets/calligraphy-toolbar.cpp:464 -msgid "The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if fixation = 0)" -msgstr "Angle de la plume (en degrés; 0 = horizontal; n'a pas d'effet si orientation = 0)" +msgid "" +"The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if " +"fixation = 0)" +msgstr "" +"Angle de la plume (en degrés; 0 = horizontal; n'a pas d'effet si orientation " +"= 0)" #. Fixation #: ../src/widgets/calligraphy-toolbar.cpp:478 @@ -25395,8 +27787,12 @@ msgid "Fixation:" msgstr "Fixité :" #: ../src/widgets/calligraphy-toolbar.cpp:482 -msgid "Angle behavior (0 = nib always perpendicular to stroke direction, 100 = fixed angle)" -msgstr "Comportement de l'angle de la plume (0 = toujours perpendiculaire à la direction du tracé, 100 = invariant)" +msgid "" +"Angle behavior (0 = nib always perpendicular to stroke direction, 100 = " +"fixed angle)" +msgstr "" +"Comportement de l'angle de la plume (0 = toujours perpendiculaire à la " +"direction du tracé, 100 = invariant)" #. Cap Rounding #: ../src/widgets/calligraphy-toolbar.cpp:494 @@ -25424,8 +27820,12 @@ msgid "Caps:" msgstr "Terminaisons :" #: ../src/widgets/calligraphy-toolbar.cpp:499 -msgid "Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = round caps)" -msgstr "Augmenter ce paramètre pour que les extrémités du tracé soient plus proéminentes (0 = pas de terminaison, 1 = terminaison arrondie)" +msgid "" +"Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = " +"round caps)" +msgstr "" +"Augmenter ce paramètre pour que les extrémités du tracé soient plus " +"proéminentes (0 = pas de terminaison, 1 = terminaison arrondie)" #. Tremor #: ../src/widgets/calligraphy-toolbar.cpp:511 @@ -25508,19 +27908,26 @@ msgstr "Inertie :" #: ../src/widgets/calligraphy-toolbar.cpp:550 msgid "Increase to make the pen drag behind, as if slowed by inertia" -msgstr "Augmenter ce paramètre pour que la plume traîne, ralentie par son inertie" +msgstr "" +"Augmenter ce paramètre pour que la plume traîne, ralentie par son inertie" #: ../src/widgets/calligraphy-toolbar.cpp:565 msgid "Trace Background" msgstr "Tracer selon le fond" #: ../src/widgets/calligraphy-toolbar.cpp:566 -msgid "Trace the lightness of the background by the width of the pen (white - minimum width, black - maximum width)" -msgstr "Imiter la luminosité de l'arrière-plan avec l'épaisseur du trait (blanc - trait fin, noir - trait épais)" +msgid "" +"Trace the lightness of the background by the width of the pen (white - " +"minimum width, black - maximum width)" +msgstr "" +"Imiter la luminosité de l'arrière-plan avec l'épaisseur du trait (blanc - " +"trait fin, noir - trait épais)" #: ../src/widgets/calligraphy-toolbar.cpp:579 msgid "Use the pressure of the input device to alter the width of the pen" -msgstr "Utiliser la pression du périphérique d'entrée pour modifier la largeur de la plume" +msgstr "" +"Utiliser la pression du périphérique d'entrée pour modifier la largeur de la " +"plume" #: ../src/widgets/calligraphy-toolbar.cpp:591 msgid "Tilt" @@ -25528,7 +27935,9 @@ msgstr "Inclinaison" #: ../src/widgets/calligraphy-toolbar.cpp:592 msgid "Use the tilt of the input device to alter the angle of the pen's nib" -msgstr "Utiliser l'inclinaison du périphérique d'entrée pour modifier l'angle de la plume" +msgstr "" +"Utiliser l'inclinaison du périphérique d'entrée pour modifier l'angle de la " +"plume" #: ../src/widgets/calligraphy-toolbar.cpp:607 msgid "Choose a preset" @@ -25596,7 +28005,8 @@ msgstr "Espacement :" #: ../src/widgets/connector-toolbar.cpp:361 msgid "The amount of space left around objects by auto-routing connectors" -msgstr "Espace laissé autour des objets par les connecteurs routés automatiquement" +msgstr "" +"Espace laissé autour des objets par les connecteurs routés automatiquement" #: ../src/widgets/connector-toolbar.cpp:372 msgid "Graph" @@ -25620,7 +28030,9 @@ msgstr "Vers le bas" #: ../src/widgets/connector-toolbar.cpp:396 msgid "Make connectors with end-markers (arrows) point downwards" -msgstr "Faire que les connecteurs avec des marqueurs de fin (des flèches) pointent vers le bas" +msgstr "" +"Faire que les connecteurs avec des marqueurs de fin (des flèches) pointent " +"vers le bas" #: ../src/widgets/connector-toolbar.cpp:412 msgid "Do not allow overlapping shapes" @@ -25648,8 +28060,13 @@ msgstr "Z :" #. display the initial welcome message in the statusbar #: ../src/widgets/desktop-widget.cpp:734 -msgid "Welcome to Inkscape! Use shape or freehand tools to create objects; use selector (arrow) to move or transform them." -msgstr "Bienvenue dans Inkscape! Utilisez les formes ou l'outil de dessin à main levée pour créer des objets; utilisez les sélecteurs (flèches) pour les déplacer ou les modifier." +msgid "" +"Welcome to Inkscape! Use shape or freehand tools to create objects; " +"use selector (arrow) to move or transform them." +msgstr "" +"Bienvenue dans Inkscape! Utilisez les formes ou l'outil de dessin à " +"main levée pour créer des objets; utilisez les sélecteurs (flèches) pour les " +"déplacer ou les modifier." #: ../src/widgets/desktop-widget.cpp:828 msgid "grayscale" @@ -25680,8 +28097,7 @@ msgstr "sans filtre" msgid "%s%s: %d (%s%s) - Inkscape" msgstr "%s%s: %d (%s%s) - Inkscape" -#: ../src/widgets/desktop-widget.cpp:862 -#: ../src/widgets/desktop-widget.cpp:866 +#: ../src/widgets/desktop-widget.cpp:862 ../src/widgets/desktop-widget.cpp:866 #, c-format msgid "%s%s: %d (%s) - Inkscape" msgstr "%s%s: %d (%s) - Inkscape" @@ -25696,8 +28112,7 @@ msgstr "%s%s: %d - Inkscape" msgid "%s%s (%s%s) - Inkscape" msgstr "%s%s (%s%s) - Inkscape" -#: ../src/widgets/desktop-widget.cpp:876 -#: ../src/widgets/desktop-widget.cpp:880 +#: ../src/widgets/desktop-widget.cpp:876 ../src/widgets/desktop-widget.cpp:880 #, c-format msgid "%s%s (%s) - Inkscape" msgstr "%s%s (%s) - Inkscape" @@ -25709,20 +28124,24 @@ msgstr "%s%s - Inkscape" #: ../src/widgets/desktop-widget.cpp:1051 msgid "Color-managed display is enabled in this window" -msgstr "L'affichage avec gestion des couleurs est activé dans cette fenêtre" +msgstr "" +"L'affichage avec gestion des couleurs est activé dans cette fenêtre" #: ../src/widgets/desktop-widget.cpp:1053 msgid "Color-managed display is disabled in this window" -msgstr "L'affichage avec gestion des couleurs est désactivé dans cette fenêtre" +msgstr "" +"L'affichage avec gestion des couleurs est désactivé dans cette fenêtre" #: ../src/widgets/desktop-widget.cpp:1108 #, c-format msgid "" -"Save changes to document \"%s\" before closing?\n" +"Save changes to document \"%s\" before " +"closing?\n" "\n" "If you close without saving, your changes will be discarded." msgstr "" -"Enregistrer les modifications du document « %s » avant de fermer ?\n" +"Enregistrer les modifications du " +"document « %s » avant de fermer ?\n" "\n" "Si vous fermez sans enregistrer, vos modifications seront perdues." @@ -25734,11 +28153,13 @@ msgstr "Fermer _sans enregistrer" #: ../src/widgets/desktop-widget.cpp:1167 #, c-format msgid "" -"The file \"%s\" was saved with a format that may cause data loss!\n" +"The file \"%s\" was saved with a " +"format that may cause data loss!\n" "\n" "Do you want to save this file as Inkscape SVG?" msgstr "" -"Le fichier « %s » a été enregistré dans un format qui peut causer des pertes de données !\n" +"Le fichier « %s » a été enregistré " +"dans un format qui peut causer des pertes de données !\n" "\n" "Voulez-vous enregistrer ce fichier au format SVG Inkscape ?" @@ -25755,8 +28176,12 @@ msgid "Pick opacity" msgstr "Capturer l'opacité" #: ../src/widgets/dropper-toolbar.cpp:91 -msgid "Pick both the color and the alpha (transparency) under cursor; otherwise, pick only the visible color premultiplied by alpha" -msgstr "Capturer à la fois la couleur et l'alpha (opacité) sous le curseur; Sinon, ne capturer que la couleur visible prémultipliée par l'alpha" +msgid "" +"Pick both the color and the alpha (transparency) under cursor; otherwise, " +"pick only the visible color premultiplied by alpha" +msgstr "" +"Capturer à la fois la couleur et l'alpha (opacité) sous le curseur; Sinon, " +"ne capturer que la couleur visible prémultipliée par l'alpha" #: ../src/widgets/dropper-toolbar.cpp:94 msgid "Pick" @@ -25767,8 +28192,11 @@ msgid "Assign opacity" msgstr "Appliquer l'opacité" #: ../src/widgets/dropper-toolbar.cpp:104 -msgid "If alpha was picked, assign it to selection as fill or stroke transparency" -msgstr "Si l'alpha a été capturé, l'appliquer comme transparence de remplissage ou de contour à la sélection" +msgid "" +"If alpha was picked, assign it to selection as fill or stroke transparency" +msgstr "" +"Si l'alpha a été capturé, l'appliquer comme transparence de remplissage ou " +"de contour à la sélection" #: ../src/widgets/dropper-toolbar.cpp:107 msgid "Assign" @@ -25798,13 +28226,11 @@ msgstr "Largeur de la gomme (relativement à la zone de travail visible)" msgid "Change fill rule" msgstr "Modifier la règle de remplissage" -#: ../src/widgets/fill-style.cpp:447 -#: ../src/widgets/fill-style.cpp:526 +#: ../src/widgets/fill-style.cpp:447 ../src/widgets/fill-style.cpp:526 msgid "Set fill color" msgstr "Appliquer une couleur de remplissage" -#: ../src/widgets/fill-style.cpp:447 -#: ../src/widgets/fill-style.cpp:526 +#: ../src/widgets/fill-style.cpp:447 ../src/widgets/fill-style.cpp:526 msgid "Set stroke color" msgstr "Appliquer une couleur de contour" @@ -25824,47 +28250,45 @@ msgstr "Appliquer un motif de remplissage" msgid "Set pattern on stroke" msgstr "Appliquer un motif à un contour" -#: ../src/widgets/font-selector.cpp:134 -#: ../src/widgets/text-toolbar.cpp:956 -#: ../src/widgets/text-toolbar.cpp:1270 +#: ../src/widgets/font-selector.cpp:120 ../src/widgets/text-toolbar.cpp:958 +#: ../src/widgets/text-toolbar.cpp:1272 msgid "Font size" msgstr "Taille de police" #. Family frame -#: ../src/widgets/font-selector.cpp:148 +#: ../src/widgets/font-selector.cpp:134 msgid "Font family" msgstr "Famille de police" #. Style frame -#: ../src/widgets/font-selector.cpp:193 +#: ../src/widgets/font-selector.cpp:179 msgctxt "Font selector" msgid "Style" msgstr "Style" -#: ../src/widgets/font-selector.cpp:225 +#: ../src/widgets/font-selector.cpp:211 #, fuzzy msgid "Face" msgstr "Facettes" -#: ../src/widgets/font-selector.cpp:254 -#: ../share/extensions/dots.inx.h:3 +#: ../src/widgets/font-selector.cpp:240 ../share/extensions/dots.inx.h:3 msgid "Font size:" msgstr "Taille de police :" -#: ../src/widgets/gradient-selector.cpp:214 +#: ../src/widgets/gradient-selector.cpp:196 msgid "Create a duplicate gradient" msgstr "Dupliquer un dégradé" -#: ../src/widgets/gradient-selector.cpp:230 +#: ../src/widgets/gradient-selector.cpp:212 msgid "Edit gradient" msgstr "Éditer le dégradé" -#: ../src/widgets/gradient-selector.cpp:306 -#: ../src/widgets/paint-selector.cpp:244 +#: ../src/widgets/gradient-selector.cpp:288 +#: ../src/widgets/paint-selector.cpp:236 msgid "Swatch" msgstr "Échantillon" -#: ../src/widgets/gradient-selector.cpp:356 +#: ../src/widgets/gradient-selector.cpp:338 msgid "Rename gradient" msgstr "Renommer le dégradé" @@ -25884,7 +28308,7 @@ msgid "Multiple stops" msgstr "Plusieurs stops" #: ../src/widgets/gradient-toolbar.cpp:774 -#: ../src/widgets/gradient-vector.cpp:629 +#: ../src/widgets/gradient-vector.cpp:609 msgid "No stops in gradient" msgstr "Il n'y a pas de stop dans le dégradé" @@ -25897,7 +28321,7 @@ msgid "Set gradient repeat" msgstr "Défini la répétition du dégradé" #: ../src/widgets/gradient-toolbar.cpp:987 -#: ../src/widgets/gradient-vector.cpp:740 +#: ../src/widgets/gradient-vector.cpp:720 msgid "Change gradient stop offset" msgstr "Modifier le décalage d'un stop de dégradé" @@ -25918,32 +28342,32 @@ msgid "Create radial (elliptic or circular) gradient" msgstr "Créer un dégradé radial (elliptique ou circulaire)" #: ../src/widgets/gradient-toolbar.cpp:1041 -#: ../src/widgets/mesh-toolbar.cpp:211 +#: ../src/widgets/mesh-toolbar.cpp:207 msgid "New:" msgstr "Créer :" #: ../src/widgets/gradient-toolbar.cpp:1064 -#: ../src/widgets/mesh-toolbar.cpp:234 +#: ../src/widgets/mesh-toolbar.cpp:230 msgid "fill" msgstr "remplissage" #: ../src/widgets/gradient-toolbar.cpp:1064 -#: ../src/widgets/mesh-toolbar.cpp:234 +#: ../src/widgets/mesh-toolbar.cpp:230 msgid "Create gradient in the fill" msgstr "Appliquer le dégradé au remplissage" #: ../src/widgets/gradient-toolbar.cpp:1068 -#: ../src/widgets/mesh-toolbar.cpp:238 +#: ../src/widgets/mesh-toolbar.cpp:234 msgid "stroke" msgstr "contour" #: ../src/widgets/gradient-toolbar.cpp:1068 -#: ../src/widgets/mesh-toolbar.cpp:238 +#: ../src/widgets/mesh-toolbar.cpp:234 msgid "Create gradient in the stroke" msgstr "Appliquer le dégradé au contour" #: ../src/widgets/gradient-toolbar.cpp:1071 -#: ../src/widgets/mesh-toolbar.cpp:241 +#: ../src/widgets/mesh-toolbar.cpp:237 msgid "on:" msgstr "sur :" @@ -25964,10 +28388,6 @@ msgctxt "Gradient repeat type" msgid "None" msgstr "Aucune" -#: ../src/widgets/gradient-toolbar.cpp:1115 -msgid "Reflected" -msgstr "Réfléchi" - #: ../src/widgets/gradient-toolbar.cpp:1118 msgid "Direct" msgstr "Direct" @@ -25978,8 +28398,16 @@ msgstr "Répétition :" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/pservers.html#LinearGradientSpreadMethodAttribute #: ../src/widgets/gradient-toolbar.cpp:1122 -msgid "Whether to fill with flat color beyond the ends of the gradient vector (spreadMethod=\"pad\"), or repeat the gradient in the same direction (spreadMethod=\"repeat\"), or repeat the gradient in alternating opposite directions (spreadMethod=\"reflect\")" -msgstr "Prolongement du dégradé au delà de la définition de son vecteur : prolonger par une zone uniforme de la dernière couleur (aucune, spreadMethod=\"pad\"), répéter le dégradé (directe, spreadMethod=\"repeat\") ou le réfléchir (réflection, spreadMethod=\"reflect\")" +msgid "" +"Whether to fill with flat color beyond the ends of the gradient vector " +"(spreadMethod=\"pad\"), or repeat the gradient in the same direction " +"(spreadMethod=\"repeat\"), or repeat the gradient in alternating opposite " +"directions (spreadMethod=\"reflect\")" +msgstr "" +"Prolongement du dégradé au delà de la définition de son vecteur : prolonger " +"par une zone uniforme de la dernière couleur (aucune, spreadMethod=\"pad\"), " +"répéter le dégradé (directe, spreadMethod=\"repeat\") ou le réfléchir " +"(réflection, spreadMethod=\"reflect\")" #: ../src/widgets/gradient-toolbar.cpp:1127 msgid "Repeat:" @@ -26003,7 +28431,7 @@ msgstr "Stops :" #. Label #: ../src/widgets/gradient-toolbar.cpp:1156 -#: ../src/widgets/gradient-vector.cpp:926 +#: ../src/widgets/gradient-vector.cpp:906 msgctxt "Gradient" msgid "Offset:" msgstr "Décalage :" @@ -26019,14 +28447,10 @@ msgstr "Insérer un stop" #: ../src/widgets/gradient-toolbar.cpp:1188 #: ../src/widgets/gradient-toolbar.cpp:1189 -#: ../src/widgets/gradient-vector.cpp:908 +#: ../src/widgets/gradient-vector.cpp:888 msgid "Delete stop" msgstr "Supprimer un stop" -#: ../src/widgets/gradient-toolbar.cpp:1202 -msgid "Reverse" -msgstr "Inverser" - #: ../src/widgets/gradient-toolbar.cpp:1203 msgid "Reverse the direction of the gradient" msgstr "Inverser la direction du dégradé" @@ -26039,43 +28463,43 @@ msgstr "Lier les dégradés" msgid "Link gradients to change all related gradients" msgstr "Lier et modifier tous les dégradés associés" -#: ../src/widgets/gradient-vector.cpp:332 -#: ../src/widgets/paint-selector.cpp:922 +#: ../src/widgets/gradient-vector.cpp:312 +#: ../src/widgets/paint-selector.cpp:947 #: ../src/widgets/stroke-marker-selector.cpp:154 msgid "No document selected" msgstr "Aucun document sélectionné" -#: ../src/widgets/gradient-vector.cpp:336 +#: ../src/widgets/gradient-vector.cpp:316 msgid "No gradients in document" msgstr "Le document ne contient pas de dégradé" -#: ../src/widgets/gradient-vector.cpp:340 +#: ../src/widgets/gradient-vector.cpp:320 msgid "No gradient selected" msgstr "Aucun dégradé n'est sélectionné" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:903 +#: ../src/widgets/gradient-vector.cpp:883 msgid "Add stop" msgstr "Ajouter un stop" -#: ../src/widgets/gradient-vector.cpp:906 +#: ../src/widgets/gradient-vector.cpp:886 msgid "Add another control stop to gradient" msgstr "Ajouter un nouveau stop de contrôle au dégradé" -#: ../src/widgets/gradient-vector.cpp:911 +#: ../src/widgets/gradient-vector.cpp:891 msgid "Delete current control stop from gradient" msgstr "Supprimer le stop courant du dégradé" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:979 +#: ../src/widgets/gradient-vector.cpp:959 msgid "Stop Color" msgstr "Couleur du stop" -#: ../src/widgets/gradient-vector.cpp:1007 +#: ../src/widgets/gradient-vector.cpp:987 msgid "Gradient editor" msgstr "Éditeur de dégradé" -#: ../src/widgets/gradient-vector.cpp:1307 +#: ../src/widgets/gradient-vector.cpp:1287 msgid "Change gradient stop color" msgstr "Modifier la couleur d'un stop de dégradé" @@ -26095,61 +28519,64 @@ msgstr "Fin ouverte" msgid "Open both" msgstr "Les deux ouverts" -#: ../src/widgets/lpe-toolbar.cpp:298 +#: ../src/widgets/lpe-toolbar.cpp:301 msgid "All inactive" msgstr "Tout inactif" -#: ../src/widgets/lpe-toolbar.cpp:299 +#: ../src/widgets/lpe-toolbar.cpp:302 msgid "No geometric tool is active" msgstr "Aucun outil géométrique n'est actif" -#: ../src/widgets/lpe-toolbar.cpp:332 +#: ../src/widgets/lpe-toolbar.cpp:335 msgid "Show limiting bounding box" msgstr "Montrer la boîte englobante limite" -#: ../src/widgets/lpe-toolbar.cpp:333 +#: ../src/widgets/lpe-toolbar.cpp:336 msgid "Show bounding box (used to cut infinite lines)" msgstr "Affiche la boîte englobante (utilisé pour couper les lignes infinies)" -#: ../src/widgets/lpe-toolbar.cpp:344 +#: ../src/widgets/lpe-toolbar.cpp:347 msgid "Get limiting bounding box from selection" msgstr "Obtenir la boîte englobante limite à partir de la sélection" -#: ../src/widgets/lpe-toolbar.cpp:345 -msgid "Set limiting bounding box (used to cut infinite lines) to the bounding box of current selection" -msgstr "Définir la boîte englobante limite (utilisée pour couper les lignes infinies) à la boîte englobante de la sélection" +#: ../src/widgets/lpe-toolbar.cpp:348 +msgid "" +"Set limiting bounding box (used to cut infinite lines) to the bounding box " +"of current selection" +msgstr "" +"Définir la boîte englobante limite (utilisée pour couper les lignes " +"infinies) à la boîte englobante de la sélection" -#: ../src/widgets/lpe-toolbar.cpp:357 +#: ../src/widgets/lpe-toolbar.cpp:360 msgid "Choose a line segment type" msgstr "Sélectionner un type de segment" -#: ../src/widgets/lpe-toolbar.cpp:373 +#: ../src/widgets/lpe-toolbar.cpp:376 msgid "Display measuring info" msgstr "Afficher les informations de mesure" -#: ../src/widgets/lpe-toolbar.cpp:374 +#: ../src/widgets/lpe-toolbar.cpp:377 msgid "Display measuring info for selected items" msgstr "Affiche les informations de mesure pour la sélection" #. Add the units menu. -#: ../src/widgets/lpe-toolbar.cpp:384 -#: ../src/widgets/node-toolbar.cpp:613 -#: ../src/widgets/paintbucket-toolbar.cpp:166 -#: ../src/widgets/rect-toolbar.cpp:375 -#: ../src/widgets/select-toolbar.cpp:536 +#: ../src/widgets/lpe-toolbar.cpp:387 ../src/widgets/node-toolbar.cpp:613 +#: ../src/widgets/paintbucket-toolbar.cpp:168 +#: ../src/widgets/rect-toolbar.cpp:379 ../src/widgets/select-toolbar.cpp:538 msgid "Units" msgstr "Unités" -#: ../src/widgets/lpe-toolbar.cpp:394 +#: ../src/widgets/lpe-toolbar.cpp:397 msgid "Open LPE dialog" msgstr "Ouvrir la boîte de dialogue des effets de chemin" -#: ../src/widgets/lpe-toolbar.cpp:395 +#: ../src/widgets/lpe-toolbar.cpp:398 msgid "Open LPE dialog (to adapt parameters numerically)" -msgstr "Ouvrir la boîte de dialogue des effets de chemin (pour adapter les paramètres numériquement)" +msgstr "" +"Ouvrir la boîte de dialogue des effets de chemin (pour adapter les " +"paramètres numériquement)" -#: ../src/widgets/measure-toolbar.cpp:86 -#: ../src/widgets/text-toolbar.cpp:1273 +#: ../src/widgets/measure-toolbar.cpp:86 ../src/widgets/text-toolbar.cpp:1275 msgid "Font Size" msgstr "Taille de police" @@ -26166,76 +28593,70 @@ msgstr "Taille de police à utiliser pour les labels des mesures" msgid "The units to be used for the measurements" msgstr "Unité à utiliser pour les mesures" -#: ../src/widgets/mesh-toolbar.cpp:204 +#: ../src/widgets/mesh-toolbar.cpp:200 msgid "normal" msgstr "normal" -#: ../src/widgets/mesh-toolbar.cpp:204 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:200 msgid "Create mesh gradient" -msgstr "Créer un dégradé linéaire" +msgstr "Créer un dégradé filet" -#: ../src/widgets/mesh-toolbar.cpp:208 +#: ../src/widgets/mesh-toolbar.cpp:204 msgid "conical" -msgstr "" +msgstr "conique" -#: ../src/widgets/mesh-toolbar.cpp:208 +#: ../src/widgets/mesh-toolbar.cpp:204 msgid "Create conical gradient" msgstr "Créer un dégradé conique" -#: ../src/widgets/mesh-toolbar.cpp:263 +#: ../src/widgets/mesh-toolbar.cpp:259 msgid "Rows" msgstr "Lignes" -#: ../src/widgets/mesh-toolbar.cpp:263 +#: ../src/widgets/mesh-toolbar.cpp:259 #: ../share/extensions/guides_creator.inx.h:5 #: ../share/extensions/layout_nup.inx.h:12 msgid "Rows:" msgstr "Lignes :" -#: ../src/widgets/mesh-toolbar.cpp:263 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:259 msgid "Number of rows in new mesh" -msgstr "Nombre de lignes" +msgstr "Nombre de lignes dans le nouveau filet" -#: ../src/widgets/mesh-toolbar.cpp:279 +#: ../src/widgets/mesh-toolbar.cpp:275 msgid "Columns" msgstr "Colonnes" -#: ../src/widgets/mesh-toolbar.cpp:279 +#: ../src/widgets/mesh-toolbar.cpp:275 #: ../share/extensions/guides_creator.inx.h:4 msgid "Columns:" msgstr "Colonnes :" -#: ../src/widgets/mesh-toolbar.cpp:279 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:275 msgid "Number of columns in new mesh" -msgstr "Nombre de colonnes" +msgstr "Nombre de colonnes dans le nouveau filet" -#: ../src/widgets/mesh-toolbar.cpp:293 +#: ../src/widgets/mesh-toolbar.cpp:289 msgid "Edit Fill" msgstr "Éditer le remplissage" -#: ../src/widgets/mesh-toolbar.cpp:294 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:290 msgid "Edit fill mesh" -msgstr "Éditer le remplissage" +msgstr "Éditer le remplissage du filet" -#: ../src/widgets/mesh-toolbar.cpp:305 +#: ../src/widgets/mesh-toolbar.cpp:301 msgid "Edit Stroke" msgstr "Éditer le contour" -#: ../src/widgets/mesh-toolbar.cpp:306 -#, fuzzy +#: ../src/widgets/mesh-toolbar.cpp:302 msgid "Edit stroke mesh" -msgstr "Éditer le contour..." +msgstr "Éditer le contour du filet" -#: ../src/widgets/mesh-toolbar.cpp:317 -#: ../src/widgets/node-toolbar.cpp:521 +#: ../src/widgets/mesh-toolbar.cpp:313 ../src/widgets/node-toolbar.cpp:521 msgid "Show Handles" msgstr "Afficher les poignées" -#: ../src/widgets/mesh-toolbar.cpp:318 +#: ../src/widgets/mesh-toolbar.cpp:314 #, fuzzy msgid "Show side and tensor handles" msgstr "Afficher les poignées de transformation" @@ -26258,7 +28679,8 @@ msgstr "Insérer un nœud à l'abscisse minimale" #: ../src/widgets/node-toolbar.cpp:357 msgid "Insert new nodes at min X into selected segments" -msgstr "Insérer de nouveaux nœuds à l'abscisse minimale des segments sélectionnés" +msgstr "" +"Insérer de nouveaux nœuds à l'abscisse minimale des segments sélectionnés" #: ../src/widgets/node-toolbar.cpp:360 msgid "Insert min X" @@ -26270,7 +28692,8 @@ msgstr "Insérer un nœud à l'abscisse maximale" #: ../src/widgets/node-toolbar.cpp:367 msgid "Insert new nodes at max X into selected segments" -msgstr "Insérer de nouveaux nœuds à l'abscisse maximale des segments sélectionnés" +msgstr "" +"Insérer de nouveaux nœuds à l'abscisse maximale des segments sélectionnés" #: ../src/widgets/node-toolbar.cpp:370 msgid "Insert max X" @@ -26282,7 +28705,8 @@ msgstr "Insérer un nœud à l'ordonnée minimale" #: ../src/widgets/node-toolbar.cpp:377 msgid "Insert new nodes at min Y into selected segments" -msgstr "Insérer de nouveaux nœuds à l'ordonnée minimale des segments sélectionnés" +msgstr "" +"Insérer de nouveaux nœuds à l'ordonnée minimale des segments sélectionnés" #: ../src/widgets/node-toolbar.cpp:380 msgid "Insert min Y" @@ -26294,7 +28718,8 @@ msgstr "Insérer un nœud à l'ordonnée maximale" #: ../src/widgets/node-toolbar.cpp:387 msgid "Insert new nodes at max Y into selected segments" -msgstr "Insérer de nouveaux nœuds à l'ordonnée maximale des segments sélectionnés" +msgstr "" +"Insérer de nouveaux nœuds à l'ordonnée maximale des segments sélectionnés" #: ../src/widgets/node-toolbar.cpp:390 msgid "Insert max Y" @@ -26432,123 +28857,156 @@ msgstr "Coordonnée Y :" msgid "Y coordinate of selected node(s)" msgstr "Coordonnée Y de la sélection" -#: ../src/widgets/paint-selector.cpp:234 +#: ../src/widgets/paint-selector.cpp:222 msgid "No paint" msgstr "Pas de remplissage" -#: ../src/widgets/paint-selector.cpp:236 +#: ../src/widgets/paint-selector.cpp:224 msgid "Flat color" msgstr "Aplat" -#: ../src/widgets/paint-selector.cpp:238 +#: ../src/widgets/paint-selector.cpp:226 msgid "Linear gradient" msgstr "Dégradé linéaire" -#: ../src/widgets/paint-selector.cpp:240 +#: ../src/widgets/paint-selector.cpp:228 msgid "Radial gradient" msgstr "Dégradé radial" -#: ../src/widgets/paint-selector.cpp:246 +#: ../src/widgets/paint-selector.cpp:231 +#, fuzzy +msgid "Mesh gradient" +msgstr "Déplacer les dégradés" + +#: ../src/widgets/paint-selector.cpp:238 msgid "Unset paint (make it undefined so it can be inherited)" msgstr "Remplissage indéfini (permettant ainsi qu'il soit hérité)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:263 -msgid "Any path self-intersections or subpaths create holes in the fill (fill-rule: evenodd)" -msgstr "Toute intersection d'un chemin avec lui-même ou avec un de ses sous-chemins engendrera des lacunes dans le remplissage (fill-rule: evenodd)" +#: ../src/widgets/paint-selector.cpp:255 +msgid "" +"Any path self-intersections or subpaths create holes in the fill (fill-rule: " +"evenodd)" +msgstr "" +"Toute intersection d'un chemin avec lui-même ou avec un de ses sous-chemins " +"engendrera des lacunes dans le remplissage (fill-rule: evenodd)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:274 -msgid "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" -msgstr "Le remplissage est sans lacune, sauf si un sous-chemin est en sens inverse (fill-rule: nonzero)" +#: ../src/widgets/paint-selector.cpp:266 +msgid "" +"Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" +msgstr "" +"Le remplissage est sans lacune, sauf si un sous-chemin est en sens inverse " +"(fill-rule: nonzero)" -#: ../src/widgets/paint-selector.cpp:590 +#: ../src/widgets/paint-selector.cpp:600 msgid "No objects" msgstr "Aucun objet" -#: ../src/widgets/paint-selector.cpp:601 +#: ../src/widgets/paint-selector.cpp:611 msgid "Multiple styles" msgstr "Styles multiples" -#: ../src/widgets/paint-selector.cpp:612 +#: ../src/widgets/paint-selector.cpp:622 msgid "Paint is undefined" msgstr "Remplissage indéfini" -#: ../src/widgets/paint-selector.cpp:623 +#: ../src/widgets/paint-selector.cpp:633 msgid "No paint" msgstr "Pas de remplissage" -#: ../src/widgets/paint-selector.cpp:694 +#: ../src/widgets/paint-selector.cpp:704 msgid "Flat color" msgstr "Aplat" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:758 +#: ../src/widgets/paint-selector.cpp:773 msgid "Linear gradient" msgstr "Dégradé linéaire" -#: ../src/widgets/paint-selector.cpp:761 +#: ../src/widgets/paint-selector.cpp:776 msgid "Radial gradient" msgstr "Dégradé radial" -#: ../src/widgets/paint-selector.cpp:1055 -msgid "Use the Node tool to adjust position, scale, and rotation of the pattern on canvas. Use Object > Pattern > Objects to Pattern to create a new pattern from selection." -msgstr "Utiliser l'outil nœud pour ajuster la position, l'échelle et l'angle du motif sur la zone de travail. Utiliser Objet > Motifs > Objets en Motif pour créer un nouveau motif à partir de la sélection." +#: ../src/widgets/paint-selector.cpp:781 +#, fuzzy +msgid "Mesh gradient" +msgstr "Dégradé linéaire" + +#: ../src/widgets/paint-selector.cpp:1080 +msgid "" +"Use the Node tool to adjust position, scale, and rotation of the " +"pattern on canvas. Use Object > Pattern > Objects to Pattern to " +"create a new pattern from selection." +msgstr "" +"Utiliser l'outil nœud pour ajuster la position, l'échelle et l'angle " +"du motif sur la zone de travail. Utiliser Objet > Motifs > Objets " +"en Motif pour créer un nouveau motif à partir de la sélection." -#: ../src/widgets/paint-selector.cpp:1068 +#: ../src/widgets/paint-selector.cpp:1093 msgid "Pattern fill" msgstr "Motif de remplissage" -#: ../src/widgets/paint-selector.cpp:1162 +#: ../src/widgets/paint-selector.cpp:1187 msgid "Swatch fill" msgstr "Remplissage par échantillon" -#: ../src/widgets/paintbucket-toolbar.cpp:133 +#: ../src/widgets/paintbucket-toolbar.cpp:135 msgid "Fill by" msgstr "Type de remplissage" -#: ../src/widgets/paintbucket-toolbar.cpp:134 +#: ../src/widgets/paintbucket-toolbar.cpp:136 msgid "Fill by:" msgstr "Type de remplissage :" -#: ../src/widgets/paintbucket-toolbar.cpp:146 +#: ../src/widgets/paintbucket-toolbar.cpp:148 msgid "Fill Threshold" msgstr "Seuil de remplissage :" -#: ../src/widgets/paintbucket-toolbar.cpp:147 -msgid "The maximum allowed difference between the clicked pixel and the neighboring pixels to be counted in the fill" -msgstr "La différence maximale entre le pixel du clic et les pixels voisins pour qu'ils soient ajoutés dans le remplissage" +#: ../src/widgets/paintbucket-toolbar.cpp:149 +msgid "" +"The maximum allowed difference between the clicked pixel and the neighboring " +"pixels to be counted in the fill" +msgstr "" +"La différence maximale entre le pixel du clic et les pixels voisins pour " +"qu'ils soient ajoutés dans le remplissage" -#: ../src/widgets/paintbucket-toolbar.cpp:174 +#: ../src/widgets/paintbucket-toolbar.cpp:176 msgid "Grow/shrink by" msgstr "Agrandir/rétrécir de" -#: ../src/widgets/paintbucket-toolbar.cpp:174 +#: ../src/widgets/paintbucket-toolbar.cpp:176 msgid "Grow/shrink by:" msgstr "Agrandir/rétrécir de :" -#: ../src/widgets/paintbucket-toolbar.cpp:175 -msgid "The amount to grow (positive) or shrink (negative) the created fill path" -msgstr "Agrandit (si positif) ou rétrécit (si négatif) de cette quantité le chemin créé par remplissage." +#: ../src/widgets/paintbucket-toolbar.cpp:177 +msgid "" +"The amount to grow (positive) or shrink (negative) the created fill path" +msgstr "" +"Agrandit (si positif) ou rétrécit (si négatif) de cette quantité le chemin " +"créé par remplissage." -#: ../src/widgets/paintbucket-toolbar.cpp:200 +#: ../src/widgets/paintbucket-toolbar.cpp:202 msgid "Close gaps" msgstr "Combler les vides" -#: ../src/widgets/paintbucket-toolbar.cpp:201 +#: ../src/widgets/paintbucket-toolbar.cpp:203 msgid "Close gaps:" msgstr "Combler les vides :" -#: ../src/widgets/paintbucket-toolbar.cpp:212 -#: ../src/widgets/pencil-toolbar.cpp:293 -#: ../src/widgets/spiral-toolbar.cpp:289 -#: ../src/widgets/star-toolbar.cpp:564 +#: ../src/widgets/paintbucket-toolbar.cpp:214 +#: ../src/widgets/pencil-toolbar.cpp:299 ../src/widgets/spiral-toolbar.cpp:289 +#: ../src/widgets/star-toolbar.cpp:566 msgid "Defaults" msgstr "R-à-z" -#: ../src/widgets/paintbucket-toolbar.cpp:213 -msgid "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools to change defaults)" -msgstr "Restaurer les préférences par défaut de l'outil de remplissage au seau (changez les valeurs par défaut dans Inkscape Préférences>Outils)" +#: ../src/widgets/paintbucket-toolbar.cpp:215 +msgid "" +"Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools " +"to change defaults)" +msgstr "" +"Restaurer les préférences par défaut de l'outil de remplissage au seau " +"(changez les valeurs par défaut dans Inkscape Préférences>Outils)" #: ../src/widgets/pencil-toolbar.cpp:96 msgid "Bezier" @@ -26562,137 +29020,148 @@ msgstr "Créer un chemin de Bézier régulier" msgid "Create Spiro path" msgstr "Créer un chemin spirographique" -#: ../src/widgets/pencil-toolbar.cpp:111 +#: ../src/widgets/pencil-toolbar.cpp:110 +#, fuzzy +msgid "Create BSpline path" +msgstr "Créer un chemin spirographique" + +#: ../src/widgets/pencil-toolbar.cpp:116 msgid "Zigzag" msgstr "Zigzag" -#: ../src/widgets/pencil-toolbar.cpp:112 +#: ../src/widgets/pencil-toolbar.cpp:117 msgid "Create a sequence of straight line segments" msgstr "Créer une séquence de segments de lignes droites" -#: ../src/widgets/pencil-toolbar.cpp:118 +#: ../src/widgets/pencil-toolbar.cpp:123 msgid "Paraxial" msgstr "Paraxial" -#: ../src/widgets/pencil-toolbar.cpp:119 +#: ../src/widgets/pencil-toolbar.cpp:124 msgid "Create a sequence of paraxial line segments" msgstr "Créer une séquence de segments de lignes paraxiales" -#: ../src/widgets/pencil-toolbar.cpp:127 +#: ../src/widgets/pencil-toolbar.cpp:132 msgid "Mode of new lines drawn by this tool" msgstr "Mode des nouvelles lignes dessinées avec cet outil" -#: ../src/widgets/pencil-toolbar.cpp:155 +#: ../src/widgets/pencil-toolbar.cpp:160 msgctxt "Freehand shape" msgid "None" msgstr "Aucune" -#: ../src/widgets/pencil-toolbar.cpp:156 +#: ../src/widgets/pencil-toolbar.cpp:161 msgid "Triangle in" msgstr "Triangle décroissant" -#: ../src/widgets/pencil-toolbar.cpp:157 +#: ../src/widgets/pencil-toolbar.cpp:162 msgid "Triangle out" msgstr "Triangle croissant" -#: ../src/widgets/pencil-toolbar.cpp:159 +#: ../src/widgets/pencil-toolbar.cpp:164 msgid "From clipboard" msgstr "À partir du presse-papier" -#: ../src/widgets/pencil-toolbar.cpp:184 -#: ../src/widgets/pencil-toolbar.cpp:185 +#: ../src/widgets/pencil-toolbar.cpp:165 +#, fuzzy +msgid "Last applied" +msgstr "Dernière diapositive :" + +#: ../src/widgets/pencil-toolbar.cpp:190 ../src/widgets/pencil-toolbar.cpp:191 msgid "Shape:" msgstr "Forme :" -#: ../src/widgets/pencil-toolbar.cpp:184 +#: ../src/widgets/pencil-toolbar.cpp:190 msgid "Shape of new paths drawn by this tool" msgstr "Style des nouveaux chemins dessinés avec cet outil" -#: ../src/widgets/pencil-toolbar.cpp:269 +#: ../src/widgets/pencil-toolbar.cpp:275 msgid "(many nodes, rough)" msgstr "(nombreux nœuds, rugueux)" -#: ../src/widgets/pencil-toolbar.cpp:269 +#: ../src/widgets/pencil-toolbar.cpp:275 msgid "(few nodes, smooth)" msgstr "(peu de nœuds, doux)" -#: ../src/widgets/pencil-toolbar.cpp:272 +#: ../src/widgets/pencil-toolbar.cpp:278 msgid "Smoothing:" msgstr "Lissage :" -#: ../src/widgets/pencil-toolbar.cpp:272 +#: ../src/widgets/pencil-toolbar.cpp:278 msgid "Smoothing: " msgstr "Lissage :" -#: ../src/widgets/pencil-toolbar.cpp:273 +#: ../src/widgets/pencil-toolbar.cpp:279 msgid "How much smoothing (simplifying) is applied to the line" msgstr "Quel niveau de lissage (simplification) est appliqué à la ligne" -#: ../src/widgets/pencil-toolbar.cpp:294 -msgid "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to change defaults)" -msgstr "Restaurer les préférences du crayon par défaut (changez les valeurs par défaut dans Préférences d'Inkscape>Outils)" +#: ../src/widgets/pencil-toolbar.cpp:300 +msgid "" +"Reset pencil parameters to defaults (use Inkscape Preferences > Tools to " +"change defaults)" +msgstr "" +"Restaurer les préférences du crayon par défaut (changez les valeurs par " +"défaut dans Préférences d'Inkscape>Outils)" -#: ../src/widgets/rect-toolbar.cpp:122 +#: ../src/widgets/rect-toolbar.cpp:124 msgid "Change rectangle" msgstr "Modifier un rectangle" -#: ../src/widgets/rect-toolbar.cpp:314 +#: ../src/widgets/rect-toolbar.cpp:318 msgid "W:" msgstr "L :" -#: ../src/widgets/rect-toolbar.cpp:314 +#: ../src/widgets/rect-toolbar.cpp:318 msgid "Width of rectangle" msgstr "Largeur du rectangle" -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/widgets/rect-toolbar.cpp:335 msgid "H:" msgstr "H :" -#: ../src/widgets/rect-toolbar.cpp:331 +#: ../src/widgets/rect-toolbar.cpp:335 msgid "Height of rectangle" msgstr "Hauteur du rectangle" -#: ../src/widgets/rect-toolbar.cpp:345 -#: ../src/widgets/rect-toolbar.cpp:360 +#: ../src/widgets/rect-toolbar.cpp:349 ../src/widgets/rect-toolbar.cpp:364 msgid "not rounded" msgstr "pas d'arrondi" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Horizontal radius" msgstr "Rayon horizontal" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Rx:" msgstr "Rx :" -#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:352 msgid "Horizontal radius of rounded corners" msgstr "Rayon horizontal des coins arrondis" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Vertical radius" msgstr "Rayon vertical" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Ry:" msgstr "Ry :" -#: ../src/widgets/rect-toolbar.cpp:363 +#: ../src/widgets/rect-toolbar.cpp:367 msgid "Vertical radius of rounded corners" msgstr "Rayon vertical des coins arrondis" -#: ../src/widgets/rect-toolbar.cpp:382 +#: ../src/widgets/rect-toolbar.cpp:386 msgid "Not rounded" msgstr "Pas d'arrondi" -#: ../src/widgets/rect-toolbar.cpp:383 +#: ../src/widgets/rect-toolbar.cpp:387 msgid "Make corners sharp" msgstr "Rendre les coins pointus" #: ../src/widgets/ruler.cpp:192 -#, fuzzy msgid "The orientation of the ruler" -msgstr "Orientation des éléments détachables" +msgstr "Orientation de la règle" #: ../src/widgets/ruler.cpp:202 msgid "Unit of the ruler" @@ -26703,143 +29172,170 @@ msgid "Lower" msgstr "Descendre" #: ../src/widgets/ruler.cpp:210 -#, fuzzy msgid "Lower limit of ruler" -msgstr "Descendre au calque précédent." +msgstr "Limite inférieure de la règle" #: ../src/widgets/ruler.cpp:219 -#, fuzzy msgid "Upper" -msgstr "Pipette" +msgstr "Supérieur" #: ../src/widgets/ruler.cpp:220 msgid "Upper limit of ruler" -msgstr "" +msgstr "Limite supérieure de la règle" #: ../src/widgets/ruler.cpp:230 -#, fuzzy msgid "Position of mark on the ruler" -msgstr "Emplacement des thèmes d'icône" +msgstr "Emplacement des graduations sur la règle" #: ../src/widgets/ruler.cpp:239 -#, fuzzy msgid "Max Size" -msgstr "Dimensions" +msgstr "Dimension maximale" #: ../src/widgets/ruler.cpp:240 msgid "Maximum size of the ruler" -msgstr "" +msgstr "Taille maximale de la règle" -#: ../src/widgets/select-toolbar.cpp:260 +#: ../src/widgets/select-toolbar.cpp:262 msgid "Transform by toolbar" msgstr "Transformer via la barre d'outils" -#: ../src/widgets/select-toolbar.cpp:339 +#: ../src/widgets/select-toolbar.cpp:341 msgid "Now stroke width is scaled when objects are scaled." -msgstr "Maintenant l'épaisseur de contour est redimensionnée quand les objets sont redimensionnés." +msgstr "" +"Maintenant l'épaisseur de contour est redimensionnée quand les " +"objets sont redimensionnés." -#: ../src/widgets/select-toolbar.cpp:341 +#: ../src/widgets/select-toolbar.cpp:343 msgid "Now stroke width is not scaled when objects are scaled." -msgstr "Maintenant l'épaisseur de contour n'est pas redimensionnée quand les objets sont redimensionnés." - -#: ../src/widgets/select-toolbar.cpp:352 -msgid "Now rounded rectangle corners are scaled when rectangles are scaled." -msgstr "Maintenant les coins arrondis de rectangles sont redimensionnés quand les rectangles sont redimensionnés." +msgstr "" +"Maintenant l'épaisseur de contour n'est pas redimensionnée " +"quand les objets sont redimensionnés." #: ../src/widgets/select-toolbar.cpp:354 -msgid "Now rounded rectangle corners are not scaled when rectangles are scaled." -msgstr "Maintenant les coins arrondis de rectangles ne sont pas redimensionnés quand les rectangles sont redimensionnés." +msgid "" +"Now rounded rectangle corners are scaled when rectangles are " +"scaled." +msgstr "" +"Maintenant les coins arrondis de rectangles sont redimensionnés quand les rectangles sont redimensionnés." -#: ../src/widgets/select-toolbar.cpp:365 -msgid "Now gradients are transformed along with their objects when those are transformed (moved, scaled, rotated, or skewed)." -msgstr "Maintenant les dégradés sont transformés lors des transformations de leurs objets (déplacement, redimensionnement, rotation ou inclinaison)." +#: ../src/widgets/select-toolbar.cpp:356 +msgid "" +"Now rounded rectangle corners are not scaled when rectangles " +"are scaled." +msgstr "" +"Maintenant les coins arrondis de rectangles ne sont pas " +"redimensionnés quand les rectangles sont redimensionnés." #: ../src/widgets/select-toolbar.cpp:367 -msgid "Now gradients remain fixed when objects are transformed (moved, scaled, rotated, or skewed)." -msgstr "Maintenant les dégradés restent fixes lors des transformations de leurs objets (déplacement, redimensionnement, rotation, ou inclinaison)." +msgid "" +"Now gradients are transformed along with their objects when " +"those are transformed (moved, scaled, rotated, or skewed)." +msgstr "" +"Maintenant les dégradés sont transformés lors des " +"transformations de leurs objets (déplacement, redimensionnement, rotation ou " +"inclinaison)." -#: ../src/widgets/select-toolbar.cpp:378 -msgid "Now patterns are transformed along with their objects when those are transformed (moved, scaled, rotated, or skewed)." -msgstr "Maintenant les motifs sont transformés lors des transformations de leurs objets (déplacement, redimensionnement, rotation ou inclinaison)." +#: ../src/widgets/select-toolbar.cpp:369 +msgid "" +"Now gradients remain fixed when objects are transformed " +"(moved, scaled, rotated, or skewed)." +msgstr "" +"Maintenant les dégradés restent fixes lors des transformations " +"de leurs objets (déplacement, redimensionnement, rotation, ou inclinaison)." #: ../src/widgets/select-toolbar.cpp:380 -msgid "Now patterns remain fixed when objects are transformed (moved, scaled, rotated, or skewed)." -msgstr "Maintenant les motifs restent fixes lors des transformations de leurs objets (déplacement, redimensionnement, rotation, ou inclinaison)." +msgid "" +"Now patterns are transformed along with their objects when " +"those are transformed (moved, scaled, rotated, or skewed)." +msgstr "" +"Maintenant les motifs sont transformés lors des " +"transformations de leurs objets (déplacement, redimensionnement, rotation ou " +"inclinaison)." + +#: ../src/widgets/select-toolbar.cpp:382 +msgid "" +"Now patterns remain fixed when objects are transformed (moved, " +"scaled, rotated, or skewed)." +msgstr "" +"Maintenant les motifs restent fixes lors des transformations " +"de leurs objets (déplacement, redimensionnement, rotation, ou inclinaison)." #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:500 msgctxt "Select toolbar" msgid "X position" msgstr "Position X" -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:500 msgctxt "Select toolbar" msgid "X:" msgstr "X :" -#: ../src/widgets/select-toolbar.cpp:500 +#: ../src/widgets/select-toolbar.cpp:502 msgid "Horizontal coordinate of selection" msgstr "Coordonnée horizontale de la sélection" -#: ../src/widgets/select-toolbar.cpp:504 +#: ../src/widgets/select-toolbar.cpp:506 msgctxt "Select toolbar" msgid "Y position" msgstr "Position Y" -#: ../src/widgets/select-toolbar.cpp:504 +#: ../src/widgets/select-toolbar.cpp:506 msgctxt "Select toolbar" msgid "Y:" msgstr "Y :" -#: ../src/widgets/select-toolbar.cpp:506 +#: ../src/widgets/select-toolbar.cpp:508 msgid "Vertical coordinate of selection" msgstr "Coordonnée verticale de la sélection" -#: ../src/widgets/select-toolbar.cpp:510 +#: ../src/widgets/select-toolbar.cpp:512 msgctxt "Select toolbar" msgid "Width" msgstr "Largeur" -#: ../src/widgets/select-toolbar.cpp:510 +#: ../src/widgets/select-toolbar.cpp:512 msgctxt "Select toolbar" msgid "W:" msgstr "L :" -#: ../src/widgets/select-toolbar.cpp:512 +#: ../src/widgets/select-toolbar.cpp:514 msgid "Width of selection" msgstr "Largeur de la sélection" -#: ../src/widgets/select-toolbar.cpp:519 +#: ../src/widgets/select-toolbar.cpp:521 msgid "Lock width and height" msgstr "Verrouiller la largeur et la hauteur" -#: ../src/widgets/select-toolbar.cpp:520 +#: ../src/widgets/select-toolbar.cpp:522 msgid "When locked, change both width and height by the same proportion" -msgstr "Si coché, la hauteur et la largeur sont modifiées selon la même proportion" +msgstr "" +"Si coché, la hauteur et la largeur sont modifiées selon la même proportion" -#: ../src/widgets/select-toolbar.cpp:529 +#: ../src/widgets/select-toolbar.cpp:531 msgctxt "Select toolbar" msgid "Height" msgstr "Hauteur" -#: ../src/widgets/select-toolbar.cpp:529 +#: ../src/widgets/select-toolbar.cpp:531 msgctxt "Select toolbar" msgid "H:" msgstr "H :" -#: ../src/widgets/select-toolbar.cpp:531 +#: ../src/widgets/select-toolbar.cpp:533 msgid "Height of selection" msgstr "Hauteur de la sélection" -#: ../src/widgets/select-toolbar.cpp:581 +#: ../src/widgets/select-toolbar.cpp:583 msgid "Scale rounded corners" msgstr "Redimensionner les coins arrondis des rectangles" -#: ../src/widgets/select-toolbar.cpp:592 +#: ../src/widgets/select-toolbar.cpp:594 msgid "Move gradients" msgstr "Déplacer les dégradés" -#: ../src/widgets/select-toolbar.cpp:603 +#: ../src/widgets/select-toolbar.cpp:605 msgid "Move patterns" msgstr "Déplacer les motifs" @@ -26847,157 +29343,158 @@ msgstr "Déplacer les motifs" msgid "Set attribute" msgstr "Définir l'attribut" -#: ../src/widgets/sp-color-icc-selector.cpp:257 +#: ../src/widgets/sp-color-icc-selector.cpp:234 msgid "CMS" msgstr "CMS" # Red (in RGB) -#: ../src/widgets/sp-color-icc-selector.cpp:355 -#: ../src/widgets/sp-color-scales.cpp:428 +#: ../src/widgets/sp-color-icc-selector.cpp:330 +#: ../src/widgets/sp-color-scales.cpp:414 msgid "_R:" msgstr "_R :" # Green (in RGB) #. TYPE_RGB_16 -#: ../src/widgets/sp-color-icc-selector.cpp:356 -#: ../src/widgets/sp-color-scales.cpp:431 +#: ../src/widgets/sp-color-icc-selector.cpp:331 +#: ../src/widgets/sp-color-scales.cpp:417 msgid "_G:" msgstr "_V :" # Blue (in RGB) -#: ../src/widgets/sp-color-icc-selector.cpp:357 -#: ../src/widgets/sp-color-scales.cpp:434 +#: ../src/widgets/sp-color-icc-selector.cpp:332 +#: ../src/widgets/sp-color-scales.cpp:420 msgid "_B:" msgstr "_B :" -#: ../src/widgets/sp-color-icc-selector.cpp:359 +#: ../src/widgets/sp-color-icc-selector.cpp:334 msgid "Gray" msgstr "Niveaux de gris" # Hue (in HSL) #. TYPE_GRAY_16 -#: ../src/widgets/sp-color-icc-selector.cpp:361 -#: ../src/widgets/sp-color-icc-selector.cpp:365 -#: ../src/widgets/sp-color-scales.cpp:454 +#: ../src/widgets/sp-color-icc-selector.cpp:336 +#: ../src/widgets/sp-color-icc-selector.cpp:340 +#: ../src/widgets/sp-color-scales.cpp:440 msgid "_H:" msgstr "_T :" # Saturation (in HSL) #. TYPE_HSV_16 -#: ../src/widgets/sp-color-icc-selector.cpp:362 -#: ../src/widgets/sp-color-icc-selector.cpp:367 -#: ../src/widgets/sp-color-scales.cpp:457 +#: ../src/widgets/sp-color-icc-selector.cpp:337 +#: ../src/widgets/sp-color-icc-selector.cpp:342 +#: ../src/widgets/sp-color-scales.cpp:443 msgid "_S:" msgstr "_S :" # Luminosity (in HSL) #. TYPE_HLS_16 -#: ../src/widgets/sp-color-icc-selector.cpp:366 -#: ../src/widgets/sp-color-scales.cpp:460 +#: ../src/widgets/sp-color-icc-selector.cpp:341 +#: ../src/widgets/sp-color-scales.cpp:446 msgid "_L:" msgstr "_L :" # Cyan (in CYMK) -#: ../src/widgets/sp-color-icc-selector.cpp:369 -#: ../src/widgets/sp-color-icc-selector.cpp:374 -#: ../src/widgets/sp-color-scales.cpp:482 +#: ../src/widgets/sp-color-icc-selector.cpp:344 +#: ../src/widgets/sp-color-icc-selector.cpp:349 +#: ../src/widgets/sp-color-scales.cpp:468 msgid "_C:" msgstr "_C :" # Magenta (in CYMK) #. TYPE_CMYK_16 #. TYPE_CMY_16 -#: ../src/widgets/sp-color-icc-selector.cpp:370 -#: ../src/widgets/sp-color-icc-selector.cpp:375 -#: ../src/widgets/sp-color-scales.cpp:485 +#: ../src/widgets/sp-color-icc-selector.cpp:345 +#: ../src/widgets/sp-color-icc-selector.cpp:350 +#: ../src/widgets/sp-color-scales.cpp:471 msgid "_M:" msgstr "_M :" -#: ../src/widgets/sp-color-icc-selector.cpp:371 -#: ../src/widgets/sp-color-icc-selector.cpp:376 -#: ../src/widgets/sp-color-scales.cpp:488 +#: ../src/widgets/sp-color-icc-selector.cpp:346 +#: ../src/widgets/sp-color-icc-selector.cpp:351 +#: ../src/widgets/sp-color-scales.cpp:474 msgid "_Y:" msgstr "_J :" # BlacK (in CYMK) -#: ../src/widgets/sp-color-icc-selector.cpp:372 -#: ../src/widgets/sp-color-scales.cpp:491 +#: ../src/widgets/sp-color-icc-selector.cpp:347 +#: ../src/widgets/sp-color-scales.cpp:477 msgid "_K:" msgstr "_N :" -#: ../src/widgets/sp-color-icc-selector.cpp:455 +#: ../src/widgets/sp-color-icc-selector.cpp:430 msgid "Fix" msgstr "Fixer" -#: ../src/widgets/sp-color-icc-selector.cpp:458 +#: ../src/widgets/sp-color-icc-selector.cpp:433 msgid "Fix RGB fallback to match icc-color() value." -msgstr "Fixer une valeur RVB de secours pour correspondre à la valeur icc-color()." +msgstr "" +"Fixer une valeur RVB de secours pour correspondre à la valeur icc-color()." # Alpha (opacity) #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:561 -#: ../src/widgets/sp-color-scales.cpp:437 -#: ../src/widgets/sp-color-scales.cpp:463 -#: ../src/widgets/sp-color-scales.cpp:494 -#: ../src/widgets/sp-color-wheel-selector.cpp:140 +#: ../src/widgets/sp-color-icc-selector.cpp:536 +#: ../src/widgets/sp-color-scales.cpp:423 +#: ../src/widgets/sp-color-scales.cpp:449 +#: ../src/widgets/sp-color-scales.cpp:480 +#: ../src/widgets/sp-color-wheel-selector.cpp:111 msgid "_A:" msgstr "_A :" -#: ../src/widgets/sp-color-icc-selector.cpp:572 -#: ../src/widgets/sp-color-icc-selector.cpp:585 -#: ../src/widgets/sp-color-scales.cpp:438 -#: ../src/widgets/sp-color-scales.cpp:439 -#: ../src/widgets/sp-color-scales.cpp:464 -#: ../src/widgets/sp-color-scales.cpp:465 -#: ../src/widgets/sp-color-scales.cpp:495 -#: ../src/widgets/sp-color-scales.cpp:496 -#: ../src/widgets/sp-color-wheel-selector.cpp:161 -#: ../src/widgets/sp-color-wheel-selector.cpp:185 +#: ../src/widgets/sp-color-icc-selector.cpp:547 +#: ../src/widgets/sp-color-icc-selector.cpp:560 +#: ../src/widgets/sp-color-scales.cpp:424 +#: ../src/widgets/sp-color-scales.cpp:425 +#: ../src/widgets/sp-color-scales.cpp:450 +#: ../src/widgets/sp-color-scales.cpp:451 +#: ../src/widgets/sp-color-scales.cpp:481 +#: ../src/widgets/sp-color-scales.cpp:482 +#: ../src/widgets/sp-color-wheel-selector.cpp:137 +#: ../src/widgets/sp-color-wheel-selector.cpp:166 msgid "Alpha (opacity)" msgstr "Alpha (opacité)" -#: ../src/widgets/sp-color-notebook.cpp:385 +#: ../src/widgets/sp-color-notebook.cpp:370 msgid "Color Managed" msgstr "Couleur gérée" -#: ../src/widgets/sp-color-notebook.cpp:392 +#: ../src/widgets/sp-color-notebook.cpp:377 msgid "Out of gamut!" msgstr "Hors gamut !" -#: ../src/widgets/sp-color-notebook.cpp:399 +#: ../src/widgets/sp-color-notebook.cpp:384 msgid "Too much ink!" msgstr "Trop d'encre !" #. Create RGBA entry and color preview -#: ../src/widgets/sp-color-notebook.cpp:416 +#: ../src/widgets/sp-color-notebook.cpp:401 msgid "RGBA_:" msgstr "RVBA _:" -#: ../src/widgets/sp-color-notebook.cpp:424 +#: ../src/widgets/sp-color-notebook.cpp:409 msgid "Hexadecimal RGBA value of the color" msgstr "Valeur hexadécimale RVBA de la couleur" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "RGB" msgstr "RVB" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "HSL" msgstr "TSL" -#: ../src/widgets/sp-color-scales.cpp:80 +#: ../src/widgets/sp-color-scales.cpp:53 msgid "CMYK" msgstr "CMJN" -#: ../src/widgets/sp-color-selector.cpp:64 +#: ../src/widgets/sp-color-selector.cpp:42 msgid "Unnamed" msgstr "Sans nom" -#: ../src/widgets/sp-xmlview-attr-list.cpp:64 +#: ../src/widgets/sp-xmlview-attr-list.cpp:59 msgid "Value" msgstr "Valeur" -#: ../src/widgets/sp-xmlview-content.cpp:179 +#: ../src/widgets/sp-xmlview-content.cpp:151 msgid "Type text in a text node" msgstr "Taper du texte dans un nœud texte" @@ -27083,12 +29580,16 @@ msgstr "Rayon intérieur :" #: ../src/widgets/spiral-toolbar.cpp:277 msgid "Radius of the innermost revolution (relative to the spiral size)" -msgstr "Rayon de la révolution intérieure (relatif aux dimensions de la spirale)" +msgstr "" +"Rayon de la révolution intérieure (relatif aux dimensions de la spirale)" -#: ../src/widgets/spiral-toolbar.cpp:290 -#: ../src/widgets/star-toolbar.cpp:565 -msgid "Reset shape parameters to defaults (use Inkscape Preferences > Tools to change defaults)" -msgstr "Restaurer les préférences de la forme par défaut (changez les valeurs par défaut dans Inkscape Préférences>Outils)" +#: ../src/widgets/spiral-toolbar.cpp:290 ../src/widgets/star-toolbar.cpp:567 +msgid "" +"Reset shape parameters to defaults (use Inkscape Preferences > Tools to " +"change defaults)" +msgstr "" +"Restaurer les préférences de la forme par défaut (changez les valeurs par " +"défaut dans Inkscape Préférences>Outils)" #. Width #: ../src/widgets/spray-toolbar.cpp:113 @@ -27101,7 +29602,9 @@ msgstr "(pulvérisation large)" #: ../src/widgets/spray-toolbar.cpp:116 msgid "The width of the spray area (relative to the visible canvas area)" -msgstr "Largeur de la zone de pulvérisation (relativement à la zone de travail visible)" +msgstr "" +"Largeur de la zone de pulvérisation (relativement à la zone de travail " +"visible)" #: ../src/widgets/spray-toolbar.cpp:129 msgid "(maximum mean)" @@ -27117,7 +29620,9 @@ msgstr "Rayon :" #: ../src/widgets/spray-toolbar.cpp:132 msgid "0 to spray a spot; increase to enlarge the ring radius" -msgstr "0 pour pulvériser sur un seul endroit ; augmenter pour élargir le rayon de pulvérisation" +msgstr "" +"0 pour pulvériser sur un seul endroit ; augmenter pour élargir le rayon de " +"pulvérisation" #. Standard_deviation #: ../src/widgets/spray-toolbar.cpp:145 @@ -27158,8 +29663,7 @@ msgstr "Pulvérisation par union des formes" msgid "Spray objects in a single path" msgstr "Pulvérisation fusionnée en un chemin unique" -#: ../src/widgets/spray-toolbar.cpp:185 -#: ../src/widgets/tweak-toolbar.cpp:253 +#: ../src/widgets/spray-toolbar.cpp:185 ../src/widgets/tweak-toolbar.cpp:253 msgid "Mode" msgstr "Mode" @@ -27181,8 +29685,11 @@ msgid "Adjusts the number of items sprayed per click" msgstr "Ajuste le nombre de d'éléments pulvérisés par clic" #: ../src/widgets/spray-toolbar.cpp:225 -msgid "Use the pressure of the input device to alter the amount of sprayed objects" -msgstr "Utiliser la pression du périphérique d'entrée pour modifier la quantité d'objets pulvérisés" +msgid "" +"Use the pressure of the input device to alter the amount of sprayed objects" +msgstr "" +"Utiliser la pression du périphérique d'entrée pour modifier la quantité " +"d'objets pulvérisés" #: ../src/widgets/spray-toolbar.cpp:235 msgid "(high rotation variation)" @@ -27198,8 +29705,12 @@ msgstr "Rotation :" #: ../src/widgets/spray-toolbar.cpp:240 #, no-c-format -msgid "Variation of the rotation of the sprayed objects; 0% for the same rotation than the original object" -msgstr "Variation de rotation des objets pulvérisés ; 0 % pour utiliser la même rotation que l'objet original" +msgid "" +"Variation of the rotation of the sprayed objects; 0% for the same rotation " +"than the original object" +msgstr "" +"Variation de rotation des objets pulvérisés ; 0 % pour utiliser la même " +"rotation que l'objet original" #: ../src/widgets/spray-toolbar.cpp:253 msgid "(high scale variation)" @@ -27217,177 +29728,180 @@ msgstr "Échelle :" #: ../src/widgets/spray-toolbar.cpp:258 #, no-c-format -msgid "Variation in the scale of the sprayed objects; 0% for the same scale than the original object" -msgstr "Variation de l'échelle des objets pulvérisés ; 0 % pour utiliser la même taille que l'objet original" +msgid "" +"Variation in the scale of the sprayed objects; 0% for the same scale than " +"the original object" +msgstr "" +"Variation de l'échelle des objets pulvérisés ; 0 % pour utiliser la même " +"taille que l'objet original" -#: ../src/widgets/star-toolbar.cpp:102 +#: ../src/widgets/star-toolbar.cpp:103 msgid "Star: Change number of corners" msgstr "Étoile : modifier le nombre de sommets" -#: ../src/widgets/star-toolbar.cpp:155 +#: ../src/widgets/star-toolbar.cpp:156 msgid "Star: Change spoke ratio" msgstr "Étoile : modifier le ratio des rayons" -#: ../src/widgets/star-toolbar.cpp:200 +#: ../src/widgets/star-toolbar.cpp:201 msgid "Make polygon" msgstr "Transformer en polygone" -#: ../src/widgets/star-toolbar.cpp:200 +#: ../src/widgets/star-toolbar.cpp:201 msgid "Make star" msgstr "Transformer en étoile" -#: ../src/widgets/star-toolbar.cpp:239 +#: ../src/widgets/star-toolbar.cpp:240 msgid "Star: Change rounding" msgstr "Étoile : modifier l'arrondi" -#: ../src/widgets/star-toolbar.cpp:279 +#: ../src/widgets/star-toolbar.cpp:280 msgid "Star: Change randomization" msgstr "Étoile : modifier le hasard" -#: ../src/widgets/star-toolbar.cpp:463 +#: ../src/widgets/star-toolbar.cpp:465 msgid "Regular polygon (with one handle) instead of a star" msgstr "Polygone régulier (avec une poignée) au lieu d'une étoile" -#: ../src/widgets/star-toolbar.cpp:470 +#: ../src/widgets/star-toolbar.cpp:472 msgid "Star instead of a regular polygon (with one handle)" msgstr "Étoile au lieu d'un polygone régulier (avec une poignée)" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "triangle/tri-star" msgstr "triangle/étoile à trois branches" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "square/quad-star" msgstr "carré/étoile à quatre branches" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "pentagon/five-pointed star" msgstr "pentagone/étoile à cinq branches" -#: ../src/widgets/star-toolbar.cpp:491 +#: ../src/widgets/star-toolbar.cpp:493 msgid "hexagon/six-pointed star" msgstr "hexagone/étoile à six branches" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Corners" msgstr "Sommets" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Corners:" msgstr "Sommets :" -#: ../src/widgets/star-toolbar.cpp:494 +#: ../src/widgets/star-toolbar.cpp:496 msgid "Number of corners of a polygon or star" msgstr "Nombre de sommets du polygone ou de l'étoile" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "thin-ray star" msgstr "étoile à branches fines" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "pentagram" msgstr "pentagramme" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "hexagram" msgstr "hexagramme" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "heptagram" msgstr "heptagramme" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "octagram" msgstr "octagramme" -#: ../src/widgets/star-toolbar.cpp:507 +#: ../src/widgets/star-toolbar.cpp:509 msgid "regular polygon" msgstr "polygone régulier" -#: ../src/widgets/star-toolbar.cpp:510 +#: ../src/widgets/star-toolbar.cpp:512 msgid "Spoke ratio" msgstr "Ratio des rayons" -#: ../src/widgets/star-toolbar.cpp:510 +#: ../src/widgets/star-toolbar.cpp:512 msgid "Spoke ratio:" msgstr "Ratio des rayons :" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/star-toolbar.cpp:513 +#: ../src/widgets/star-toolbar.cpp:515 msgid "Base radius to tip radius ratio" msgstr "Rapport du rayon intérieur sur le rayon extérieur" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "stretched" msgstr "étiré" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "twisted" msgstr "tordu" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "slightly pinched" msgstr "légèrement pincé" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "NOT rounded" msgstr "PAS arrondi" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "slightly rounded" msgstr "léger arrondi" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "visibly rounded" msgstr "arrondi visible" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "well rounded" msgstr "bien arrondi" -#: ../src/widgets/star-toolbar.cpp:531 +#: ../src/widgets/star-toolbar.cpp:533 msgid "amply rounded" msgstr "largement arrondi" -#: ../src/widgets/star-toolbar.cpp:531 -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:533 ../src/widgets/star-toolbar.cpp:548 msgid "blown up" msgstr "gonflé" -#: ../src/widgets/star-toolbar.cpp:534 +#: ../src/widgets/star-toolbar.cpp:536 msgid "Rounded:" msgstr "Arrondi :" -#: ../src/widgets/star-toolbar.cpp:534 +#: ../src/widgets/star-toolbar.cpp:536 msgid "How much rounded are the corners (0 for sharp)" msgstr "Quantité d'arrondi des sommets (0 pour pointu)" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "NOT randomized" msgstr "PAS aléatoire" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "slightly irregular" msgstr "légérement irrégulier" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "visibly randomized" msgstr "sensiblement aléatoire" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:548 msgid "strongly randomized" msgstr "très aléatoire" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Randomized" msgstr "Aléatoire" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Randomized:" msgstr "Hasard :" -#: ../src/widgets/star-toolbar.cpp:549 +#: ../src/widgets/star-toolbar.cpp:551 msgid "Scatter randomly the corners and angles" msgstr "Disperser aléatoirement les sommets et les angles" @@ -27396,10 +29910,6 @@ msgctxt "Marker" msgid "None" msgstr "Aucun" -#: ../src/widgets/stroke-style.cpp:192 -msgid "Stroke width" -msgstr "Épaisseur du contour" - #: ../src/widgets/stroke-style.cpp:194 msgctxt "Stroke width" msgid "_Width:" @@ -27469,26 +29979,31 @@ msgstr "Marqueurs :" #: ../src/widgets/stroke-style.cpp:358 msgid "Start Markers are drawn on the first node of a path or shape" -msgstr "Les marqueurs de début sont dessinés sur le premier nœud d'un chemin ou objet" +msgstr "" +"Les marqueurs de début sont dessinés sur le premier nœud d'un chemin ou objet" #: ../src/widgets/stroke-style.cpp:367 -msgid "Mid Markers are drawn on every node of a path or shape except the first and last nodes" -msgstr "Les marqueurs intermédiaires sont dessinés sur chaque nœud d'un chemin ou objet, à l'exception du premier et du dernier" +msgid "" +"Mid Markers are drawn on every node of a path or shape except the first and " +"last nodes" +msgstr "" +"Les marqueurs intermédiaires sont dessinés sur chaque nœud d'un chemin ou " +"objet, à l'exception du premier et du dernier" #: ../src/widgets/stroke-style.cpp:376 msgid "End Markers are drawn on the last node of a path or shape" -msgstr "Les marqueurs de fin sont dessinés sur le dernier nœud d'un chemin ou objet" +msgstr "" +"Les marqueurs de fin sont dessinés sur le dernier nœud d'un chemin ou objet" #: ../src/widgets/stroke-style.cpp:494 msgid "Set markers" msgstr "Appliquer des marqueurs" -#: ../src/widgets/stroke-style.cpp:1024 -#: ../src/widgets/stroke-style.cpp:1109 +#: ../src/widgets/stroke-style.cpp:1032 ../src/widgets/stroke-style.cpp:1117 msgid "Set stroke style" msgstr "Appliquer un style de contour" -#: ../src/widgets/stroke-style.cpp:1197 +#: ../src/widgets/stroke-style.cpp:1205 msgid "Set marker color" msgstr "Appliquer une couleur de marqueur" @@ -27544,193 +30059,190 @@ msgstr "Texte : modifier la rotation" msgid "Text: Change orientation" msgstr "Texte : modifier l'orientation" -#: ../src/widgets/text-toolbar.cpp:1221 +#: ../src/widgets/text-toolbar.cpp:1223 msgid "Font Family" msgstr "Famille de police" -#: ../src/widgets/text-toolbar.cpp:1222 +#: ../src/widgets/text-toolbar.cpp:1224 msgid "Select Font Family (Alt-X to access)" msgstr "Sélectionner une famille de police (Alt+X pour y accéder)" #. Focus widget #. Enable entry completion -#: ../src/widgets/text-toolbar.cpp:1232 +#: ../src/widgets/text-toolbar.cpp:1234 msgid "Select all text with this font-family" msgstr "Sélectionne tout texte ayant ces famille de fonte" -#: ../src/widgets/text-toolbar.cpp:1236 +#: ../src/widgets/text-toolbar.cpp:1238 msgid "Font not found on system" msgstr "Police indisponible sur votre système" -#: ../src/widgets/text-toolbar.cpp:1295 +#: ../src/widgets/text-toolbar.cpp:1297 msgid "Font Style" msgstr "Style de police" -#: ../src/widgets/text-toolbar.cpp:1296 +#: ../src/widgets/text-toolbar.cpp:1298 msgid "Font style" msgstr "Style de police" #. Name -#: ../src/widgets/text-toolbar.cpp:1313 +#: ../src/widgets/text-toolbar.cpp:1315 msgid "Toggle Superscript" msgstr "Inverser le mode exposant" #. Label -#: ../src/widgets/text-toolbar.cpp:1314 +#: ../src/widgets/text-toolbar.cpp:1316 msgid "Toggle superscript" msgstr "Inverser le mode exposant" #. Name -#: ../src/widgets/text-toolbar.cpp:1326 +#: ../src/widgets/text-toolbar.cpp:1328 msgid "Toggle Subscript" msgstr "Inverser le mode indice" #. Label -#: ../src/widgets/text-toolbar.cpp:1327 +#: ../src/widgets/text-toolbar.cpp:1329 msgid "Toggle subscript" msgstr "Inverser le mode indice" -#: ../src/widgets/text-toolbar.cpp:1368 +#: ../src/widgets/text-toolbar.cpp:1370 msgid "Justify" msgstr "Justifier" #. Name -#: ../src/widgets/text-toolbar.cpp:1375 +#: ../src/widgets/text-toolbar.cpp:1377 msgid "Alignment" msgstr "Alignement" #. Label -#: ../src/widgets/text-toolbar.cpp:1376 +#: ../src/widgets/text-toolbar.cpp:1378 msgid "Text alignment" msgstr "Alignement du texte" -#: ../src/widgets/text-toolbar.cpp:1403 +#: ../src/widgets/text-toolbar.cpp:1405 msgid "Horizontal" msgstr "Horizontal" -#: ../src/widgets/text-toolbar.cpp:1410 +#: ../src/widgets/text-toolbar.cpp:1412 msgid "Vertical" msgstr "Vertical" #. Label -#: ../src/widgets/text-toolbar.cpp:1417 +#: ../src/widgets/text-toolbar.cpp:1419 msgid "Text orientation" msgstr "Orientation du texte" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1440 +#: ../src/widgets/text-toolbar.cpp:1442 msgid "Smaller spacing" msgstr "Espacement plus faible" -#: ../src/widgets/text-toolbar.cpp:1440 -#: ../src/widgets/text-toolbar.cpp:1471 -#: ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1442 ../src/widgets/text-toolbar.cpp:1473 +#: ../src/widgets/text-toolbar.cpp:1504 msgctxt "Text tool" msgid "Normal" msgstr "Normal" -#: ../src/widgets/text-toolbar.cpp:1440 +#: ../src/widgets/text-toolbar.cpp:1442 msgid "Larger spacing" msgstr "Espacement plus important" #. name -#: ../src/widgets/text-toolbar.cpp:1445 +#: ../src/widgets/text-toolbar.cpp:1447 msgid "Line Height" msgstr "Hauteur de ligne" #. label -#: ../src/widgets/text-toolbar.cpp:1446 +#: ../src/widgets/text-toolbar.cpp:1448 msgid "Line:" msgstr "Ligne :" #. short label -#: ../src/widgets/text-toolbar.cpp:1447 +#: ../src/widgets/text-toolbar.cpp:1449 msgid "Spacing between lines (times font size)" msgstr "Espacement entre les lignes (nombre de fois la taille de la police)" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1471 -#: ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1473 ../src/widgets/text-toolbar.cpp:1504 msgid "Negative spacing" msgstr "Espacement négatif" -#: ../src/widgets/text-toolbar.cpp:1471 -#: ../src/widgets/text-toolbar.cpp:1502 +#: ../src/widgets/text-toolbar.cpp:1473 ../src/widgets/text-toolbar.cpp:1504 msgid "Positive spacing" msgstr "Espacement positif" #. name -#: ../src/widgets/text-toolbar.cpp:1476 +#: ../src/widgets/text-toolbar.cpp:1478 msgid "Word spacing" msgstr "Espacement intermot" #. label -#: ../src/widgets/text-toolbar.cpp:1477 +#: ../src/widgets/text-toolbar.cpp:1479 msgid "Word:" msgstr "Mot :" #. short label -#: ../src/widgets/text-toolbar.cpp:1478 +#: ../src/widgets/text-toolbar.cpp:1480 msgid "Spacing between words (px)" msgstr "Espacement entre les mots (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1507 +#: ../src/widgets/text-toolbar.cpp:1509 msgid "Letter spacing" msgstr "Interlettrage" #. label -#: ../src/widgets/text-toolbar.cpp:1508 +#: ../src/widgets/text-toolbar.cpp:1510 msgid "Letter:" msgstr "Lettre :" #. short label -#: ../src/widgets/text-toolbar.cpp:1509 +#: ../src/widgets/text-toolbar.cpp:1511 msgid "Spacing between letters (px)" msgstr "Espacement entre les lettres (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1538 +#: ../src/widgets/text-toolbar.cpp:1540 msgid "Kerning" msgstr "Crénage" #. label -#: ../src/widgets/text-toolbar.cpp:1539 +#: ../src/widgets/text-toolbar.cpp:1541 msgid "Kern:" msgstr "Crénage :" #. short label -#: ../src/widgets/text-toolbar.cpp:1540 +#: ../src/widgets/text-toolbar.cpp:1542 msgid "Horizontal kerning (px)" msgstr "Crénage horizontal (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1569 +#: ../src/widgets/text-toolbar.cpp:1571 msgid "Vertical Shift" msgstr "Décalage vertical" #. label -#: ../src/widgets/text-toolbar.cpp:1570 +#: ../src/widgets/text-toolbar.cpp:1572 msgid "Vert:" msgstr "Vertical :" #. short label -#: ../src/widgets/text-toolbar.cpp:1571 +#: ../src/widgets/text-toolbar.cpp:1573 msgid "Vertical shift (px)" msgstr "Décalage vertical (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1600 +#: ../src/widgets/text-toolbar.cpp:1602 msgid "Letter rotation" msgstr "Rotation des caractères" #. label -#: ../src/widgets/text-toolbar.cpp:1601 +#: ../src/widgets/text-toolbar.cpp:1603 msgid "Rot:" msgstr "Rotation :" #. short label -#: ../src/widgets/text-toolbar.cpp:1602 +#: ../src/widgets/text-toolbar.cpp:1604 msgid "Character rotation (degrees)" msgstr "Rotation des caractères (degrés)" @@ -27770,8 +30282,7 @@ msgstr "Style des chemins créés par le stylo" msgid "Style of new calligraphic strokes" msgstr "Style des nouveaux tracés calligraphiques" -#: ../src/widgets/toolbox.cpp:206 -#: ../src/widgets/toolbox.cpp:208 +#: ../src/widgets/toolbox.cpp:206 ../src/widgets/toolbox.cpp:208 msgid "TBD" msgstr "À définir" @@ -27841,7 +30352,7 @@ msgstr "Aux nœuds" #: ../src/widgets/toolbox.cpp:1754 msgid "Snap cusp nodes, incl. rectangle corners" -msgstr "" +msgstr "Aimanter aux points de rebroussement, coins de rectangle inclus" #: ../src/widgets/toolbox.cpp:1763 msgid "Smooth nodes" @@ -27850,6 +30361,7 @@ msgstr "Nœuds doux" #: ../src/widgets/toolbox.cpp:1763 msgid "Snap smooth nodes, incl. quadrant points of ellipses" msgstr "" +"Aimanter aux points de rebroussement, points de quadrant des ellipses inclus" #: ../src/widgets/toolbox.cpp:1772 msgid "Line Midpoints" @@ -27865,7 +30377,9 @@ msgstr "Autres" #: ../src/widgets/toolbox.cpp:1781 msgid "Snap other points (centers, guide origins, gradient handles, etc.)" -msgstr "Aimanter à d'autres points (centres, origines de guide, poignées de gradients, etc.)" +msgstr "" +"Aimanter à d'autres points (centres, origines de guide, poignées de " +"gradients, etc.)" #: ../src/widgets/toolbox.cpp:1789 msgid "Object Centers" @@ -27918,7 +30432,8 @@ msgstr "(ajustement large)" #: ../src/widgets/tweak-toolbar.cpp:128 msgid "The width of the tweak area (relative to the visible canvas area)" -msgstr "Largeur de la zone d'ajustement (relativement à la zone de travail visible)" +msgstr "" +"Largeur de la zone d'ajustement (relativement à la zone de travail visible)" #. Force #: ../src/widgets/tweak-toolbar.cpp:142 @@ -27979,7 +30494,8 @@ msgstr "Mode rotation" #: ../src/widgets/tweak-toolbar.cpp:192 msgid "Rotate objects, with Shift counterclockwise" -msgstr "Applique une rotation dans le sens horaire ; avec Maj, le sens est inversé" +msgstr "" +"Applique une rotation dans le sens horaire ; avec Maj, le sens est inversé" #: ../src/widgets/tweak-toolbar.cpp:198 msgid "Duplicate/delete mode" @@ -28011,7 +30527,8 @@ msgstr "Mode attraction/répulsion" #: ../src/widgets/tweak-toolbar.cpp:220 msgid "Attract parts of paths towards cursor; with Shift from cursor" -msgstr "Attire les chemins vers le curseur ; avec Maj, éloigne les chemins du curseur" +msgstr "" +"Attire les chemins vers le curseur ; avec Maj, éloigne les chemins du curseur" #: ../src/widgets/tweak-toolbar.cpp:226 msgid "Roughen mode" @@ -28106,12 +30623,18 @@ msgid "Fidelity:" msgstr "Fidélité:" #: ../src/widgets/tweak-toolbar.cpp:354 -msgid "Low fidelity simplifies paths; high fidelity preserves path features but may generate a lot of new nodes" -msgstr "Une basse fidélité simplifie les chemins; Une haute fidélité préserve les propriétés des chemins mais peut ajouter de nombreux nœuds." +msgid "" +"Low fidelity simplifies paths; high fidelity preserves path features but may " +"generate a lot of new nodes" +msgstr "" +"Une basse fidélité simplifie les chemins; Une haute fidélité préserve les " +"propriétés des chemins mais peut ajouter de nombreux nœuds." #: ../src/widgets/tweak-toolbar.cpp:373 msgid "Use the pressure of the input device to alter the force of tweak action" -msgstr "Utiliser la pression du périphérique d'entrée pour modifier la force de l'outil" +msgstr "" +"Utiliser la pression du périphérique d'entrée pour modifier la force de " +"l'outil" #: ../share/extensions/convert2dashes.py:93 msgid "" @@ -28127,7 +30650,9 @@ msgstr "Veuillez sélectionner un objet." #: ../share/extensions/dimension.py:134 msgid "Unable to process this object. Try changing it into a path first." -msgstr "Traitement de l'objet impossible. Essayer tout d'abord de le transformer en chemin." +msgstr "" +"Traitement de l'objet impossible. Essayer tout d'abord de le transformer en " +"chemin." #. report to the Inkscape console using errormsg #: ../share/extensions/draw_from_triangle.py:180 @@ -28162,17 +30687,25 @@ msgstr "Demi-périmètre (px) :" msgid "Area (px^2): " msgstr "Aire (px²) :" -#: ../share/extensions/dxf_input.py:504 +#: ../share/extensions/dxf_input.py:512 #, python-format -msgid "%d ENTITIES of type POLYLINE encountered and ignored. Please try to convert to Release 13 format using QCad." +msgid "" +"%d ENTITIES of type POLYLINE encountered and ignored. Please try to convert " +"to Release 13 format using QCad." msgstr "" #: ../share/extensions/dxf_outlines.py:49 -msgid "Failed to import the numpy or numpy.linalg modules. These modules are required by this extension. Please install them and try again." -msgstr "Échec lors de l'import des modules numpy.linalg. Ces modules sont nécessaires à cette extension. Veuillez les installer et réessayer." +msgid "" +"Failed to import the numpy or numpy.linalg modules. These modules are " +"required by this extension. Please install them and try again." +msgstr "" +"Échec lors de l'import des modules numpy.linalg. Ces modules sont " +"nécessaires à cette extension. Veuillez les installer et réessayer." #: ../share/extensions/dxf_outlines.py:300 -msgid "Error: Field 'Layer match name' must be filled when using 'By name match' option" +msgid "" +"Error: Field 'Layer match name' must be filled when using 'By name match' " +"option" msgstr "" #: ../share/extensions/dxf_outlines.py:341 @@ -28181,8 +30714,12 @@ msgid "Warning: Layer '%s' not found!" msgstr "Attention : calque '%s' introuvable !" #: ../share/extensions/embedimage.py:84 -msgid "No xlink:href or sodipodi:absref attributes found, or they do not point to an existing file! Unable to embed image." -msgstr "Les attributs xlink:href et sodipodi:absref n'ont pas été trouvés, ou n'indiquent pas un fichier existant ! Impossible d'incorporer l'image." +msgid "" +"No xlink:href or sodipodi:absref attributes found, or they do not point to " +"an existing file! Unable to embed image." +msgstr "" +"Les attributs xlink:href et sodipodi:absref n'ont pas été trouvés, ou " +"n'indiquent pas un fichier existant ! Impossible d'incorporer l'image." #: ../share/extensions/embedimage.py:86 #, python-format @@ -28191,12 +30728,20 @@ msgstr "Désolé, nous ne pouvons pas localiser %s" #: ../share/extensions/embedimage.py:111 #, python-format -msgid "%s is not of type image/png, image/jpeg, image/bmp, image/gif, image/tiff, or image/x-icon" -msgstr "%s n'est pas du type image/png, image/jpeg, image/bmp, image/gif, image/tiff, ou image/x-icon" +msgid "" +"%s is not of type image/png, image/jpeg, image/bmp, image/gif, image/tiff, " +"or image/x-icon" +msgstr "" +"%s n'est pas du type image/png, image/jpeg, image/bmp, image/gif, image/" +"tiff, ou image/x-icon" #: ../share/extensions/export_gimp_palette.py:16 -msgid "The export_gpl.py module requires PyXML. Please download the latest version from http://pyxml.sourceforge.net/." -msgstr "Le module d'exportation _gpl.py nécessite PyXML. Veuillez en télécharger la dernière version à l'adresse http://pyxml.sourceforge.net/." +msgid "" +"The export_gpl.py module requires PyXML. Please download the latest version " +"from http://pyxml.sourceforge.net/." +msgstr "" +"Le module d'exportation _gpl.py nécessite PyXML. Veuillez en télécharger la " +"dernière version à l'adresse http://pyxml.sourceforge.net/." #: ../share/extensions/extractimage.py:68 #, python-format @@ -28214,10 +30759,14 @@ msgstr "Au moins deux chemins doivent être sélectionnés" #: ../share/extensions/funcplot.py:48 msgid "x-interval cannot be zero. Please modify 'Start X' or 'End X'" msgstr "" +"L'intervalle en X ne peut être nul. Veuillez modifier la valeur X de début " +"ou la valeur X de fin" #: ../share/extensions/funcplot.py:60 msgid "y-interval cannot be zero. Please modify 'Y top' or 'Y bottom'" msgstr "" +"L'intervalle en Y ne peut être nul. Veuillez modifier la valeur Y basse ou " +"la valeur Y haute" #: ../share/extensions/funcplot.py:315 msgid "Please select a rectangle" @@ -28229,15 +30778,21 @@ msgstr "Veuillez sélectionner un rectangle" #: ../share/extensions/gcodetools.py:6232 #: ../share/extensions/gcodetools.py:6427 msgid "No paths are selected! Trying to work on all available paths." -msgstr "Aucun chemin n'est sélectionné ! Tentative d'utilisation de tous les chemins disponibles." +msgstr "" +"Aucun chemin n'est sélectionné ! Tentative d'utilisation de tous les chemins " +"disponibles." #: ../share/extensions/gcodetools.py:3324 -msgid "Noting is selected. Please select something." -msgstr "Rien n'est sélectionné. Merci de sélectionner quelque chose." +msgid "Nothing is selected. Please select something." +msgstr "Rien n'est sélectionné. Veuillez de sélectionner quelque chose." #: ../share/extensions/gcodetools.py:3864 -msgid "Directory does not exist! Please specify existing directory at Preferences tab!" -msgstr "Le dossier n'existe pas ! Veuillez spécifier un dossier existant dans l'onglet Préférences." +msgid "" +"Directory does not exist! Please specify existing directory at Preferences " +"tab!" +msgstr "" +"Le dossier n'existe pas ! Veuillez spécifier un dossier existant dans " +"l'onglet Préférences." #: ../share/extensions/gcodetools.py:3894 #, python-format @@ -28250,8 +30805,12 @@ msgstr "" #: ../share/extensions/gcodetools.py:4040 #, python-format -msgid "Orientation points for '%s' layer have not been found! Please add orientation points using Orientation tab!" -msgstr "Les points d'orientation n'ont pas été définis pour le calque '%s'. Veuillez ajouter des points d'orientation avec l'onglet Orientation." +msgid "" +"Orientation points for '%s' layer have not been found! Please add " +"orientation points using Orientation tab!" +msgstr "" +"Les points d'orientation n'ont pas été définis pour le calque '%s'. Veuillez " +"ajouter des points d'orientation avec l'onglet Orientation." #: ../share/extensions/gcodetools.py:4047 #, python-format @@ -28260,43 +30819,68 @@ msgstr "Le calque '%s' contient plus d'un groupe de points d'orientation" #: ../share/extensions/gcodetools.py:4078 #: ../share/extensions/gcodetools.py:4080 -msgid "Orientation points are wrong! (if there are two orientation points they should not be the same. If there are three orientation points they should not be in a straight line.)" +msgid "" +"Orientation points are wrong! (if there are two orientation points they " +"should not be the same. If there are three orientation points they should " +"not be in a straight line.)" msgstr "" #: ../share/extensions/gcodetools.py:4250 #, python-format -msgid "Warning! Found bad orientation points in '%s' layer. Resulting Gcode could be corrupt!" -msgstr "Attention ! Des mauvais points d'orientation ont été trouvés dans le calque '%s'. Le Gcode généré pourrait être corrompu !" +msgid "" +"Warning! Found bad orientation points in '%s' layer. Resulting Gcode could " +"be corrupt!" +msgstr "" +"Attention ! Des mauvais points d'orientation ont été trouvés dans le calque " +"'%s'. Le Gcode généré pourrait être corrompu !" #: ../share/extensions/gcodetools.py:4263 #, python-format -msgid "Warning! Found bad graffiti reference point in '%s' layer. Resulting Gcode could be corrupt!" -msgstr "Attention ! Un mauvais point de référence graffiti a été trouvé dans le calque '%s'. Le Gcode généré pourrait être corrompu !" +msgid "" +"Warning! Found bad graffiti reference point in '%s' layer. Resulting Gcode " +"could be corrupt!" +msgstr "" +"Attention ! Un mauvais point de référence graffiti a été trouvé dans le " +"calque '%s'. Le Gcode généré pourrait être corrompu !" #. xgettext:no-pango-format #: ../share/extensions/gcodetools.py:4284 msgid "" -"This extension works with Paths and Dynamic Offsets and groups of them only! All other objects will be ignored!\n" +"This extension works with Paths and Dynamic Offsets and groups of them only! " +"All other objects will be ignored!\n" "Solution 1: press Path->Object to path or Shift+Ctrl+C.\n" "Solution 2: Path->Dynamic offset or Ctrl+J.\n" -"Solution 3: export all contours to PostScript level 2 (File->Save As->.ps) and File->Import this file." +"Solution 3: export all contours to PostScript level 2 (File->Save As->.ps) " +"and File->Import this file." msgstr "" -"Cette extension ne fonctionne qu'avec des chemins ou des offsets dynamiques (ou des groupes contenant seulement ces types d'objets). Tout autre objet sera ignoré.\n" +"Cette extension ne fonctionne qu'avec des chemins ou des offsets dynamiques " +"(ou des groupes contenant seulement ces types d'objets). Tout autre objet " +"sera ignoré.\n" "Solution 1 : lancez la commande Chemin>Objet en chemin (ou Maj+Ctrl+C).\n" "Solution 2 : Chemin>Offset dynamique (ou Ctrl+J).\n" -"Solution 3 : exportez tous les contours en PostScript niveau 2 (Fichier>Enregistrer sous>.ps) puis réimportez le fichier avec Fichier>Importer." +"Solution 3 : exportez tous les contours en PostScript niveau 2 " +"(Fichier>Enregistrer sous>.ps) puis réimportez le fichier avec " +"Fichier>Importer." #: ../share/extensions/gcodetools.py:4290 -msgid "Document has no layers! Add at least one layer using layers panel (Ctrl+Shift+L)" -msgstr "Le document n'a pas de calque ! Veuillez en ajouter au moins un avec la boîte de dialogue des calques (Maj+Ctrl+L)" +msgid "" +"Document has no layers! Add at least one layer using layers panel (Ctrl+Shift" +"+L)" +msgstr "" +"Le document n'a pas de calque ! Veuillez en ajouter au moins un avec la " +"boîte de dialogue des calques (Maj+Ctrl+L)" #: ../share/extensions/gcodetools.py:4294 -msgid "Warning! There are some paths in the root of the document, but not in any layer! Using bottom-most layer for them." +msgid "" +"Warning! There are some paths in the root of the document, but not in any " +"layer! Using bottom-most layer for them." msgstr "" #: ../share/extensions/gcodetools.py:4371 #, python-format -msgid "Warning! Tool's and default tool's parameter's (%s) types are not the same ( type('%s') != type('%s') )." +msgid "" +"Warning! Tool's and default tool's parameter's (%s) types are not the same " +"( type('%s') != type('%s') )." msgstr "" #: ../share/extensions/gcodetools.py:4374 @@ -28311,17 +30895,26 @@ msgstr "Le calque '%s' contient plus d'un outil !" #: ../share/extensions/gcodetools.py:4391 #, python-format -msgid "Can not find tool for '%s' layer! Please add one with Tools library tab!" +msgid "" +"Can not find tool for '%s' layer! Please add one with Tools library tab!" msgstr "" #: ../share/extensions/gcodetools.py:4553 #: ../share/extensions/gcodetools.py:4708 -msgid "Warning: One or more paths do not have 'd' parameter, try to Ungroup (Ctrl+Shift+G) and Object to Path (Ctrl+Shift+C)!" -msgstr "Attention : au moins un chemin n'a pas de paramètre 'd'. Veuillez dégrouper (Maj+Ctrl+G) et transformer l'objet en chemin (Maj+Ctrl+C)." +msgid "" +"Warning: One or more paths do not have 'd' parameter, try to Ungroup (Ctrl" +"+Shift+G) and Object to Path (Ctrl+Shift+C)!" +msgstr "" +"Attention : au moins un chemin n'a pas de paramètre 'd'. Veuillez dégrouper " +"(Maj+Ctrl+G) et transformer l'objet en chemin (Maj+Ctrl+C)." #: ../share/extensions/gcodetools.py:4667 -msgid "Noting is selected. Please select something to convert to drill point (dxfpoint) or clear point sign." +#, fuzzy +msgid "" +"Nothing is selected. Please select something to convert to drill point " +"(dxfpoint) or clear point sign." msgstr "" +"Rien n'est sélectionné. Veuillez sélectionner quelque chose à convertir en " #: ../share/extensions/gcodetools.py:4750 #: ../share/extensions/gcodetools.py:4996 @@ -28332,7 +30925,9 @@ msgstr "Cette extension nécessite la sélection d'un chemin." #: ../share/extensions/gcodetools.py:5002 #, python-format msgid "Tool diameter must be > 0 but tool's diameter on '%s' layer is not!" -msgstr "Le diamètre d'outil doit être supérieur à 0, ce qui n'est pas le cas pour l'outil du calque '%s' !" +msgstr "" +"Le diamètre d'outil doit être supérieur à 0, ce qui n'est pas le cas pour " +"l'outil du calque '%s' !" #: ../share/extensions/gcodetools.py:4767 #: ../share/extensions/gcodetools.py:4956 @@ -28363,12 +30958,18 @@ msgid "No need to engrave sharp angles." msgstr "Il n'est pas nécessaire de graver les angles aigus." #: ../share/extensions/gcodetools.py:5848 -msgid "Active layer already has orientation points! Remove them or select another layer!" -msgstr "Le calque actif possède déjà des points d'orientation. Veuillez les supprimer ou sélectionner un autre calque." +msgid "" +"Active layer already has orientation points! Remove them or select another " +"layer!" +msgstr "" +"Le calque actif possède déjà des points d'orientation. Veuillez les " +"supprimer ou sélectionner un autre calque." #: ../share/extensions/gcodetools.py:5893 msgid "Active layer already has a tool! Remove it or select another layer!" -msgstr "Le calque actif possède déjà un outil. Veuillez le supprimer ou sélectionner un autre calque." +msgstr "" +"Le calque actif possède déjà un outil. Veuillez le supprimer ou sélectionner " +"un autre calque." #: ../share/extensions/gcodetools.py:6008 msgid "Selection is empty! Will compute whole drawing." @@ -28399,21 +31000,37 @@ msgstr "" #: ../share/extensions/gcodetools.py:6662 #, python-format msgid "" -"Select one of the action tabs - Path to Gcode, Area, Engraving, DXF points, Orientation, Offset, Lathe or Tools library.\n" +"Select one of the action tabs - Path to Gcode, Area, Engraving, DXF points, " +"Orientation, Offset, Lathe or Tools library.\n" " Current active tab id is %s" msgstr "" +"Sélectionnez un des onglets d'action : Chemin vers G-code, Aire, Gravure, " +"Points DXF, Orientation, Tour ou Bibliothèque d'outils.\n" +" L'onglet actif est actuellement %s" #: ../share/extensions/gcodetools.py:6668 -msgid "Orientation points have not been defined! A default set of orientation points has been automatically added." +msgid "" +"Orientation points have not been defined! A default set of orientation " +"points has been automatically added." msgstr "" +"Aucun point d'orientation n'a été défini. Un ensemble de points " +"d'orientation par défaut a été automatiquement ajouté." #: ../share/extensions/gcodetools.py:6672 -msgid "Cutting tool has not been defined! A default tool has been automatically added." +msgid "" +"Cutting tool has not been defined! A default tool has been automatically " +"added." msgstr "" +"Aucun outil de découpe n'a été défini. Un outil par défaut a été " +"automatiquement ajouté." #: ../share/extensions/generate_voronoi.py:35 -msgid "Failed to import the subprocess module. Please report this as a bug at: https://bugs.launchpad.net/inkscape." +msgid "" +"Failed to import the subprocess module. Please report this as a bug at: " +"https://bugs.launchpad.net/inkscape." msgstr "" +"Échec lors de l'importation du module subprocess. Veuillez rapporter ce " +"défaut à : https://bugs.launchpad.net/inkscape." #: ../share/extensions/generate_voronoi.py:36 msgid "Python version is: " @@ -28453,40 +31070,48 @@ msgid "No HPGL data found." msgstr "Aucune donnée HPGL n'a été trouvée." #: ../share/extensions/hpgl_input.py:66 -msgid "The HPGL data contained unknown (unsupported) commands, there is a possibility that the drawing is missing some content." +msgid "" +"The HPGL data contained unknown (unsupported) commands, there is a " +"possibility that the drawing is missing some content." msgstr "" +"Les données HPGL contiennent des commandes inconnues (et non supportées), et " +"certains contenus pourraient ne pas apparaître sur le dessin." #. issue error if no paths found #: ../share/extensions/hpgl_output.py:58 -msgid "No paths where found. Please convert all objects you want to save into paths." +msgid "" +"No paths where found. Please convert all objects you want to save into paths." msgstr "" #: ../share/extensions/inkex.py:109 #, python-format msgid "" -"The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from http://cheeseshop.python.org/pypi/lxml/, or install it through your package manager by a command like: sudo apt-get install python-lxml\n" +"The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore " +"this extension. Please download and install the latest version from http://" +"cheeseshop.python.org/pypi/lxml/, or install it through your package manager " +"by a command like: sudo apt-get install python-lxml\n" "\n" "Technical details:\n" "%s" msgstr "" -"La fantastique classe lxml pour libxml2 est nécessaire à inkex.py et par conséquent à cette extension. Veuillez en télécharger et installer la dernière version à partir du site http://cheeseshop.python.org/pypi/lxml/, ou l'installer directement avec votre gestionnaire de paquet avec une commande du type : sudo apt-get install python-lxml\n" +"La fantastique classe lxml pour libxml2 est nécessaire à inkex.py et par " +"conséquent à cette extension. Veuillez en télécharger et installer la " +"dernière version à partir du site http://cheeseshop.python.org/pypi/lxml/, " +"ou l'installer directement avec votre gestionnaire de paquet avec une " +"commande du type : sudo apt-get install python-lxml\n" "\n" "Détails techniques :\n" "%s" #: ../share/extensions/inkex.py:162 -#, fuzzy, python-format +#, python-format msgid "Unable to open specified file: %s" -msgstr "" -"Échec de l'écriture dans le fichier spécifié.\n" -"%s" +msgstr "Échec à l'ouverture du fichier spécifié : %s" #: ../share/extensions/inkex.py:171 -#, fuzzy, python-format +#, python-format msgid "Unable to open object member file: %s" -msgstr "" -"Échec de l'écriture dans le fichier spécifié.\n" -"%s" +msgstr "Échec à l'ouverture du fichier objet membre : %s" #: ../share/extensions/inkex.py:276 #, python-format @@ -28508,10 +31133,16 @@ msgstr "Aucune sélection à interpoler" #: ../share/extensions/jessyInk_video.py:49 #: ../share/extensions/jessyInk_view.py:67 msgid "" -"The JessyInk script is not installed in this SVG file or has a different version than the JessyInk extensions. Please select \"install/update...\" from the \"JessyInk\" sub-menu of the \"Extensions\" menu to install or update the JessyInk script.\n" +"The JessyInk script is not installed in this SVG file or has a different " +"version than the JessyInk extensions. Please select \"install/update...\" " +"from the \"JessyInk\" sub-menu of the \"Extensions\" menu to install or " +"update the JessyInk script.\n" "\n" msgstr "" -"Le script JessyInk n'est pas installé dans ce fichier SVG ou est d'une version différente de l'extension. Veuillez utiliser la commande Extensions>JessyInk>Installation/mise à jour pour installer ou mettre à jour le script.\n" +"Le script JessyInk n'est pas installé dans ce fichier SVG ou est d'une " +"version différente de l'extension. Veuillez utiliser la commande " +"Extensions>JessyInk>Installation/mise à jour pour installer ou mettre à jour " +"le script.\n" "\n" #: ../share/extensions/jessyInk_autoTexts.py:48 @@ -28527,12 +31158,17 @@ msgid "" "Node with id '{0}' is not a suitable text node and was therefore ignored.\n" "\n" msgstr "" -"Le nœud d'id '{0}' n'est pas un nœud texte approprié et a été de fait ignoré.\n" +"Le nœud d'id '{0}' n'est pas un nœud texte approprié et a été de fait " +"ignoré.\n" "\n" #: ../share/extensions/jessyInk_effects.py:53 -msgid "No object selected. Please select the object you want to assign an effect to and then press apply.\n" -msgstr "Aucun objet sélectionné. Veuillez préalablement sélectionner l'objet auquel vous souhaitez assigner un effet.\n" +msgid "" +"No object selected. Please select the object you want to assign an effect to " +"and then press apply.\n" +msgstr "" +"Aucun objet sélectionné. Veuillez préalablement sélectionner l'objet auquel " +"vous souhaitez assigner un effet.\n" #: ../share/extensions/jessyInk_export.py:82 msgid "Could not find Inkscape command.\n" @@ -28543,7 +31179,9 @@ msgid "Layer not found. Removed current master slide selection.\n" msgstr "" #: ../share/extensions/jessyInk_masterSlide.py:58 -msgid "More than one layer with this name found. Removed current master slide selection.\n" +msgid "" +"More than one layer with this name found. Removed current master slide " +"selection.\n" msgstr "" #: ../share/extensions/jessyInk_summary.py:69 @@ -28600,7 +31238,8 @@ msgstr "" #: ../share/extensions/jessyInk_summary.py:123 msgid "{0}\t\"{1}\" (object id \"{2}\") will be replaced by \"{3}\"." -msgstr "{0}\t\"{1}\" (l'objet d'identifiant \"{2}\") sera remplacé par \"{3}\"." +msgstr "" +"{0}\t\"{1}\" (l'objet d'identifiant \"{2}\") sera remplacé par \"{3}\"." #: ../share/extensions/jessyInk_summary.py:168 msgid "" @@ -28663,10 +31302,13 @@ msgstr "" #: ../share/extensions/jessyInk_view.py:75 msgid "More than one object selected. Please select only one object.\n" -msgstr "Plus d'un objet est sélectionné. Veuillez sélectionner un seul objet.\n" +msgstr "" +"Plus d'un objet est sélectionné. Veuillez sélectionner un seul objet.\n" #: ../share/extensions/jessyInk_view.py:79 -msgid "No object selected. Please select the object you want to assign a view to and then press apply.\n" +msgid "" +"No object selected. Please select the object you want to assign a view to " +"and then press apply.\n" msgstr "" #: ../share/extensions/markers_strokepaint.py:83 @@ -28680,13 +31322,19 @@ msgid "unable to locate marker: %s" msgstr "Impossible de localiser le marqueur %s" #: ../share/extensions/measure.py:50 -#, fuzzy -msgid "Failed to import the numpy modules. These modules are required by this extension. Please install them and try again. On a Debian-like system this can be done with the command, sudo apt-get install python-numpy." -msgstr "Échec lors de l'import des modules numpy.linalg. Ces modules sont nécessaires à cette extension. Veuillez les installer et réessayer. Sur un système de type Debian, cette installation peut être réalisée avec la commande : sudo apt-get install python-numpy." +msgid "" +"Failed to import the numpy modules. These modules are required by this " +"extension. Please install them and try again. On a Debian-like system this " +"can be done with the command, sudo apt-get install python-numpy." +msgstr "" +"Échec lors de l'importation des modules numpy. Ces modules sont nécessaires " +"à cette extension. Veuillez les installer et réessayer. Sur un système de " +"type Debian, cette installation peut être réalisée avec la commande : sudo " +"apt-get install python-numpy." #: ../share/extensions/measure.py:112 msgid "Area is zero, cannot calculate Center of Mass" -msgstr "" +msgstr "L'aire est nulle, calcul du barycentre impossible" #: ../share/extensions/pathalongpath.py:208 #: ../share/extensions/pathscatter.py:228 @@ -28700,7 +31348,8 @@ msgid "" "Please choose a larger object or set 'Space between copies' > 0" msgstr "" "La taille du motif est trop petite.\n" -"Veuillez choisir un objet plus grand ou paramétrer « Espacement entre les copies » avec une valeur supérieure à zéro." +"Veuillez choisir un objet plus grand ou paramétrer « Espacement entre les " +"copies » avec une valeur supérieure à zéro." #: ../share/extensions/pathalongpath.py:277 msgid "" @@ -28714,8 +31363,16 @@ msgid "Please first convert objects to paths! (Got [%s].)" msgstr "Veuillez d'abord convertir les objets en chemins ! (Obtenu [%s].)" #: ../share/extensions/perspective.py:45 -msgid "Failed to import the numpy or numpy.linalg modules. These modules are required by this extension. Please install them and try again. On a Debian-like system this can be done with the command, sudo apt-get install python-numpy." -msgstr "Échec lors de l'import des modules numpy.linalg. Ces modules sont nécessaires à cette extension. Veuillez les installer et réessayer. Sur un système de type Debian, cette installation peut être réalisée avec la commande : sudo apt-get install python-numpy." +msgid "" +"Failed to import the numpy or numpy.linalg modules. These modules are " +"required by this extension. Please install them and try again. On a Debian-" +"like system this can be done with the command, sudo apt-get install python-" +"numpy." +msgstr "" +"Échec lors de l'import des modules numpy.linalg. Ces modules sont " +"nécessaires à cette extension. Veuillez les installer et réessayer. Sur un " +"système de type Debian, cette installation peut être réalisée avec la " +"commande : sudo apt-get install python-numpy." #: ../share/extensions/perspective.py:61 #: ../share/extensions/summersnight.py:52 @@ -28729,8 +31386,11 @@ msgstr "" #: ../share/extensions/perspective.py:68 #: ../share/extensions/summersnight.py:60 -msgid "This extension requires that the second selected path be four nodes long." -msgstr "Cette extension exige que le second chemin sélectionné contienne quatre nœuds." +msgid "" +"This extension requires that the second selected path be four nodes long." +msgstr "" +"Cette extension exige que le second chemin sélectionné contienne quatre " +"nœuds." #: ../share/extensions/perspective.py:94 #: ../share/extensions/summersnight.py:93 @@ -28761,20 +31421,30 @@ msgstr "" #. issue error if no paths found #: ../share/extensions/plotter.py:66 -msgid "No paths where found. Please convert all objects you want to plot into paths." +msgid "" +"No paths where found. Please convert all objects you want to plot into paths." msgstr "" #: ../share/extensions/plotter.py:143 msgid "pySerial is not installed." -msgstr "" +msgstr "pySerial n'est pas installé." #: ../share/extensions/plotter.py:163 -msgid "Could not open port. Please check that your plotter is running, connected and the settings are correct." +msgid "" +"Could not open port. Please check that your plotter is running, connected " +"and the settings are correct." msgstr "" #: ../share/extensions/polyhedron_3d.py:65 -msgid "Failed to import the numpy module. This module is required by this extension. Please install it and try again. On a Debian-like system this can be done with the command 'sudo apt-get install python-numpy'." -msgstr "Échec lors de l'import du module numpy. Ce module est nécessaire à cette extension. Veuillez l'installer et réessayer. Sur un système de type Debian, cette installation peut être réalisée avec la commande : sudo apt-get install python-numpy." +msgid "" +"Failed to import the numpy module. This module is required by this " +"extension. Please install it and try again. On a Debian-like system this " +"can be done with the command 'sudo apt-get install python-numpy'." +msgstr "" +"Échec lors de l'import du module numpy. Ce module est nécessaire à cette " +"extension. Veuillez l'installer et réessayer. Sur un système de type Debian, " +"cette installation peut être réalisée avec la commande : sudo apt-get " +"install python-numpy." #: ../share/extensions/polyhedron_3d.py:336 msgid "No face data found in specified file." @@ -28782,7 +31452,9 @@ msgstr "Le fichier spécifié ne contient aucune donnée de facette." #: ../share/extensions/polyhedron_3d.py:337 msgid "Try selecting \"Edge Specified\" in the Model File tab.\n" -msgstr "Essayez de sélectionner « défini par les bords » dans l'onglet Fichier modèle .\n" +msgstr "" +"Essayez de sélectionner « défini par les bords » dans l'onglet Fichier " +"modèle .\n" #: ../share/extensions/polyhedron_3d.py:343 msgid "No edge data found in specified file." @@ -28790,12 +31462,19 @@ msgstr "Le fichier spécifié ne contient aucune donnée de bord." #: ../share/extensions/polyhedron_3d.py:344 msgid "Try selecting \"Face Specified\" in the Model File tab.\n" -msgstr "Essayez de sélectionner « défini par les facettes » dans l'onglet Fichier modèle .\n" +msgstr "" +"Essayez de sélectionner « défini par les facettes » dans l'onglet Fichier " +"modèle .\n" #. we cannot generate a list of faces from the edges without a lot of computation #: ../share/extensions/polyhedron_3d.py:522 -msgid "Face Data Not Found. Ensure file contains face data, and check the file is imported as \"Face-Specified\" under the \"Model File\" tab.\n" -msgstr "Aucune donnée de facette. Vérifiez que le fichier contient bien ces données, et qu'il est bien importé avec l'option « Défini par les facettes » dans l'onglet « Fichier modèle ».\n" +msgid "" +"Face Data Not Found. Ensure file contains face data, and check the file is " +"imported as \"Face-Specified\" under the \"Model File\" tab.\n" +msgstr "" +"Aucune donnée de facette. Vérifiez que le fichier contient bien ces données, " +"et qu'il est bien importé avec l'option « Défini par les facettes » dans " +"l'onglet « Fichier modèle ».\n" #: ../share/extensions/polyhedron_3d.py:524 msgid "Internal Error. No view type selected\n" @@ -28803,7 +31482,7 @@ msgstr "Erreur interne. Aucun type de vue n'est sélectionné\n" #: ../share/extensions/print_win32_vector.py:41 msgid "sorry, this will run only on Windows, exiting..." -msgstr "" +msgstr "Cette extension ne fonctionne que sous Windows." #: ../share/extensions/print_win32_vector.py:179 msgid "Failed to open default printer" @@ -28829,8 +31508,12 @@ msgid "Please enter an input text" msgstr "Veuillez saisir une chaîne de caractères" #: ../share/extensions/replace_font.py:133 -msgid "Couldn't find anything using that font, please ensure the spelling and spacing is correct." -msgstr "Aucune correspondance avec cette fonte, veuillez vous assurer que l'orthographe et l'espacement sont corrects." +msgid "" +"Couldn't find anything using that font, please ensure the spelling and " +"spacing is correct." +msgstr "" +"Aucune correspondance avec cette fonte, veuillez vous assurer que " +"l'orthographe et l'espacement sont corrects." #: ../share/extensions/replace_font.py:140 #: ../share/extensions/svg_and_media_zip_output.py:193 @@ -28863,17 +31546,22 @@ msgstr "Veuillez saisir une chaîne de caractères dans le champs Rechercher." #: ../share/extensions/replace_font.py:248 msgid "Please enter a replacement font in the replace with box." -msgstr "Veuillez saisir une police de remplacement dans le champs Remplacer par." +msgstr "" +"Veuillez saisir une police de remplacement dans le champs Remplacer par." #: ../share/extensions/replace_font.py:253 msgid "Please enter a replacement font in the replace all box." -msgstr "Veuillez saisir une police de remplacement dans le champs Remplacer toutes les polices par." +msgstr "" +"Veuillez saisir une police de remplacement dans le champs Remplacer toutes " +"les polices par." #: ../share/extensions/summersnight.py:44 msgid "" "This extension requires two selected paths. \n" "The second path must be exactly four nodes long." -msgstr "Cette extension nécessite la sélection de deux chemins. Le second chemin sélectionné doit contenir exactement quatre nœuds." +msgstr "" +"Cette extension nécessite la sélection de deux chemins. Le second chemin " +"sélectionné doit contenir exactement quatre nœuds." #: ../share/extensions/svg_and_media_zip_output.py:128 #, python-format @@ -28900,12 +31588,18 @@ msgid "You must select at least two elements." msgstr "Vous devez sélectionner au moins deux éléments." #: ../share/extensions/webslicer_create_group.py:57 -msgid "You must create and select some \"Slicer rectangles\" before trying to group." -msgstr "Vous devez créer et sélectionner des « Rectangles de découpe » avant d'essayer de grouper." +msgid "" +"You must create and select some \"Slicer rectangles\" before trying to group." +msgstr "" +"Vous devez créer et sélectionner des « Rectangles de découpe » avant " +"d'essayer de grouper." #: ../share/extensions/webslicer_create_group.py:72 -msgid "You must to select some \"Slicer rectangles\" or other \"Layout groups\"." -msgstr "Vous devez sélectionner des « Rectangles de découpe » ou d'autres « Groupes de mise en page »." +msgid "" +"You must to select some \"Slicer rectangles\" or other \"Layout groups\"." +msgstr "" +"Vous devez sélectionner des « Rectangles de découpe » ou d'autres « Groupes " +"de mise en page »." #: ../share/extensions/webslicer_create_group.py:76 #, python-format @@ -28944,7 +31638,7 @@ msgstr "Les formats JPG et GIF nécessitent l'installation d'ImageMagick." #. lines of longitude are odd : abort #: ../share/extensions/wireframe_sphere.py:116 msgid "Please enter an even number of lines of longitude." -msgstr "" +msgstr "Veuillez sélectionner un nombre pair de lignes de longitude." #. vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99 #: ../share/extensions/addnodes.inx.h:1 @@ -28959,10 +31653,6 @@ msgstr "Méthode de division :" msgid "By max. segment length" msgstr "Par longueur maximum de segment" -#: ../share/extensions/addnodes.inx.h:4 -msgid "By number of segments" -msgstr "Par nombre de segments" - #: ../share/extensions/addnodes.inx.h:5 msgid "Maximum segment length (px):" msgstr "Longueur maximum de segment (px) :" @@ -28973,8 +31663,7 @@ msgstr "Nombre de segments :" #: ../share/extensions/addnodes.inx.h:7 #: ../share/extensions/convert2dashes.inx.h:2 -#: ../share/extensions/edge3d.inx.h:9 -#: ../share/extensions/flatten.inx.h:3 +#: ../share/extensions/edge3d.inx.h:9 ../share/extensions/flatten.inx.h:3 #: ../share/extensions/fractalize.inx.h:4 #: ../share/extensions/interp_att_g.inx.h:29 #: ../share/extensions/markers_strokepaint.inx.h:13 @@ -28983,8 +31672,7 @@ msgstr "Nombre de segments :" #: ../share/extensions/radiusrand.inx.h:10 #: ../share/extensions/rubberstretch.inx.h:6 #: ../share/extensions/straightseg.inx.h:4 -#: ../share/extensions/summersnight.inx.h:2 -#: ../share/extensions/whirl.inx.h:4 +#: ../share/extensions/summersnight.inx.h:2 ../share/extensions/whirl.inx.h:4 msgid "Modify Path" msgstr "Modifer le chemin" @@ -29105,7 +31793,8 @@ msgstr "Luminosité aléatoire" #: ../share/extensions/color_HSL_adjust.inx.h:13 #, no-c-format msgid "" -"Adjusts hue, saturation and lightness in the HSL representation of the selected objects's color.\n" +"Adjusts hue, saturation and lightness in the HSL representation of the " +"selected objects's color.\n" "Options:\n" " * Hue: rotate by degrees (wraps around).\n" " * Saturation: add/subtract % (min=-100, max=100).\n" @@ -29120,7 +31809,7 @@ msgstr "Noir et blanc" #: ../share/extensions/color_blackandwhite.inx.h:2 msgid "Threshold Color (1-255):" -msgstr "" +msgstr "Seuil de couleur (1-255) :" #: ../share/extensions/color_brighter.inx.h:1 msgid "Brighter" @@ -29150,7 +31839,8 @@ msgstr "Plage des couleurs en entrée :" #: ../share/extensions/color_custom.inx.h:8 msgid "" "Allows you to evaluate different functions for each channel.\n" -"r, g and b are the normalized values of the red, green and blue channels. The resulting RGB values are automatically clamped.\n" +"r, g and b are the normalized values of the red, green and blue channels. " +"The resulting RGB values are automatically clamped.\n" " \n" "Example (half the red, swap green and blue):\n" " Red Function: r*0.5 \n" @@ -29158,7 +31848,8 @@ msgid "" " Blue Function: g" msgstr "" "Permet l'évaluation de différentes fonctions pour chaque canal.\n" -"r, g et b sont les valeurs normalisées pour les canaux rouge, vert et bleu. Les valeurs RGB résultantes sont recalculées automatiquement.\n" +"r, g et b sont les valeurs normalisées pour les canaux rouge, vert et bleu. " +"Les valeurs RGB résultantes sont recalculées automatiquement.\n" "\n" "Exemple (division du rouge par deux, échange du vert et du bleu) :\n" " Fonction pour le rouge : r*0.5\n" @@ -29212,8 +31903,12 @@ msgid "Randomize" msgstr "Aléatoire" #: ../share/extensions/color_randomize.inx.h:7 -msgid "Converts to HSL, randomizes hue and/or saturation and/or lightness and converts it back to RGB." -msgstr "Convertit en TSL, modifie aléatoirement la teinte, la saturation ou la luminosité, puis convertit le résultat en RVB." +msgid "" +"Converts to HSL, randomizes hue and/or saturation and/or lightness and " +"converts it back to RGB." +msgstr "" +"Convertit en TSL, modifie aléatoirement la teinte, la saturation ou la " +"luminosité, puis convertit le résultat en RVB." #: ../share/extensions/color_removeblue.inx.h:1 msgid "Remove Blue" @@ -29265,19 +31960,29 @@ msgstr "Fichier ACECAD Digimemo (*.dhw)" #: ../share/extensions/dhw_input.inx.h:3 msgid "Open files from ACECAD Digimemo" -msgstr "" +msgstr "Ouvrir les fichiers à partir d'ACECAD Digimemo" #: ../share/extensions/dia.inx.h:1 msgid "Dia Input" msgstr "Entrée Dia" #: ../share/extensions/dia.inx.h:2 -msgid "The dia2svg.sh script should be installed with your Inkscape distribution. If you do not have it, there is likely to be something wrong with your Inkscape installation." -msgstr "Le script dia2svg devrait être installé avec votre distribution d'Inkscape. Si ce n'est pas le cas, il y a sans doute un problème avec votre installation d'Inkscape." +msgid "" +"The dia2svg.sh script should be installed with your Inkscape distribution. " +"If you do not have it, there is likely to be something wrong with your " +"Inkscape installation." +msgstr "" +"Le script dia2svg devrait être installé avec votre distribution d'Inkscape. " +"Si ce n'est pas le cas, il y a sans doute un problème avec votre " +"installation d'Inkscape." #: ../share/extensions/dia.inx.h:3 -msgid "In order to import Dia files, Dia itself must be installed. You can get Dia at http://live.gnome.org/Dia" -msgstr "Pour pouvoir importer des fichiers Dia, Dia doit aussi être installé. Vous pouvez obtenir Dia sur http://www.gnome.org/projects/dia/ " +msgid "" +"In order to import Dia files, Dia itself must be installed. You can get Dia " +"at http://live.gnome.org/Dia" +msgstr "" +"Pour pouvoir importer des fichiers Dia, Dia doit aussi être installé. Vous " +"pouvez obtenir Dia sur http://www.gnome.org/projects/dia/ " #: ../share/extensions/dia.inx.h:4 msgid "Dia Diagram (*.dia)" @@ -29300,7 +32005,8 @@ msgid "Y Offset:" msgstr "Décalage sur l'axe Y :" #: ../share/extensions/dimension.inx.h:4 -msgid "Bounding box type :" +#, fuzzy +msgid "Bounding box type:" msgstr "Type de boîte englobante :" #: ../share/extensions/dimension.inx.h:5 @@ -29311,10 +32017,8 @@ msgstr "Géométrique" msgid "Visual" msgstr "Visuelle" -#: ../share/extensions/dimension.inx.h:7 -#: ../share/extensions/dots.inx.h:13 -#: ../share/extensions/handles.inx.h:2 -#: ../share/extensions/measure.inx.h:25 +#: ../share/extensions/dimension.inx.h:7 ../share/extensions/dots.inx.h:13 +#: ../share/extensions/handles.inx.h:2 ../share/extensions/measure.inx.h:25 msgid "Visualize Path" msgstr "Visualisation de chemin" @@ -29336,16 +32040,21 @@ msgstr "Incrément :" #: ../share/extensions/dots.inx.h:8 msgid "" -"This extension replaces the selection's nodes with numbered dots according to the following options:\n" +"This extension replaces the selection's nodes with numbered dots according " +"to the following options:\n" " * Font size: size of the node number labels (20px, 12pt...).\n" " * Dot size: diameter of the dots placed at path nodes (10px, 2mm...).\n" -" * Starting dot number: first number in the sequence, assigned to the first node of the path.\n" +" * Starting dot number: first number in the sequence, assigned to the " +"first node of the path.\n" " * Step: numbering step between two nodes." msgstr "" -"Cette extension remplace les nœuds de la sélection par des points numérotés en fonction des options suivantes :\n" +"Cette extension remplace les nœuds de la sélection par des points numérotés " +"en fonction des options suivantes :\n" " * Taille de police : taille du label de numéro de nœud (20px, 12pt...).\n" -" * Taille de point : diamètre des points placés sur les nœuds du chemin (10px, 2mm...)\n" -" * Numéro du nœud de départ : premier numéro de la séquence, assigné au premier nœud du chemin.\n" +" * Taille de point : diamètre des points placés sur les nœuds du chemin " +"(10px, 2mm...)\n" +" * Numéro du nœud de départ : premier numéro de la séquence, assigné au " +"premier nœud du chemin.\n" " * Incrément : incrément de numérotation entre deux nœuds." #: ../share/extensions/draw_from_triangle.inx.h:1 @@ -29487,15 +32196,19 @@ msgstr "Fonction triangle" #: ../share/extensions/draw_from_triangle.inx.h:36 msgid "" -"This extension draws constructions about a triangle defined by the first 3 nodes of a selected path. You may select one of preset objects or create your own ones.\n" +"This extension draws constructions about a triangle defined by the first 3 " +"nodes of a selected path. You may select one of preset objects or create " +"your own ones.\n" " \n" "All units are the Inkscape's pixel unit. Angles are all in radians.\n" -"You can specify a point by trilinear coordinates or by a triangle centre function.\n" +"You can specify a point by trilinear coordinates or by a triangle centre " +"function.\n" "Enter as functions of the side length or angles.\n" "Trilinear elements should be separated by a colon: ':'.\n" "Side lengths are represented as 's_a', 's_b' and 's_c'.\n" "Angles corresponding to these are 'a_a', 'a_b', and 'a_c'.\n" -"You can also use the semi-perimeter and area of the triangle as constants. Write 'area' or 'semiperim' for these.\n" +"You can also use the semi-perimeter and area of the triangle as constants. " +"Write 'area' or 'semiperim' for these.\n" "\n" "You can use any standard Python math function:\n" "ceil(x); fabs(x); floor(x); fmod(x,y); frexp(x); ldexp(x,i); \n" @@ -29507,18 +32220,26 @@ msgid "" "Also available are the inverse trigonometric functions:\n" "sec(x); csc(x); cot(x)\n" "\n" -"You can specify the radius of a circle around a custom point using a formula, which may also contain the side lengths, angles, etc. You can also plot the isogonal and isotomic conjugate of the point. Be aware that this may cause a divide-by-zero error for certain points.\n" +"You can specify the radius of a circle around a custom point using a " +"formula, which may also contain the side lengths, angles, etc. You can also " +"plot the isogonal and isotomic conjugate of the point. Be aware that this " +"may cause a divide-by-zero error for certain points.\n" " " msgstr "" -"Cette extension trace une construction à partir d'un triangle défini par les trois premiers nœuds d'un chemin sélectionné. Vous devez sélectionner un objet prédéfini ou en créer un nouveau.\n" +"Cette extension trace une construction à partir d'un triangle défini par les " +"trois premiers nœuds d'un chemin sélectionné. Vous devez sélectionner un " +"objet prédéfini ou en créer un nouveau.\n" " \n" -"Toutes les unités de mesure sont exprimées en pixels Inkscape. Les angles sont en radians.\n" -"Vous pouvez spécifier un point par coordonnées trilinéaires ou une fonction du centre du triangle.\n" +"Toutes les unités de mesure sont exprimées en pixels Inkscape. Les angles " +"sont en radians.\n" +"Vous pouvez spécifier un point par coordonnées trilinéaires ou une fonction " +"du centre du triangle.\n" "Entrez comme fonction la taille des côtés ou les angles.\n" "Les éléments trilinéaires doivent être séparés par un deux-points (:).\n" "Les tailles de côté sont représentées sous la forme 's_a', 's_b' et 's_c'.\n" "Les angles correspondants sont sous la forme 'a_a', 'a_b' et 'a_c'.\n" -"Vous pouvez également utiliser le semi-périmètre ou l'aire du triangle comme constante. Dans ce cas, écrivez 'area' ou 'semiperim'.\n" +"Vous pouvez également utiliser le semi-périmètre ou l'aire du triangle comme " +"constante. Dans ce cas, écrivez 'area' ou 'semiperim'.\n" "\n" "Vous pouvez utiliser les fonctions mathématiques standard de Python :\n" "ceil(x); fabs(x); floor(x); fmod(x,y); frexp(x); ldexp(x,i);\n" @@ -29530,18 +32251,23 @@ msgstr "" "Les fonctions trigonométriques inverses sont également disponibles :\n" "sec(x); csc(x); cot(x)\n" "\n" -"Vous pouvez spécifier le rayon d'un cercle autour d'un point personnalisé en utilisant une fonction pouvant également contenir les tailles de côté, les angles, etc. Vous pouvez également tracer les conjuguées isogonales et isotomiques du point. Soyez conscient que cela peut provoquer une erreur de type division par zéro pour certains points. " +"Vous pouvez spécifier le rayon d'un cercle autour d'un point personnalisé en " +"utilisant une fonction pouvant également contenir les tailles de côté, les " +"angles, etc. Vous pouvez également tracer les conjuguées isogonales et " +"isotomiques du point. Soyez conscient que cela peut provoquer une erreur de " +"type division par zéro pour certains points. " #: ../share/extensions/dxf_input.inx.h:1 msgid "DXF Input" msgstr "Entrée DXF" #: ../share/extensions/dxf_input.inx.h:3 -msgid "Use automatic scaling to size A4" -msgstr "Utilise un redimensionnement automatique vers la taille A4" +msgid "Method of Scaling:" +msgstr "" #: ../share/extensions/dxf_input.inx.h:4 -msgid "Or, use manual scale factor:" +#, fuzzy +msgid "Manual scale factor:" msgstr "Ou utiliser un facteur d'échelle manuel :" #: ../share/extensions/dxf_input.inx.h:5 @@ -29554,7 +32280,7 @@ msgstr "Origine manuelle de l'axe y (mm) :" #: ../share/extensions/dxf_input.inx.h:7 msgid "Gcodetools compatible point import" -msgstr "" +msgstr "Point d'importation compatible avec les outils G-code" #: ../share/extensions/dxf_input.inx.h:8 #: ../share/extensions/render_barcode_qrcode.inx.h:16 @@ -29566,26 +32292,32 @@ msgid "Text Font:" msgstr "Police du texte :" #: ../share/extensions/dxf_input.inx.h:11 +#, fuzzy msgid "" "- AutoCAD Release 13 and newer.\n" -"- assume dxf drawing is in mm.\n" -"- assume svg drawing is in pixels, at 90 dpi.\n" +"- for manual scaling, assume dxf drawing is in mm.\n" +"- assume svg drawing is in pixels, at 96 dpi.\n" "- scale factor and origin apply only to manual scaling.\n" +"- 'Automatic scaling' will fit the width of an A4 page.\n" +"- 'Read from file' uses the variable $MEASUREMENT.\n" "- layers are preserved only on File->Open, not Import.\n" "- limited support for BLOCKS, use AutoCAD Explode Blocks instead, if needed." msgstr "" "Pour AutoCAD version R13 ou plus récente.\n" "- Le dessin dxf doit être en mm.\n" "- Le dessin svg est en pixels, à 90 ppp.\n" -"- Le facteur d'échelle et l'origine ne s'applique qu'au redimensionnement manuel.\n" -"- Les calques sont préservés par l'utilisation du menu Fichier>Ouvrir, mais pas par Import.\n" -"- Le support des BLOCKS est limité. Préférez l'utilisation de AutoCAD Explode Blocks si nécessaire." - -#: ../share/extensions/dxf_input.inx.h:17 +"- Le facteur d'échelle et l'origine ne s'applique qu'au redimensionnement " +"manuel.\n" +"- Les calques sont préservés par l'utilisation du menu Fichier>Ouvrir, mais " +"pas par Import.\n" +"- Le support des BLOCKS est limité. Préférez l'utilisation de AutoCAD " +"Explode Blocks si nécessaire." + +#: ../share/extensions/dxf_input.inx.h:19 msgid "AutoCAD DXF R13 (*.dxf)" msgstr "DXF AutoCAD R13 (*.dxf)" -#: ../share/extensions/dxf_input.inx.h:18 +#: ../share/extensions/dxf_input.inx.h:20 msgid "Import AutoCAD's Document Exchange Format" msgstr "Importer depuis le format Document Exchange d'AutoCAD" @@ -29688,36 +32420,43 @@ msgid "All (default)" msgstr "Tout (défaut)" #: ../share/extensions/dxf_outlines.inx.h:22 -#, fuzzy msgid "Visible only" -msgstr "Couleurs visibles" +msgstr "Visible seulement" #: ../share/extensions/dxf_outlines.inx.h:23 msgid "By name match" -msgstr "" +msgstr "Correspondance par nom" #: ../share/extensions/dxf_outlines.inx.h:25 #, fuzzy msgid "" "- AutoCAD Release 14 DXF format.\n" -"- The base unit parameter specifies in what unit the coordinates are output (90 px = 1 in).\n" +"- The base unit parameter specifies in what unit the coordinates are output " +"(96 px = 1 in).\n" "- Supported element types\n" " - paths (lines and splines)\n" " - rectangles\n" " - clones (the crossreference to the original is lost)\n" -"- ROBO-Master spline output is a specialized spline readable only by ROBO-Master and AutoDesk viewers, not Inkscape.\n" -"- LWPOLYLINE output is a multiply-connected polyline, disable it to use a legacy version of the LINE output.\n" -"- You can choose to export all layers, only visible ones or by name match (case insensitive and use comma ',' as separator)" +"- ROBO-Master spline output is a specialized spline readable only by ROBO-" +"Master and AutoDesk viewers, not Inkscape.\n" +"- LWPOLYLINE output is a multiply-connected polyline, disable it to use a " +"legacy version of the LINE output.\n" +"- You can choose to export all layers, only visible ones or by name match " +"(case insensitive and use comma ',' as separator)" msgstr "" "Format AutoCAD DXF Release 14.\n" -"- Le paramètre unité de base spécifie dans quelle unité les coordonnées sont générées (90 px = 1 in).\n" +"- Le paramètre unité de base spécifie dans quelle unité les coordonnées sont " +"générées (90 px = 1 in).\n" "- Types d'éléments supportés :\n" " - chemins (lignes et splines) ;\n" " - rectangles ;\n" " - clones (la référence croisée vers l'original est perdue).\n" -"- L'option ROBO-Master génère une spline spécialisée qui ne peut être utilisée que par des lecteurs ROBO-Master et AutoDesk, pas Inkscape.\n" -"- La sortie LWPOLYLINE est une polyligne multi-connectée. Désactivez cette option pour utiliser une ancienne version de la sortie LINE.\n" -"- Vous pouvez choisir d'exporter tous les calques ou seulement ceux qui sont visibles." +"- L'option ROBO-Master génère une spline spécialisée qui ne peut être " +"utilisée que par des lecteurs ROBO-Master et AutoDesk, pas Inkscape.\n" +"- La sortie LWPOLYLINE est une polyligne multi-connectée. Désactivez cette " +"option pour utiliser une ancienne version de la sortie LINE.\n" +"- Vous pouvez choisir d'exporter tous les calques ou seulement ceux qui sont " +"visibles." #: ../share/extensions/dxf_outlines.inx.h:34 msgid "Desktop Cutting Plotter (AutoCAD DXF R14) (*.dxf)" @@ -29729,7 +32468,9 @@ msgstr "Sortie DXF" #: ../share/extensions/dxf_output.inx.h:2 msgid "pstoedit must be installed to run; see http://www.pstoedit.net/pstoedit" -msgstr "pstoedit doit être installé pour être exécuté; consultez le site http://www.pstoedit.net/pstoedit" +msgstr "" +"pstoedit doit être installé pour être exécuté; consultez le site http://www." +"pstoedit.net/pstoedit" #: ../share/extensions/dxf_output.inx.h:3 msgid "AutoCAD DXF R12 (*.dxf)" @@ -29784,10 +32525,86 @@ msgstr "Incorporer seulement les images sélectionnées" msgid "Embed Selected Images" msgstr "Incorporer les images sélectionnées" -#: ../share/extensions/empty_page.inx.h:1 -msgid "Empty Page" +#: ../share/extensions/empty_business_card.inx.h:1 +#, fuzzy +msgid "Business Card" +msgstr "Carte de visite 85x54 mm" + +#: ../share/extensions/empty_business_card.inx.h:2 +#, fuzzy +msgid "Business card size:" +msgstr "Carte de visite 85x54 mm" + +#: ../share/extensions/empty_desktop.inx.h:1 +#, fuzzy +msgid "Desktop" +msgstr "Bureau 640x480" + +#: ../share/extensions/empty_desktop.inx.h:2 +#, fuzzy +msgid "Desktop size:" +msgstr "Dimensions des points :" + +#. Maximum size is '16k' +#: ../share/extensions/empty_desktop.inx.h:4 +#: ../share/extensions/empty_generic.inx.h:2 +#: ../share/extensions/empty_video.inx.h:4 +#, fuzzy +msgid "Custom Width:" +msgstr "Dimensions personnalisées" + +#: ../share/extensions/empty_desktop.inx.h:5 +#: ../share/extensions/empty_generic.inx.h:3 +#: ../share/extensions/empty_video.inx.h:5 +#, fuzzy +msgid "Custom Height:" +msgstr "Hauteur de capitale :" + +#: ../share/extensions/empty_dvd_cover.inx.h:1 +#, fuzzy +msgid "DVD Cover" +msgstr "Couverture" + +#: ../share/extensions/empty_dvd_cover.inx.h:2 +#, fuzzy +msgid "DVD spine width:" +msgstr "Largeur de ligne" + +#: ../share/extensions/empty_dvd_cover.inx.h:3 +msgid "DVD cover bleed (mm):" msgstr "" +#: ../share/extensions/empty_generic.inx.h:1 +#, fuzzy +msgid "Generic Canvas" +msgstr "Toile de lin" + +#: ../share/extensions/empty_generic.inx.h:4 +#, fuzzy +msgid "SVG Unit:" +msgstr "Unité :" + +#: ../share/extensions/empty_generic.inx.h:5 +#, fuzzy +msgid "Canvas background:" +msgstr "Tracer selon le fond" + +#: ../share/extensions/empty_generic.inx.h:6 +#: ../share/extensions/empty_page.inx.h:5 +#, fuzzy +msgid "Hide border" +msgstr "Contour en arête" + +#: ../share/extensions/empty_icon.inx.h:1 +#, fuzzy +msgid "Icon" +msgstr "Iconifier" + +#: ../share/extensions/empty_icon.inx.h:2 +#, fuzzy +msgid "Icon size:" +msgstr "Taille de police :" + #: ../share/extensions/empty_page.inx.h:2 msgid "Page size:" msgstr "Taille de la page :" @@ -29796,6 +32613,21 @@ msgstr "Taille de la page :" msgid "Page orientation:" msgstr "Orientation de la page :" +#: ../share/extensions/empty_page.inx.h:4 +#, fuzzy +msgid "Page background:" +msgstr "Tracer selon le fond" + +#: ../share/extensions/empty_video.inx.h:1 +#, fuzzy +msgid "Video Screen" +msgstr "Superposition" + +#: ../share/extensions/empty_video.inx.h:2 +#, fuzzy +msgid "Video size:" +msgstr "Dimensions des points :" + #: ../share/extensions/eps_input.inx.h:1 msgid "EPS Input" msgstr "Entrée EPS" @@ -29835,10 +32667,12 @@ msgstr "Répertoire où enregistrer l'image :" #: ../share/extensions/extractimage.inx.h:3 msgid "" "* Don't type the file extension, it is appended automatically.\n" -"* A relative path (or a filename without path) is relative to the user's home directory." +"* A relative path (or a filename without path) is relative to the user's " +"home directory." msgstr "" "* Ne pas saisir l'extension du fichier, elle est ajoutée automatiquement.\n" -"* Un chemin relatif (ou un nom de fichier seul) est relatif au dossier personnel de l'utilisateur." +"* Un chemin relatif (ou un nom de fichier seul) est relatif au dossier " +"personnel de l'utilisateur." #: ../share/extensions/extrude.inx.h:3 msgid "Lines" @@ -29939,8 +32773,11 @@ msgstr "Utiliser les coordonnées polaires" #: ../share/extensions/funcplot.inx.h:11 #: ../share/extensions/param_curves.inx.h:12 -msgid "When set, Isotropic scaling uses smallest of width/xrange or height/yrange" -msgstr "Lorsqu'il est activé, le redimensionnement isotrope utilise le plus petit de : largeur/amplitude en X ou hauteur/amplitude en Y" +msgid "" +"When set, Isotropic scaling uses smallest of width/xrange or height/yrange" +msgstr "" +"Lorsqu'il est activé, le redimensionnement isotrope utilise le plus petit " +"de : largeur/amplitude en X ou hauteur/amplitude en Y" #: ../share/extensions/funcplot.inx.h:12 #: ../share/extensions/param_curves.inx.h:13 @@ -29950,7 +32787,8 @@ msgstr "Utiliser" #: ../share/extensions/funcplot.inx.h:13 msgid "" "Select a rectangle before calling the extension,\n" -"it will determine X and Y scales. If you wish to fill the area, then add x-axis endpoints.\n" +"it will determine X and Y scales. If you wish to fill the area, then add x-" +"axis endpoints.\n" "\n" "With polar coordinates:\n" " Start and end X values define the angle range in radians.\n" @@ -29959,11 +32797,14 @@ msgid "" " First derivative is always determined numerically." msgstr "" "Sélectionner un rectangle avant d'appeler l'extension.\n" -"Le rectangle détermine les échelles X et Y. Si vous souhaitez remplir la zone, ajoutez des points terminaux sur l'axe X.\n" +"Le rectangle détermine les échelles X et Y. Si vous souhaitez remplir la " +"zone, ajoutez des points terminaux sur l'axe X.\n" "\n" "Avec des coordonnées polaires :\n" -" Les valeurs X de début et de fin définissent l'amplitude d'angle en radians.\n" -" L'échelle X est fixée de manière à ce que les bords gauche et droit du rectangle soient à +/-1.\n" +" Les valeurs X de début et de fin définissent l'amplitude d'angle en " +"radians.\n" +" L'échelle X est fixée de manière à ce que les bords gauche et droit du " +"rectangle soient à +/-1.\n" " Le redimensionnement isotrope est désactivé.\n" " La dérivée première est toujours déterminée numériquement." @@ -30030,8 +32871,21 @@ msgid "About" msgstr "À propos" #: ../share/extensions/gcodetools_about.inx.h:2 -msgid "Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode is a special format which is used in most of CNC machines. So Gcodetools allows you to use Inkscape as CAM program. It can be use with a lot of machine types: Mills Lathes Laser and Plasma cutters and engravers Mill engravers Plotters etc. To get more info visit developers page at http://www.cnc-club.ru/gcodetools" -msgstr "Gcodetools a été développé pour réaliser du code Gcode simple à partir des chemins d'Inkscape. Gcode est un format spécial utilisé dans la plupart des machines-outils à commande numérique. Ainsi Gcodetools vous permet d'utiliser Inkscape comme un programme de fabrication assistée par ordinateur. Il peut être utilisé avec un grand nombre de machines. Pour de plus amples informations, visitez la page des développeurs sur le site http://www.cnc-club.ru/gcodetools" +msgid "" +"Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode " +"is a special format which is used in most of CNC machines. So Gcodetools " +"allows you to use Inkscape as CAM program. It can be use with a lot of " +"machine types: Mills Lathes Laser and Plasma cutters and engravers Mill " +"engravers Plotters etc. To get more info visit developers page at http://www." +"cnc-club.ru/gcodetools" +msgstr "" +"Gcodetools a été développé pour réaliser du code Gcode simple à partir des " +"chemins d'Inkscape. Gcode est un format spécial utilisé dans la plupart des " +"machines-outils à commande numérique. Ainsi Gcodetools vous permet " +"d'utiliser Inkscape comme un programme de fabrication assistée par " +"ordinateur. Il peut être utilisé avec un grand nombre de machines. Pour de " +"plus amples informations, visitez la page des développeurs sur le site " +"http://www.cnc-club.ru/gcodetools" #: ../share/extensions/gcodetools_about.inx.h:4 #: ../share/extensions/gcodetools_area.inx.h:54 @@ -30044,7 +32898,14 @@ msgstr "Gcodetools a été développé pour réaliser du code Gcode simple à pa #: ../share/extensions/gcodetools_path_to_gcode.inx.h:36 #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:18 #: ../share/extensions/gcodetools_tools_library.inx.h:13 -msgid "Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed. Tutorials, manuals and support can be found at English support forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas, Chris Lusby Taylor. Gcodetools ver. 1.7" +msgid "" +"Gcodetools plug-in: converts paths to Gcode (using circular interpolation), " +"makes offset paths and engraves sharp corners using cone cutters. This plug-" +"in calculates Gcode for paths using circular interpolation or linear motion " +"when needed. Tutorials, manuals and support can be found at English support " +"forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://" +"www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, " +"John Brooker, Henry Nicolas, Chris Lusby Taylor. Gcodetools ver. 1.7" msgstr "" #: ../share/extensions/gcodetools_about.inx.h:5 @@ -30075,10 +32936,15 @@ msgstr "Largeur de la zone :" #: ../share/extensions/gcodetools_area.inx.h:4 msgid "Area tool overlap (0..0.9):" -msgstr "" +msgstr "Superposition d'outil de zone (0..0.9) :" #: ../share/extensions/gcodetools_area.inx.h:5 -msgid "\"Create area offset\": creates several Inkscape path offsets to fill original path's area up to \"Area radius\" value. Outlines start from \"1/2 D\" up to \"Area width\" total width with \"D\" steps where D is taken from the nearest tool definition (\"Tool diameter\" value). Only one offset will be created if the \"Area width\" is equal to \"1/2 D\"." +msgid "" +"\"Create area offset\": creates several Inkscape path offsets to fill " +"original path's area up to \"Area radius\" value. Outlines start from \"1/2 D" +"\" up to \"Area width\" total width with \"D\" steps where D is taken from " +"the nearest tool definition (\"Tool diameter\" value). Only one offset will " +"be created if the \"Area width\" is equal to \"1/2 D\"." msgstr "" #: ../share/extensions/gcodetools_area.inx.h:6 @@ -30091,7 +32957,7 @@ msgstr "Angle de remplissage de la zone" #: ../share/extensions/gcodetools_area.inx.h:8 msgid "Area fill shift" -msgstr "" +msgstr "Décalage de remplissage de zone" #: ../share/extensions/gcodetools_area.inx.h:9 msgid "Filling method" @@ -30103,7 +32969,7 @@ msgstr "Zig-zag" #: ../share/extensions/gcodetools_area.inx.h:12 msgid "Area artifacts" -msgstr "" +msgstr "Artefact de zone" #: ../share/extensions/gcodetools_area.inx.h:13 msgid "Artifact diameter:" @@ -30127,7 +32993,10 @@ msgid "delete" msgstr "supprimer" #: ../share/extensions/gcodetools_area.inx.h:18 -msgid "Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by colored arrows." +msgid "" +"Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift" +"+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by " +"colored arrows." msgstr "" #: ../share/extensions/gcodetools_area.inx.h:19 @@ -30139,16 +33008,14 @@ msgstr "Chemin vers G-code" #: ../share/extensions/gcodetools_area.inx.h:20 #: ../share/extensions/gcodetools_lathe.inx.h:13 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:2 -#, fuzzy msgid "Biarc interpolation tolerance:" -msgstr "Étapes d'interpolation :" +msgstr "Tolérance de l'interpolation biarc :" #: ../share/extensions/gcodetools_area.inx.h:21 #: ../share/extensions/gcodetools_lathe.inx.h:14 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:3 -#, fuzzy msgid "Maximum splitting depth:" -msgstr "Simplification des chemins :" +msgstr "Profondeur de division maximale :" #: ../share/extensions/gcodetools_area.inx.h:22 #: ../share/extensions/gcodetools_lathe.inx.h:15 @@ -30189,7 +33056,13 @@ msgstr "Passe par passe" #: ../share/extensions/gcodetools_area.inx.h:28 #: ../share/extensions/gcodetools_lathe.inx.h:21 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 -msgid "Biarc interpolation tolerance is the maximum distance between path and its approximation. The segment will be split into two segments if the distance between path's segment and its approximation exceeds biarc interpolation tolerance. For depth function c=color intensity from 0.0 (white) to 1.0 (black), d is the depth defined by orientation points, s - surface defined by orientation points." +msgid "" +"Biarc interpolation tolerance is the maximum distance between path and its " +"approximation. The segment will be split into two segments if the distance " +"between path's segment and its approximation exceeds biarc interpolation " +"tolerance. For depth function c=color intensity from 0.0 (white) to 1.0 " +"(black), d is the depth defined by orientation points, s - surface defined " +"by orientation points." msgstr "" #: ../share/extensions/gcodetools_area.inx.h:30 @@ -30197,9 +33070,8 @@ msgstr "" #: ../share/extensions/gcodetools_graffiti.inx.h:22 #: ../share/extensions/gcodetools_lathe.inx.h:23 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 -#, fuzzy msgid "Scale along Z axis:" -msgstr "Longueur de base de l'axe z" +msgstr "Échelle sur l'axe Z :" #: ../share/extensions/gcodetools_area.inx.h:31 #: ../share/extensions/gcodetools_engraving.inx.h:9 @@ -30215,7 +33087,7 @@ msgstr "Décalage sur l'axe Z :" #: ../share/extensions/gcodetools_lathe.inx.h:25 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 msgid "Select all paths if nothing is selected" -msgstr "" +msgstr "Sélectionner tous les chemins si rien n'est sélectionné" #: ../share/extensions/gcodetools_area.inx.h:33 #: ../share/extensions/gcodetools_engraving.inx.h:11 @@ -30348,9 +33220,8 @@ msgstr "Aucun" #: ../share/extensions/gcodetools_graffiti.inx.h:38 #: ../share/extensions/gcodetools_lathe.inx.h:42 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:31 -#, fuzzy msgid "Parameterize Gcode" -msgstr "Paramètres" +msgstr "Paramétrer G-code" #: ../share/extensions/gcodetools_area.inx.h:50 #: ../share/extensions/gcodetools_dxf_points.inx.h:22 @@ -30368,7 +33239,7 @@ msgstr "" #: ../share/extensions/gcodetools_lathe.inx.h:44 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:33 msgid "Round all values to 4 digits" -msgstr "" +msgstr "Arrondir toutes les valeurs à 4 chiffres" #: ../share/extensions/gcodetools_area.inx.h:52 #: ../share/extensions/gcodetools_dxf_points.inx.h:24 @@ -30377,7 +33248,7 @@ msgstr "" #: ../share/extensions/gcodetools_lathe.inx.h:45 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:34 msgid "Fast pre-penetrate" -msgstr "" +msgstr "Pré-pénétration rapide" #: ../share/extensions/gcodetools_check_for_updates.inx.h:1 msgid "Check for updates" @@ -30400,7 +33271,11 @@ msgid "Convert selection:" msgstr "Convertir la sélection :" #: ../share/extensions/gcodetools_dxf_points.inx.h:4 -msgid "Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used. Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value." +msgid "" +"Convert selected objects to drill points (as dxf_import plugin does). Also " +"you can save original shape. Only the start point of each curve will be " +"used. Also you can manually select object, open XML editor (Shift+Ctrl+X) " +"and add or remove XML tag 'dxfpoint' with any value." msgstr "" #: ../share/extensions/gcodetools_dxf_points.inx.h:5 @@ -30424,9 +33299,8 @@ msgid "Smooth convex corners between this value and 180 degrees:" msgstr "" #: ../share/extensions/gcodetools_engraving.inx.h:3 -#, fuzzy msgid "Maximum distance for engraving (mm/inch):" -msgstr "Distance maximum pour graver :" +msgstr "Distance maximale pour graver (mm/pouce) :" #: ../share/extensions/gcodetools_engraving.inx.h:4 msgid "Accuracy factor (2 low to 10 high):" @@ -30437,7 +33311,13 @@ msgid "Draw additional graphics to see engraving path" msgstr "" #: ../share/extensions/gcodetools_engraving.inx.h:6 -msgid "This function creates path to engrave letters or any shape with sharp angles. Cutter's depth as a function of radius is defined by the tool. Depth may be any Python expression. For instance: cone....(45 degrees)......................: w cone....(height/diameter=10/3)..: 10*w/3 sphere..(radius r)...........................: math.sqrt(max(0,r**2-w**2)) ellipse.(minor axis r, major 4r).....: math.sqrt(max(0,r**2-w**2))*4" +msgid "" +"This function creates path to engrave letters or any shape with sharp " +"angles. Cutter's depth as a function of radius is defined by the tool. Depth " +"may be any Python expression. For instance: cone....(45 " +"degrees)......................: w cone....(height/diameter=10/3)..: 10*w/3 " +"sphere..(radius r)...........................: math.sqrt(max(0,r**2-w**2)) " +"ellipse.(minor axis r, major 4r).....: math.sqrt(max(0,r**2-w**2))*4" msgstr "" #: ../share/extensions/gcodetools_graffiti.inx.h:1 @@ -30445,14 +33325,12 @@ msgid "Graffiti" msgstr "Graffiti" #: ../share/extensions/gcodetools_graffiti.inx.h:2 -#, fuzzy msgid "Maximum segment length:" -msgstr "Longueur maximum de segment (px) :" +msgstr "Longueur maximale de segment :" #: ../share/extensions/gcodetools_graffiti.inx.h:3 -#, fuzzy msgid "Minimal connector radius:" -msgstr "Rayon d'arc minimum :" +msgstr "Rayon de connecteur minimum :" #: ../share/extensions/gcodetools_graffiti.inx.h:4 msgid "Start position (x;y):" @@ -30481,9 +33359,8 @@ msgstr "Type d'orientation :" #: ../share/extensions/gcodetools_graffiti.inx.h:11 #: ../share/extensions/gcodetools_orientation_points.inx.h:4 -#, fuzzy msgid "Z surface:" -msgstr "Ordonner les côtés sur l'axe Z par :" +msgstr "Surface Z :" #: ../share/extensions/gcodetools_graffiti.inx.h:12 #: ../share/extensions/gcodetools_orientation_points.inx.h:5 @@ -30493,12 +33370,12 @@ msgstr "Profondeur sur l'axe Z :" #: ../share/extensions/gcodetools_graffiti.inx.h:14 #: ../share/extensions/gcodetools_orientation_points.inx.h:7 msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" -msgstr "" +msgstr "Mode 2 points (déplacement et rotation, rapport X/Y maintenu)" #: ../share/extensions/gcodetools_graffiti.inx.h:15 #: ../share/extensions/gcodetools_orientation_points.inx.h:8 msgid "3-points mode (move, rotate and mirror, different X/Y scale)" -msgstr "" +msgstr "Mode 3 points (déplacement, rotation et miroir, rapport X/Y différent)" #: ../share/extensions/gcodetools_graffiti.inx.h:16 #: ../share/extensions/gcodetools_orientation_points.inx.h:9 @@ -30507,14 +33384,31 @@ msgstr "Points graffiti" #: ../share/extensions/gcodetools_graffiti.inx.h:17 #: ../share/extensions/gcodetools_orientation_points.inx.h:10 -#, fuzzy msgid "in-out reference point" -msgstr "Préférences des dégradés" +msgstr "Point de référence d'entrée-sortie" #: ../share/extensions/gcodetools_graffiti.inx.h:20 #: ../share/extensions/gcodetools_orientation_points.inx.h:13 -msgid "Orientation points are used to calculate transformation (offset,scale,mirror,rotation in XY plane) of the path. 3-points mode only: do not put all three into one line (use 2-points mode instead). You can modify Z surface, Z depth values later using text tool (3rd coordinates). If there are no orientation points inside current layer they are taken from the upper layer. Do not ungroup orientation points! You can select them using double click to enter the group or by Ctrl+Click. Now press apply to create control points (independent set for each layer)." +msgid "" +"Orientation points are used to calculate transformation (offset,scale,mirror," +"rotation in XY plane) of the path. 3-points mode only: do not put all three " +"into one line (use 2-points mode instead). You can modify Z surface, Z depth " +"values later using text tool (3rd coordinates). If there are no orientation " +"points inside current layer they are taken from the upper layer. Do not " +"ungroup orientation points! You can select them using double click to enter " +"the group or by Ctrl+Click. Now press apply to create control points " +"(independent set for each layer)." msgstr "" +"Les points d'orientation sont utilisés pour calculer la transformation " +"(décalage, échelle, miroir, rotation dans le plan XY) du chemin. En mode 3 " +"points seulement : ne pas disposer les trois points sur une ligne (utilisez " +"alors le mode 2 points). Vous pouvez modifier les valeurs de surface et de " +"profondeur sur l'axe Z plus tard avec l'outil texte (3e coordonnée). En " +"l'absence de points d'orientation dans le calque courant, ils sont récupérés " +"dans le calque supérieur. Ne dégroupez pas les points d'orientation. Vous " +"pouvez les sélectionner en double-cliquant pour rentrer dans le groupe, ou " +"avec la combinaison Ctrl+clic. Appuyez sur Appliquer pour créer des points " +"de contrôles (un ensemble indépendant pour chaque calque)." #: ../share/extensions/gcodetools_lathe.inx.h:1 msgid "Lathe" @@ -30525,27 +33419,24 @@ msgid "Lathe width:" msgstr "Largeur du tour :" #: ../share/extensions/gcodetools_lathe.inx.h:3 -#, fuzzy msgid "Fine cut width:" -msgstr "Largeur de recouvrement :" +msgstr "Largeur du découpage fin :" #: ../share/extensions/gcodetools_lathe.inx.h:4 -#, fuzzy msgid "Fine cut count:" -msgstr "Rechercher cette police :" +msgstr "Comptage du découpage fin :" #: ../share/extensions/gcodetools_lathe.inx.h:5 -#, fuzzy msgid "Create fine cut using:" -msgstr "Créer de nouveaux objets avec :" +msgstr "Créer un découpage fin avec :" #: ../share/extensions/gcodetools_lathe.inx.h:6 msgid "Lathe X axis remap:" -msgstr "" +msgstr "Reconfiguration de l'axe X du tour :" #: ../share/extensions/gcodetools_lathe.inx.h:7 msgid "Lathe Z axis remap:" -msgstr "" +msgstr "Reconfiguration de l'axe Y du tour :" #: ../share/extensions/gcodetools_lathe.inx.h:8 msgid "Move path" @@ -30561,8 +33452,12 @@ msgid "Lathe modify path" msgstr "Modifer le chemin" #: ../share/extensions/gcodetools_lathe.inx.h:11 -msgid "This function modifies path so it will be able to be cut with the rectangular cutter." +msgid "" +"This function modifies path so it will be able to be cut with the " +"rectangular cutter." msgstr "" +"Cette fonction modifie le chemin de façon à ce qu'il soit possible de le " +"découper avec un coupoir rectangulaire." #: ../share/extensions/gcodetools_orientation_points.inx.h:1 msgid "Orientation points" @@ -30570,33 +33465,33 @@ msgstr "Points d'orientation" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:1 msgid "Prepare path for plasma" -msgstr "" +msgstr "Préparer le chemin pour plasma" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2 msgid "Prepare path for plasma or laser cuters" -msgstr "" +msgstr "Préparer le chemin pour plasma ou découpe laser" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:3 -#, fuzzy msgid "Create in-out paths" -msgstr "Créer un chemin spirographique" +msgstr "Créer un chemin d'entrée-sortie" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:4 -#, fuzzy msgid "In-out path length:" -msgstr "Longueur du chemin" +msgstr "Longueur du chemin d'entrée-sortie :" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:5 msgid "In-out path max distance to reference point:" msgstr "" +"Distance maximale du chemin d'entrée-sortie par rapport au point de " +"référence :" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:6 msgid "In-out path type:" -msgstr "" +msgstr "Type de chemin d'entrée-sortie :" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:7 msgid "In-out path radius for round path:" -msgstr "" +msgstr "Rayon du chemin d'entrée-sortie pour un chemin courbe :" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:8 msgid "Replace original path" @@ -30604,7 +33499,7 @@ msgstr "Remplacer le chemin original" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:9 msgid "Do not add in-out reference points" -msgstr "" +msgstr "Ne pas ajouter de points de référence d'entrée-sortie" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:10 msgid "Prepare corners" @@ -30617,7 +33512,7 @@ msgstr "Aimanter aux coins des boîtes englobantes" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:12 msgid "Maximum angle for corner (0-180 deg):" -msgstr "" +msgstr "Angle maximum pour le coin (0 à 180 degrés) :" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:14 msgid "Perpendicular" @@ -30629,7 +33524,7 @@ msgstr "Tangente" #: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:16 msgid "-------------------------------------------------" -msgstr "" +msgstr "-------------------------------------------------" #: ../share/extensions/gcodetools_tools_library.inx.h:1 msgid "Tools library" @@ -30645,25 +33540,23 @@ msgstr "défaut" #: ../share/extensions/gcodetools_tools_library.inx.h:4 msgid "cylinder" -msgstr "Cylindre" +msgstr "cylindre" #: ../share/extensions/gcodetools_tools_library.inx.h:5 msgid "cone" msgstr "cône" #: ../share/extensions/gcodetools_tools_library.inx.h:6 -#, fuzzy msgid "plasma" -msgstr "_Splash" +msgstr "plasma" #: ../share/extensions/gcodetools_tools_library.inx.h:7 -#, fuzzy msgid "tangent knife" -msgstr "Décalage tangentiel" +msgstr "couteau tangentiel" #: ../share/extensions/gcodetools_tools_library.inx.h:8 msgid "lathe cutter" -msgstr "" +msgstr "découpe au tour" #: ../share/extensions/gcodetools_tools_library.inx.h:9 msgid "graffiti" @@ -30671,11 +33564,21 @@ msgstr "graffiti" #: ../share/extensions/gcodetools_tools_library.inx.h:10 msgid "Just check tools" -msgstr "" +msgstr "vérifier seulement les outils" #: ../share/extensions/gcodetools_tools_library.inx.h:11 -msgid "Selected tool type fills appropriate default values. You can change these values using the Text tool later on. The topmost (z order) tool in the active layer is used. If there is no tool inside the current layer it is taken from the upper layer. Press Apply to create new tool." +msgid "" +"Selected tool type fills appropriate default values. You can change these " +"values using the Text tool later on. The topmost (z order) tool in the " +"active layer is used. If there is no tool inside the current layer it is " +"taken from the upper layer. Press Apply to create new tool." msgstr "" +"Le type d'outil sélectionné s'initialise avec des valeurs par défaut " +"appropriées. Vous pouvez modifier ces valeurs en utilisant l'outil Texte par " +"la suite. L'outil le plus haut (dans l'ordre des plans) dans le calque actif " +"est utilisé. Si aucun outil n'est présent dans le calque, un outil est " +"sélectionné dans la couche supérieure. Appuyez sur Appliquer pour créer un " +"nouvel outil." #: ../share/extensions/generate_voronoi.inx.h:1 msgid "Voronoi Pattern" @@ -30691,13 +33594,22 @@ msgstr "Taille de la bordure (px) :" #: ../share/extensions/generate_voronoi.inx.h:6 msgid "" -"Generate a random pattern of Voronoi cells. The pattern will be accessible in the Fill and Stroke dialog. You must select an object or a group.\n" +"Generate a random pattern of Voronoi cells. The pattern will be accessible " +"in the Fill and Stroke dialog. You must select an object or a group.\n" "\n" -"If border is zero, the pattern will be discontinuous at the edges. Use a positive border, preferably greater than the cell size, to produce a smooth join of the pattern at the edges. Use a negative border to reduce the size of the pattern and get an empty border." +"If border is zero, the pattern will be discontinuous at the edges. Use a " +"positive border, preferably greater than the cell size, to produce a smooth " +"join of the pattern at the edges. Use a negative border to reduce the size " +"of the pattern and get an empty border." msgstr "" -"Génère un motif de cellules de Voronoï aléatoire. Le motif pourra être utilisé dans la boîte de dialogue Remplissage et contour. Vous devez sélectionner un objet ou un groupe.\n" +"Génère un motif de cellules de Voronoï aléatoire. Le motif pourra être " +"utilisé dans la boîte de dialogue Remplissage et contour. Vous devez " +"sélectionner un objet ou un groupe.\n" "\n" -"Si la bordure est nulle, le motif sera discontinu sur ses bords. Utilisez une valeur positive, de préférence plus grande que la taille de cellule, pour produire un joint lisse du motif sur ses bords. Utilisez une valeur négative pour réduire la taille du motif et obtenir une bordure vide." +"Si la bordure est nulle, le motif sera discontinu sur ses bords. Utilisez " +"une valeur positive, de préférence plus grande que la taille de cellule, " +"pour produire un joint lisse du motif sur ses bords. Utilisez une valeur " +"négative pour réduire la taille du motif et obtenir une bordure vide." #: ../share/extensions/gimp_xcf.inx.h:1 msgid "GIMP XCF" @@ -30716,27 +33628,35 @@ msgid "Save Background" msgstr "Exporter le fond" #: ../share/extensions/gimp_xcf.inx.h:6 -#, fuzzy msgid "File Resolution:" -msgstr "Résolution :" +msgstr "Résolution du fichier :" #: ../share/extensions/gimp_xcf.inx.h:8 -#, fuzzy msgid "" -"This extension exports the document to Gimp XCF format according to the following options:\n" +"This extension exports the document to Gimp XCF format according to the " +"following options:\n" " * Save Guides: convert all guides to Gimp guides.\n" -" * Save Grid: convert the first rectangular grid to a Gimp grid (note that the default Inkscape grid is very narrow when shown in Gimp).\n" +" * Save Grid: convert the first rectangular grid to a Gimp grid (note " +"that the default Inkscape grid is very narrow when shown in Gimp).\n" " * Save Background: add the document background to each converted layer.\n" " * File Resolution: XCF file resolution, in DPI.\n" "\n" -"Each first level layer is converted to a Gimp layer. Sublayers are concatenated and converted with their first level parent layer into a single Gimp layer." +"Each first level layer is converted to a Gimp layer. Sublayers are " +"concatenated and converted with their first level parent layer into a single " +"Gimp layer." msgstr "" -"Cette extension exporte le document au format Gimp XCF en fonction des options suivantes :\n" +"Cette extension exporte le document au format Gimp XCF en fonction des " +"options suivantes :\n" " * Enregistrer les guides : converti tous les guides en guides Gimp.\n" -" * Enregistrer la grille : converti la première grille rectangulaire en une grille Gimp (notez que la grille par défaut d'Inkscape est particulièrement étroite lorsque visualisée dans Gimp).\n" +" * Enregistrer la grille : converti la première grille rectangulaire en une " +"grille Gimp (notez que la grille par défaut d'Inkscape est particulièrement " +"étroite lorsque visualisée dans Gimp).\n" " * Exporter le fond : ajoute le fond du document à chaque calque converti.\n" +" * Résolution du fichier : résolution du fichier XCF en DPI.\n" "\n" -"Chaque calque de premier niveau est converti en calque Gimp. Les sous-calques sont concaténés et converti avec le calque de premier niveau supérieur en un calque Gimp unique." +"Chaque calque de premier niveau est converti en calque Gimp. Les sous-" +"calques sont concaténés et converti avec le calque de premier niveau " +"supérieur en un calque Gimp unique." #: ../share/extensions/gimp_xcf.inx.h:15 msgid "GIMP XCF maintaining layers (*.xcf)" @@ -30769,7 +33689,8 @@ msgstr "Subdivisions par marque principale sur l'axe X :" #: ../share/extensions/grid_cartesian.inx.h:7 msgid "Logarithmic X Subdiv. (Base given by entry above)" -msgstr "Subdivision logarithmique sur l'axe X (base donnée par l'entrée précédente)" +msgstr "" +"Subdivision logarithmique sur l'axe X (base donnée par l'entrée précédente)" #: ../share/extensions/grid_cartesian.inx.h:8 msgid "Subsubdivs. per X Subdivision:" @@ -30777,7 +33698,9 @@ msgstr "Sous-subdivisions par subdivision sur l'axe X :" #: ../share/extensions/grid_cartesian.inx.h:9 msgid "Halve X Subsubdiv. Frequency after 'n' Subdivs. (log only):" -msgstr "Diviser par deux la fréquence des sous-subdivisions sur l'axe X après « n » subdibvisions (log seulement) :" +msgstr "" +"Diviser par deux la fréquence des sous-subdivisions sur l'axe X après « n » " +"subdibvisions (log seulement) :" #: ../share/extensions/grid_cartesian.inx.h:10 msgid "Major X Division Thickness (px):" @@ -30809,7 +33732,8 @@ msgstr "Subdivisions par marque principale sur l'axe Y :" #: ../share/extensions/grid_cartesian.inx.h:17 msgid "Logarithmic Y Subdiv. (Base given by entry above)" -msgstr "Subdivision logarithmique sur l'axe Y (base donnée par l'entrée ci-dessus)" +msgstr "" +"Subdivision logarithmique sur l'axe Y (base donnée par l'entrée ci-dessus)" #: ../share/extensions/grid_cartesian.inx.h:18 msgid "Subsubdivs. per Y Subdivision:" @@ -30817,7 +33741,9 @@ msgstr "Sous-subdivisions par subdivision sur l'axe Y :" #: ../share/extensions/grid_cartesian.inx.h:19 msgid "Halve Y Subsubdiv. Frequency after 'n' Subdivs. (log only):" -msgstr "Diviser par deux la fréquence des sous-subdivisions sur l'axe Y après « n » subdibvisions (log seulement) :" +msgstr "" +"Diviser par deux la fréquence des sous-subdivisions sur l'axe Y après « n » " +"subdibvisions (log seulement) :" #: ../share/extensions/grid_cartesian.inx.h:20 msgid "Major Y Division Thickness (px):" @@ -30954,14 +33880,12 @@ msgid "Guides creator" msgstr "Générateur de guides" #: ../share/extensions/guides_creator.inx.h:2 -#, fuzzy msgid "Regular guides" -msgstr "Grille rectangulaire" +msgstr "Guides ordinaires" #: ../share/extensions/guides_creator.inx.h:3 -#, fuzzy msgid "Guides preset:" -msgstr "Générateur de guides" +msgstr "Guides prédéfinis :" #: ../share/extensions/guides_creator.inx.h:6 msgid "Start from edges" @@ -30984,68 +33908,56 @@ msgid "Rule-of-third" msgstr "Règle des tiers" #: ../share/extensions/guides_creator.inx.h:11 -#, fuzzy msgid "Diagonal guides" -msgstr "Aimanter aux guides" +msgstr "Guides diagonaux" #: ../share/extensions/guides_creator.inx.h:12 -#, fuzzy msgid "Upper left corner" -msgstr "coin de page" +msgstr "coin supérieur gauche" #: ../share/extensions/guides_creator.inx.h:13 -#, fuzzy msgid "Upper right corner" -msgstr "coin de page" +msgstr "coin supérieur droit" #: ../share/extensions/guides_creator.inx.h:14 -#, fuzzy msgid "Lower left corner" -msgstr "Descendre le calque courant" +msgstr "coin inférieur gauche" #: ../share/extensions/guides_creator.inx.h:15 -#, fuzzy msgid "Lower right corner" -msgstr "Descendre le calque courant" +msgstr "coin inférieur droit" #: ../share/extensions/guides_creator.inx.h:16 msgid "Margins" msgstr "Marges" #: ../share/extensions/guides_creator.inx.h:17 -#, fuzzy msgid "Margins preset:" -msgstr "Guide de marge" +msgstr "Marges prédéfinies :" #: ../share/extensions/guides_creator.inx.h:18 -#, fuzzy msgid "Header margin:" -msgstr "Marge de l'en-tête" +msgstr "Marge de l'en-tête :" #: ../share/extensions/guides_creator.inx.h:19 -#, fuzzy msgid "Footer margin:" -msgstr "Marge du pied de page" +msgstr "Marge du pied de page :" #: ../share/extensions/guides_creator.inx.h:20 -#, fuzzy msgid "Left margin:" -msgstr "Marge gauche" +msgstr "Marge gauche :" #: ../share/extensions/guides_creator.inx.h:21 -#, fuzzy msgid "Right margin:" -msgstr "Marge droite" +msgstr "Marge droite :" #: ../share/extensions/guides_creator.inx.h:22 -#, fuzzy msgid "Left book page" -msgstr "Rotation à gauche :" +msgstr "Page de gauche" #: ../share/extensions/guides_creator.inx.h:23 -#, fuzzy msgid "Right book page" -msgstr "Angle droit :" +msgstr "Page de droite" #: ../share/extensions/guides_creator.inx.h:24 msgctxt "Margin" @@ -31222,9 +34134,14 @@ msgid "" " www.evilmadscientist.com/go/hershey" msgstr "" "\n" -"Cette extension compose une ligne de texte en utilisant les fontes « Hershey » pour traceurs, dérivées de NBS SP-424 1976-04, « A contribution to computer typesetting techniques: Tables of Coordinates for Hershey's Repertory of Occidental Type Fonts and Graphic Symbols. »\n" +"Cette extension compose une ligne de texte en utilisant les fontes " +"« Hershey » pour traceurs, dérivées de NBS SP-424 1976-04, « A contribution " +"to computer typesetting techniques: Tables of Coordinates for Hershey's " +"Repertory of Occidental Type Fonts and Graphic Symbols. »\n" "\n" -"Il ne s'agit pas de fontes de contour traditionnelles, mais de fontes à contour simple ou de fontes de gravure ou les caractères sont formés par leur contour (et sans remplissage).\n" +"Il ne s'agit pas de fontes de contour traditionnelles, mais de fontes à " +"contour simple ou de fontes de gravure ou les caractères sont formés par " +"leur contour (et sans remplissage).\n" "\n" "Des information supplémentaires sont disponible sur le site :\n" "www.evilmadscientist.com/go/hershey" @@ -31234,8 +34151,14 @@ msgid "HPGL Input" msgstr "Entrée HPGL" #: ../share/extensions/hpgl_input.inx.h:2 -msgid "Please note that you can only open HPGL files written by Inkscape, to open other HPGL files please change their file extension to .plt, make sure you have UniConverter installed and open them again." -msgstr "Notez que vous ne pouvez ouvrir que des fichiers HPGL écrits avec Inkscape. Pour utiliser un autre fichier HPGL, modifiez son extension en .plt (assurez-vous qu'UniConvertor est installé sur votre machine)." +msgid "" +"Please note that you can only open HPGL files written by Inkscape, to open " +"other HPGL files please change their file extension to .plt, make sure you " +"have UniConverter installed and open them again." +msgstr "" +"Notez que vous ne pouvez ouvrir que des fichiers HPGL écrits avec Inkscape. " +"Pour utiliser un autre fichier HPGL, modifiez son extension en .plt (assurez-" +"vous qu'UniConvertor est installé sur votre machine)." #: ../share/extensions/hpgl_input.inx.h:3 #: ../share/extensions/hpgl_output.inx.h:4 @@ -31246,8 +34169,12 @@ msgstr "Résolution X (ppp) :" #: ../share/extensions/hpgl_input.inx.h:4 #: ../share/extensions/hpgl_output.inx.h:5 #: ../share/extensions/plotter.inx.h:24 -msgid "The amount of steps the plotter moves if it moves for 1 inch on the X axis (Default: 1016.0)" -msgstr "Le nombre de pas effectués par votre traceur lorsqu'il se déplace d'un pouce sur l'axe X (par défaut, 1016)" +msgid "" +"The amount of steps the plotter moves if it moves for 1 inch on the X axis " +"(Default: 1016.0)" +msgstr "" +"Le nombre de pas effectués par votre traceur lorsqu'il se déplace d'un pouce " +"sur l'axe X (par défaut, 1016)" #: ../share/extensions/hpgl_input.inx.h:5 #: ../share/extensions/hpgl_output.inx.h:6 @@ -31258,8 +34185,12 @@ msgstr "Résolution Y (ppp) :" #: ../share/extensions/hpgl_input.inx.h:6 #: ../share/extensions/hpgl_output.inx.h:7 #: ../share/extensions/plotter.inx.h:26 -msgid "The amount of steps the plotter moves if it moves for 1 inch on the Y axis (Default: 1016.0)" -msgstr "Le nombre de pas effectués par votre traceur lorsqu'il se déplace d'un pouce sur l'axe Y (par défaut, 1016)" +msgid "" +"The amount of steps the plotter moves if it moves for 1 inch on the Y axis " +"(Default: 1016.0)" +msgstr "" +"Le nombre de pas effectués par votre traceur lorsqu'il se déplace d'un pouce " +"sur l'axe Y (par défaut, 1016)" #: ../share/extensions/hpgl_input.inx.h:7 msgid "Show movements between paths" @@ -31267,7 +34198,8 @@ msgstr "Montrer les déplacements entre les chemins" #: ../share/extensions/hpgl_input.inx.h:8 msgid "Check this to show movements between paths (Default: Unchecked)" -msgstr "Cocher pour montrer les déplacements entre les chemins (décoché par défaut)" +msgstr "" +"Cocher pour montrer les déplacements entre les chemins (décoché par défaut)" #: ../share/extensions/hpgl_input.inx.h:9 #: ../share/extensions/hpgl_output.inx.h:34 @@ -31275,17 +34207,22 @@ msgid "HP Graphics Language file (*.hpgl)" msgstr "Fichier HP Graphics Language (*.hpgl)" #: ../share/extensions/hpgl_input.inx.h:10 -#, fuzzy msgid "Import an HP Graphics Language file" -msgstr "Exporter vers un fichier HP Graphics Language" +msgstr "Importer un fichier HP Graphics Language" #: ../share/extensions/hpgl_output.inx.h:1 msgid "HPGL Output" msgstr "Sortie HPGL" #: ../share/extensions/hpgl_output.inx.h:2 -msgid "Please make sure that all objects you want to save are converted to paths. Please use the plotter extension (Extensions menu) to plot directly over a serial connection." -msgstr "Assurez-vous que tous les objets que vous souhaitez enregistrer sont convertis en chemins. Veuillez utiliser l'extension Traceur (dans le menu Extensions>Exporter) pour tracer directement au travers du port série." +msgid "" +"Please make sure that all objects you want to save are converted to paths. " +"Please use the plotter extension (Extensions menu) to plot directly over a " +"serial connection." +msgstr "" +"Assurez-vous que tous les objets que vous souhaitez enregistrer sont " +"convertis en chemins. Veuillez utiliser l'extension Traceur (dans le menu " +"Extensions>Exporter) pour tracer directement au travers du port série." #: ../share/extensions/hpgl_output.inx.h:3 #: ../share/extensions/plotter.inx.h:22 @@ -31309,8 +34246,12 @@ msgstr "Force du stylo (g) :" #: ../share/extensions/hpgl_output.inx.h:11 #: ../share/extensions/plotter.inx.h:30 -msgid "The amount of force pushing down the pen in grams, set to 0 to omit command; most plotters ignore this command (Default: 0)" -msgstr "La force d'appui du stylo, en grammes, ignorée lorsque la valeur est à 0 ; la plupart des traceurs ignorent cette commande (par défaut : 0)" +msgid "" +"The amount of force pushing down the pen in grams, set to 0 to omit command; " +"most plotters ignore this command (Default: 0)" +msgstr "" +"La force d'appui du stylo, en grammes, ignorée lorsque la valeur est à 0 ; " +"la plupart des traceurs ignorent cette commande (par défaut : 0)" #: ../share/extensions/hpgl_output.inx.h:12 #: ../share/extensions/plotter.inx.h:31 @@ -31319,8 +34260,13 @@ msgstr "Vitesse du stylo (cm/s ou mm/s) :" #: ../share/extensions/hpgl_output.inx.h:13 #, fuzzy -msgid "The speed the pen will move with in centimeters or millimeters per second (depending on your plotter model), set to 0 to omit command; most plotters ignore this command (Default: 0)" -msgstr "La force d'appui du stylo, en grammes, ignorée lorsque la valeur est à 0 ; la plupart des traceurs ignorent cette commande (par défaut : 0)" +msgid "" +"The speed the pen will move with in centimeters or millimeters per second " +"(depending on your plotter model), set to 0 to omit command; most plotters " +"ignore this command (Default: 0)" +msgstr "" +"La force d'appui du stylo, en grammes, ignorée lorsque la valeur est à 0 ; " +"la plupart des traceurs ignorent cette commande (par défaut : 0)" #: ../share/extensions/hpgl_output.inx.h:14 msgid "Rotation (°, Clockwise):" @@ -31358,8 +34304,10 @@ msgstr "Centrer le point zéro" #: ../share/extensions/hpgl_output.inx.h:21 #: ../share/extensions/plotter.inx.h:40 -msgid "Check this if your plotter uses a centered zero point (Default: Unchecked)" -msgstr "Cocher si votre traceur utilise un point zéro centré (décoché par défaut)" +msgid "" +"Check this if your plotter uses a centered zero point (Default: Unchecked)" +msgstr "" +"Cocher si votre traceur utilise un point zéro centré (décoché par défaut)" #: ../share/extensions/hpgl_output.inx.h:22 #: ../share/extensions/plotter.inx.h:41 @@ -31373,7 +34321,9 @@ msgstr "Surcoupe (mm) :" #: ../share/extensions/hpgl_output.inx.h:24 #: ../share/extensions/plotter.inx.h:43 -msgid "The distance in mm that will be cut over the starting point of the path to prevent open paths, set to 0.0 to omit command (Default: 1.00)" +msgid "" +"The distance in mm that will be cut over the starting point of the path to " +"prevent open paths, set to 0.0 to omit command (Default: 1.00)" msgstr "" #: ../share/extensions/hpgl_output.inx.h:25 @@ -31383,7 +34333,9 @@ msgstr "Décalage de l'outil (mm) :" #: ../share/extensions/hpgl_output.inx.h:26 #: ../share/extensions/plotter.inx.h:45 -msgid "The offset from the tool tip to the tool axis in mm, set to 0.0 to omit command (Default: 0.25)" +msgid "" +"The offset from the tool tip to the tool axis in mm, set to 0.0 to omit " +"command (Default: 0.25)" msgstr "" #: ../share/extensions/hpgl_output.inx.h:27 @@ -31393,7 +34345,9 @@ msgstr "Prédécouper" #: ../share/extensions/hpgl_output.inx.h:28 #: ../share/extensions/plotter.inx.h:47 -msgid "Check this to cut a small line before the real drawing starts to correctly align the tool orientation. (Default: Checked)" +msgid "" +"Check this to cut a small line before the real drawing starts to correctly " +"align the tool orientation. (Default: Checked)" msgstr "" #: ../share/extensions/hpgl_output.inx.h:29 @@ -31403,8 +34357,13 @@ msgstr "Écrasement des courbes :" #: ../share/extensions/hpgl_output.inx.h:30 #: ../share/extensions/plotter.inx.h:49 -msgid "Curves are divided into lines, this number controls how fine the curves will be reproduced, the smaller the finer (Default: '1.2')" -msgstr "Les courbes étant divisées en lignes, ce nombre contrôle la finesse de la courbe qui sera reproduite ; plus le nombre est petit, plus la courbe est précise (par défaut : 1.2)" +msgid "" +"Curves are divided into lines, this number controls how fine the curves will " +"be reproduced, the smaller the finer (Default: '1.2')" +msgstr "" +"Les courbes étant divisées en lignes, ce nombre contrôle la finesse de la " +"courbe qui sera reproduite ; plus le nombre est petit, plus la courbe est " +"précise (par défaut : 1.2)" #: ../share/extensions/hpgl_output.inx.h:31 #: ../share/extensions/plotter.inx.h:50 @@ -31413,13 +34372,21 @@ msgstr "Aligner automatiquement" #: ../share/extensions/hpgl_output.inx.h:32 #: ../share/extensions/plotter.inx.h:51 -msgid "Check this to auto align the drawing to the zero point (Plus the tool offset if used). If unchecked you have to make sure that all parts of your drawing are within the document border! (Default: Checked)" +msgid "" +"Check this to auto align the drawing to the zero point (Plus the tool offset " +"if used). If unchecked you have to make sure that all parts of your drawing " +"are within the document border! (Default: Checked)" msgstr "" #: ../share/extensions/hpgl_output.inx.h:33 #: ../share/extensions/plotter.inx.h:54 -msgid "All these settings depend on the plotter you use, for more information please consult the manual or homepage for your plotter." -msgstr "Tous ces paramètres dépendent du traceur que vous utilisez. Pour de plus amples informations, veuillez consulter le manuel ou la documentation en ligne de votre traceur.." +msgid "" +"All these settings depend on the plotter you use, for more information " +"please consult the manual or homepage for your plotter." +msgstr "" +"Tous ces paramètres dépendent du traceur que vous utilisez. Pour de plus " +"amples informations, veuillez consulter le manuel ou la documentation en " +"ligne de votre traceur.." #: ../share/extensions/hpgl_output.inx.h:35 msgid "Export an HP Graphics Language file" @@ -31564,8 +34531,12 @@ msgid "Other" msgstr "Autre" #: ../share/extensions/interp_att_g.inx.h:18 -msgid "If you select \"Other\", you must know the SVG attributes to identify here this \"other\"." -msgstr "Si vous sélectionnez « Autre », vous devez connaître les attributs SVG nécessaires pour identifier ici cet « autre »." +msgid "" +"If you select \"Other\", you must know the SVG attributes to identify here " +"this \"other\"." +msgstr "" +"Si vous sélectionnez « Autre », vous devez connaître les attributs SVG " +"nécessaires pour identifier ici cet « autre »." #: ../share/extensions/interp_att_g.inx.h:20 msgid "Integer Number" @@ -31575,10 +34546,6 @@ msgstr "Nombre entier" msgid "Float Number" msgstr "Nombre réel" -#: ../share/extensions/interp_att_g.inx.h:22 -msgid "Tag" -msgstr "Étiquette" - #: ../share/extensions/interp_att_g.inx.h:23 #: ../share/extensions/polyhedron_3d.inx.h:33 msgid "Style" @@ -31597,8 +34564,13 @@ msgid "No Unit" msgstr "Pas d'unité" #: ../share/extensions/interp_att_g.inx.h:28 -msgid "This effect applies a value for any interpolatable attribute for all elements inside the selected group or for all elements in a multiple selection." -msgstr "Cet effet applique une valeur sur les attributs interpolables de l'ensemble des éléments de la sélection." +msgid "" +"This effect applies a value for any interpolatable attribute for all " +"elements inside the selected group or for all elements in a multiple " +"selection." +msgstr "" +"Cet effet applique une valeur sur les attributs interpolables de l'ensemble " +"des éléments de la sélection." #: ../share/extensions/jessyInk_autoTexts.inx.h:1 msgid "Auto-texts" @@ -31634,8 +34606,14 @@ msgid "Number of slides" msgstr "Nombre de diapositives" #: ../share/extensions/jessyInk_autoTexts.inx.h:9 -msgid "This extension allows you to install, update and remove auto-texts for a JessyInk presentation. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet d'installer, mettre à jour ou supprimer des textes automatiques pour une présentation JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to install, update and remove auto-texts for a " +"JessyInk presentation. Please see code.google.com/p/jessyink for more " +"details." +msgstr "" +"Cette extension vous permet d'installer, mettre à jour ou supprimer des " +"textes automatiques pour une présentation JessyInk. Des informations " +"complémentaires sont disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_autoTexts.inx.h:10 #: ../share/extensions/jessyInk_effects.inx.h:15 @@ -31692,8 +34670,14 @@ msgid "Fade out" msgstr "Fermeture en fondu" #: ../share/extensions/jessyInk_effects.inx.h:14 -msgid "This extension allows you to install, update and remove object effects for a JessyInk presentation. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet d'installer, mettre à jour ou supprimer des effets d'objet pour une présentation JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to install, update and remove object effects for a " +"JessyInk presentation. Please see code.google.com/p/jessyink for more " +"details." +msgstr "" +"Cette extension vous permet d'installer, mettre à jour ou supprimer des " +"effets d'objet pour une présentation JessyInk. Des informations " +"complémentaires sont disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_export.inx.h:1 msgid "JessyInk zipped pdf or png output" @@ -31712,24 +34696,40 @@ msgid "PNG" msgstr "PNG" #: ../share/extensions/jessyInk_export.inx.h:8 -msgid "This extension allows you to export a JessyInk presentation once you created an export layer in your browser. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet d'exporter une présentation JessyInk, après avoir créé un calque d'exportation, vers un navigateur. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to export a JessyInk presentation once you created " +"an export layer in your browser. Please see code.google.com/p/jessyink for " +"more details." +msgstr "" +"Cette extension vous permet d'exporter une présentation JessyInk, après " +"avoir créé un calque d'exportation, vers un navigateur. Des informations " +"complémentaires sont disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_export.inx.h:9 msgid "JessyInk zipped pdf or png output (*.zip)" msgstr "Exportation JessyInk PDF ou PNG compressée (*.zip)" #: ../share/extensions/jessyInk_export.inx.h:10 -msgid "Creates a zip file containing pdfs or pngs of all slides of a JessyInk presentation." -msgstr "Crée un fichier zip contenant des PDF ou des PNG de toutes les diapositives de la présentation JessyInk." +msgid "" +"Creates a zip file containing pdfs or pngs of all slides of a JessyInk " +"presentation." +msgstr "" +"Crée un fichier zip contenant des PDF ou des PNG de toutes les diapositives " +"de la présentation JessyInk." #: ../share/extensions/jessyInk_install.inx.h:1 msgid "Install/update" msgstr "Installation/mise à jour" #: ../share/extensions/jessyInk_install.inx.h:3 -msgid "This extension allows you to install or update the JessyInk script in order to turn your SVG file into a presentation. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet d'installer ou mettre à jour le script JessyInk pour transformer le fichier SVG en une présentation. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to install or update the JessyInk script in order " +"to turn your SVG file into a presentation. Please see code.google.com/p/" +"jessyink for more details." +msgstr "" +"Cette extension vous permet d'installer ou mettre à jour le script JessyInk " +"pour transformer le fichier SVG en une présentation. Des informations " +"complémentaires sont disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_keyBindings.inx.h:1 msgid "Key bindings" @@ -31900,8 +34900,13 @@ msgid "Set number of columns to default:" msgstr "Définir le nombre de colonnes avec la valeur par défaut :" #: ../share/extensions/jessyInk_keyBindings.inx.h:45 -msgid "This extension allows you customise the key bindings JessyInk uses. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de personnaliser les raccourcis clavier utilisés par JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you customise the key bindings JessyInk uses. Please " +"see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de personnaliser les raccourcis clavier utilisés " +"par JessyInk. Des informations complémentaires sont disponibles sur le site " +"code.google.com/p/jessyink." #: ../share/extensions/jessyInk_masterSlide.inx.h:1 msgid "Master slide" @@ -31914,11 +34919,17 @@ msgstr "Nom du calque :" #: ../share/extensions/jessyInk_masterSlide.inx.h:4 msgid "If no layer name is supplied, the master slide is unset." -msgstr "En l'absence d'un nom de calque, la diapositive maîtresse est désactivée." +msgstr "" +"En l'absence d'un nom de calque, la diapositive maîtresse est désactivée." #: ../share/extensions/jessyInk_masterSlide.inx.h:6 -msgid "This extension allows you to change the master slide JessyInk uses. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de modifier la diapositive maîtresse utilisée par JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to change the master slide JessyInk uses. Please " +"see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de modifier la diapositive maîtresse utilisée " +"par JessyInk. Des informations complémentaires sont disponibles sur le site " +"code.google.com/p/jessyink." #: ../share/extensions/jessyInk_mouseHandler.inx.h:1 msgid "Mouse handler" @@ -31937,16 +34948,28 @@ msgid "Dragging/zoom" msgstr "Déplacement/zoom" #: ../share/extensions/jessyInk_mouseHandler.inx.h:7 -msgid "This extension allows you customise the mouse handler JessyInk uses. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de personnaliser la gestion de la souris par JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you customise the mouse handler JessyInk uses. Please " +"see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de personnaliser la gestion de la souris par " +"JessyInk. Des informations complémentaires sont disponibles sur le site code." +"google.com/p/jessyink." #: ../share/extensions/jessyInk_summary.inx.h:1 msgid "Summary" msgstr "Résumé" #: ../share/extensions/jessyInk_summary.inx.h:3 -msgid "This extension allows you to obtain information about the JessyInk script, effects and transitions contained in this SVG file. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet d'obtenir des informations sur le script JessyInk et les effets et transitions contenus dans le fichier SVG. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to obtain information about the JessyInk script, " +"effects and transitions contained in this SVG file. Please see code.google." +"com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet d'obtenir des informations sur le script " +"JessyInk et les effets et transitions contenus dans le fichier SVG. Des " +"informations complémentaires sont disponibles sur le site code.google.com/p/" +"jessyink." #: ../share/extensions/jessyInk_transitions.inx.h:1 msgid "Transitions" @@ -31965,8 +34988,13 @@ msgid "Transition out effect" msgstr "Effets de transition sortante" #: ../share/extensions/jessyInk_transitions.inx.h:13 -msgid "This extension allows you to change the transition JessyInk uses for the selected layer. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de modifier la transition utilisée par JessyInk pour le calque sélectionné. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to change the transition JessyInk uses for the " +"selected layer. Please see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de modifier la transition utilisée par JessyInk " +"pour le calque sélectionné. Des informations complémentaires sont " +"disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_uninstall.inx.h:1 msgid "Uninstall/remove" @@ -31998,19 +35026,33 @@ msgstr "Retirer les vues" #: ../share/extensions/jessyInk_uninstall.inx.h:9 msgid "Please select the parts of JessyInk you want to uninstall/remove." -msgstr "Veuillez sélectionner les parties de JessyInk que vous souhaitez désinstaller ou retirer." +msgstr "" +"Veuillez sélectionner les parties de JessyInk que vous souhaitez " +"désinstaller ou retirer." #: ../share/extensions/jessyInk_uninstall.inx.h:11 -msgid "This extension allows you to uninstall the JessyInk script. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de désinstaller le script JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to uninstall the JessyInk script. Please see code." +"google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de désinstaller le script JessyInk. Des " +"informations complémentaires sont disponibles sur le site code.google.com/p/" +"jessyink." #: ../share/extensions/jessyInk_video.inx.h:1 msgid "Video" msgstr "Vidéo" #: ../share/extensions/jessyInk_video.inx.h:3 -msgid "This extension puts a JessyInk video element on the current slide (layer). This element allows you to integrate a video into your JessyInk presentation. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension dépose un élément vidéo JessyInk sur la diapositive (calque) courant. Cet élément peut ensuite être utilisé pour intégrer une vidéo dans la présentation. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension puts a JessyInk video element on the current slide (layer). " +"This element allows you to integrate a video into your JessyInk " +"presentation. Please see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension dépose un élément vidéo JessyInk sur la diapositive (calque) " +"courant. Cet élément peut ensuite être utilisé pour intégrer une vidéo dans " +"la présentation. Des informations complémentaires sont disponibles sur le " +"site code.google.com/p/jessyink." #: ../share/extensions/jessyInk_view.inx.h:5 msgid "Remove view" @@ -32018,11 +35060,17 @@ msgstr "Retirer la vue" #: ../share/extensions/jessyInk_view.inx.h:6 msgid "Choose order number 0 to set the initial view of a slide." -msgstr "Choisir un numéro d'ordre 0 pour définir la vue initiale d'une diapositive." +msgstr "" +"Choisir un numéro d'ordre 0 pour définir la vue initiale d'une diapositive." #: ../share/extensions/jessyInk_view.inx.h:8 -msgid "This extension allows you to set, update and remove views for a JessyInk presentation. Please see code.google.com/p/jessyink for more details." -msgstr "Cette extension vous permet de définir, mettre à jour ou supprimer des vues de la présentation JessyInk. Des informations complémentaires sont disponibles sur le site code.google.com/p/jessyink." +msgid "" +"This extension allows you to set, update and remove views for a JessyInk " +"presentation. Please see code.google.com/p/jessyink for more details." +msgstr "" +"Cette extension vous permet de définir, mettre à jour ou supprimer des vues " +"de la présentation JessyInk. Des informations complémentaires sont " +"disponibles sur le site code.google.com/p/jessyink." #: ../share/extensions/layers2svgfont.inx.h:1 msgid "3 - Convert Glyph Layers to SVG Font" @@ -32218,7 +35266,9 @@ msgid "" "]: return to remembered point\n" msgstr "" "\n" -"Le chemin est généré en appliquant des règles à un axiome, sur plusieurs générations. Les commandes suivantes sont reconnues dans les champs Axiome et Règles :\n" +"Le chemin est généré en appliquant des règles à un axiome, sur plusieurs " +"générations. Les commandes suivantes sont reconnues dans les champs Axiome " +"et Règles :\n" "\n" "A, B, C, D, E ou F : dessiner d'un pas en avant ;\n" "G, H, I, J, K ou L : déplacer d'un pas en avant ;\n" @@ -32244,8 +35294,14 @@ msgid "Paragraph length fluctuation (sentences):" msgstr "Fluctuation de la longueur des paragraphes (en phrases) :" #: ../share/extensions/lorem_ipsum.inx.h:7 -msgid "This effect creates the standard \"Lorem Ipsum\" pseudolatin placeholder text. If a flowed text is selected, Lorem Ipsum is added to it; otherwise a new flowed text object, the size of the page, is created in a new layer." -msgstr "Cette effet crée un texte bouche-trou « Lorem Ipsum » (du pseudo-latin). Si un cadre de texte est sélectionné, y ajoute Lorem Ipsum; sinon, un nouveau cadre de texte de la taille de la page est créé dans un nouveau calque." +msgid "" +"This effect creates the standard \"Lorem Ipsum\" pseudolatin placeholder " +"text. If a flowed text is selected, Lorem Ipsum is added to it; otherwise a " +"new flowed text object, the size of the page, is created in a new layer." +msgstr "" +"Cette effet crée un texte bouche-trou « Lorem Ipsum » (du pseudo-latin). Si " +"un cadre de texte est sélectionné, y ajoute Lorem Ipsum; sinon, un nouveau " +"cadre de texte de la taille de la page est créé dans un nouveau calque." #: ../share/extensions/markers_strokepaint.inx.h:1 msgid "Color Markers" @@ -32305,7 +35361,7 @@ msgstr "Orientation du texte :" #: ../share/extensions/measure.inx.h:5 msgid "Angle [with Fixed Angle option only] (°):" -msgstr "" +msgstr "Angle [avec l'option Angle fixe seulement] (°) :" #: ../share/extensions/measure.inx.h:6 msgid "Font size (px):" @@ -32333,10 +35389,9 @@ msgid "Area" msgstr "Aire" #: ../share/extensions/measure.inx.h:13 -#, fuzzy msgctxt "measure extension" msgid "Center of Mass" -msgstr "Inertie du stylo" +msgstr "Barycentre" #: ../share/extensions/measure.inx.h:14 msgctxt "measure extension" @@ -32351,29 +35406,52 @@ msgstr "Angle fixe" #: ../share/extensions/measure.inx.h:18 #, fuzzy, no-c-format msgid "" -"This effect measures the length, area, or center-of-mass of the selected paths. Length and area are added as a text object with the selected units. Center-of-mass is shown as a cross symbol.\n" +"This effect measures the length, area, or center-of-mass of the selected " +"paths. Length and area are added as a text object with the selected units. " +"Center-of-mass is shown as a cross symbol.\n" "\n" -" * Text display format can be either Text-On-Path, or stand-alone text at a specified angle.\n" -" * The number of significant digits can be controlled by the Precision field.\n" +" * Text display format can be either Text-On-Path, or stand-alone text at a " +"specified angle.\n" +" * The number of significant digits can be controlled by the Precision " +"field.\n" " * The Offset field controls the distance from the text to the path.\n" -" * The Scale factor can be used to make measurements in scaled drawings. For example, if 1 cm in the drawing equals 2.5 m in the real world, Scale must be set to 250.\n" -" * When calculating area, the result should be precise for polygons and Bezier curves. If a circle is used, the area may be too high by as much as 0.03%." +" * The Scale factor can be used to make measurements in scaled drawings. " +"For example, if 1 cm in the drawing equals 2.5 m in the real world, Scale " +"must be set to 250.\n" +" * When calculating area, the result should be precise for polygons and " +"Bezier curves. If a circle is used, the area may be too high by as much as " +"0.03%." msgstr "" -"Cet effet mesure la longueur ou l'aire du chemin sélectionné et l'ajoute comme un objet texte avec l'unité sélectionnée.\n" +"Cet effet mesure la longueur ou l'aire du chemin sélectionné et l'ajoute " +"comme un objet texte avec l'unité sélectionnée.\n" "\n" -" * L'affichage peut s'effectuer sur le chemin, ou comme texte indépendant sur un angle choisi.\n" -" * Le nombre de chiffres affichés peut être contrôlé par le champ Précision.\n" +" * L'affichage peut s'effectuer sur le chemin, ou comme texte indépendant " +"sur un angle choisi.\n" +" * Le nombre de chiffres affichés peut être contrôlé par le champ " +"Précision.\n" " * Le champ Décalage contrôle la distance entre le texte et le chemin.\n" -" * Le facteur d'échelle peut être utilisé pour réaliser des mesures dans des dessins à l'échelle. Par exemple, si 1 cm dans le dessin est égal à 2,5 m en réalité, le facteur d'échelle doit être réglé à 250.\n" -" * Lors du calcul de l'aire, le résultat devrait être précis pour les polygones et les courbes de Bézier. Si un cercle est utilisé, l'aire pourrait être jusqu'à 0,03 % supérieure à la valeur attendue." +" * Le facteur d'échelle peut être utilisé pour réaliser des mesures dans " +"des dessins à l'échelle. Par exemple, si 1 cm dans le dessin est égal à 2,5 " +"m en réalité, le facteur d'échelle doit être réglé à 250.\n" +" * Lors du calcul de l'aire, le résultat devrait être précis pour les " +"polygones et les courbes de Bézier. Si un cercle est utilisé, l'aire " +"pourrait être jusqu'à 0,03 % supérieure à la valeur attendue." #: ../share/extensions/merge_styles.inx.h:1 msgid "Merge Styles into CSS" msgstr "Fusionner les styles dans une feuille de styles" #: ../share/extensions/merge_styles.inx.h:2 -msgid "All selected nodes will be grouped together and their common style attributes will create a new class, this class will replace the existing inline style attributes. Please use a name which best describes the kinds of objects and their common context for best effect." +msgid "" +"All selected nodes will be grouped together and their common style " +"attributes will create a new class, this class will replace the existing " +"inline style attributes. Please use a name which best describes the kinds of " +"objects and their common context for best effect." msgstr "" +"Tous les nœuds sélectionnés seront groupés et leurs attributs de style " +"communs seront remplacés par une nouvelle classe de styles. Veuillez " +"utiliser un nom décrivant au mieux le type d'objets et leur contexte pour un " +"meilleur effet." #: ../share/extensions/merge_styles.inx.h:3 msgid "New Class Name:" @@ -32445,10 +35523,12 @@ msgstr "Échantillons :" #: ../share/extensions/param_curves.inx.h:14 msgid "" -"Select a rectangle before calling the extension, it will determine X and Y scales.\n" +"Select a rectangle before calling the extension, it will determine X and Y " +"scales.\n" "First derivatives are always determined numerically." msgstr "" -"Sélectionner un rectangle avant de lancer l'extension ; il déterminera les échelles X et Y.\n" +"Sélectionner un rectangle avant de lancer l'extension ; il déterminera les " +"échelles X et Y.\n" "Les dérivées premières sont toujours déterminées numériquement." #: ../share/extensions/param_curves.inx.h:26 @@ -32506,8 +35586,14 @@ msgstr "Ruban" #: ../share/extensions/pathalongpath.inx.h:17 #, fuzzy -msgid "This effect scatters or bends a pattern along arbitrary \"skeleton\" paths. The pattern is the topmost object in the selection. Groups of paths, shapes or clones are allowed." -msgstr "Cet effet disperse un motif le long de chemins « squelettes » arbitraires. Le motif doit être l'objet le plus haut dans la sélection. Les groupes de chemins, formes et clones sont permis." +msgid "" +"This effect scatters or bends a pattern along arbitrary \"skeleton\" paths. " +"The pattern is the topmost object in the selection. Groups of paths, shapes " +"or clones are allowed." +msgstr "" +"Cet effet disperse un motif le long de chemins « squelettes » arbitraires. " +"Le motif doit être l'objet le plus haut dans la sélection. Les groupes de " +"chemins, formes et clones sont permis." #: ../share/extensions/pathscatter.inx.h:3 msgid "Follow path orientation" @@ -32550,8 +35636,14 @@ msgid "Sequentially" msgstr "Séquentiellement" #: ../share/extensions/pathscatter.inx.h:19 -msgid "This effect scatters a pattern along arbitrary \"skeleton\" paths. The pattern must be the topmost object in the selection. Groups of paths, shapes, clones are allowed." -msgstr "Cet effet disperse un motif le long de chemins « squelettes » arbitraires. Le motif doit être l'objet le plus haut dans la sélection. Les groupes de chemins, formes et clones sont permis." +msgid "" +"This effect scatters a pattern along arbitrary \"skeleton\" paths. The " +"pattern must be the topmost object in the selection. Groups of paths, " +"shapes, clones are allowed." +msgstr "" +"Cet effet disperse un motif le long de chemins « squelettes » arbitraires. " +"Le motif doit être l'objet le plus haut dans la sélection. Les groupes de " +"chemins, formes et clones sont permis." #: ../share/extensions/perfectboundcover.inx.h:1 msgid "Perfect-Bound Cover Template" @@ -32624,27 +35716,30 @@ msgstr "Fond perdu (pouces) :" #: ../share/extensions/perfectboundcover.inx.h:18 msgid "Note: Bond Weight # calculations are a best-guess estimate." -msgstr "Note : le calcul du poids de « bond » est la meilleure estimation possible" - -#: ../share/extensions/perspective.inx.h:1 -msgid "Perspective" -msgstr "Perspective" +msgstr "" +"Note : le calcul du poids de « bond » est la meilleure estimation possible" #: ../share/extensions/pixelsnap.inx.h:1 msgid "PixelSnap" msgstr "Aligner au pixel" #: ../share/extensions/pixelsnap.inx.h:2 -msgid "Snap all paths in selection to pixels. Snaps borders to half-points and fills to full points." -msgstr "Aligne les chemins de la sélection sur les pixels. Les bordures sont alignées sur des demi-points, et les remplissages sur des points." +msgid "" +"Snap all paths in selection to pixels. Snaps borders to half-points and " +"fills to full points." +msgstr "" +"Aligne les chemins de la sélection sur les pixels. Les bordures sont " +"alignées sur des demi-points, et les remplissages sur des points." #: ../share/extensions/plotter.inx.h:1 msgid "Plot" msgstr "Traceur" #: ../share/extensions/plotter.inx.h:2 -msgid "Please make sure that all objects you want to plot are converted to paths." -msgstr "Veuillez vous assurer que tous les objets à tracer sont convertis en chemins." +msgid "" +"Please make sure that all objects you want to plot are converted to paths." +msgstr "" +"Veuillez vous assurer que tous les objets à tracer sont convertis en chemins." #: ../share/extensions/plotter.inx.h:3 msgid "Connection Settings " @@ -32655,8 +35750,12 @@ msgid "Serial port:" msgstr "Port série :" #: ../share/extensions/plotter.inx.h:5 -msgid "The port of your serial connection, on Windows something like 'COM1', on Linux something like: '/dev/ttyUSB0' (Default: COM1)" -msgstr "Le port de votre connexion série ; avec Windows, quelque-chose comme « COM1 » ; avec Linux, comme « /dev/ttyUSB0 » (par défaut : COM1)" +msgid "" +"The port of your serial connection, on Windows something like 'COM1', on " +"Linux something like: '/dev/ttyUSB0' (Default: COM1)" +msgstr "" +"Le port de votre connexion série ; avec Windows, quelque-chose comme " +"« COM1 » ; avec Linux, comme « /dev/ttyUSB0 » (par défaut : COM1)" #: ../share/extensions/plotter.inx.h:6 msgid "Serial baud rate:" @@ -32671,8 +35770,11 @@ msgid "Flow control:" msgstr "Contrôle de flux :" #: ../share/extensions/plotter.inx.h:9 -msgid "The Software / Hardware flow control of your serial connection (Default: Software)" -msgstr "Le type de contrôle de flux de votre connexion série (par défaut : logiciel)" +msgid "" +"The Software / Hardware flow control of your serial connection (Default: " +"Software)" +msgstr "" +"Le type de contrôle de flux de votre connexion série (par défaut : logiciel)" #: ../share/extensions/plotter.inx.h:10 msgid "Command language:" @@ -32712,20 +35814,36 @@ msgid "KNK Zing (HPGL variant)" msgstr "KNK Zing (une variante d'HPGL)" #: ../share/extensions/plotter.inx.h:19 -msgid "Using wrong settings can under certain circumstances cause Inkscape to freeze. Always save your work before plotting!" -msgstr "L'utilisation de mauvais paramètres peut dans certaines circonstances causer des plantages de l'application. Sauvegardez toujours votre travail avant d'utiliser cette extension !" +msgid "" +"Using wrong settings can under certain circumstances cause Inkscape to " +"freeze. Always save your work before plotting!" +msgstr "" +"L'utilisation de mauvais paramètres peut dans certaines circonstances causer " +"des plantages de l'application. Sauvegardez toujours votre travail avant " +"d'utiliser cette extension !" #: ../share/extensions/plotter.inx.h:20 -msgid "This can be a physical serial connection or a USB-to-Serial bridge. Ask your plotter manufacturer for drivers if needed." -msgstr "La connexion peut s'effectuer par l'intermédiaire d'un port série ou d'un pont USB-série. Si besoin, demandez les pilotes de périphérique au fabriquant de votre traceur." +msgid "" +"This can be a physical serial connection or a USB-to-Serial bridge. Ask your " +"plotter manufacturer for drivers if needed." +msgstr "" +"La connexion peut s'effectuer par l'intermédiaire d'un port série ou d'un " +"pont USB-série. Si besoin, demandez les pilotes de périphérique au " +"fabriquant de votre traceur." #: ../share/extensions/plotter.inx.h:21 msgid "Parallel (LPT) connections are not supported." msgstr "Les connexions sur port parallèle (LPT) ne sont pas supportées." #: ../share/extensions/plotter.inx.h:32 -msgid "The speed the pen will move with in centimeters or millimeters per second (depending on your plotter model), set to 0 to omit command. Most plotters ignore this command. (Default: 0)" +msgid "" +"The speed the pen will move with in centimeters or millimeters per second " +"(depending on your plotter model), set to 0 to omit command. Most plotters " +"ignore this command. (Default: 0)" msgstr "" +"La vitesse du stylo est exprimée en cm/s ou en mm/s en fonction du modèle de " +"traceur. La plupart des traceurs ignorent cette commande (Défaut à 0 pour " +"ignorer la commande)." #: ../share/extensions/plotter.inx.h:33 msgid "Rotation (°, clockwise):" @@ -32736,7 +35854,9 @@ msgid "Show debug information" msgstr "Afficher les informations de débogage" #: ../share/extensions/plotter.inx.h:53 -msgid "Check this to get verbose information about the plot without actually sending something to the plotter (A.k.a. data dump) (Default: Unchecked)" +msgid "" +"Check this to get verbose information about the plot without actually " +"sending something to the plotter (A.k.a. data dump) (Default: Unchecked)" msgstr "" #: ../share/extensions/plt_input.inx.h:1 @@ -33032,21 +36152,17 @@ msgstr "Déplacement maximum sur l'axe X (px) :" msgid "Maximum displacement in Y (px):" msgstr "Déplacement maximum sur l'axe Y (px) :" -#: ../share/extensions/radiusrand.inx.h:5 -msgid "Shift nodes" -msgstr "Déplacer les nœuds" - -#: ../share/extensions/radiusrand.inx.h:6 -msgid "Shift node handles" -msgstr "Déplacer les poignées de nœuds" - #: ../share/extensions/radiusrand.inx.h:7 msgid "Use normal distribution" msgstr "Utiliser une distribution normale" #: ../share/extensions/radiusrand.inx.h:9 -msgid "This effect randomly shifts the nodes (and optionally node handles) of the selected path." -msgstr "Cet effet décale les nœuds du chemin sélectionné. Il peut aussi agir sur les poignées." +msgid "" +"This effect randomly shifts the nodes (and optionally node handles) of the " +"selected path." +msgstr "" +"Cet effet décale les nœuds du chemin sélectionné. Il peut aussi agir sur les " +"poignées." #: ../share/extensions/render_alphabetsoup.inx.h:1 msgid "Alphabet Soup" @@ -33093,15 +36209,17 @@ msgstr "QR Code" #: ../share/extensions/render_barcode_qrcode.inx.h:2 msgid "See http://www.denso-wave.com/qrcode/index-e.html for details" -msgstr "Voir http://www.denso-wave.com/qrcode/index-e.html pour de plus amples détails" - -#: ../share/extensions/render_barcode_qrcode.inx.h:5 -msgid "Auto" -msgstr "Auto" +msgstr "" +"Voir http://www.denso-wave.com/qrcode/index-e.html pour de plus amples " +"détails" #: ../share/extensions/render_barcode_qrcode.inx.h:6 -msgid "With \"Auto\", the size of the barcode depends on the length of the text and the error correction level" -msgstr "Avec \"Auto\", la taille du code-barres dépend de la longueur du texte et du niveau de correction d'erreur" +msgid "" +"With \"Auto\", the size of the barcode depends on the length of the text and " +"the error correction level" +msgstr "" +"Avec \"Auto\", la taille du code-barres dépend de la longueur du texte et du " +"niveau de correction d'erreur" #: ../share/extensions/render_barcode_qrcode.inx.h:7 msgid "Error correction level:" @@ -33197,8 +36315,11 @@ msgid "List all fonts" msgstr "Lister toutes les polices" #: ../share/extensions/replace_font.inx.h:7 -msgid "Choose this tab if you would like to see a list of the fonts used/found." -msgstr "Choisissez cet onglet pour lister les polices utilisées ou trouvées dans le document." +msgid "" +"Choose this tab if you would like to see a list of the fonts used/found." +msgstr "" +"Choisissez cet onglet pour lister les polices utilisées ou trouvées dans le " +"document." #: ../share/extensions/replace_font.inx.h:8 msgid "Work on:" @@ -33387,7 +36508,8 @@ msgstr "Raccourcir les identifiants" #: ../share/extensions/scour.inx.h:22 msgid "Preserve manually created ID names not ending with digits" -msgstr "Préserver les identifiants manuels qui ne se terminent pas par un chiffre" +msgstr "" +"Préserver les identifiants manuels qui ne se terminent pas par un chiffre" #: ../share/extensions/scour.inx.h:23 msgid "Preserve these ID names, comma-separated:" @@ -33406,31 +36528,65 @@ msgstr "Aide (options)" msgid "" "This extension optimizes the SVG file according to the following options:\n" " * Shorten color names: convert all colors to #RRGGBB or #RGB format.\n" -" * Convert CSS attributes to XML attributes: convert styles from style tags and inline style=\"\" declarations into XML attributes.\n" -" * Group collapsing: removes useless g elements, promoting their contents up one level. Requires \"Remove unused ID names for elements\" to be set.\n" -" * Create groups for similar attributes: create g elements for runs of elements having at least one attribute in common (e.g. fill color, stroke opacity, ...).\n" +" * Convert CSS attributes to XML attributes: convert styles from style " +"tags and inline style=\"\" declarations into XML attributes.\n" +" * Group collapsing: removes useless g elements, promoting their contents " +"up one level. Requires \"Remove unused ID names for elements\" to be set.\n" +" * Create groups for similar attributes: create g elements for runs of " +"elements having at least one attribute in common (e.g. fill color, stroke " +"opacity, ...).\n" " * Embed rasters: embed raster images as base64-encoded data URLs.\n" -" * Keep editor data: don't remove Inkscape, Sodipodi or Adobe Illustrator elements and attributes.\n" -" * Remove metadata: remove metadata tags along with all the information in them, which may include license metadata, alternate versions for non-SVG-enabled browsers, etc.\n" +" * Keep editor data: don't remove Inkscape, Sodipodi or Adobe Illustrator " +"elements and attributes.\n" +" * Remove metadata: remove metadata tags along with all the information " +"in them, which may include license metadata, alternate versions for non-SVG-" +"enabled browsers, etc.\n" " * Remove comments: remove comment tags.\n" -" * Work around renderer bugs: emits slightly larger SVG data, but works around a bug in librsvg's renderer, which is used in Eye of GNOME and other various applications.\n" +" * Work around renderer bugs: emits slightly larger SVG data, but works " +"around a bug in librsvg's renderer, which is used in Eye of GNOME and other " +"various applications.\n" " * Enable viewboxing: size image to 100%/100% and introduce a viewBox.\n" -" * Number of significant digits for coords: all coordinates are output with that number of significant digits. For example, if 3 is specified, the coordinate 3.5153 is output as 3.51 and the coordinate 471.55 is output as 472.\n" -" * XML indentation (pretty-printing): either None for no indentation, Space to use one space per nesting level, or Tab to use one tab per nesting level." +" * Number of significant digits for coords: all coordinates are output " +"with that number of significant digits. For example, if 3 is specified, the " +"coordinate 3.5153 is output as 3.51 and the coordinate 471.55 is output as " +"472.\n" +" * XML indentation (pretty-printing): either None for no indentation, " +"Space to use one space per nesting level, or Tab to use one tab per nesting " +"level." msgstr "" "Cette extension optimise le fichier SVG en fonction des options suivantes :\n" -" * Raccourcir les valeurs de couleur : convertit toutes les couleurs au format #RRGGBB ou #RGB.\n" -" * Convertir les attributs CSS en attributs XML : convertit les styles défini à partir de l'étiquette style et des déclarations en ligne style=\"\" en attributs XML.\n" -" * Réduire les groupes : supprime des éléments g inutiles, tout en remontant leur contenu d'un niveau. L'option \"Supprimer les identifiants d'éléments inutilisés\" doit également être activée.\n" -" * Créer des groupes pour les attributs similaires : crée des éléments g pour les séries d'éléments ayant au moins un attribut en commun (couleur de remplissage ou opacité du contour par exemple).\n" -" * Incorporer les images : incorpore les images matricielles sous la forme de données encodées en base 64.\n" -" * Conserver les données d'édition : ne supprime pas les éléments et attributs issus d'Inkscape, Sodipodi ou Adobe Illustrator.\n" -" * Supprimer les métadonnées : supprime les éléments de type metadata ainsi que toutes les informations qu'ils contiennent, ce qui peut inclure les métadonnées de licence, les versions alternatives pour les navigateurs ne supportant pas SVG, etc.\n" -" * Supprimer les commentaires : supprime les éléments de type commentaire.\n" -" * Contourner les défauts de rendu : génère des données SVG légèrement plus volumineuses, mais contourne un défaut du moteur de rendu libsvg, qui est utilisé par Eye of Gnome et diverses autres applications.\n" -" * Activer une viewBox : dimensionne l'image à 100 % et ajoute une viewBox.\n" -" * Nombre de chiffres significatifs pour les coordonnées : toutes les coordonnées sont générées avec une certain nombre de décimales significatives. Si la valeur 3 est choisie, par exemple, la coordonnée 3.5153 sera réduite à 3.51 et la coordonnée 471.55 réduite à 472.\n" -" * Indentation du code XML (impression formatée) : type d'indentation de l'exportation : aucune, espace ou tabulation (espace par défaut)." +" * Raccourcir les valeurs de couleur : convertit toutes les couleurs au " +"format #RRGGBB ou #RGB.\n" +" * Convertir les attributs CSS en attributs XML : convertit les styles " +"défini à partir de l'étiquette style et des déclarations en ligne style=\"\" " +"en attributs XML.\n" +" * Réduire les groupes : supprime des éléments g inutiles, tout en " +"remontant leur contenu d'un niveau. L'option \"Supprimer les identifiants " +"d'éléments inutilisés\" doit également être activée.\n" +" * Créer des groupes pour les attributs similaires : crée des éléments g " +"pour les séries d'éléments ayant au moins un attribut en commun (couleur de " +"remplissage ou opacité du contour par exemple).\n" +" * Incorporer les images : incorpore les images matricielles sous la " +"forme de données encodées en base 64.\n" +" * Conserver les données d'édition : ne supprime pas les éléments et " +"attributs issus d'Inkscape, Sodipodi ou Adobe Illustrator.\n" +" * Supprimer les métadonnées : supprime les éléments de type metadata " +"ainsi que toutes les informations qu'ils contiennent, ce qui peut inclure " +"les métadonnées de licence, les versions alternatives pour les navigateurs " +"ne supportant pas SVG, etc.\n" +" * Supprimer les commentaires : supprime les éléments de type " +"commentaire.\n" +" * Contourner les défauts de rendu : génère des données SVG légèrement " +"plus volumineuses, mais contourne un défaut du moteur de rendu libsvg, qui " +"est utilisé par Eye of Gnome et diverses autres applications.\n" +" * Activer une viewBox : dimensionne l'image à 100 % et ajoute une " +"viewBox.\n" +" * Nombre de chiffres significatifs pour les coordonnées : toutes les " +"coordonnées sont générées avec une certain nombre de décimales " +"significatives. Si la valeur 3 est choisie, par exemple, la coordonnée " +"3.5153 sera réduite à 3.51 et la coordonnée 471.55 réduite à 472.\n" +" * Indentation du code XML (impression formatée) : type d'indentation de " +"l'exportation : aucune, espace ou tabulation (espace par défaut)." #: ../share/extensions/scour.inx.h:40 msgid "Help (Ids)" @@ -33439,18 +36595,38 @@ msgstr "Aide (identifiants)" #: ../share/extensions/scour.inx.h:41 msgid "" "Ids specific options:\n" -" * Remove unused ID names for elements: remove all unreferenced ID attributes.\n" -" * Shorten IDs: reduce the length of all ID attributes, assigning the shortest to the most-referenced elements. For instance, #linearGradient5621, referenced 100 times, can become #a.\n" -" * Preserve manually created ID names not ending with digits: usually, optimised SVG output removes these, but if they're needed for referencing (e.g. #middledot), you may use this option.\n" -" * Preserve these ID names, comma-separated: you can use this in conjunction with the other preserve options if you wish to preserve some more specific ID names.\n" -" * Preserve ID names starting with: usually, optimised SVG output removes all unused ID names, but if all of your preserved ID names start with the same prefix (e.g. #flag-mx, #flag-pt), you may use this option." +" * Remove unused ID names for elements: remove all unreferenced ID " +"attributes.\n" +" * Shorten IDs: reduce the length of all ID attributes, assigning the " +"shortest to the most-referenced elements. For instance, #linearGradient5621, " +"referenced 100 times, can become #a.\n" +" * Preserve manually created ID names not ending with digits: usually, " +"optimised SVG output removes these, but if they're needed for referencing (e." +"g. #middledot), you may use this option.\n" +" * Preserve these ID names, comma-separated: you can use this in " +"conjunction with the other preserve options if you wish to preserve some " +"more specific ID names.\n" +" * Preserve ID names starting with: usually, optimised SVG output removes " +"all unused ID names, but if all of your preserved ID names start with the " +"same prefix (e.g. #flag-mx, #flag-pt), you may use this option." msgstr "" "Options spécifiques aux identifiants :\n" -" * Supprimer les identifiants d'éléments inutilisés : supprimer tous les attributs ID sans référence.\n" -" * Raccourcir les identifiants : réduit la longueur de tous les attributs ID, en assignant les plus courts aux éléments les plus référencés. Par exemple, un attribut #linearGradient5621 référencé 100 fois peut devenir #a.\n" -" * Préserver les identifiants manuels qui ne se terminent pas par un chiffre : normalement supprimés par l'extension, cochez cette option si ces identifiants sont utilisés comme référence (par exemple #pointcentral).\n" -" * Préserver les identifiants suivants (séparés par des virgules) : vous pouvez utiliser cette option en conjonction avec les autres options de préservation si vous souhaitez conserver certain identifiants spécifiques.\n" -" * Préserver les identifiants débutant par : normalement, cette extension supprime tous les identifiants inutilisés, mais si tous vos identifiants à préserver commencent par le même préfixe, (#page-debut, #page-fin, par exemple), vous pouvez utiliser cette option." +" * Supprimer les identifiants d'éléments inutilisés : supprimer tous les " +"attributs ID sans référence.\n" +" * Raccourcir les identifiants : réduit la longueur de tous les attributs " +"ID, en assignant les plus courts aux éléments les plus référencés. Par " +"exemple, un attribut #linearGradient5621 référencé 100 fois peut devenir " +"#a.\n" +" * Préserver les identifiants manuels qui ne se terminent pas par un " +"chiffre : normalement supprimés par l'extension, cochez cette option si ces " +"identifiants sont utilisés comme référence (par exemple #pointcentral).\n" +" * Préserver les identifiants suivants (séparés par des virgules) : vous " +"pouvez utiliser cette option en conjonction avec les autres options de " +"préservation si vous souhaitez conserver certain identifiants spécifiques.\n" +" * Préserver les identifiants débutant par : normalement, cette extension " +"supprime tous les identifiants inutilisés, mais si tous vos identifiants à " +"préserver commencent par le même préfixe, (#page-debut, #page-fin, par " +"exemple), vous pouvez utiliser cette option." #: ../share/extensions/scour.inx.h:47 msgid "Optimized SVG (*.svg)" @@ -33460,6 +36636,31 @@ msgstr "SVG optimisé (*.svg)" msgid "Scalable Vector Graphics" msgstr "Scalable Vector Graphics" +#: ../share/extensions/seamless_pattern.inx.h:1 +#, fuzzy +msgid "Seamless Pattern" +msgstr "Motifs Braille" + +#: ../share/extensions/seamless_pattern.inx.h:2 +#: ../share/extensions/seamless_pattern_procedural.inx.h:2 +#, fuzzy +msgid "Custom Width (px.):" +msgstr "Épaisseur du contour (px) :" + +#: ../share/extensions/seamless_pattern.inx.h:3 +#: ../share/extensions/seamless_pattern_procedural.inx.h:3 +#, fuzzy +msgid "Custom Height (px.):" +msgstr "Droite (px) :" + +#: ../share/extensions/seamless_pattern.inx.h:4 +msgid "This extension overwrite current document" +msgstr "" + +#: ../share/extensions/seamless_pattern_procedural.inx.h:1 +msgid "Seamless Pattern Procedural" +msgstr "" + #: ../share/extensions/setup_typography_canvas.inx.h:1 msgid "1 - Setup Typography Canvas" msgstr "1 - Paramétrer le canevas typographique" @@ -33495,7 +36696,8 @@ msgstr "Fichiers graphiques vectoriels sK1 (.sk1)" #: ../share/extensions/sk1_input.inx.h:3 msgid "Open files saved in sK1 vector graphics editor" -msgstr "Ouvrir des fichiers enregistrés avec l'éditeur de graphismes vectoriels sK1" +msgstr "" +"Ouvrir des fichiers enregistrés avec l'éditeur de graphismes vectoriels sK1" #: ../share/extensions/sk1_output.inx.h:1 msgid "sK1 vector graphics files output" @@ -33614,15 +36816,13 @@ msgstr "Sortie XAML" #: ../share/extensions/svg2xaml.inx.h:2 msgid "Silverlight compatible XAML" -msgstr "" +msgstr "XAML compatible Silverlight" -#: ../share/extensions/svg2xaml.inx.h:3 -#: ../share/extensions/xaml2svg.inx.h:2 +#: ../share/extensions/svg2xaml.inx.h:3 ../share/extensions/xaml2svg.inx.h:2 msgid "Microsoft XAML (*.xaml)" msgstr "Microsoft XAML (*.xaml)" -#: ../share/extensions/svg2xaml.inx.h:4 -#: ../share/extensions/xaml2svg.inx.h:3 +#: ../share/extensions/svg2xaml.inx.h:4 ../share/extensions/xaml2svg.inx.h:3 msgid "Microsoft's GUI definition format" msgstr "Format de définition d'interfaces graphiques de Microsoft" @@ -33643,8 +36843,12 @@ msgid "Compressed Inkscape SVG with media (*.zip)" msgstr "SVG Inkscape compressé avec média (*.zip)" #: ../share/extensions/svg_and_media_zip_output.inx.h:5 -msgid "Inkscape's native file format compressed with Zip and including all media files" -msgstr "Format de fichier natif d'Inkscape compressé avec Zip et incluant d'autres fichiers de média" +msgid "" +"Inkscape's native file format compressed with Zip and including all media " +"files" +msgstr "" +"Format de fichier natif d'Inkscape compressé avec Zip et incluant d'autres " +"fichiers de média" #: ../share/extensions/svgcalendar.inx.h:1 msgid "Calendar" @@ -33708,7 +36912,8 @@ msgstr "Marge des mois :" #: ../share/extensions/svgcalendar.inx.h:18 msgid "The options below have no influence when the above is checked." -msgstr "Les options suivantes ne s'appliquent pas si la case précédente est cochée." +msgstr "" +"Les options suivantes ne s'appliquent pas si la case précédente est cochée." #: ../share/extensions/svgcalendar.inx.h:20 msgid "Year color:" @@ -33763,8 +36968,12 @@ msgid "You may change the names for other languages:" msgstr "Ajuster les noms en fonction de votre langue :" #: ../share/extensions/svgcalendar.inx.h:33 -msgid "January February March April May June July August September October November December" -msgstr "Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre" +msgid "" +"January February March April May June July August September October November " +"December" +msgstr "" +"Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre " +"Décembre" #: ../share/extensions/svgcalendar.inx.h:34 msgid "Sun Mon Tue Wed Thu Fri Sat" @@ -33779,8 +36988,12 @@ msgid "Wk" msgstr "S" #: ../share/extensions/svgcalendar.inx.h:37 -msgid "Select your system encoding. More information at http://docs.python.org/library/codecs.html#standard-encodings." -msgstr "Sélectionnez votre encodage système. De plus amples informations à l'adresse http://docs.python.org/library/codecs.html#standard-encodings." +msgid "" +"Select your system encoding. More information at http://docs.python.org/" +"library/codecs.html#standard-encodings." +msgstr "" +"Sélectionnez votre encodage système. De plus amples informations à l'adresse " +"http://docs.python.org/library/codecs.html#standard-encodings." #: ../share/extensions/svgfont2layers.inx.h:1 msgid "Convert SVG Font to Glyph Layers" @@ -33811,8 +37024,12 @@ msgid "Layers as Separate SVG (*.tar)" msgstr "Calques en SVG séparés (*.tar)" #: ../share/extensions/tar_layers.inx.h:3 -msgid "Each layer split into it's own svg file and collected as a tape archive (tar file)" -msgstr "Chaque calque est enregistrée dans son propre fichier SVG, le tout regroupé dans un fichier archive au format tar." +msgid "" +"Each layer split into it's own svg file and collected as a tape archive (tar " +"file)" +msgstr "" +"Chaque calque est enregistrée dans son propre fichier SVG, le tout regroupé " +"dans un fichier archive au format tar." #: ../share/extensions/text_braille.inx.h:1 msgid "Convert to Braille" @@ -33976,8 +37193,13 @@ msgid "Automatic from selected objects" msgstr "Automatique à partir des objets sélectionnés" #: ../share/extensions/voronoi2svg.inx.h:12 -msgid "Select a set of objects. Their centroids will be used as the sites of the Voronoi diagram. Text objects are not handled." -msgstr "Sélectionnez un ensemble d'objets. Leurs barycentres seront utilisés comme sites du diagramme de Voronoï. Les objets de type texte ne sont pas supportés." +msgid "" +"Select a set of objects. Their centroids will be used as the sites of the " +"Voronoi diagram. Text objects are not handled." +msgstr "" +"Sélectionnez un ensemble d'objets. Leurs barycentres seront utilisés comme " +"sites du diagramme de Voronoï. Les objets de type texte ne sont pas " +"supportés." #: ../share/extensions/web-set-att.inx.h:1 msgid "Set Attributes" @@ -34056,7 +37278,8 @@ msgstr "on element loaded" #: ../share/extensions/web-set-att.inx.h:18 msgid "The list of values must have the same size as the attributes list." -msgstr "La liste des valeurs doit avoir la même taille que la liste des attributs." +msgstr "" +"La liste des valeurs doit avoir la même taille que la liste des attributs." #: ../share/extensions/web-set-att.inx.h:19 #: ../share/extensions/web-transmit-att.inx.h:17 @@ -34071,7 +37294,8 @@ msgstr "Exécuter avant" #: ../share/extensions/web-set-att.inx.h:22 #: ../share/extensions/web-transmit-att.inx.h:20 msgid "The next parameter is useful when you select more than two elements" -msgstr "Le paramètre suivant est utile si plus de deux éléments sont sélectionnés" +msgstr "" +"Le paramètre suivant est utile si plus de deux éléments sont sélectionnés" #: ../share/extensions/web-set-att.inx.h:23 msgid "All selected ones set an attribute in the last one" @@ -34083,16 +37307,28 @@ msgstr "Le premier sélectionné définit un attribut pour tous les autres" #: ../share/extensions/web-set-att.inx.h:26 #: ../share/extensions/web-transmit-att.inx.h:24 -msgid "This effect adds a feature visible (or usable) only on a SVG enabled web browser (like Firefox)." -msgstr "L'élément ajouté par cet effet sera visible (ou utilisable) seulement avec un navigateur internet supportant SVG (comme Firefox)." +msgid "" +"This effect adds a feature visible (or usable) only on a SVG enabled web " +"browser (like Firefox)." +msgstr "" +"L'élément ajouté par cet effet sera visible (ou utilisable) seulement avec " +"un navigateur internet supportant SVG (comme Firefox)." #: ../share/extensions/web-set-att.inx.h:27 -msgid "This effect sets one or more attributes in the second selected element, when a defined event occurs on the first selected element." -msgstr "Cet effet définit un ou plusieurs attributs sur le deuxième élément sélectionné lorsqu'un événement intervient sur le premier." +msgid "" +"This effect sets one or more attributes in the second selected element, when " +"a defined event occurs on the first selected element." +msgstr "" +"Cet effet définit un ou plusieurs attributs sur le deuxième élément " +"sélectionné lorsqu'un événement intervient sur le premier." #: ../share/extensions/web-set-att.inx.h:28 -msgid "If you want to set more than one attribute, you must separate this with a space, and only with a space." -msgstr "Si vous souhaitez définir plusieurs attributs, vous devez les séparer avec le caractère « espace »." +msgid "" +"If you want to set more than one attribute, you must separate this with a " +"space, and only with a space." +msgstr "" +"Si vous souhaitez définir plusieurs attributs, vous devez les séparer avec " +"le caractère « espace »." #: ../share/extensions/web-set-att.inx.h:29 #: ../share/extensions/web-transmit-att.inx.h:27 @@ -34127,12 +37363,20 @@ msgid "The first selected transmits to all others" msgstr "Le premier sélectionné transmet à tous les autres" #: ../share/extensions/web-transmit-att.inx.h:25 -msgid "This effect transmits one or more attributes from the first selected element to the second when an event occurs." -msgstr "Cet effet transmet un ou plusieurs attributs du premier élément sélectionné vers le deuxième lorsqu'un événement intervient." +msgid "" +"This effect transmits one or more attributes from the first selected element " +"to the second when an event occurs." +msgstr "" +"Cet effet transmet un ou plusieurs attributs du premier élément sélectionné " +"vers le deuxième lorsqu'un événement intervient." #: ../share/extensions/web-transmit-att.inx.h:26 -msgid "If you want to transmit more than one attribute, you should separate this with a space, and only with a space." -msgstr "Si vous souhaitez transmettre plusieurs attributs, vous devez les séparer avec le caractère « espace »." +msgid "" +"If you want to transmit more than one attribute, you should separate this " +"with a space, and only with a space." +msgstr "" +"Si vous souhaitez transmettre plusieurs attributs, vous devez les séparer " +"avec le caractère « espace »." #: ../share/extensions/webslicer_create_group.inx.h:1 msgid "Set a layout group" @@ -34174,8 +37418,13 @@ msgid "Undefined (relative to non-floating content size)" msgstr "Indéfini (relatif à une taille de contenu fixe)" #: ../share/extensions/webslicer_create_group.inx.h:12 -msgid "Layout Group is only about to help a better code generation (if you need it). To use this, you must to select some \"Slicer rectangles\" first." -msgstr "Le but du groupe de composants est d'aider à générer un meilleur code (si nécessaire). Pour l'utiliser, vous devez d'abord sélectionner des « Rectangles de découpe »." +msgid "" +"Layout Group is only about to help a better code generation (if you need " +"it). To use this, you must to select some \"Slicer rectangles\" first." +msgstr "" +"Le but du groupe de composants est d'aider à générer un meilleur code (si " +"nécessaire). Pour l'utiliser, vous devez d'abord sélectionner des " +"« Rectangles de découpe »." #: ../share/extensions/webslicer_create_group.inx.h:14 msgid "Slicer" @@ -34196,7 +37445,8 @@ msgstr "Imposer la dimension :" #. i18n. Description duplicated in a fake value attribute in order to make it translatable #: ../share/extensions/webslicer_create_rect.inx.h:7 msgid "Force Dimension must be set as x" -msgstr "La dimension imposée doit être définie sous la forme « x »" +msgstr "" +"La dimension imposée doit être définie sous la forme « x »" #: ../share/extensions/webslicer_create_rect.inx.h:8 msgid "If set, this will replace DPI." @@ -34211,8 +37461,13 @@ msgid "Quality:" msgstr "Qualité :" #: ../share/extensions/webslicer_create_rect.inx.h:12 -msgid "0 is the lowest image quality and highest compression, and 100 is the best quality but least effective compression" -msgstr "0 correspond à la plus faible qualité d'image et à la plus forte compression, 100 à la meilleure qualité mais à une compression moins efficace." +msgid "" +"0 is the lowest image quality and highest compression, and 100 is the best " +"quality but least effective compression" +msgstr "" +"0 correspond à la plus faible qualité d'image et à la plus forte " +"compression, 100 à la meilleure qualité mais à une compression moins " +"efficace." #: ../share/extensions/webslicer_create_rect.inx.h:13 msgid "GIF specific options" @@ -34328,8 +37583,12 @@ msgstr "Avec HTML et CSS" #: ../share/extensions/webslicer_export.inx.h:7 #, fuzzy -msgid "All sliced images, and optionally - code, will be generated as you had configured and saved to one directory." -msgstr "Les images découpées, et éventuellement le code, seront générés comme configuré et enregistrés dans un dossier." +msgid "" +"All sliced images, and optionally - code, will be generated as you had " +"configured and saved to one directory." +msgstr "" +"Les images découpées, et éventuellement le code, seront générés comme " +"configuré et enregistrés dans un dossier." #: ../share/extensions/whirl.inx.h:1 msgid "Whirl" @@ -34377,6 +37636,259 @@ msgstr "Un format graphique populaire pour les cliparts" msgid "XAML Input" msgstr "Entrée XAML" +#~ msgid "A4 Landscape Page" +#~ msgstr "Page A4 paysage" + +#~ msgid "Empty A4 landscape sheet" +#~ msgstr "Feuille A4 vierge, au format paysage" + +#~ msgid "A4 paper sheet empty landscape" +#~ msgstr "Feuille de papier A4 vierge au format paysage" + +#~ msgid "A4 Page" +#~ msgstr "Page A4" + +#~ msgid "Empty A4 sheet" +#~ msgstr "Feuille A4 vierge" + +#~ msgid "A4 paper sheet empty" +#~ msgstr "Feuille de papier A4 vierge" + +#~ msgid "Black Opaque" +#~ msgstr "Opaque noire" + +#~ msgid "Empty black page" +#~ msgstr "Page noire vierge" + +#~ msgid "black opaque empty" +#~ msgstr "noir opaque vierge" + +#~ msgid "White Opaque" +#~ msgstr "Opaque blanche" + +#~ msgid "Empty white page" +#~ msgstr "Page blanche vierge" + +#~ msgid "white opaque empty" +#~ msgstr "blanche opaque vierge" + +#~ msgid "Empty business card template." +#~ msgstr "Modèle de carte de visite vierge." + +#~ msgid "business card empty 85x54" +#~ msgstr "carte de visite vierge 85x54" + +#~ msgid "Business Card 90x50mm" +#~ msgstr "Carte de visite 90x50 mm" + +#~ msgid "business card empty 90x50" +#~ msgstr "carte de visite vierge 90x50" + +#~ msgid "CD Cover 300dpi" +#~ msgstr "Pochette de CD 300 ppp" + +#~ msgid "Empty CD box cover." +#~ msgstr "Pochette de boîte de CD vierge." + +#~ msgid "CD cover disc disk 300dpi box" +#~ msgstr "CD pochette disque 300 boîtes" + +#~ msgid "DVD Cover Regular 300dpi " +#~ msgstr "Boîtier de DVD normal, 300 ppp" + +#~ msgid "Template for both-sides DVD covers." +#~ msgstr "Modèle pour boîtier DVD double." + +#~ msgid "DVD cover regular 300dpi" +#~ msgstr "Boîtier de DVD normal, 300 ppp" + +#~ msgid "DVD Cover Slim 300dpi " +#~ msgstr "Boîtier de DVD fin, 300 ppp" + +#~ msgid "Template for both-sides DVD slim covers." +#~ msgstr "Modèle pour boîtier DVD fin double." + +#~ msgid "DVD cover slim 300dpi" +#~ msgstr "Boîtier de DVD fin, 300 ppp" + +#~ msgid "DVD Cover Superslim 300dpi " +#~ msgstr "Boîtier de DVD extra-fin, 300 ppp" + +#~ msgid "Template for both-sides DVD superslim covers." +#~ msgstr "Modèle pour boîtier DVD extra-fin double." + +#~ msgid "DVD cover superslim 300dpi" +#~ msgstr "Boîtier de DVD extra-fin, 300 ppp" + +#~ msgid "DVD Cover Ultraslim 300dpi " +#~ msgstr "Boîtier de DVD ultra-fin, 300 ppp" + +#~ msgid "Template for both-sides DVD ultraslim covers." +#~ msgstr "Modèle pour boîtier DVD ultra-fin double." + +#~ msgid "DVD cover ultraslim 300dpi" +#~ msgstr "Boîtier de DVD ultra-fin, 300 ppp" + +#~ msgid "Desktop 1024x768" +#~ msgstr "Bureau 1024x768" + +#~ msgid "Empty desktop size sheet" +#~ msgstr "Modèle de fond d'écran vide" + +#~ msgid "desktop 1024x768 wallpaper" +#~ msgstr "fond d'écran de bureau 1024x768" + +#~ msgid "Desktop 1600x1200" +#~ msgstr "Bureau 1600x1200" + +#~ msgid "desktop 1600x1200 wallpaper" +#~ msgstr "fond d'écran de bureau 1024x768" + +#~ msgid "desktop 640x480 wallpaper" +#~ msgstr "fond d'écran de bureau 640x480" + +#~ msgid "Desktop 800x600" +#~ msgstr "Bureau 800x600" + +#~ msgid "desktop 800x600 wallpaper" +#~ msgstr "fond d'écran de bureau 800x600" + +#~ msgid "Fontforge Glyph" +#~ msgstr "Glyphe Fontforge" + +#~ msgid "font fontforge glyph 1000x1000" +#~ msgstr "glyphe de fonte Fontforge 1000x1000" + +#~ msgid "Icon 16x16" +#~ msgstr "Icône 16x16" + +#~ msgid "Small 16x16 icon template." +#~ msgstr "Modèle de petite icône 16x16." + +#~ msgid "icon 16x16 empty" +#~ msgstr "icône 16x16 vide" + +#~ msgid "Icon 32x32" +#~ msgstr "Icône 32x32" + +#~ msgid "32x32 icon template." +#~ msgstr "Modèle d'icône 32x32." + +#~ msgid "icon 32x32 empty" +#~ msgstr "icône 32x32 vide" + +#~ msgid "Icon 48x48" +#~ msgstr "Icône 48x48" + +#~ msgid "48x48 icon template." +#~ msgstr "Modèle d'icône 48x48." + +#~ msgid "icon 48x48 empty" +#~ msgstr "icône 16x16 vide" + +#~ msgid "Icon 64x64" +#~ msgstr "Icône 64x64" + +#~ msgid "64x64 icon template." +#~ msgstr "Modèle d'icône 64x64." + +#~ msgid "icon 64x64 empty" +#~ msgstr "icône 64x64 vide" + +#~ msgid "Letter Landscape" +#~ msgstr "Letter Paysage" + +#~ msgid "Standard letter landscape sheet - 792x612" +#~ msgstr "Feuille au format letter standard (paysage) - 792x612" + +#~ msgid "letter landscape 792x612 empty" +#~ msgstr "letter paysage 792x612 vide" + +#~ msgid "Letter" +#~ msgstr "Letter" + +#~ msgid "Standard letter sheet - 612x792" +#~ msgstr "Feuille au format letter standard - 612x792" + +#~ msgid "letter 612x792 empty" +#~ msgstr "letter 612x792 vide" + +#~ msgid "No Borders" +#~ msgstr "Sans bordure" + +#~ msgid "Empty sheet with no borders" +#~ msgstr "Feuille vide sans bordures" + +#~ msgid "no borders empty" +#~ msgstr "sans bordure vide" + +#~ msgid "Video HDTV 1920x1080" +#~ msgstr "Video HDTV 1920x1080" + +#~ msgid "HDTV video template for 1920x1080 resolution." +#~ msgstr "Modèle pour vidéo HDTV, résolution 1920x1080." + +#~ msgid "HDTV video empty 1920x1080" +#~ msgstr "Vidéo HDTV vide 1920x1080" + +#~ msgid "Video NTSC 720x486" +#~ msgstr "Vidéo NTSC 720x486" + +#~ msgid "NTSC video template for 720x486 resolution." +#~ msgstr "Modèle pour vidéo NTSC, résolution 720x486." + +#~ msgid "NTSC video empty 720x486" +#~ msgstr "NTSC vidéo vide 720x486" + +#~ msgid "Video PAL 728x576" +#~ msgstr "Vidéo PAL 728x576" + +#~ msgid "PAL video template for 728x576 resolution." +#~ msgstr "Modèle pour vidéo PAL, résolution 728x576." + +#~ msgid "PAL video empty 728x576" +#~ msgstr "PAL vidéo vide 728x576" + +#~ msgid "Web Banner 468x60" +#~ msgstr "Bannière web 468x60" + +#~ msgid "Empty 468x60 web banner template." +#~ msgstr "Modèle de bannière web vide en 468x60." + +#~ msgid "web banner 468x60 empty" +#~ msgstr "bannière web 468x60 vide" + +#~ msgid "Web Banner 728x90" +#~ msgstr "Bannière web 728x90" + +#~ msgid "Empty 728x90 web banner template." +#~ msgstr "Modèle de bannière web vide en 728x90." + +#~ msgid "web banner 728x90 empty" +#~ msgstr "bannière web 728x90 vide" + +#~ msgid "Select one path to clone." +#~ msgstr "Sélectionner un chemin à cloner." + +#~ msgid "Select one path to clone." +#~ msgstr "Sélectionner un chemin à cloner." + +#~ msgid "Default _units:" +#~ msgstr "_Unités par défaut :" + +#~ msgctxt "Path handle tip" +#~ msgid "%s: drag to shape the segment (%s)" +#~ msgstr "%s : cliquer-déplacer pour modeler le segment (%s)" + +#~ msgid "Use automatic scaling to size A4" +#~ msgstr "Utilise un redimensionnement automatique vers la taille A4" + +#~ msgid "Empty Page" +#~ msgstr "Page vide" + +#~ msgid "<no name found>" +#~ msgstr "<aucun nom trouvé>" + #, fuzzy #~ msgid "" #~ "Image looks too big. Process may take a while and it is wise to save your " @@ -34389,515 +37901,510 @@ msgstr "Entrée XAML" #~ "continuer.\n" #~ "\n" #~ "Continuer (sans enregistrer) ?" -#~ msgctxt "Snap rotation angle" +#~ msgctxt "Snap rotation angle" #~ msgid "None" #~ msgstr "Aucun" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Map Symbols" #~ msgstr "Symboles cartographiques" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bed and Breakfast" #~ msgstr "Chambres d'hôtes" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Youth Hostel" #~ msgstr "Auberge de jeunesse" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Motel" #~ msgstr "Motel" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hotel" #~ msgstr "Hôtel" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hostel" #~ msgstr "Auberge" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Chalet" #~ msgstr "Chalet" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Caravan Park" #~ msgstr "Parc à caravane" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Alpine Hut" #~ msgstr "Refuge" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bench or Park" #~ msgstr "Banc ou parc" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Playground" #~ msgstr "Aire de jeux" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Fountain" #~ msgstr "Fontaine" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Library" #~ msgstr "Bibliothèque" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Town Hall" #~ msgstr "Mairie" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Court" #~ msgstr "Tribunal" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Fire Station / House" #~ msgstr "Poste de pompiers" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Police Station" #~ msgstr "Poste de police" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Prison" #~ msgstr "Prison" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Public Building" #~ msgstr "Bâtiment public" #, fuzzy #~ msgctxt "Symbol" - #~ msgid "Survey Point" #~ msgstr "Point de Gergonne" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Toll Booth" #~ msgstr "Péage" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Lift Gate" #~ msgstr "Porte à barrière" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Steps" #~ msgstr "Pas" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Stile" #~ msgstr "Échalier" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Kissing Gate" #~ msgstr "Portillon à chicanes" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Gate" #~ msgstr "Porte" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Entrance" #~ msgstr "Entrée" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Cycle Barrier" #~ msgstr "Barrière à vélo" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Cattle Grid" #~ msgstr "Grille à bétail" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bollard" #~ msgstr "Bollard" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "University" #~ msgstr "Université" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "High/Secondary School" #~ msgstr "Lycée" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "School" #~ msgstr "École" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Kindergarten" #~ msgstr "Jardin d'enfants" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Pub" #~ msgstr "Pub" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Desserts/Cakes Shop" #~ msgstr "Pâtissier" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Fast Food" #~ msgstr "Restauration rapide" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Public Tap/Water" #~ msgstr "Robinet public" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Cafe" #~ msgstr "Café" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Beer Garden" #~ msgstr "Bar à bière" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Wine Bar" #~ msgstr "Bar à vin" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Opticians/Eye Doctors" #~ msgstr "Opticien/Ophtalmologiste" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Dentist" #~ msgstr "Dentiste" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Veterinarian" #~ msgstr "Vétérinaire" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Drugs Dispensary" #~ msgstr "Pharmacie" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Pharmacy" #~ msgstr "Pharmacie" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Accident & Emergency" #~ msgstr "Accident & urgence" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Doctors" #~ msgstr "Docteurs" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Scrub Land" #~ msgstr "Brousse" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Swamp" #~ msgstr "Marais" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hills" #~ msgstr "Coline" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Grass Land" #~ msgstr "Prairie" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Deciduous Forest" #~ msgstr "Forêt de feuillus" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Mixed Forest" #~ msgstr "Forêt mixte" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Coniferous Forest" #~ msgstr "Forêt de conifères" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Church or Place of Worship" #~ msgstr "Église ou lieu de prière" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bank" #~ msgstr "Banque" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Power Lines" #~ msgstr "Lignes électriques" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Watch Tower" #~ msgstr "Tour de guet" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Transmitter" #~ msgstr "Antenne" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Village" #~ msgstr "Village" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Town" #~ msgstr "Ville" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hamlet" #~ msgstr "Hameau" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "City" #~ msgstr "Cité" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Peak" #~ msgstr "Sommet" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Mountain Pass" #~ msgstr "Col" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Mine" #~ msgstr "Mine" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Military Complex" #~ msgstr "Complexe militaire" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Embassy" #~ msgstr "Ambassade" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Toy Shop" #~ msgstr "Magasin de jouets" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Supermarket" #~ msgstr "Supermarché" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Jewlers" #~ msgstr "Bijoutier" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hairdressers" #~ msgstr "Coiffeur" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Greengrocer" #~ msgstr "Marchand de légumes" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Gift Shop" #~ msgstr "Boutique de cadeaux" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Garden Center" #~ msgstr "Jardinerie" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Florist" #~ msgstr "Fleuriste" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Real Estate" #~ msgstr "Agence immobilière" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Hardware / DIY" #~ msgstr "Matériel et bricolage" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Shop" #~ msgstr "Boutique" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Confectioner" #~ msgstr "Confiseur" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Computer Shop" #~ msgstr "Magasin informatique" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Clothing" #~ msgstr "Vêtements" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Mechanic" #~ msgstr "Mécanicien" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Car Dealer" #~ msgstr "Concessionnaire" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Butcher" #~ msgstr "Boucher" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Meat Shop" #~ msgstr "Boucher" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Baker" #~ msgstr "Boulanger" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Off License / Liquor Store" #~ msgstr "Vente d'alcool" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Tennis" #~ msgstr "Tennis" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Outdoor Pool" #~ msgstr "Piscine extérieure" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Indoor Pool" #~ msgstr "Piscine couverte" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Skiing" #~ msgstr "Ski" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Leisure Center" #~ msgstr "Centre de loisir" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Equine Sports" #~ msgstr "Sports équestres" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Rock Climbing" #~ msgstr "Escalade" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Gym" #~ msgstr "Gymnastique" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Archery" #~ msgstr "Tir à l'arc" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Zoo" #~ msgstr "Zoo" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Wreck" #~ msgstr "Naufrage" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Water Wheel" #~ msgstr "Roue à eau" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Point of Interest" #~ msgstr "Point d'intérêt" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Theater" #~ msgstr "Théatre" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Monument" #~ msgstr "Monument" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Beach" #~ msgstr "Plage" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Battle Location" #~ msgstr "Lieu de bataille" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Archaeology / Ruins" #~ msgstr "Archéologie, ruines" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Walking" #~ msgstr "Promenade" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Train" #~ msgstr "Train" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Underground Rail" #~ msgstr "Métro" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bike Rental" #~ msgstr "Location de vélo" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Carpool" #~ msgstr "Covoiturage" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Flood Gate" #~ msgstr "Écluse" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Shipping" #~ msgstr "Transport maritime" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Disabled Parking" #~ msgstr "Parking handicapés" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Paid Parking" #~ msgstr "Parking payant" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Bike Parking" #~ msgstr "Parc à vélos" -#~ msgid "Extrapolated" -#~ msgstr "Extrapolé" #~ msgctxt "Symbol" - #~ msgid "Alternate Process" #~ msgstr "Processus alternatif" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Data I/O" #~ msgstr "Entrée/sortie de données" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Card" #~ msgstr "Carte" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Direct Access Storage" #~ msgstr "Stockage à accès direct" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Thick Arrow" #~ msgstr "Flèche épaisse" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Transfer" #~ msgstr "Transfert" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Flow Arrow" #~ msgstr "Flèche de flux" #, fuzzy #~ msgctxt "Symbol" - #~ msgid "Circle Arrow" #~ msgstr "Cercle" @@ -34972,10 +38479,6 @@ msgstr "Entrée XAML" #~ msgid "Identity B" #~ msgstr "Identité" -#, fuzzy -#~ msgid "2nd path:" -#~ msgstr "Chemin de courbure :" - #, fuzzy #~ msgid "Path to which the original path will be boolop'ed." #~ msgstr "Chemin à partir duquel le chemin original sera cloné" @@ -34984,9 +38487,6 @@ msgstr "Entrée XAML" #~ msgid "Boolop type:" #~ msgstr "Type d'outils : " -#~ msgid "Starting:" -#~ msgstr "Début :" - #~ msgid "Angle of the first copy" #~ msgstr "Angle de la première copie" @@ -35020,9 +38520,6 @@ msgstr "Entrée XAML" #~ msgid "Sharp" #~ msgstr "Précis" -#~ msgid "Method:" -#~ msgstr "Méthode :" - #~ msgid "Choose pen type" #~ msgstr "Sélectionner un type de stylo" @@ -35061,57 +38558,30 @@ msgstr "Entrée XAML" #~ msgid "left capping" #~ msgstr "raccord gauche" -#~ msgid "Control handle 0:" -#~ msgstr "Poignée de contrôle 0 :" - #~ msgid "Control handle 0" #~ msgstr "Poignée de contrôle 0" -#~ msgid "Control handle 1:" -#~ msgstr "Poignée de contrôle 1 :" - #~ msgid "Control handle 1" #~ msgstr "Poignée de contrôle 1" -#~ msgid "Control handle 2:" -#~ msgstr "Poignée de contrôle 2 :" - #~ msgid "Control handle 2" #~ msgstr "Poignée de contrôle 2" -#~ msgid "Control handle 3:" -#~ msgstr "Poignée de contrôle 3 :" - #~ msgid "Control handle 3" #~ msgstr "Poignée de contrôle 3" -#~ msgid "Control handle 4:" -#~ msgstr "Poignée de contrôle 4 :" - #~ msgid "Control handle 4" #~ msgstr "Poignée de contrôle 4" -#~ msgid "Control handle 5:" -#~ msgstr "Poignée de contrôle 5 :" - #~ msgid "Control handle 5" #~ msgstr "Poignée de contrôle 5" -#~ msgid "Control handle 6:" -#~ msgstr "Poignée de contrôle 6 :" - #~ msgid "Control handle 6" #~ msgstr "Poignée de contrôle 6" -#~ msgid "Control handle 7:" -#~ msgstr "Poignée de contrôle 7 :" - #~ msgid "Control handle 7" #~ msgstr "Poignée de contrôle 7" -#~ msgid "Control handle 8:" -#~ msgstr "Poignée de contrôle 8 :" - #~ msgid "Control handle 8" #~ msgstr "Poignée de contrôle 8" @@ -35121,9 +38591,6 @@ msgstr "Entrée XAML" #~ msgid "Control handle 9" #~ msgstr "Poignée de contrôle 9" -#~ msgid "Control handle 10:" -#~ msgstr "Poignée de contrôle 10 :" - #~ msgid "Control handle 10" #~ msgstr "Poignée de contrôle 10" @@ -35133,27 +38600,15 @@ msgstr "Entrée XAML" #~ msgid "Control handle 11" #~ msgstr "Poignée de contrôle 11" -#~ msgid "Control handle 12:" -#~ msgstr "Poignée de contrôle 12 :" - #~ msgid "Control handle 12" #~ msgstr "Poignée de contrôle 12" -#~ msgid "Control handle 13:" -#~ msgstr "Poignée de contrôle 13 :" - #~ msgid "Control handle 13" #~ msgstr "Poignée de contrôle 13" -#~ msgid "Control handle 14:" -#~ msgstr "Poignée de contrôle 14 :" - #~ msgid "Control handle 14" #~ msgstr "Poignée de contrôle 14" -#~ msgid "Control handle 15:" -#~ msgstr "Poignée de contrôle 15 :" - #~ msgid "Control handle 15" #~ msgstr "Poignée de contrôle 15" @@ -35184,9 +38639,6 @@ msgstr "Entrée XAML" #~ msgid "Scaling factor" #~ msgstr "Facteur d'échelle :" -#~ msgid "Display unit" -#~ msgstr "Unité d'affichage" - #, fuzzy #~ msgid "Print unit after path length" #~ msgstr "Longueur du chemin" @@ -35297,8 +38749,8 @@ msgstr "Entrée XAML" #~ msgid "Fills object bounding box with color" #~ msgstr "Remplit la boîte englobante de l'objet avec de la couleur" -#~ msgctxt "Symbol" +#~ msgctxt "Symbol" #~ msgid "Intormation" #~ msgstr "Information" @@ -35360,13 +38812,11 @@ msgstr "Entrée XAML" #~ msgstr "Qualité de bitmap à l'importation :" #~ msgid "Flowed text (%d character%s)" - #~ msgid_plural "Flowed text (%d characters%s)" #~ msgstr[0] "Texte encadré (%d caractère%s)" #~ msgstr[1] "Texte encadré (%d caractères%s)" #~ msgid "Linked flowed text (%d character%s)" - #~ msgid_plural "Linked flowed text (%d characters%s)" #~ msgstr[0] "Texte encadré lié (%d caractère%s)" #~ msgstr[1] "Texte encadré lié (%d caractères%s)" @@ -35475,42 +38925,38 @@ msgstr "Entrée XAML" #~ msgid "Extent or scope of this document" #~ msgstr "Étendue ou portée de ce document" -#~ msgctxt "Web" +#~ msgctxt "Web" #~ msgid "Link" #~ msgstr "Lien" #~ msgid "Polyline" #~ msgstr "Polyligne" -#~ msgctxt "Object" +#~ msgctxt "Object" #~ msgid "Text" #~ msgstr "Texte" -#~ msgctxt "Object" +#~ msgctxt "Object" #~ msgid "Clone" #~ msgstr "Clone" #~ msgid "%i object of type %s" - #~ msgid_plural "%i objects of type %s" #~ msgstr[0] "%i objet de type %s" #~ msgstr[1] "%i objets de type %s" #~ msgid "%i object of types %s, %s" - #~ msgid_plural "%i objects of types %s, %s" #~ msgstr[0] "%i objets de types %s, %s" #~ msgstr[1] "%i objets de types %s, %s" #~ msgid "%i object of types %s, %s, %s" - #~ msgid_plural "%i objects of types %s, %s, %s" #~ msgstr[0] "%i objet de types %s, %s, %s" #~ msgstr[1] "%i objets de types %s, %s, %s" #~ msgid "%i object of %i types" - #~ msgid_plural "%i objects of %i types" #~ msgstr[0] "%i objet de %i types" #~ msgstr[1] "%i objets de %i types" @@ -35524,9 +38970,6 @@ msgstr "Entrée XAML" #~ msgid "Circle" #~ msgstr "Cercle" -#~ msgid "Segment" -#~ msgstr "Camembert" - #~ msgid "Arc" #~ msgstr "Arc" @@ -35543,13 +38986,11 @@ msgstr "Entrée XAML" #~ msgstr "Offset dynamique, %s de %f pt" #~ msgid "Path (%i node, path effect: %s)" - #~ msgid_plural "Path (%i nodes, path effect: %s)" #~ msgstr[0] "Chemin (%i nœud, effet de chemin : %s)" #~ msgstr[1] "Chemin (%i nœuds, effet de chemin : %s)" #~ msgid "Path (%i node)" - #~ msgid_plural "Path (%i nodes)" #~ msgstr[0] "Chemin (%i nœud)" #~ msgstr[1] "Chemin (%i nœuds)" @@ -35558,7 +38999,6 @@ msgstr "Entrée XAML" #~ msgstr "Rectangle" #~ msgid "Polygon with %d vertex" - #~ msgid_plural "Polygon with %d vertices" #~ msgstr[0] "Polygone à %d sommet" #~ msgstr[1] "Polygone à %d sommets" @@ -35808,9 +39248,6 @@ msgstr "Entrée XAML" #~ msgid "Composite:" #~ msgstr "Composite :" -#~ msgid "Add a new connection point" -#~ msgstr "Ajouter un nouveau point de connexion" - #~ msgid "Move a connection point" #~ msgstr "Déplacer un point de connexion" @@ -35956,8 +39393,8 @@ msgstr "Entrée XAML" #~ msgid "Majenta" #~ msgstr "Magenta" -#~ msgctxt "Filesystem" +#~ msgctxt "Filesystem" #~ msgid "_Path:" #~ msgstr "_Chemin :" @@ -35966,20 +39403,20 @@ msgstr "Entrée XAML" #~ msgid "_Description" #~ msgstr "_Description" -#~ msgctxt "Interpolator" +#~ msgctxt "Interpolator" #~ msgid "Linear" #~ msgstr "Linéaire" -#~ msgctxt "Line cap" +#~ msgctxt "Line cap" #~ msgid "Round" #~ msgstr "Arrondie" -#~ msgctxt "Line join" +#~ msgctxt "Line join" #~ msgid "Rounded" #~ msgstr "Arrondi" -#~ msgctxt "Line join" +#~ msgctxt "Line join" #~ msgid "Spiro" #~ msgstr "Spiro" @@ -35992,9 +39429,6 @@ msgstr "Entrée XAML" #~ msgid "[Unstable!] Clone original path" #~ msgstr "[Instable !] Cloner le chemin original" -#~ msgid "_Blur:" -#~ msgstr "_Flou :" - #~ msgid "Bitmap size" #~ msgstr "Dimensions du bitmap" @@ -36027,8 +39461,8 @@ msgstr "Entrée XAML" #~ msgid "_Select Same Fill and Stroke" #~ msgstr "_Sélectionner le même remplissage et contour" -#~ msgctxt "Measurement tool" +#~ msgctxt "Measurement tool" #~ msgid "Measure" #~ msgstr "Mesurer" @@ -36203,9 +39637,6 @@ msgstr "Entrée XAML" #~ msgid "Multiple gradients" #~ msgstr "Plusieurs dégradés" -#~ msgid "No objects" -#~ msgstr "Aucun objet" - #~ msgid "Affect:" #~ msgstr "Affecter :" @@ -36345,12 +39776,6 @@ msgstr "Entrée XAML" #~ msgid "Fluid brushed cartoon drawing" #~ msgstr "Dessin de bande dessinée au brossé fluide" -#~ msgid "Snap cusp nodes" -#~ msgstr "Aimanter aux points de rebroussement" - -#~ msgid "Snap smooth nodes" -#~ msgstr "Aimanter aux nœuds doux" - #~ msgid "Image effects" #~ msgstr "Effets d'image" @@ -36703,9 +40128,6 @@ msgstr "Entrée XAML" #~ msgid "Image Blur" #~ msgstr "Flou par image" -#~ msgid "Radiation" -#~ msgstr "Radiation" - #~ msgid "Blur, custom (ABCs)" #~ msgstr "Flou, paramétrable (ABC)" @@ -36816,9 +40238,6 @@ msgstr "Entrée XAML" #~ msgid "Random Seed:" #~ msgstr "Générateur pseudo-aléatoire :" -#~ msgid "Iconify" -#~ msgstr "Iconifier" - #~ msgid "All in one" #~ msgstr "Tout en un" @@ -36877,9 +40296,6 @@ msgstr "Entrée XAML" #~ msgid "Set precision" #~ msgstr "Précision" -#~ msgid "Simplify colors" -#~ msgstr "Simplifier les couleurs" - #~ msgid "Strip xml prolog" #~ msgstr "Enlève le prologue xml" @@ -36968,992 +40384,871 @@ msgstr "Entrée XAML" #~ msgid "_Blend mode:" #~ msgstr "Mode de _fondu :" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Blue1" #~ msgstr "Bleu1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Blue2" #~ msgstr "Bleu2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Blue3" #~ msgstr "Bleu3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Red1" #~ msgstr "Rouge1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Red2" #~ msgstr "Rouge2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Red3" #~ msgstr "Rouge3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Orange1" #~ msgstr "Orange1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Orange2" #~ msgstr "Orange2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Orange3" #~ msgstr "Orange3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Brown1" #~ msgstr "Brun1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Brown2" #~ msgstr "Brun2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Brown3" #~ msgstr "Brun3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Green1" #~ msgstr "Vert1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Green2" #~ msgstr "Vert2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Green3" #~ msgstr "Vert3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Purple1" #~ msgstr "Violet1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Purple2" #~ msgstr "Violet2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Purple3" #~ msgstr "Violet3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Metalic1" #~ msgstr "Métallique1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Metalic2" #~ msgstr "Métallique2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Metalic3" #~ msgstr "Métallique3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Metalic4" #~ msgstr "Métallique4" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey1" #~ msgstr "Gris1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey2" #~ msgstr "Gris2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey3" #~ msgstr "Gris3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey4" #~ msgstr "Gris4" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey5" #~ msgstr "Gris5" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default outer 1" #~ msgstr "extérieur 1 (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default outer 2" #~ msgstr "extérieur 2 (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default outer 3" #~ msgstr "extérieur 3 (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default block" #~ msgstr "bloc (défaut)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default added blue" #~ msgstr "bleu ajouté (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default block header" #~ msgstr "en-tête de bloc (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default alert block" #~ msgstr "bloc d'alerte (défaut)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default added red" #~ msgstr "rouge ajouté (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default alert block header" #~ msgstr "en-tête de bloc d'alerte (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default example block" #~ msgstr "bloc d'exemple (défaut)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default added green" #~ msgstr "vert ajouté (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default example block header" #~ msgstr "en-tête de bloc d'exemple (défaut)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default covered text" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default covered bullet" #~ msgstr "Créer un texte encadré" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default text" #~ msgstr "texte (défaut)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default light outer 1" #~ msgstr "extérieur 1 (default light)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default light outer 2" #~ msgstr "extérieur 2 (default light)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "default light outer 3" #~ msgstr "extérieur 3 (default light)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light block" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light block header" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light block header text" #~ msgstr "Paramètres par défaut de l'interface" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light alert block" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light alert block header" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light alert block header text" #~ msgstr "Paramètres par défaut de l'interface" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light example block" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light example block header" #~ msgstr "Titre par défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light example block header text" #~ msgstr "Paramètres par défaut de l'interface" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light covered text" #~ msgstr "Paramètres par défaut de l'interface" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light covered bullet" #~ msgstr "Paramètres par défaut de l'interface" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light background" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "default light text" #~ msgstr "Titre par défaut" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle outer 1" #~ msgstr "extérieur 1 (beetle)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle outer 2" #~ msgstr "extérieur 2 (beetle)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle outer 3" #~ msgstr "extérieur 3 (beetle)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle added red" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle alert block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle added green" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle example block header text" #~ msgstr "Test en-tête de groupe" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle header text" #~ msgstr "en-tête de texte (beetle)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle added grey" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle covered bullet" #~ msgstr "Créer un texte encadré" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle background" #~ msgstr "arrière-plan (beetle)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beetle covered text" #~ msgstr "Créer un texte encadré" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beetle text" #~ msgstr "texte (beetle)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "albatross outer 1" #~ msgstr "extérieur 1 (albatross)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "albatross outer 2" #~ msgstr "extérieur 2 (albatross)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "albatross outer 3" #~ msgstr "extérieur 3 (albatross)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross background" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross block" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross block header" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross bullet" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross covered bullet" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross covered text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross added red" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross alert block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross added green" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross example block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross added yellow" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "albatross added white" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly text" #~ msgstr "Taper du texte" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly added grey" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly outer" #~ msgstr "filtre" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly background" #~ msgstr "Fond" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly covered bullet" #~ msgstr "Texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly covered text" #~ msgstr "Texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly added red" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly alert block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly added green" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly example block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "fly added blue" #~ msgstr "Test en-tête de groupe" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "seagull outer 1" #~ msgstr "extérieur 1 (seagull)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "seagull outer 2" #~ msgstr "extérieur 2 (seagull)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "seagull outer 3" #~ msgstr "extérieur 3 (seagull)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull block" #~ msgstr "défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull added grey" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull block header" #~ msgstr "Déverrouiller le calque" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull covered text" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull covered bullet" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull background" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "seagull text" #~ msgstr "Texte vertical" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver outer frame" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver added red" #~ msgstr "Créer et éditer des dégradés" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beaver outer 1" #~ msgstr "extérieur 1 (beaver)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beaver outer 2" #~ msgstr "extérieur 2 (beaver)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "beaver outer 3" #~ msgstr "extérieur 3 (beaver)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver added blue" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver added green" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver example block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver alert block header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver covered text" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver covered bullet" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver background" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "beaver text" #~ msgstr "Créer un texte" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "crane outer 1" #~ msgstr "extérieur 1 (crane)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "crane outer 2" #~ msgstr "extérieur 2 (crane)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "crane outer 3" #~ msgstr "extérieur 3 (crane)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane block" #~ msgstr "Déverrouiller le calque" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane added orange" #~ msgstr "angle contraint" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane block header" #~ msgstr "Déverrouiller le calque" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane alert block" #~ msgstr "défaut" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane added red" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane alert block header" #~ msgstr "Déverrouiller le calque" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane example block header" #~ msgstr "Déverrouiller le calque" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane covered text" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane covered bullet" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "crane bullet" #~ msgstr "Créer un texte" #, fuzzy #~ msgctxt "Palette" - -#~ msgid "crane background" -#~ msgstr "Tracer selon le fond" - -#, fuzzy -#~ msgctxt "Palette" - #~ msgid "crane text" #~ msgstr "Créer un texte" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "wolverine outer 1" #~ msgstr "extérieur 1 (wolverine)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "wolverine outer 2" #~ msgstr "extérieur 2 (wolverine)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "wolverine outer 3" #~ msgstr "extérieur 3 (wolverine)" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "wolverine outer 4" #~ msgstr "extérieur 4 (wolverine)" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine added yellow" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine added blue" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine header text" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine added green" #~ msgstr "Créer et éditer des dégradés" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine example block title" #~ msgstr "Test en-tête de groupe" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine covered text" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine covered bullet" #~ msgstr "Créer un texte encadré" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine background" #~ msgstr "Retirer l'arrière-plan" #, fuzzy #~ msgctxt "Palette" - #~ msgid "wolverine text" #~ msgstr "Supprimer le texte" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Orange Hilight" #~ msgstr "Hauteur de ligne" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Orange" #~ msgstr "Orange" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Orange Base" #~ msgstr "Orange 1" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Orange Shadow" #~ msgstr "Ombre interne" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Yellow" #~ msgstr "Jaune" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Yellow Base" #~ msgstr "Casse des phrases" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Yellow Shadow" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Orange" #~ msgstr "Triangle exinscrit" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Red" #~ msgstr "centre" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Red Base" #~ msgstr "Casse des phrases" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Deep Red" #~ msgstr "centre" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Human Highlight" #~ msgstr "Hauteur de ligne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Human" #~ msgstr "Han" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Human Base" #~ msgstr "Han" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Environmental Shadow" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Environmental Blue Highlight" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Environmental Blue Medium" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Environmental Blue Base" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Environmental Blue Shadow" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Blue Shadow" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Blue" #~ msgstr "centre" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Blue Base" #~ msgstr "Casse des phrases" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Green Highlight" #~ msgstr "Centre du cercle inscrit" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Green Base" #~ msgstr "Casse des phrases" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Green Shadow" #~ msgstr "Ombre interne" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Magenta Highlight" #~ msgstr "Magenta" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Magenta" #~ msgstr "Magenta" #, fuzzy #~ msgctxt "Palette" - #~ msgid "Accent Dark Violet" #~ msgstr "Magenta" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 1" #~ msgstr "Gris 1" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 2" #~ msgstr "Gris 2" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 3" #~ msgstr "Gris 3" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 4" #~ msgstr "Gris 4" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 5" #~ msgstr "Gris 5" -#~ msgctxt "Palette" +#~ msgctxt "Palette" #~ msgid "Grey 6" #~ msgstr "Gris 6" -#~ msgctxt "Node tool tip" +#~ msgctxt "Node tool tip" #~ msgid "" #~ "%u of %u nodes selected. Drag to select nodes, click to edit only " #~ "this object (more: Shift)" #~ msgstr "" #~ "%u sur %u nœuds sélectionnés. Cliquer-glisser pour sélectionner " #~ "des nœuds, cliquer pour éditer seulement cet objet (modificateur : Maj)" -#~ msgctxt "Node tool tip" +#~ msgctxt "Node tool tip" #~ msgid "" #~ "%u of %u nodes selected. Drag to select nodes, click clear the " #~ "selection" diff --git a/po/inkscape.pot b/po/inkscape.pot index a8220e7a3..c339e3eed 100644 --- a/po/inkscape.pot +++ b/po/inkscape.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-11-05 22:05+0100\n" +"POT-Creation-Date: 2014-11-23 18:19+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -293,7 +293,7 @@ msgstr "" #. Pencil #: ../share/filters/filters.svg.h:78 -#: ../src/ui/dialog/inkscape-preferences.cpp:417 +#: ../src/ui/dialog/inkscape-preferences.cpp:420 msgid "Pencil" msgstr "" @@ -1058,8 +1058,8 @@ msgstr "" #: ../src/extension/internal/filter/paint.h:717 #: ../src/extension/internal/filter/shadows.h:73 #: ../src/extension/internal/filter/transparency.h:345 -#: ../src/filter-enums.cpp:67 ../src/ui/dialog/clonetiler.cpp:832 -#: ../src/ui/dialog/clonetiler.cpp:983 +#: ../src/filter-enums.cpp:67 ../src/ui/dialog/clonetiler.cpp:833 +#: ../src/ui/dialog/clonetiler.cpp:984 #: ../src/ui/dialog/document-properties.cpp:157 #: ../share/extensions/color_HSL_adjust.inx.h:20 #: ../share/extensions/color_blackandwhite.inx.h:3 @@ -3316,7 +3316,7 @@ msgstr "" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg #: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4 -#: ../share/symbols/symbols.h:277 ../share/symbols/symbols.h:278 +#: ../share/symbols/symbols.h:281 ../share/symbols/symbols.h:282 msgctxt "Symbol" msgid "Telephone" msgstr "" @@ -3610,7 +3610,7 @@ msgstr "" #. Symbols: ./AigaSymbols.svg #. Symbols: ./MapSymbolsNPS.svg #: ../share/symbols/symbols.h:99 ../share/symbols/symbols.h:100 -#: ../share/symbols/symbols.h:241 ../share/symbols/symbols.h:242 +#: ../share/symbols/symbols.h:245 ../share/symbols/symbols.h:246 msgctxt "Symbol" msgid "Parking" msgstr "" @@ -4188,135 +4188,153 @@ msgstr "" #. Symbols: ./MapSymbolsNPS.svg #: ../share/symbols/symbols.h:239 ../share/symbols/symbols.h:240 msgctxt "Symbol" -msgid "Recycling" +msgid "Motorbike Trail" +msgstr "" + +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:241 ../share/symbols/symbols.h:242 +msgctxt "Symbol" +msgid "Radiator Water" msgstr "" #. Symbols: ./MapSymbolsNPS.svg #: ../share/symbols/symbols.h:243 ../share/symbols/symbols.h:244 msgctxt "Symbol" +msgid "Recycling" +msgstr "" + +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:247 ../share/symbols/symbols.h:248 +msgctxt "Symbol" msgid "Pets On Leash" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:245 ../share/symbols/symbols.h:246 +#: ../share/symbols/symbols.h:249 ../share/symbols/symbols.h:250 msgctxt "Symbol" msgid "Picnic Area" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:247 ../share/symbols/symbols.h:248 +#: ../share/symbols/symbols.h:251 ../share/symbols/symbols.h:252 msgctxt "Symbol" msgid "Post Office" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:249 ../share/symbols/symbols.h:250 +#: ../share/symbols/symbols.h:253 ../share/symbols/symbols.h:254 msgctxt "Symbol" msgid "Ranger Station" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:251 ../share/symbols/symbols.h:252 +#: ../share/symbols/symbols.h:255 ../share/symbols/symbols.h:256 msgctxt "Symbol" msgid "RV Campground" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:253 ../share/symbols/symbols.h:254 +#: ../share/symbols/symbols.h:257 ../share/symbols/symbols.h:258 msgctxt "Symbol" msgid "Restrooms" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:255 ../share/symbols/symbols.h:256 +#: ../share/symbols/symbols.h:259 ../share/symbols/symbols.h:260 msgctxt "Symbol" msgid "Sailing" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:257 ../share/symbols/symbols.h:258 +#: ../share/symbols/symbols.h:261 ../share/symbols/symbols.h:262 msgctxt "Symbol" msgid "Sanitary Disposal Station" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:259 ../share/symbols/symbols.h:260 +#: ../share/symbols/symbols.h:263 ../share/symbols/symbols.h:264 msgctxt "Symbol" msgid "Scuba Diving" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:261 ../share/symbols/symbols.h:262 +#: ../share/symbols/symbols.h:265 ../share/symbols/symbols.h:266 msgctxt "Symbol" msgid "Self Guided Trail" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:263 ../share/symbols/symbols.h:264 +#: ../share/symbols/symbols.h:267 ../share/symbols/symbols.h:268 msgctxt "Symbol" msgid "Shelter" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:265 ../share/symbols/symbols.h:266 +#: ../share/symbols/symbols.h:269 ../share/symbols/symbols.h:270 msgctxt "Symbol" msgid "Showers" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:267 ../share/symbols/symbols.h:268 +#: ../share/symbols/symbols.h:271 ../share/symbols/symbols.h:272 msgctxt "Symbol" msgid "Sledding" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:269 ../share/symbols/symbols.h:270 +#: ../share/symbols/symbols.h:273 ../share/symbols/symbols.h:274 msgctxt "Symbol" msgid "SnowmobileTrail" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:271 ../share/symbols/symbols.h:272 +#: ../share/symbols/symbols.h:275 ../share/symbols/symbols.h:276 msgctxt "Symbol" msgid "Stable" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:273 ../share/symbols/symbols.h:274 +#: ../share/symbols/symbols.h:277 ../share/symbols/symbols.h:278 msgctxt "Symbol" msgid "Store" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:275 ../share/symbols/symbols.h:276 +#: ../share/symbols/symbols.h:279 ../share/symbols/symbols.h:280 msgctxt "Symbol" msgid "Swimming" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:279 ../share/symbols/symbols.h:280 +#: ../share/symbols/symbols.h:283 ../share/symbols/symbols.h:284 msgctxt "Symbol" msgid "Emergency Telephone" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:281 ../share/symbols/symbols.h:282 +#: ../share/symbols/symbols.h:285 ../share/symbols/symbols.h:286 msgctxt "Symbol" msgid "Trailhead" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:283 ../share/symbols/symbols.h:284 +#: ../share/symbols/symbols.h:287 ../share/symbols/symbols.h:288 msgctxt "Symbol" msgid "Wheelchair Accessible" msgstr "" #. Symbols: ./MapSymbolsNPS.svg -#: ../share/symbols/symbols.h:285 ../share/symbols/symbols.h:286 +#: ../share/symbols/symbols.h:289 ../share/symbols/symbols.h:290 msgctxt "Symbol" msgid "Wind Surfing" msgstr "" +#. Symbols: ./MapSymbolsNPS.svg +#: ../share/symbols/symbols.h:291 +msgctxt "Symbol" +msgid "Blank" +msgstr "" + #: ../share/templates/templates.h:1 msgid "CD Label 120mmx120mm " msgstr "" @@ -4367,7 +4385,7 @@ msgstr "" #. 3D box #: ../src/box3d.cpp:260 ../src/box3d.cpp:1312 -#: ../src/ui/dialog/inkscape-preferences.cpp:400 +#: ../src/ui/dialog/inkscape-preferences.cpp:403 msgid "3D Box" msgstr "" @@ -4428,8 +4446,8 @@ msgid "_Origin X:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:319 ../src/display/canvas-grid.cpp:669 -#: ../src/ui/dialog/inkscape-preferences.cpp:739 -#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:742 +#: ../src/ui/dialog/inkscape-preferences.cpp:767 msgid "X coordinate of grid origin" msgstr "" @@ -4438,8 +4456,8 @@ msgid "O_rigin Y:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:321 ../src/display/canvas-grid.cpp:671 -#: ../src/ui/dialog/inkscape-preferences.cpp:740 -#: ../src/ui/dialog/inkscape-preferences.cpp:765 +#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Y coordinate of grid origin" msgstr "" @@ -4448,29 +4466,29 @@ msgid "Spacing _Y:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:323 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Base length of z-axis" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:771 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 #: ../src/widgets/box3d-toolbar.cpp:302 msgid "Angle X:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:325 -#: ../src/ui/dialog/inkscape-preferences.cpp:771 +#: ../src/ui/dialog/inkscape-preferences.cpp:774 msgid "Angle of x-axis" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 #: ../src/widgets/box3d-toolbar.cpp:381 msgid "Angle Z:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:327 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 msgid "Angle of z-axis" msgstr "" @@ -4479,7 +4497,7 @@ msgid "Minor grid line _color:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:331 ../src/display/canvas-grid.cpp:679 -#: ../src/ui/dialog/inkscape-preferences.cpp:723 +#: ../src/ui/dialog/inkscape-preferences.cpp:726 msgid "Minor grid line color" msgstr "" @@ -4492,7 +4510,7 @@ msgid "Ma_jor grid line color:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:336 ../src/display/canvas-grid.cpp:684 -#: ../src/ui/dialog/inkscape-preferences.cpp:725 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 msgid "Major grid line color" msgstr "" @@ -4555,12 +4573,12 @@ msgid "Spacing _X:" msgstr "" #: ../src/display/canvas-grid.cpp:673 -#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:748 msgid "Distance between vertical grid lines" msgstr "" #: ../src/display/canvas-grid.cpp:675 -#: ../src/ui/dialog/inkscape-preferences.cpp:746 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 msgid "Distance between horizontal grid lines" msgstr "" @@ -4792,7 +4810,7 @@ msgstr "" msgid "Memory document %1" msgstr "" -#: ../src/document.cpp:792 +#: ../src/document.cpp:790 #, c-format msgid "Unnamed document %d" msgstr "" @@ -5404,7 +5422,7 @@ msgstr "" #: ../src/extension/internal/bitmap/opacity.cpp:38 #: ../src/extension/internal/filter/blurs.h:333 #: ../src/extension/internal/filter/transparency.h:279 -#: ../src/ui/dialog/clonetiler.cpp:840 ../src/ui/dialog/clonetiler.cpp:993 +#: ../src/ui/dialog/clonetiler.cpp:841 ../src/ui/dialog/clonetiler.cpp:994 #: ../src/widgets/tweak-toolbar.cpp:334 #: ../share/extensions/interp_att_g.inx.h:16 msgid "Opacity" @@ -6126,7 +6144,7 @@ msgstr "" #: ../src/extension/internal/filter/paint.h:702 #: ../src/extension/internal/filter/textures.h:77 #: ../src/extension/internal/filter/transparency.h:61 -#: ../src/filter-enums.cpp:52 ../src/ui/dialog/inkscape-preferences.cpp:646 +#: ../src/filter-enums.cpp:52 ../src/ui/dialog/inkscape-preferences.cpp:649 msgid "Normal" msgstr "" @@ -6254,7 +6272,7 @@ msgid "Distant" msgstr "" #: ../src/extension/internal/filter/bumps.h:106 -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Point" msgstr "" @@ -6427,7 +6445,7 @@ msgstr "" #: ../src/extension/internal/filter/color.h:156 #: ../src/extension/internal/filter/color.h:257 #: ../src/extension/internal/filter/paint.h:87 ../src/filter-enums.cpp:66 -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 #: ../src/ui/tools/flood-tool.cpp:197 #: ../src/widgets/sp-color-icc-selector.cpp:337 #: ../src/widgets/sp-color-icc-selector.cpp:342 @@ -7609,12 +7627,12 @@ msgid "" msgstr "" #: ../src/extension/internal/gdkpixbuf-input.cpp:191 -#: ../src/ui/dialog/inkscape-preferences.cpp:1449 +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Embed" msgstr "" #: ../src/extension/internal/gdkpixbuf-input.cpp:192 ../src/sp-anchor.cpp:119 -#: ../src/ui/dialog/inkscape-preferences.cpp:1449 +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Link" msgstr "" @@ -7647,17 +7665,17 @@ msgid "" msgstr "" #: ../src/extension/internal/gdkpixbuf-input.cpp:201 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "None (auto)" msgstr "" #: ../src/extension/internal/gdkpixbuf-input.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "Smooth (optimizeQuality)" msgstr "" #: ../src/extension/internal/gdkpixbuf-input.cpp:203 -#: ../src/ui/dialog/inkscape-preferences.cpp:1456 +#: ../src/ui/dialog/inkscape-preferences.cpp:1459 msgid "Blocky (optimizeSpeed)" msgstr "" @@ -7706,7 +7724,7 @@ msgid "Vertical Offset:" msgstr "" #: ../src/extension/internal/grid.cpp:220 -#: ../src/ui/dialog/inkscape-preferences.cpp:1470 +#: ../src/ui/dialog/inkscape-preferences.cpp:1473 #: ../share/extensions/draw_from_triangle.inx.h:58 #: ../share/extensions/eqtexsvg.inx.h:4 #: ../share/extensions/foldablebox.inx.h:9 @@ -7738,7 +7756,7 @@ msgstr "" #: ../src/extension/internal/grid.cpp:221 #: ../src/ui/dialog/document-properties.cpp:155 -#: ../src/ui/dialog/inkscape-preferences.cpp:780 +#: ../src/ui/dialog/inkscape-preferences.cpp:783 #: ../src/widgets/toolbox.cpp:1826 msgid "Grids" msgstr "" @@ -8181,7 +8199,7 @@ msgstr "" msgid "Saving document..." msgstr "" -#: ../src/file.cpp:1246 ../src/ui/dialog/inkscape-preferences.cpp:1443 +#: ../src/file.cpp:1246 ../src/ui/dialog/inkscape-preferences.cpp:1446 #: ../src/ui/dialog/ocaldialogs.cpp:1244 msgid "Import" msgstr "" @@ -8457,43 +8475,43 @@ msgstr "" msgid "Added patch row or column" msgstr "" -#: ../src/gradient-drag.cpp:797 +#: ../src/gradient-drag.cpp:799 msgid "Merge gradient handles" msgstr "" -#: ../src/gradient-drag.cpp:1104 +#: ../src/gradient-drag.cpp:1106 msgid "Move gradient handle" msgstr "" -#: ../src/gradient-drag.cpp:1163 ../src/widgets/gradient-vector.cpp:827 +#: ../src/gradient-drag.cpp:1165 ../src/widgets/gradient-vector.cpp:827 msgid "Delete gradient stop" msgstr "" -#: ../src/gradient-drag.cpp:1426 +#: ../src/gradient-drag.cpp:1428 #, c-format msgid "" "%s %d for: %s%s; drag with Ctrl to snap offset; click with Ctrl" "+Alt to delete stop" msgstr "" -#: ../src/gradient-drag.cpp:1430 ../src/gradient-drag.cpp:1437 +#: ../src/gradient-drag.cpp:1432 ../src/gradient-drag.cpp:1439 msgid " (stroke)" msgstr "" -#: ../src/gradient-drag.cpp:1434 +#: ../src/gradient-drag.cpp:1436 #, c-format msgid "" "%s for: %s%s; drag with Ctrl to snap angle, with Ctrl+Alt to " "preserve angle, with Ctrl+Shift to scale around center" msgstr "" -#: ../src/gradient-drag.cpp:1442 +#: ../src/gradient-drag.cpp:1444 msgid "" "Radial gradient center and focus; drag with Shift to " "separate focus" msgstr "" -#: ../src/gradient-drag.cpp:1445 +#: ../src/gradient-drag.cpp:1447 #, c-format msgid "" "Gradient point shared by %d gradient; drag with Shift to " @@ -8504,15 +8522,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: ../src/gradient-drag.cpp:2377 +#: ../src/gradient-drag.cpp:2379 msgid "Move gradient handle(s)" msgstr "" -#: ../src/gradient-drag.cpp:2413 +#: ../src/gradient-drag.cpp:2415 msgid "Move gradient mid stop(s)" msgstr "" -#: ../src/gradient-drag.cpp:2702 +#: ../src/gradient-drag.cpp:2704 msgid "Delete gradient stop(s)" msgstr "" @@ -8764,7 +8782,7 @@ msgstr "" #: ../src/libgdl/gdl-dock-object.c:125 #: ../src/live_effects/parameter/originalpatharray.cpp:86 -#: ../src/ui/dialog/inkscape-preferences.cpp:1504 +#: ../src/ui/dialog/inkscape-preferences.cpp:1507 #: ../src/ui/widget/page-sizer.cpp:258 #: ../src/widgets/gradient-selector.cpp:140 #: ../src/widgets/sp-xmlview-attr-list.cpp:49 @@ -8920,8 +8938,8 @@ msgstr "" msgid "Dockitem which 'owns' this tablabel" msgstr "" -#: ../src/libgdl/gdl-dock.c:176 ../src/ui/dialog/inkscape-preferences.cpp:635 -#: ../src/ui/dialog/inkscape-preferences.cpp:678 +#: ../src/libgdl/gdl-dock.c:176 ../src/ui/dialog/inkscape-preferences.cpp:638 +#: ../src/ui/dialog/inkscape-preferences.cpp:681 msgid "Floating" msgstr "" @@ -9131,7 +9149,7 @@ msgstr "" msgid "Fill between strokes" msgstr "" -#: ../src/live_effects/effect.cpp:147 ../src/selection-chemistry.cpp:2926 +#: ../src/live_effects/effect.cpp:147 ../src/selection-chemistry.cpp:2929 msgid "Fill between many" msgstr "" @@ -9173,17 +9191,17 @@ msgstr "" msgid "No effect" msgstr "" -#: ../src/live_effects/effect.cpp:490 +#: ../src/live_effects/effect.cpp:492 #, c-format msgid "Please specify a parameter path for the LPE '%s' with %d mouse clicks" msgstr "" -#: ../src/live_effects/effect.cpp:757 +#: ../src/live_effects/effect.cpp:759 #, c-format msgid "Editing parameter %s." msgstr "" -#: ../src/live_effects/effect.cpp:762 +#: ../src/live_effects/effect.cpp:764 msgid "None of the applied path effect's parameters can be edited on-canvas." msgstr "" @@ -9340,11 +9358,11 @@ msgstr "" msgid "Change weight of the effect" msgstr "" -#: ../src/live_effects/lpe-bspline.cpp:304 +#: ../src/live_effects/lpe-bspline.cpp:291 msgid "Default weight" msgstr "" -#: ../src/live_effects/lpe-bspline.cpp:309 +#: ../src/live_effects/lpe-bspline.cpp:296 msgid "Make cusp" msgstr "" @@ -9585,12 +9603,12 @@ msgstr "" msgid "Helper size with direction" msgstr "" -#: ../src/live_effects/lpe-fillet-chamfer.cpp:158 +#: ../src/live_effects/lpe-fillet-chamfer.cpp:157 #: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:76 msgid "Fillet" msgstr "" -#: ../src/live_effects/lpe-fillet-chamfer.cpp:162 +#: ../src/live_effects/lpe-fillet-chamfer.cpp:161 #: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:78 msgid "Inverse fillet" msgstr "" @@ -9600,6 +9618,11 @@ msgstr "" msgid "Chamfer" msgstr "" +#: ../src/live_effects/lpe-fillet-chamfer.cpp:170 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:82 +msgid "Inverse chamfer" +msgstr "" + #: ../src/live_effects/lpe-gears.cpp:214 msgid "_Teeth:" msgstr "" @@ -10907,22 +10930,29 @@ msgstr "" msgid "Change enumeration parameter" msgstr "" -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:792 -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:849 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:782 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:843 msgid "" "Chamfer: Ctrl+Click toogle type, Shift+Click open " "dialog, Ctrl+Alt+Click reset" msgstr "" -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:796 -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:853 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:786 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:847 +msgid "" +"Inverse Chamfer: Ctrl+Click toogle type, Shift+Click " +"open dialog, Ctrl+Alt+Click reset" +msgstr "" + +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:790 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:851 msgid "" "Inverse Fillet: Ctrl+Click toogle type, Shift+Click " "open dialog, Ctrl+Alt+Click reset" msgstr "" -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:800 -#: ../src/live_effects/parameter/filletchamferpointarray.cpp:857 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:794 +#: ../src/live_effects/parameter/filletchamferpointarray.cpp:855 msgid "" "Fillet: Ctrl+Click toogle type, Shift+Click open " "dialog, Ctrl+Alt+Click reset" @@ -11135,7 +11165,7 @@ msgid "The ID of the object to export" msgstr "" #: ../src/main.cpp:366 ../src/main.cpp:479 -#: ../src/ui/dialog/inkscape-preferences.cpp:1507 +#: ../src/ui/dialog/inkscape-preferences.cpp:1510 msgid "ID" msgstr "" @@ -11671,7 +11701,7 @@ msgstr "" msgid "A related resource" msgstr "" -#: ../src/rdf.cpp:267 ../src/ui/dialog/inkscape-preferences.cpp:1859 +#: ../src/rdf.cpp:267 ../src/ui/dialog/inkscape-preferences.cpp:1862 msgid "Language:" msgstr "" @@ -11837,399 +11867,399 @@ msgstr "" msgid "Nothing to redo." msgstr "" -#: ../src/selection-chemistry.cpp:1230 +#: ../src/selection-chemistry.cpp:1233 msgid "Paste" msgstr "" -#: ../src/selection-chemistry.cpp:1238 +#: ../src/selection-chemistry.cpp:1241 msgid "Paste style" msgstr "" -#: ../src/selection-chemistry.cpp:1248 +#: ../src/selection-chemistry.cpp:1251 msgid "Paste live path effect" msgstr "" -#: ../src/selection-chemistry.cpp:1270 +#: ../src/selection-chemistry.cpp:1273 msgid "Select object(s) to remove live path effects from." msgstr "" -#: ../src/selection-chemistry.cpp:1282 +#: ../src/selection-chemistry.cpp:1285 msgid "Remove live path effect" msgstr "" -#: ../src/selection-chemistry.cpp:1293 +#: ../src/selection-chemistry.cpp:1296 msgid "Select object(s) to remove filters from." msgstr "" -#: ../src/selection-chemistry.cpp:1303 +#: ../src/selection-chemistry.cpp:1306 #: ../src/ui/dialog/filter-effects-dialog.cpp:1678 msgid "Remove filter" msgstr "" -#: ../src/selection-chemistry.cpp:1312 +#: ../src/selection-chemistry.cpp:1315 msgid "Paste size" msgstr "" -#: ../src/selection-chemistry.cpp:1321 +#: ../src/selection-chemistry.cpp:1324 msgid "Paste size separately" msgstr "" -#: ../src/selection-chemistry.cpp:1331 +#: ../src/selection-chemistry.cpp:1334 msgid "Select object(s) to move to the layer above." msgstr "" -#: ../src/selection-chemistry.cpp:1357 +#: ../src/selection-chemistry.cpp:1360 msgid "Raise to next layer" msgstr "" -#: ../src/selection-chemistry.cpp:1364 +#: ../src/selection-chemistry.cpp:1367 msgid "No more layers above." msgstr "" -#: ../src/selection-chemistry.cpp:1376 +#: ../src/selection-chemistry.cpp:1379 msgid "Select object(s) to move to the layer below." msgstr "" -#: ../src/selection-chemistry.cpp:1402 +#: ../src/selection-chemistry.cpp:1405 msgid "Lower to previous layer" msgstr "" -#: ../src/selection-chemistry.cpp:1409 +#: ../src/selection-chemistry.cpp:1412 msgid "No more layers below." msgstr "" -#: ../src/selection-chemistry.cpp:1421 +#: ../src/selection-chemistry.cpp:1424 msgid "Select object(s) to move." msgstr "" -#: ../src/selection-chemistry.cpp:1438 ../src/verbs.cpp:2660 +#: ../src/selection-chemistry.cpp:1441 ../src/verbs.cpp:2660 msgid "Move selection to layer" msgstr "" #. An SVG element cannot have a transform. We could change 'x' and 'y' in response #. to a translation... but leave that for another day. -#: ../src/selection-chemistry.cpp:1528 ../src/seltrans.cpp:388 +#: ../src/selection-chemistry.cpp:1531 ../src/seltrans.cpp:388 msgid "Cannot transform an embedded SVG." msgstr "" -#: ../src/selection-chemistry.cpp:1699 +#: ../src/selection-chemistry.cpp:1702 msgid "Remove transform" msgstr "" -#: ../src/selection-chemistry.cpp:1806 +#: ../src/selection-chemistry.cpp:1809 msgid "Rotate 90° CCW" msgstr "" -#: ../src/selection-chemistry.cpp:1806 +#: ../src/selection-chemistry.cpp:1809 msgid "Rotate 90° CW" msgstr "" -#: ../src/selection-chemistry.cpp:1827 ../src/seltrans.cpp:483 +#: ../src/selection-chemistry.cpp:1830 ../src/seltrans.cpp:483 #: ../src/ui/dialog/transformation.cpp:894 msgid "Rotate" msgstr "" -#: ../src/selection-chemistry.cpp:2214 +#: ../src/selection-chemistry.cpp:2217 msgid "Rotate by pixels" msgstr "" -#: ../src/selection-chemistry.cpp:2244 ../src/seltrans.cpp:480 +#: ../src/selection-chemistry.cpp:2247 ../src/seltrans.cpp:480 #: ../src/ui/dialog/transformation.cpp:869 #: ../share/extensions/interp_att_g.inx.h:12 msgid "Scale" msgstr "" -#: ../src/selection-chemistry.cpp:2269 +#: ../src/selection-chemistry.cpp:2272 msgid "Scale by whole factor" msgstr "" -#: ../src/selection-chemistry.cpp:2284 +#: ../src/selection-chemistry.cpp:2287 msgid "Move vertically" msgstr "" -#: ../src/selection-chemistry.cpp:2287 +#: ../src/selection-chemistry.cpp:2290 msgid "Move horizontally" msgstr "" -#: ../src/selection-chemistry.cpp:2290 ../src/selection-chemistry.cpp:2316 +#: ../src/selection-chemistry.cpp:2293 ../src/selection-chemistry.cpp:2319 #: ../src/seltrans.cpp:477 ../src/ui/dialog/transformation.cpp:807 msgid "Move" msgstr "" -#: ../src/selection-chemistry.cpp:2310 +#: ../src/selection-chemistry.cpp:2313 msgid "Move vertically by pixels" msgstr "" -#: ../src/selection-chemistry.cpp:2313 +#: ../src/selection-chemistry.cpp:2316 msgid "Move horizontally by pixels" msgstr "" -#: ../src/selection-chemistry.cpp:2445 +#: ../src/selection-chemistry.cpp:2448 msgid "The selection has no applied path effect." msgstr "" -#: ../src/selection-chemistry.cpp:2617 ../src/ui/dialog/clonetiler.cpp:2218 +#: ../src/selection-chemistry.cpp:2620 ../src/ui/dialog/clonetiler.cpp:2223 msgid "Select an object to clone." msgstr "" -#: ../src/selection-chemistry.cpp:2653 +#: ../src/selection-chemistry.cpp:2656 msgctxt "Action" msgid "Clone" msgstr "" -#: ../src/selection-chemistry.cpp:2669 +#: ../src/selection-chemistry.cpp:2672 msgid "Select clones to relink." msgstr "" -#: ../src/selection-chemistry.cpp:2676 +#: ../src/selection-chemistry.cpp:2679 msgid "Copy an object to clipboard to relink clones to." msgstr "" -#: ../src/selection-chemistry.cpp:2699 +#: ../src/selection-chemistry.cpp:2702 msgid "No clones to relink in the selection." msgstr "" -#: ../src/selection-chemistry.cpp:2702 +#: ../src/selection-chemistry.cpp:2705 msgid "Relink clone" msgstr "" -#: ../src/selection-chemistry.cpp:2716 +#: ../src/selection-chemistry.cpp:2719 msgid "Select clones to unlink." msgstr "" -#: ../src/selection-chemistry.cpp:2772 +#: ../src/selection-chemistry.cpp:2775 msgid "No clones to unlink in the selection." msgstr "" -#: ../src/selection-chemistry.cpp:2776 +#: ../src/selection-chemistry.cpp:2779 msgid "Unlink clone" msgstr "" -#: ../src/selection-chemistry.cpp:2789 +#: ../src/selection-chemistry.cpp:2792 msgid "" "Select a clone to go to its original. Select a linked offset " "to go to its source. Select a text on path to go to the path. Select " "a flowed text to go to its frame." msgstr "" -#: ../src/selection-chemistry.cpp:2837 +#: ../src/selection-chemistry.cpp:2840 msgid "" "Cannot find the object to select (orphaned clone, offset, textpath, " "flowed text?)" msgstr "" -#: ../src/selection-chemistry.cpp:2843 +#: ../src/selection-chemistry.cpp:2846 msgid "" "The object you're trying to select is not visible (it is in <" "defs>)" msgstr "" -#: ../src/selection-chemistry.cpp:2928 +#: ../src/selection-chemistry.cpp:2931 msgid "Select path(s) to fill." msgstr "" -#: ../src/selection-chemistry.cpp:2946 +#: ../src/selection-chemistry.cpp:2949 msgid "Select object(s) to convert to marker." msgstr "" -#: ../src/selection-chemistry.cpp:3021 +#: ../src/selection-chemistry.cpp:3024 msgid "Objects to marker" msgstr "" -#: ../src/selection-chemistry.cpp:3046 +#: ../src/selection-chemistry.cpp:3049 msgid "Select object(s) to convert to guides." msgstr "" -#: ../src/selection-chemistry.cpp:3069 +#: ../src/selection-chemistry.cpp:3072 msgid "Objects to guides" msgstr "" -#: ../src/selection-chemistry.cpp:3105 +#: ../src/selection-chemistry.cpp:3108 msgid "Select objects to convert to symbol." msgstr "" -#: ../src/selection-chemistry.cpp:3211 +#: ../src/selection-chemistry.cpp:3214 msgid "Group to symbol" msgstr "" -#: ../src/selection-chemistry.cpp:3230 +#: ../src/selection-chemistry.cpp:3233 msgid "Select a symbol to extract objects from." msgstr "" -#: ../src/selection-chemistry.cpp:3239 +#: ../src/selection-chemistry.cpp:3242 msgid "Select only one symbol in Symbol dialog to convert to group." msgstr "" -#: ../src/selection-chemistry.cpp:3297 +#: ../src/selection-chemistry.cpp:3300 msgid "Group from symbol" msgstr "" -#: ../src/selection-chemistry.cpp:3315 +#: ../src/selection-chemistry.cpp:3318 msgid "Select object(s) to convert to pattern." msgstr "" -#: ../src/selection-chemistry.cpp:3414 +#: ../src/selection-chemistry.cpp:3417 msgid "Objects to pattern" msgstr "" -#: ../src/selection-chemistry.cpp:3430 +#: ../src/selection-chemistry.cpp:3433 msgid "Select an object with pattern fill to extract objects from." msgstr "" -#: ../src/selection-chemistry.cpp:3491 +#: ../src/selection-chemistry.cpp:3494 msgid "No pattern fills in the selection." msgstr "" -#: ../src/selection-chemistry.cpp:3494 +#: ../src/selection-chemistry.cpp:3497 msgid "Pattern to objects" msgstr "" -#: ../src/selection-chemistry.cpp:3585 +#: ../src/selection-chemistry.cpp:3588 msgid "Select object(s) to make a bitmap copy." msgstr "" -#: ../src/selection-chemistry.cpp:3589 +#: ../src/selection-chemistry.cpp:3592 msgid "Rendering bitmap..." msgstr "" -#: ../src/selection-chemistry.cpp:3776 +#: ../src/selection-chemistry.cpp:3779 msgid "Create bitmap" msgstr "" -#: ../src/selection-chemistry.cpp:3801 ../src/selection-chemistry.cpp:3920 +#: ../src/selection-chemistry.cpp:3804 ../src/selection-chemistry.cpp:3923 msgid "Select object(s) to create clippath or mask from." msgstr "" -#: ../src/selection-chemistry.cpp:3894 +#: ../src/selection-chemistry.cpp:3897 msgid "Create Clip Group" msgstr "" -#: ../src/selection-chemistry.cpp:3923 +#: ../src/selection-chemistry.cpp:3926 msgid "Select mask object and object(s) to apply clippath or mask to." msgstr "" -#: ../src/selection-chemistry.cpp:4106 +#: ../src/selection-chemistry.cpp:4109 msgid "Set clipping path" msgstr "" -#: ../src/selection-chemistry.cpp:4108 +#: ../src/selection-chemistry.cpp:4111 msgid "Set mask" msgstr "" -#: ../src/selection-chemistry.cpp:4123 +#: ../src/selection-chemistry.cpp:4126 msgid "Select object(s) to remove clippath or mask from." msgstr "" -#: ../src/selection-chemistry.cpp:4243 +#: ../src/selection-chemistry.cpp:4246 msgid "Release clipping path" msgstr "" -#: ../src/selection-chemistry.cpp:4245 +#: ../src/selection-chemistry.cpp:4248 msgid "Release mask" msgstr "" -#: ../src/selection-chemistry.cpp:4264 +#: ../src/selection-chemistry.cpp:4267 msgid "Select object(s) to fit canvas to." msgstr "" #. Fit Page -#: ../src/selection-chemistry.cpp:4284 ../src/verbs.cpp:2996 +#: ../src/selection-chemistry.cpp:4287 ../src/verbs.cpp:2996 msgid "Fit Page to Selection" msgstr "" -#: ../src/selection-chemistry.cpp:4313 ../src/verbs.cpp:2998 +#: ../src/selection-chemistry.cpp:4316 ../src/verbs.cpp:2998 msgid "Fit Page to Drawing" msgstr "" -#: ../src/selection-chemistry.cpp:4334 ../src/verbs.cpp:3000 +#: ../src/selection-chemistry.cpp:4337 ../src/verbs.cpp:3000 msgid "Fit Page to Selection or Drawing" msgstr "" -#: ../src/selection-describer.cpp:128 +#: ../src/selection-describer.cpp:138 msgid "root" msgstr "" -#: ../src/selection-describer.cpp:130 ../src/widgets/ege-paint-def.cpp:66 +#: ../src/selection-describer.cpp:140 ../src/widgets/ege-paint-def.cpp:66 #: ../src/widgets/ege-paint-def.cpp:90 msgid "none" msgstr "" -#: ../src/selection-describer.cpp:142 +#: ../src/selection-describer.cpp:152 #, c-format msgid "layer %s" msgstr "" -#: ../src/selection-describer.cpp:144 +#: ../src/selection-describer.cpp:154 #, c-format msgid "layer %s" msgstr "" -#: ../src/selection-describer.cpp:155 +#: ../src/selection-describer.cpp:165 #, c-format msgid "%s" msgstr "" -#: ../src/selection-describer.cpp:165 +#: ../src/selection-describer.cpp:175 #, c-format msgid " in %s" msgstr "" -#: ../src/selection-describer.cpp:167 +#: ../src/selection-describer.cpp:177 msgid " hidden in definitions" msgstr "" -#: ../src/selection-describer.cpp:169 +#: ../src/selection-describer.cpp:179 #, c-format msgid " in group %s (%s)" msgstr "" -#: ../src/selection-describer.cpp:171 +#: ../src/selection-describer.cpp:181 #, c-format msgid " in unnamed group (%s)" msgstr "" -#: ../src/selection-describer.cpp:173 +#: ../src/selection-describer.cpp:183 #, c-format msgid " in %i parent (%s)" msgid_plural " in %i parents (%s)" msgstr[0] "" msgstr[1] "" -#: ../src/selection-describer.cpp:176 +#: ../src/selection-describer.cpp:186 #, c-format msgid " in %i layer" msgid_plural " in %i layers" msgstr[0] "" msgstr[1] "" -#: ../src/selection-describer.cpp:187 +#: ../src/selection-describer.cpp:198 msgid "Convert symbol to group to edit" msgstr "" -#: ../src/selection-describer.cpp:191 +#: ../src/selection-describer.cpp:202 msgid "Remove from symbols tray to edit symbol" msgstr "" -#: ../src/selection-describer.cpp:195 +#: ../src/selection-describer.cpp:208 msgid "Use Shift+D to look up original" msgstr "" -#: ../src/selection-describer.cpp:199 +#: ../src/selection-describer.cpp:214 msgid "Use Shift+D to look up path" msgstr "" -#: ../src/selection-describer.cpp:203 +#: ../src/selection-describer.cpp:220 msgid "Use Shift+D to look up frame" msgstr "" -#: ../src/selection-describer.cpp:215 +#: ../src/selection-describer.cpp:236 #, c-format msgid "%i objects selected of type %s" msgid_plural "%i objects selected of types %s" msgstr[0] "" msgstr[1] "" -#: ../src/selection-describer.cpp:225 +#: ../src/selection-describer.cpp:246 #, c-format msgid "; %d filtered object " msgid_plural "; %d filtered objects " @@ -12346,7 +12376,7 @@ msgstr "" #. Ellipse #: ../src/sp-ellipse.cpp:378 ../src/sp-ellipse.cpp:385 -#: ../src/ui/dialog/inkscape-preferences.cpp:405 +#: ../src/ui/dialog/inkscape-preferences.cpp:408 #: ../src/widgets/pencil-toolbar.cpp:163 msgid "Ellipse" msgstr "" @@ -12356,7 +12386,7 @@ msgid "Circle" msgstr "" #. TRANSLATORS: "Flow region" is an area where text is allowed to flow -#: ../src/sp-flowregion.cpp:192 +#: ../src/sp-flowregion.cpp:195 msgid "Flow Region" msgstr "" @@ -12364,15 +12394,15 @@ msgstr "" #. * flow excluded region. flowRegionExclude in SVG 1.2: see #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegion-elem and #. * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegionExclude-elem. -#: ../src/sp-flowregion.cpp:342 +#: ../src/sp-flowregion.cpp:348 msgid "Flow Excluded Region" msgstr "" -#: ../src/sp-flowtext.cpp:289 +#: ../src/sp-flowtext.cpp:290 msgid "Flowed Text" msgstr "" -#: ../src/sp-flowtext.cpp:291 +#: ../src/sp-flowtext.cpp:292 msgid "Linked Flowed Text" msgstr "" @@ -12450,26 +12480,26 @@ msgstr "" msgid "of %d objects" msgstr "" -#: ../src/sp-item.cpp:1075 ../src/verbs.cpp:214 +#: ../src/sp-item.cpp:1051 ../src/verbs.cpp:214 msgid "Object" msgstr "" -#: ../src/sp-item.cpp:1092 +#: ../src/sp-item.cpp:1063 #, c-format msgid "%s; clipped" msgstr "" -#: ../src/sp-item.cpp:1098 +#: ../src/sp-item.cpp:1069 #, c-format msgid "%s; masked" msgstr "" -#: ../src/sp-item.cpp:1108 +#: ../src/sp-item.cpp:1079 #, c-format msgid "%s; filtered (%s)" msgstr "" -#: ../src/sp-item.cpp:1110 +#: ../src/sp-item.cpp:1081 #, c-format msgid "%s; filtered" msgstr "" @@ -12532,12 +12562,12 @@ msgid "Polyline" msgstr "" #. Rectangle -#: ../src/sp-rect.cpp:163 ../src/ui/dialog/inkscape-preferences.cpp:395 +#: ../src/sp-rect.cpp:163 ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "Rectangle" msgstr "" #. Spiral -#: ../src/sp-spiral.cpp:230 ../src/ui/dialog/inkscape-preferences.cpp:413 +#: ../src/sp-spiral.cpp:230 ../src/ui/dialog/inkscape-preferences.cpp:416 #: ../share/extensions/gcodetools_area.inx.h:11 msgid "Spiral" msgstr "" @@ -12550,7 +12580,7 @@ msgid "with %3f turns" msgstr "" #. Star -#: ../src/sp-star.cpp:256 ../src/ui/dialog/inkscape-preferences.cpp:409 +#: ../src/sp-star.cpp:256 ../src/ui/dialog/inkscape-preferences.cpp:412 #: ../src/widgets/star-toolbar.cpp:471 msgid "Star" msgstr "" @@ -12609,7 +12639,7 @@ msgstr "" msgid " from " msgstr "" -#: ../src/sp-tref.cpp:252 ../src/sp-use.cpp:262 +#: ../src/sp-tref.cpp:252 ../src/sp-use.cpp:278 msgid "[orphaned]" msgstr "" @@ -12617,30 +12647,30 @@ msgstr "" msgid "Text Span" msgstr "" -#: ../src/sp-use.cpp:227 +#: ../src/sp-use.cpp:243 msgid "Symbol" msgstr "" -#: ../src/sp-use.cpp:230 +#: ../src/sp-use.cpp:245 msgid "Clone" msgstr "" -#: ../src/sp-use.cpp:237 ../src/sp-use.cpp:239 +#: ../src/sp-use.cpp:253 ../src/sp-use.cpp:255 #, c-format msgid "called %s" msgstr "" -#: ../src/sp-use.cpp:239 +#: ../src/sp-use.cpp:255 msgid "Unnamed Symbol" msgstr "" #. TRANSLATORS: Used for statusbar description for long chains: #. * "Clone of: Clone of: ... in Layer 1". -#: ../src/sp-use.cpp:248 +#: ../src/sp-use.cpp:264 msgid "..." msgstr "" -#: ../src/sp-use.cpp:257 +#: ../src/sp-use.cpp:273 #, c-format msgid "of: %s" msgstr "" @@ -12890,37 +12920,37 @@ msgstr "" msgid "Nothing was copied." msgstr "" -#: ../src/ui/clipboard.cpp:375 ../src/ui/clipboard.cpp:587 -#: ../src/ui/clipboard.cpp:616 +#: ../src/ui/clipboard.cpp:382 ../src/ui/clipboard.cpp:594 +#: ../src/ui/clipboard.cpp:623 msgid "Nothing on the clipboard." msgstr "" -#: ../src/ui/clipboard.cpp:433 +#: ../src/ui/clipboard.cpp:440 msgid "Select object(s) to paste style to." msgstr "" -#: ../src/ui/clipboard.cpp:444 ../src/ui/clipboard.cpp:461 +#: ../src/ui/clipboard.cpp:451 ../src/ui/clipboard.cpp:468 msgid "No style on the clipboard." msgstr "" -#: ../src/ui/clipboard.cpp:486 +#: ../src/ui/clipboard.cpp:493 msgid "Select object(s) to paste size to." msgstr "" -#: ../src/ui/clipboard.cpp:493 +#: ../src/ui/clipboard.cpp:500 msgid "No size on the clipboard." msgstr "" -#: ../src/ui/clipboard.cpp:549 +#: ../src/ui/clipboard.cpp:556 msgid "Select object(s) to paste live path effect to." msgstr "" #. no_effect: -#: ../src/ui/clipboard.cpp:574 +#: ../src/ui/clipboard.cpp:581 msgid "No effect on the clipboard." msgstr "" -#: ../src/ui/clipboard.cpp:593 ../src/ui/clipboard.cpp:630 +#: ../src/ui/clipboard.cpp:600 ../src/ui/clipboard.cpp:637 msgid "Clipboard does not contain a path." msgstr "" @@ -13230,604 +13260,604 @@ msgstr "" msgid "Add profile" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:112 +#: ../src/ui/dialog/clonetiler.cpp:113 msgid "_Symmetry" msgstr "" #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/ui/dialog/clonetiler.cpp:124 +#: ../src/ui/dialog/clonetiler.cpp:125 msgid "P1: simple translation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:125 +#: ../src/ui/dialog/clonetiler.cpp:126 msgid "P2: 180° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:126 +#: ../src/ui/dialog/clonetiler.cpp:127 msgid "PM: reflection" msgstr "" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/ui/dialog/clonetiler.cpp:129 +#: ../src/ui/dialog/clonetiler.cpp:130 msgid "PG: glide reflection" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:130 +#: ../src/ui/dialog/clonetiler.cpp:131 msgid "CM: reflection + glide reflection" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:131 +#: ../src/ui/dialog/clonetiler.cpp:132 msgid "PMM: reflection + reflection" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:132 +#: ../src/ui/dialog/clonetiler.cpp:133 msgid "PMG: reflection + 180° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:133 +#: ../src/ui/dialog/clonetiler.cpp:134 msgid "PGG: glide reflection + 180° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:134 +#: ../src/ui/dialog/clonetiler.cpp:135 msgid "CMM: reflection + reflection + 180° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:135 +#: ../src/ui/dialog/clonetiler.cpp:136 msgid "P4: 90° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:136 +#: ../src/ui/dialog/clonetiler.cpp:137 msgid "P4M: 90° rotation + 45° reflection" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:137 +#: ../src/ui/dialog/clonetiler.cpp:138 msgid "P4G: 90° rotation + 90° reflection" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:138 +#: ../src/ui/dialog/clonetiler.cpp:139 msgid "P3: 120° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:139 +#: ../src/ui/dialog/clonetiler.cpp:140 msgid "P31M: reflection + 120° rotation, dense" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:140 +#: ../src/ui/dialog/clonetiler.cpp:141 msgid "P3M1: reflection + 120° rotation, sparse" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:141 +#: ../src/ui/dialog/clonetiler.cpp:142 msgid "P6: 60° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:142 +#: ../src/ui/dialog/clonetiler.cpp:143 msgid "P6M: reflection + 60° rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:162 +#: ../src/ui/dialog/clonetiler.cpp:163 msgid "Select one of the 17 symmetry groups for the tiling" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:180 +#: ../src/ui/dialog/clonetiler.cpp:181 msgid "S_hift" msgstr "" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/ui/dialog/clonetiler.cpp:190 +#: ../src/ui/dialog/clonetiler.cpp:191 #, no-c-format msgid "Shift X:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:198 +#: ../src/ui/dialog/clonetiler.cpp:199 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:206 +#: ../src/ui/dialog/clonetiler.cpp:207 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:212 +#: ../src/ui/dialog/clonetiler.cpp:213 msgid "Randomize the horizontal shift by this percentage" msgstr "" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/ui/dialog/clonetiler.cpp:222 +#: ../src/ui/dialog/clonetiler.cpp:223 #, no-c-format msgid "Shift Y:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:230 +#: ../src/ui/dialog/clonetiler.cpp:231 #, no-c-format msgid "Vertical shift per row (in % of tile height)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:238 +#: ../src/ui/dialog/clonetiler.cpp:239 #, no-c-format msgid "Vertical shift per column (in % of tile height)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:245 +#: ../src/ui/dialog/clonetiler.cpp:246 msgid "Randomize the vertical shift by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:253 ../src/ui/dialog/clonetiler.cpp:399 +#: ../src/ui/dialog/clonetiler.cpp:254 ../src/ui/dialog/clonetiler.cpp:400 msgid "Exponent:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:260 +#: ../src/ui/dialog/clonetiler.cpp:261 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:267 +#: ../src/ui/dialog/clonetiler.cpp:268 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "" #. TRANSLATORS: "Alternate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:275 ../src/ui/dialog/clonetiler.cpp:439 -#: ../src/ui/dialog/clonetiler.cpp:515 ../src/ui/dialog/clonetiler.cpp:588 -#: ../src/ui/dialog/clonetiler.cpp:634 ../src/ui/dialog/clonetiler.cpp:761 +#: ../src/ui/dialog/clonetiler.cpp:276 ../src/ui/dialog/clonetiler.cpp:440 +#: ../src/ui/dialog/clonetiler.cpp:516 ../src/ui/dialog/clonetiler.cpp:589 +#: ../src/ui/dialog/clonetiler.cpp:635 ../src/ui/dialog/clonetiler.cpp:762 msgid "Alternate:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:281 +#: ../src/ui/dialog/clonetiler.cpp:282 msgid "Alternate the sign of shifts for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:286 +#: ../src/ui/dialog/clonetiler.cpp:287 msgid "Alternate the sign of shifts for each column" msgstr "" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:293 ../src/ui/dialog/clonetiler.cpp:457 -#: ../src/ui/dialog/clonetiler.cpp:533 +#: ../src/ui/dialog/clonetiler.cpp:294 ../src/ui/dialog/clonetiler.cpp:458 +#: ../src/ui/dialog/clonetiler.cpp:534 msgid "Cumulate:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:299 +#: ../src/ui/dialog/clonetiler.cpp:300 msgid "Cumulate the shifts for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:304 +#: ../src/ui/dialog/clonetiler.cpp:305 msgid "Cumulate the shifts for each column" msgstr "" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:311 +#: ../src/ui/dialog/clonetiler.cpp:312 msgid "Exclude tile:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:317 +#: ../src/ui/dialog/clonetiler.cpp:318 msgid "Exclude tile height in shift" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:322 +#: ../src/ui/dialog/clonetiler.cpp:323 msgid "Exclude tile width in shift" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:331 +#: ../src/ui/dialog/clonetiler.cpp:332 msgid "Sc_ale" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:339 +#: ../src/ui/dialog/clonetiler.cpp:340 msgid "Scale X:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:347 +#: ../src/ui/dialog/clonetiler.cpp:348 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:355 +#: ../src/ui/dialog/clonetiler.cpp:356 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:361 +#: ../src/ui/dialog/clonetiler.cpp:362 msgid "Randomize the horizontal scale by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:369 +#: ../src/ui/dialog/clonetiler.cpp:370 msgid "Scale Y:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:377 +#: ../src/ui/dialog/clonetiler.cpp:378 #, no-c-format msgid "Vertical scale per row (in % of tile height)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:385 +#: ../src/ui/dialog/clonetiler.cpp:386 #, no-c-format msgid "Vertical scale per column (in % of tile height)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:391 +#: ../src/ui/dialog/clonetiler.cpp:392 msgid "Randomize the vertical scale by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:405 +#: ../src/ui/dialog/clonetiler.cpp:406 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:411 +#: ../src/ui/dialog/clonetiler.cpp:412 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:419 +#: ../src/ui/dialog/clonetiler.cpp:420 msgid "Base:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:425 ../src/ui/dialog/clonetiler.cpp:431 +#: ../src/ui/dialog/clonetiler.cpp:426 ../src/ui/dialog/clonetiler.cpp:432 msgid "" "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:445 +#: ../src/ui/dialog/clonetiler.cpp:446 msgid "Alternate the sign of scales for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:450 +#: ../src/ui/dialog/clonetiler.cpp:451 msgid "Alternate the sign of scales for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:463 +#: ../src/ui/dialog/clonetiler.cpp:464 msgid "Cumulate the scales for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:468 +#: ../src/ui/dialog/clonetiler.cpp:469 msgid "Cumulate the scales for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:477 +#: ../src/ui/dialog/clonetiler.cpp:478 msgid "_Rotation" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:485 +#: ../src/ui/dialog/clonetiler.cpp:486 msgid "Angle:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:493 +#: ../src/ui/dialog/clonetiler.cpp:494 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:501 +#: ../src/ui/dialog/clonetiler.cpp:502 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:507 +#: ../src/ui/dialog/clonetiler.cpp:508 msgid "Randomize the rotation angle by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:521 +#: ../src/ui/dialog/clonetiler.cpp:522 msgid "Alternate the rotation direction for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:526 +#: ../src/ui/dialog/clonetiler.cpp:527 msgid "Alternate the rotation direction for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:539 +#: ../src/ui/dialog/clonetiler.cpp:540 msgid "Cumulate the rotation for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:544 +#: ../src/ui/dialog/clonetiler.cpp:545 msgid "Cumulate the rotation for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:553 +#: ../src/ui/dialog/clonetiler.cpp:554 msgid "_Blur & opacity" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:562 +#: ../src/ui/dialog/clonetiler.cpp:563 msgid "Blur:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:568 +#: ../src/ui/dialog/clonetiler.cpp:569 msgid "Blur tiles by this percentage for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:574 +#: ../src/ui/dialog/clonetiler.cpp:575 msgid "Blur tiles by this percentage for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:580 +#: ../src/ui/dialog/clonetiler.cpp:581 msgid "Randomize the tile blur by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:594 +#: ../src/ui/dialog/clonetiler.cpp:595 msgid "Alternate the sign of blur change for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:599 +#: ../src/ui/dialog/clonetiler.cpp:600 msgid "Alternate the sign of blur change for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:608 +#: ../src/ui/dialog/clonetiler.cpp:609 msgid "Opacity:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:614 +#: ../src/ui/dialog/clonetiler.cpp:615 msgid "Decrease tile opacity by this percentage for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:620 +#: ../src/ui/dialog/clonetiler.cpp:621 msgid "Decrease tile opacity by this percentage for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:626 +#: ../src/ui/dialog/clonetiler.cpp:627 msgid "Randomize the tile opacity by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:640 +#: ../src/ui/dialog/clonetiler.cpp:641 msgid "Alternate the sign of opacity change for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:645 +#: ../src/ui/dialog/clonetiler.cpp:646 msgid "Alternate the sign of opacity change for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:653 +#: ../src/ui/dialog/clonetiler.cpp:654 msgid "Co_lor" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:663 +#: ../src/ui/dialog/clonetiler.cpp:664 msgid "Initial color: " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:667 +#: ../src/ui/dialog/clonetiler.cpp:668 msgid "Initial color of tiled clones" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:667 +#: ../src/ui/dialog/clonetiler.cpp:668 msgid "" "Initial color for clones (works only if the original has unset fill or " "stroke)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:682 +#: ../src/ui/dialog/clonetiler.cpp:683 msgid "H:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:688 +#: ../src/ui/dialog/clonetiler.cpp:689 msgid "Change the tile hue by this percentage for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:694 +#: ../src/ui/dialog/clonetiler.cpp:695 msgid "Change the tile hue by this percentage for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:700 +#: ../src/ui/dialog/clonetiler.cpp:701 msgid "Randomize the tile hue by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:709 +#: ../src/ui/dialog/clonetiler.cpp:710 msgid "S:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:715 +#: ../src/ui/dialog/clonetiler.cpp:716 msgid "Change the color saturation by this percentage for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:721 +#: ../src/ui/dialog/clonetiler.cpp:722 msgid "Change the color saturation by this percentage for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:727 +#: ../src/ui/dialog/clonetiler.cpp:728 msgid "Randomize the color saturation by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:735 +#: ../src/ui/dialog/clonetiler.cpp:736 msgid "L:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:741 +#: ../src/ui/dialog/clonetiler.cpp:742 msgid "Change the color lightness by this percentage for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:747 +#: ../src/ui/dialog/clonetiler.cpp:748 msgid "Change the color lightness by this percentage for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:753 +#: ../src/ui/dialog/clonetiler.cpp:754 msgid "Randomize the color lightness by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:767 +#: ../src/ui/dialog/clonetiler.cpp:768 msgid "Alternate the sign of color changes for each row" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:772 +#: ../src/ui/dialog/clonetiler.cpp:773 msgid "Alternate the sign of color changes for each column" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:780 +#: ../src/ui/dialog/clonetiler.cpp:781 msgid "_Trace" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:792 +#: ../src/ui/dialog/clonetiler.cpp:793 msgid "Trace the drawing under the tiles" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:796 +#: ../src/ui/dialog/clonetiler.cpp:797 msgid "" "For each clone, pick a value from the drawing in that clone's location and " "apply it to the clone" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:815 +#: ../src/ui/dialog/clonetiler.cpp:816 msgid "1. Pick from the drawing:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:833 +#: ../src/ui/dialog/clonetiler.cpp:834 msgid "Pick the visible color and opacity" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:841 +#: ../src/ui/dialog/clonetiler.cpp:842 msgid "Pick the total accumulated opacity" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:848 +#: ../src/ui/dialog/clonetiler.cpp:849 msgid "R" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:849 +#: ../src/ui/dialog/clonetiler.cpp:850 msgid "Pick the Red component of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:856 +#: ../src/ui/dialog/clonetiler.cpp:857 msgid "G" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:857 +#: ../src/ui/dialog/clonetiler.cpp:858 msgid "Pick the Green component of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:864 +#: ../src/ui/dialog/clonetiler.cpp:865 msgid "B" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:865 +#: ../src/ui/dialog/clonetiler.cpp:866 msgid "Pick the Blue component of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:872 +#: ../src/ui/dialog/clonetiler.cpp:873 msgctxt "Clonetiler color hue" msgid "H" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:873 +#: ../src/ui/dialog/clonetiler.cpp:874 msgid "Pick the hue of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:880 +#: ../src/ui/dialog/clonetiler.cpp:881 msgctxt "Clonetiler color saturation" msgid "S" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:881 +#: ../src/ui/dialog/clonetiler.cpp:882 msgid "Pick the saturation of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:888 +#: ../src/ui/dialog/clonetiler.cpp:889 msgctxt "Clonetiler color lightness" msgid "L" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:889 +#: ../src/ui/dialog/clonetiler.cpp:890 msgid "Pick the lightness of the color" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:899 +#: ../src/ui/dialog/clonetiler.cpp:900 msgid "2. Tweak the picked value:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:916 +#: ../src/ui/dialog/clonetiler.cpp:917 msgid "Gamma-correct:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:920 +#: ../src/ui/dialog/clonetiler.cpp:921 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:927 +#: ../src/ui/dialog/clonetiler.cpp:928 msgid "Randomize:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:931 +#: ../src/ui/dialog/clonetiler.cpp:932 msgid "Randomize the picked value by this percentage" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:938 +#: ../src/ui/dialog/clonetiler.cpp:939 msgid "Invert:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:942 +#: ../src/ui/dialog/clonetiler.cpp:943 msgid "Invert the picked value" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:948 +#: ../src/ui/dialog/clonetiler.cpp:949 msgid "3. Apply the value to the clones':" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:963 +#: ../src/ui/dialog/clonetiler.cpp:964 msgid "Presence" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:966 +#: ../src/ui/dialog/clonetiler.cpp:967 msgid "" "Each clone is created with the probability determined by the picked value in " "that point" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:973 +#: ../src/ui/dialog/clonetiler.cpp:974 msgid "Size" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:976 +#: ../src/ui/dialog/clonetiler.cpp:977 msgid "Each clone's size is determined by the picked value in that point" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:986 +#: ../src/ui/dialog/clonetiler.cpp:987 msgid "" "Each clone is painted by the picked color (the original must have unset fill " "or stroke)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:996 +#: ../src/ui/dialog/clonetiler.cpp:997 msgid "Each clone's opacity is determined by the picked value in that point" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1044 +#: ../src/ui/dialog/clonetiler.cpp:1045 msgid "How many rows in the tiling" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1074 +#: ../src/ui/dialog/clonetiler.cpp:1075 msgid "How many columns in the tiling" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1119 +#: ../src/ui/dialog/clonetiler.cpp:1120 msgid "Width of the rectangle to be filled" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1152 +#: ../src/ui/dialog/clonetiler.cpp:1153 msgid "Height of the rectangle to be filled" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1169 +#: ../src/ui/dialog/clonetiler.cpp:1170 msgid "Rows, columns: " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1170 +#: ../src/ui/dialog/clonetiler.cpp:1171 msgid "Create the specified number of rows and columns" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1179 +#: ../src/ui/dialog/clonetiler.cpp:1180 msgid "Width, height: " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1180 +#: ../src/ui/dialog/clonetiler.cpp:1181 msgid "Fill the specified width and height with the tiling" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1201 +#: ../src/ui/dialog/clonetiler.cpp:1202 msgid "Use saved size and position of the tile" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1204 +#: ../src/ui/dialog/clonetiler.cpp:1205 msgid "" "Pretend that the size and position of the tile are the same as the last time " "you tiled it (if any), instead of using the current size" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1238 +#: ../src/ui/dialog/clonetiler.cpp:1239 msgid " _Create " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1240 +#: ../src/ui/dialog/clonetiler.cpp:1241 msgid "Create and tile the clones of the selection" msgstr "" @@ -13836,89 +13866,89 @@ msgstr "" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/ui/dialog/clonetiler.cpp:1260 +#: ../src/ui/dialog/clonetiler.cpp:1261 msgid " _Unclump " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1261 +#: ../src/ui/dialog/clonetiler.cpp:1262 msgid "Spread out clones to reduce clumping; can be applied repeatedly" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1267 +#: ../src/ui/dialog/clonetiler.cpp:1268 msgid " Re_move " msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1268 +#: ../src/ui/dialog/clonetiler.cpp:1269 msgid "Remove existing tiled clones of the selected object (siblings only)" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1284 +#: ../src/ui/dialog/clonetiler.cpp:1285 msgid " R_eset " msgstr "" #. TRANSLATORS: "change" is a noun here -#: ../src/ui/dialog/clonetiler.cpp:1286 +#: ../src/ui/dialog/clonetiler.cpp:1287 msgid "" "Reset all shifts, scales, rotates, opacity and color changes in the dialog " "to zero" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1359 +#: ../src/ui/dialog/clonetiler.cpp:1360 msgid "Nothing selected." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1365 +#: ../src/ui/dialog/clonetiler.cpp:1366 msgid "More than one object selected." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1372 +#: ../src/ui/dialog/clonetiler.cpp:1373 #, c-format msgid "Object has %d tiled clones." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:1377 +#: ../src/ui/dialog/clonetiler.cpp:1378 msgid "Object has no tiled clones." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2097 +#: ../src/ui/dialog/clonetiler.cpp:2100 msgid "Select one object whose tiled clones to unclump." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2119 +#: ../src/ui/dialog/clonetiler.cpp:2122 msgid "Unclump tiled clones" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2148 +#: ../src/ui/dialog/clonetiler.cpp:2151 msgid "Select one object whose tiled clones to remove." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2171 +#: ../src/ui/dialog/clonetiler.cpp:2176 msgid "Delete tiled clones" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2224 +#: ../src/ui/dialog/clonetiler.cpp:2229 msgid "" "If you want to clone several objects, group them and clone the " "group." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2233 +#: ../src/ui/dialog/clonetiler.cpp:2238 msgid "Creating tiled clones..." msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2645 +#: ../src/ui/dialog/clonetiler.cpp:2651 msgid "Create tiled clones" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2878 +#: ../src/ui/dialog/clonetiler.cpp:2884 msgid "Per row:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2896 +#: ../src/ui/dialog/clonetiler.cpp:2902 msgid "Per column:" msgstr "" -#: ../src/ui/dialog/clonetiler.cpp:2904 +#: ../src/ui/dialog/clonetiler.cpp:2910 msgid "Randomize:" msgstr "" @@ -14048,7 +14078,7 @@ msgid "Color of the page border" msgstr "" #: ../src/ui/dialog/document-properties.cpp:117 -msgid "Default _units:" +msgid "Display _units:" msgstr "" #. --------------------------------------------------------------- @@ -14377,20 +14407,20 @@ msgstr "" msgid "Edit embedded script" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:1429 +#: ../src/ui/dialog/document-properties.cpp:1434 msgid "Creation" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:1430 +#: ../src/ui/dialog/document-properties.cpp:1435 msgid "Defined grids" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:1677 +#: ../src/ui/dialog/document-properties.cpp:1682 msgid "Remove grid" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:1761 -msgid "Changed document unit" +#: ../src/ui/dialog/document-properties.cpp:1770 +msgid "Changed default display unit" msgstr "" #: ../src/ui/dialog/export.cpp:152 ../src/verbs.cpp:2883 @@ -14495,9 +14525,9 @@ msgid "_Height:" msgstr "" #: ../src/ui/dialog/export.cpp:309 -#: ../src/ui/dialog/inkscape-preferences.cpp:1436 -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 +#: ../src/ui/dialog/inkscape-preferences.cpp:1443 +#: ../src/ui/dialog/inkscape-preferences.cpp:1467 msgid "dpi" msgstr "" @@ -15690,57 +15720,57 @@ msgstr "" msgid "Replace all matches" msgstr "" -#: ../src/ui/dialog/find.cpp:775 +#: ../src/ui/dialog/find.cpp:797 msgid "Nothing to replace" msgstr "" #. TRANSLATORS: "%s" is replaced with "exact" or "partial" when this string is displayed -#: ../src/ui/dialog/find.cpp:816 +#: ../src/ui/dialog/find.cpp:838 #, c-format msgid "%d object found (out of %d), %s match." msgid_plural "%d objects found (out of %d), %s match." msgstr[0] "" msgstr[1] "" -#: ../src/ui/dialog/find.cpp:819 +#: ../src/ui/dialog/find.cpp:841 msgid "exact" msgstr "" -#: ../src/ui/dialog/find.cpp:819 +#: ../src/ui/dialog/find.cpp:841 msgid "partial" msgstr "" #. TRANSLATORS: "%1" is replaced with the number of matches -#: ../src/ui/dialog/find.cpp:822 +#: ../src/ui/dialog/find.cpp:844 msgid "%1 match replaced" msgid_plural "%1 matches replaced" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: "%1" is replaced with the number of matches -#: ../src/ui/dialog/find.cpp:826 +#: ../src/ui/dialog/find.cpp:848 msgid "%1 object found" msgid_plural "%1 objects found" msgstr[0] "" msgstr[1] "" -#: ../src/ui/dialog/find.cpp:837 +#: ../src/ui/dialog/find.cpp:862 msgid "Replace text or property" msgstr "" -#: ../src/ui/dialog/find.cpp:841 +#: ../src/ui/dialog/find.cpp:866 msgid "Nothing found" msgstr "" -#: ../src/ui/dialog/find.cpp:846 +#: ../src/ui/dialog/find.cpp:871 msgid "No objects found" msgstr "" -#: ../src/ui/dialog/find.cpp:867 +#: ../src/ui/dialog/find.cpp:892 msgid "Select an object type" msgstr "" -#: ../src/ui/dialog/find.cpp:885 +#: ../src/ui/dialog/find.cpp:910 msgid "Select a property" msgstr "" @@ -16683,289 +16713,289 @@ msgid "" "objects." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:265 msgid "Style of new objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:264 +#: ../src/ui/dialog/inkscape-preferences.cpp:267 msgid "Last used style" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:266 +#: ../src/ui/dialog/inkscape-preferences.cpp:269 msgid "Apply the style you last set on an object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:274 msgid "This tool's own style:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:275 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "" "Each tool may store its own style to apply to the newly created objects. Use " "the button below to set it." msgstr "" #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:279 +#: ../src/ui/dialog/inkscape-preferences.cpp:282 msgid "Take from selection" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:284 +#: ../src/ui/dialog/inkscape-preferences.cpp:287 msgid "This tool's style of new objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:291 +#: ../src/ui/dialog/inkscape-preferences.cpp:294 msgid "Remember the style of the (first) selected object as this tool's style" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:296 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "Tools" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:299 +#: ../src/ui/dialog/inkscape-preferences.cpp:302 msgid "Bounding box to use" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:300 +#: ../src/ui/dialog/inkscape-preferences.cpp:303 msgid "Visual bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:302 +#: ../src/ui/dialog/inkscape-preferences.cpp:305 msgid "This bounding box includes stroke width, markers, filter margins, etc." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:303 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "Geometric bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:308 msgid "This bounding box includes only the bare path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:307 +#: ../src/ui/dialog/inkscape-preferences.cpp:310 msgid "Conversion to guides" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:308 +#: ../src/ui/dialog/inkscape-preferences.cpp:311 msgid "Keep objects after conversion to guides" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:310 +#: ../src/ui/dialog/inkscape-preferences.cpp:313 msgid "" "When converting an object to guides, don't delete the object after the " "conversion" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:311 +#: ../src/ui/dialog/inkscape-preferences.cpp:314 msgid "Treat groups as a single object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:313 +#: ../src/ui/dialog/inkscape-preferences.cpp:316 msgid "" "Treat groups as a single object during conversion to guides rather than " "converting each child separately" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:315 +#: ../src/ui/dialog/inkscape-preferences.cpp:318 msgid "Average all sketches" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:316 +#: ../src/ui/dialog/inkscape-preferences.cpp:319 msgid "Width is in absolute units" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:317 +#: ../src/ui/dialog/inkscape-preferences.cpp:320 msgid "Select new path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:318 +#: ../src/ui/dialog/inkscape-preferences.cpp:321 msgid "Don't attach connectors to text objects" msgstr "" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:321 +#: ../src/ui/dialog/inkscape-preferences.cpp:324 msgid "Selector" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:326 +#: ../src/ui/dialog/inkscape-preferences.cpp:329 msgid "When transforming, show" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:327 +#: ../src/ui/dialog/inkscape-preferences.cpp:330 msgid "Objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:329 +#: ../src/ui/dialog/inkscape-preferences.cpp:332 msgid "Show the actual objects when moving or transforming" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:333 msgid "Box outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:332 +#: ../src/ui/dialog/inkscape-preferences.cpp:335 msgid "Show only a box outline of the objects when moving or transforming" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:333 +#: ../src/ui/dialog/inkscape-preferences.cpp:336 msgid "Per-object selection cue" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:334 +#: ../src/ui/dialog/inkscape-preferences.cpp:337 msgctxt "Selection cue" msgid "None" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:336 +#: ../src/ui/dialog/inkscape-preferences.cpp:339 msgid "No per-object selection indication" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:337 +#: ../src/ui/dialog/inkscape-preferences.cpp:340 msgid "Mark" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:339 +#: ../src/ui/dialog/inkscape-preferences.cpp:342 msgid "Each selected object has a diamond mark in the top left corner" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:340 +#: ../src/ui/dialog/inkscape-preferences.cpp:343 msgid "Box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:342 +#: ../src/ui/dialog/inkscape-preferences.cpp:345 msgid "Each selected object displays its bounding box" msgstr "" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:345 +#: ../src/ui/dialog/inkscape-preferences.cpp:348 msgid "Node" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:348 +#: ../src/ui/dialog/inkscape-preferences.cpp:351 msgid "Path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:349 +#: ../src/ui/dialog/inkscape-preferences.cpp:352 msgid "Path outline color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:350 +#: ../src/ui/dialog/inkscape-preferences.cpp:353 msgid "Selects the color used for showing the path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:351 +#: ../src/ui/dialog/inkscape-preferences.cpp:354 msgid "Always show outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:352 +#: ../src/ui/dialog/inkscape-preferences.cpp:355 msgid "Show outlines for all paths, not only invisible paths" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:353 +#: ../src/ui/dialog/inkscape-preferences.cpp:356 msgid "Update outline when dragging nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:354 +#: ../src/ui/dialog/inkscape-preferences.cpp:357 msgid "" "Update the outline when dragging or transforming nodes; if this is off, the " "outline will only update when completing a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:355 +#: ../src/ui/dialog/inkscape-preferences.cpp:358 msgid "Update paths when dragging nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:356 +#: ../src/ui/dialog/inkscape-preferences.cpp:359 msgid "" "Update paths when dragging or transforming nodes; if this is off, paths will " "only be updated when completing a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:357 +#: ../src/ui/dialog/inkscape-preferences.cpp:360 msgid "Show path direction on outlines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:358 +#: ../src/ui/dialog/inkscape-preferences.cpp:361 msgid "" "Visualize the direction of selected paths by drawing small arrows in the " "middle of each outline segment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:359 +#: ../src/ui/dialog/inkscape-preferences.cpp:362 msgid "Show temporary path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:360 +#: ../src/ui/dialog/inkscape-preferences.cpp:363 msgid "When hovering over a path, briefly flash its outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:361 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "Show temporary outline for selected paths" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:362 +#: ../src/ui/dialog/inkscape-preferences.cpp:365 msgid "Show temporary outline even when a path is selected for editing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:367 msgid "_Flash time:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:367 msgid "" "Specifies how long the path outline will be visible after a mouse-over (in " "milliseconds); specify 0 to have the outline shown until mouse leaves the " "path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Editing preferences" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:366 +#: ../src/ui/dialog/inkscape-preferences.cpp:369 msgid "Show transform handles for single nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:370 msgid "Show transform handles even when only a single node is selected" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:368 +#: ../src/ui/dialog/inkscape-preferences.cpp:371 msgid "Deleting nodes preserves shape" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:369 +#: ../src/ui/dialog/inkscape-preferences.cpp:372 msgid "" "Move handles next to deleted nodes to resemble original shape; hold Ctrl to " "get the other behavior" msgstr "" #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:372 +#: ../src/ui/dialog/inkscape-preferences.cpp:375 msgid "Tweak" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:373 +#: ../src/ui/dialog/inkscape-preferences.cpp:376 msgid "Object paint style" msgstr "" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:378 +#: ../src/ui/dialog/inkscape-preferences.cpp:381 #: ../src/widgets/desktop-widget.cpp:631 msgid "Zoom" msgstr "" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:383 ../src/verbs.cpp:2765 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 ../src/verbs.cpp:2765 msgctxt "ContextVerb" msgid "Measure" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:388 msgid "Ignore first and last points" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:386 +#: ../src/ui/dialog/inkscape-preferences.cpp:389 msgid "" "The start and end of the measurement tool's control line will not be " "considered for calculating lengths. Only lengths between actual curve " @@ -16973,868 +17003,868 @@ msgid "" msgstr "" #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:389 +#: ../src/ui/dialog/inkscape-preferences.cpp:392 msgid "Shapes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:421 +#: ../src/ui/dialog/inkscape-preferences.cpp:424 msgid "Sketch mode" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:423 +#: ../src/ui/dialog/inkscape-preferences.cpp:426 msgid "" "If on, the sketch result will be the normal average of all sketches made, " "instead of averaging the old result with the new sketch" msgstr "" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:426 +#: ../src/ui/dialog/inkscape-preferences.cpp:429 #: ../src/ui/dialog/input.cpp:1485 msgid "Pen" msgstr "" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:432 +#: ../src/ui/dialog/inkscape-preferences.cpp:435 msgid "Calligraphy" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 +#: ../src/ui/dialog/inkscape-preferences.cpp:439 msgid "" "If on, pen width is in absolute units (px) independent of zoom; otherwise " "pen width depends on zoom so that it looks the same at any zoom" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:438 +#: ../src/ui/dialog/inkscape-preferences.cpp:441 msgid "" "If on, each newly created object will be selected (deselecting previous " "selection)" msgstr "" #. Text -#: ../src/ui/dialog/inkscape-preferences.cpp:441 ../src/verbs.cpp:2757 +#: ../src/ui/dialog/inkscape-preferences.cpp:444 ../src/verbs.cpp:2757 msgctxt "ContextVerb" msgid "Text" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:446 +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Show font samples in the drop-down list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 +#: ../src/ui/dialog/inkscape-preferences.cpp:450 msgid "" "Show font samples alongside font names in the drop-down list in Text bar" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:449 +#: ../src/ui/dialog/inkscape-preferences.cpp:452 msgid "Show font substitution warning dialog" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:450 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "" "Show font substitution warning dialog when requested fonts are not available " "on the system" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Pixel" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Pica" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Millimeter" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Centimeter" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Inch" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Em square" msgstr "" #. , _("Ex square"), _("Percent") #. , SP_CSS_UNIT_EX, SP_CSS_UNIT_PERCENT -#: ../src/ui/dialog/inkscape-preferences.cpp:456 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Text units" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "Text size unit type:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:462 msgid "Set the type of unit used in the text toolbar and text dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:460 +#: ../src/ui/dialog/inkscape-preferences.cpp:463 msgid "Always output text size in pixels (px)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:461 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "" "Always convert the text size units above into pixels (px) before saving to " "file" msgstr "" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:466 +#: ../src/ui/dialog/inkscape-preferences.cpp:469 msgid "Spray" msgstr "" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:471 +#: ../src/ui/dialog/inkscape-preferences.cpp:474 msgid "Eraser" msgstr "" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:475 +#: ../src/ui/dialog/inkscape-preferences.cpp:478 msgid "Paint Bucket" msgstr "" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:480 +#: ../src/ui/dialog/inkscape-preferences.cpp:483 #: ../src/widgets/gradient-selector.cpp:134 #: ../src/widgets/gradient-selector.cpp:302 msgid "Gradient" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:482 +#: ../src/ui/dialog/inkscape-preferences.cpp:485 msgid "Prevent sharing of gradient definitions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:484 +#: ../src/ui/dialog/inkscape-preferences.cpp:487 msgid "" "When on, shared gradient definitions are automatically forked on change; " "uncheck to allow sharing of gradient definitions so that editing one object " "may affect other objects using the same gradient" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:485 +#: ../src/ui/dialog/inkscape-preferences.cpp:488 msgid "Use legacy Gradient Editor" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:487 +#: ../src/ui/dialog/inkscape-preferences.cpp:490 msgid "" "When on, the Gradient Edit button in the Fill & Stroke dialog will show the " "legacy Gradient Editor dialog, when off the Gradient Tool will be used" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:490 +#: ../src/ui/dialog/inkscape-preferences.cpp:493 msgid "Linear gradient _angle:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:491 +#: ../src/ui/dialog/inkscape-preferences.cpp:494 msgid "" "Default angle of new linear gradients in degrees (clockwise from horizontal)" msgstr "" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:495 +#: ../src/ui/dialog/inkscape-preferences.cpp:498 msgid "Dropper" msgstr "" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:500 +#: ../src/ui/dialog/inkscape-preferences.cpp:503 msgid "Connector" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:503 +#: ../src/ui/dialog/inkscape-preferences.cpp:506 msgid "If on, connector attachment points will not be shown for text objects" msgstr "" #. LPETool #. disabled, because the LPETool is not finished yet. -#: ../src/ui/dialog/inkscape-preferences.cpp:508 +#: ../src/ui/dialog/inkscape-preferences.cpp:511 msgid "LPE Tool" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:515 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 msgid "Interface" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "System default" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Albanian (sq)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Amharic (am)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Arabic (ar)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Armenian (hy)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Azerbaijani (az)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Basque (eu)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:518 +#: ../src/ui/dialog/inkscape-preferences.cpp:521 msgid "Belarusian (be)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bulgarian (bg)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bengali (bn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Bengali/Bangladesh (bn_BD)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Breton (br)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Catalan (ca)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Valencian Catalan (ca@valencia)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:519 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 msgid "Chinese/China (zh_CN)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Chinese/Taiwan (zh_TW)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Croatian (hr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:520 +#: ../src/ui/dialog/inkscape-preferences.cpp:523 msgid "Czech (cs)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Danish (da)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Dutch (nl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Dzongkha (dz)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "German (de)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "Greek (el)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "English (en)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:524 msgid "English/Australia (en_AU)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "English/Canada (en_CA)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "English/Great Britain (en_GB)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:522 +#: ../src/ui/dialog/inkscape-preferences.cpp:525 msgid "Pig Latin (en_US@piglatin)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Esperanto (eo)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Estonian (et)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Farsi (fa)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:523 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Finnish (fi)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "French (fr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Irish (ga)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Galician (gl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Hebrew (he)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:524 +#: ../src/ui/dialog/inkscape-preferences.cpp:527 msgid "Hungarian (hu)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Indonesian (id)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Italian (it)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Japanese (ja)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Khmer (km)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Kinyarwanda (rw)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Korean (ko)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Lithuanian (lt)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Latvian (lv)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "Macedonian (mk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Mongolian (mn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Nepali (ne)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Norwegian Bokmål (nb)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Norwegian Nynorsk (nn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:526 +#: ../src/ui/dialog/inkscape-preferences.cpp:529 msgid "Panjabi (pa)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Polish (pl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Portuguese (pt)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Portuguese/Brazil (pt_BR)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Romanian (ro)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:530 msgid "Russian (ru)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Serbian (sr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Serbian in Latin script (sr@latin)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Slovak (sk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Slovenian (sl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Spanish (es)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:528 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 msgid "Spanish/Mexico (es_MX)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Swedish (sv)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Telugu (te)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Thai (th)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Turkish (tr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Ukrainian (uk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:529 +#: ../src/ui/dialog/inkscape-preferences.cpp:532 msgid "Vietnamese (vi)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:561 +#: ../src/ui/dialog/inkscape-preferences.cpp:564 msgid "Language (requires restart):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:562 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "Set the language for menus and number formats" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Large" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Small" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:565 +#: ../src/ui/dialog/inkscape-preferences.cpp:568 msgid "Smaller" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:569 +#: ../src/ui/dialog/inkscape-preferences.cpp:572 msgid "Toolbox icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:573 msgid "Set the size for the tool icons (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:573 +#: ../src/ui/dialog/inkscape-preferences.cpp:576 msgid "Control bar icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:574 +#: ../src/ui/dialog/inkscape-preferences.cpp:577 msgid "" "Set the size for the icons in tools' control bars to use (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:577 +#: ../src/ui/dialog/inkscape-preferences.cpp:580 msgid "Secondary toolbar icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:578 +#: ../src/ui/dialog/inkscape-preferences.cpp:581 msgid "" "Set the size for the icons in secondary toolbars to use (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:581 +#: ../src/ui/dialog/inkscape-preferences.cpp:584 msgid "Work-around color sliders not drawing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:583 +#: ../src/ui/dialog/inkscape-preferences.cpp:586 msgid "" "When on, will attempt to work around bugs in certain GTK themes drawing " "color sliders" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:588 +#: ../src/ui/dialog/inkscape-preferences.cpp:591 msgid "Clear list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:591 +#: ../src/ui/dialog/inkscape-preferences.cpp:594 msgid "Maximum documents in Open _Recent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:592 +#: ../src/ui/dialog/inkscape-preferences.cpp:595 msgid "" "Set the maximum length of the Open Recent list in the File menu, or clear " "the list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:595 +#: ../src/ui/dialog/inkscape-preferences.cpp:598 msgid "_Zoom correction factor (in %):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:599 msgid "" "Adjust the slider until the length of the ruler on your screen matches its " "real length. This information is used when zooming to 1:1, 1:2, etc., to " "display objects in their true sizes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:599 +#: ../src/ui/dialog/inkscape-preferences.cpp:602 msgid "Enable dynamic relayout for incomplete sections" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:601 +#: ../src/ui/dialog/inkscape-preferences.cpp:604 msgid "" "When on, will allow dynamic layout of components that are not completely " "finished being refactored" msgstr "" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:604 +#: ../src/ui/dialog/inkscape-preferences.cpp:607 msgid "Show filter primitives infobox (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:606 +#: ../src/ui/dialog/inkscape-preferences.cpp:609 msgid "" "Show icons and descriptions for the filter primitives available at the " "filter effects dialog" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Icons only" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Text only" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:609 -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Icons and text" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:614 +#: ../src/ui/dialog/inkscape-preferences.cpp:617 msgid "Dockbar style (requires restart):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:615 +#: ../src/ui/dialog/inkscape-preferences.cpp:618 msgid "" "Selects whether the vertical bars on the dockbar will show text labels, " "icons, or both" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:622 +#: ../src/ui/dialog/inkscape-preferences.cpp:625 msgid "Switcher style (requires restart):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:623 +#: ../src/ui/dialog/inkscape-preferences.cpp:626 msgid "" "Selects whether the dockbar switcher will show text labels, icons, or both" msgstr "" #. Windows -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:630 msgid "Save and restore window geometry for each document" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:628 +#: ../src/ui/dialog/inkscape-preferences.cpp:631 msgid "Remember and use last window's geometry" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 msgid "Don't save window geometry" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:631 +#: ../src/ui/dialog/inkscape-preferences.cpp:634 msgid "Save and restore dialogs status" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:632 -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:635 +#: ../src/ui/dialog/inkscape-preferences.cpp:671 msgid "Don't save dialogs status" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:634 -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:679 msgid "Dockable" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:638 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Native open/save dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:639 +#: ../src/ui/dialog/inkscape-preferences.cpp:642 msgid "GTK open/save dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:641 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Dialogs are hidden in taskbar" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:645 msgid "Save and restore documents viewport" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:643 +#: ../src/ui/dialog/inkscape-preferences.cpp:646 msgid "Zoom when window is resized" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:644 +#: ../src/ui/dialog/inkscape-preferences.cpp:647 msgid "Show close button on dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:645 +#: ../src/ui/dialog/inkscape-preferences.cpp:648 msgctxt "Dialog on top" msgid "None" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:647 +#: ../src/ui/dialog/inkscape-preferences.cpp:650 msgid "Aggressive" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Maximized" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:654 +#: ../src/ui/dialog/inkscape-preferences.cpp:657 msgid "Default window size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:655 +#: ../src/ui/dialog/inkscape-preferences.cpp:658 msgid "Set the default window size" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:658 +#: ../src/ui/dialog/inkscape-preferences.cpp:661 msgid "Saving window geometry (size and position)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:660 +#: ../src/ui/dialog/inkscape-preferences.cpp:663 msgid "Let the window manager determine placement of all windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:662 +#: ../src/ui/dialog/inkscape-preferences.cpp:665 msgid "" "Remember and use the last window's geometry (saves geometry to user " "preferences)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:664 +#: ../src/ui/dialog/inkscape-preferences.cpp:667 msgid "" "Save and restore window geometry for each document (saves geometry in the " "document)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:669 msgid "Saving dialogs status" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:670 +#: ../src/ui/dialog/inkscape-preferences.cpp:673 msgid "" "Save and restore dialogs status (the last open windows dialogs are saved " "when it closes)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:677 msgid "Dialog behavior (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:680 +#: ../src/ui/dialog/inkscape-preferences.cpp:683 msgid "Desktop integration" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:682 +#: ../src/ui/dialog/inkscape-preferences.cpp:685 msgid "Use Windows like open and save dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:687 msgid "Use GTK open and save dialogs " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:688 +#: ../src/ui/dialog/inkscape-preferences.cpp:691 msgid "Dialogs on top:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:694 msgid "Dialogs are treated as regular windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:696 msgid "Dialogs stay on top of document windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:695 +#: ../src/ui/dialog/inkscape-preferences.cpp:698 msgid "Same as Normal but may work better with some window managers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 +#: ../src/ui/dialog/inkscape-preferences.cpp:701 msgid "Dialog Transparency" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:700 +#: ../src/ui/dialog/inkscape-preferences.cpp:703 msgid "_Opacity when focused:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:702 +#: ../src/ui/dialog/inkscape-preferences.cpp:705 msgid "Opacity when _unfocused:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:704 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "_Time of opacity change animation:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:707 +#: ../src/ui/dialog/inkscape-preferences.cpp:710 msgid "Miscellaneous" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:710 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "Whether dialog windows are to be hidden in the window manager taskbar" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:713 +#: ../src/ui/dialog/inkscape-preferences.cpp:716 msgid "" "Zoom drawing when document window is resized, to keep the same area visible " "(this is the default which can be changed in any window using the button " "above the right scrollbar)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:715 +#: ../src/ui/dialog/inkscape-preferences.cpp:718 msgid "" "Save documents viewport (zoom and panning position). Useful to turn off when " "sharing version controlled files." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:717 +#: ../src/ui/dialog/inkscape-preferences.cpp:720 msgid "Whether dialog windows have a close button (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Windows" msgstr "" #. Grids -#: ../src/ui/dialog/inkscape-preferences.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:724 msgid "Line color when zooming out" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:724 +#: ../src/ui/dialog/inkscape-preferences.cpp:727 msgid "The gridlines will be shown in minor grid line color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/ui/dialog/inkscape-preferences.cpp:729 msgid "The gridlines will be shown in major grid line color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:728 +#: ../src/ui/dialog/inkscape-preferences.cpp:731 msgid "Default grid settings" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:734 -#: ../src/ui/dialog/inkscape-preferences.cpp:759 +#: ../src/ui/dialog/inkscape-preferences.cpp:737 +#: ../src/ui/dialog/inkscape-preferences.cpp:762 msgid "Grid units:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:739 -#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:742 +#: ../src/ui/dialog/inkscape-preferences.cpp:767 msgid "Origin X:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:740 -#: ../src/ui/dialog/inkscape-preferences.cpp:765 +#: ../src/ui/dialog/inkscape-preferences.cpp:743 +#: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Origin Y:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:748 msgid "Spacing X:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Spacing Y:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:773 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:752 +#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Minor grid line color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:749 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:752 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Color used for normal grid lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:750 -#: ../src/ui/dialog/inkscape-preferences.cpp:751 -#: ../src/ui/dialog/inkscape-preferences.cpp:775 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:778 +#: ../src/ui/dialog/inkscape-preferences.cpp:779 msgid "Major grid line color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:751 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:779 msgid "Color used for major (highlighted) grid lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:753 -#: ../src/ui/dialog/inkscape-preferences.cpp:778 +#: ../src/ui/dialog/inkscape-preferences.cpp:756 +#: ../src/ui/dialog/inkscape-preferences.cpp:781 msgid "Major grid line every:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:754 +#: ../src/ui/dialog/inkscape-preferences.cpp:757 msgid "Show dots instead of lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:755 +#: ../src/ui/dialog/inkscape-preferences.cpp:758 msgid "If set, display dots at gridpoints instead of gridlines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:836 +#: ../src/ui/dialog/inkscape-preferences.cpp:839 msgid "Input/Output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:842 msgid "Use current directory for \"Save As ...\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:841 +#: ../src/ui/dialog/inkscape-preferences.cpp:844 msgid "" "When this option is on, the \"Save as...\" and \"Save a Copy...\" dialogs " "will always open in the directory where the currently open document is; when " @@ -17842,176 +17872,176 @@ msgid "" "it" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:846 msgid "Add label comments to printing output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 +#: ../src/ui/dialog/inkscape-preferences.cpp:848 msgid "" "When on, a comment will be added to the raw print output, marking the " "rendered output for an object with its label" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:847 +#: ../src/ui/dialog/inkscape-preferences.cpp:850 msgid "Add default metadata to new documents" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:849 +#: ../src/ui/dialog/inkscape-preferences.cpp:852 msgid "" "Add default metadata to new documents. Default metadata can be set from " "Document Properties->Metadata." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:853 +#: ../src/ui/dialog/inkscape-preferences.cpp:856 msgid "_Grab sensitivity:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:853 +#: ../src/ui/dialog/inkscape-preferences.cpp:856 msgid "pixels (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:854 +#: ../src/ui/dialog/inkscape-preferences.cpp:857 msgid "" "How close on the screen you need to be to an object to be able to grab it " "with mouse (in screen pixels)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:856 +#: ../src/ui/dialog/inkscape-preferences.cpp:859 msgid "_Click/drag threshold:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:856 -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 -#: ../src/ui/dialog/inkscape-preferences.cpp:1212 +#: ../src/ui/dialog/inkscape-preferences.cpp:859 +#: ../src/ui/dialog/inkscape-preferences.cpp:1201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1215 msgid "pixels" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:857 +#: ../src/ui/dialog/inkscape-preferences.cpp:860 msgid "" "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:860 +#: ../src/ui/dialog/inkscape-preferences.cpp:863 msgid "_Handle size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:861 +#: ../src/ui/dialog/inkscape-preferences.cpp:864 msgid "Set the relative size of node handles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:863 +#: ../src/ui/dialog/inkscape-preferences.cpp:866 msgid "Use pressure-sensitive tablet (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:865 +#: ../src/ui/dialog/inkscape-preferences.cpp:868 msgid "" "Use the capabilities of a tablet or other pressure-sensitive device. Disable " "this only if you have problems with the tablet (you can still use it as a " "mouse)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:867 +#: ../src/ui/dialog/inkscape-preferences.cpp:870 msgid "Switch tool based on tablet device (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:869 +#: ../src/ui/dialog/inkscape-preferences.cpp:872 msgid "" "Change tool as different devices are used on the tablet (pen, eraser, mouse)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:870 +#: ../src/ui/dialog/inkscape-preferences.cpp:873 msgid "Input devices" msgstr "" #. SVG output options -#: ../src/ui/dialog/inkscape-preferences.cpp:873 +#: ../src/ui/dialog/inkscape-preferences.cpp:876 msgid "Use named colors" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:874 +#: ../src/ui/dialog/inkscape-preferences.cpp:877 msgid "" "If set, write the CSS name of the color when available (e.g. 'red' or " "'magenta') instead of the numeric value" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:876 +#: ../src/ui/dialog/inkscape-preferences.cpp:879 msgid "XML formatting" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:878 +#: ../src/ui/dialog/inkscape-preferences.cpp:881 msgid "Inline attributes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:879 +#: ../src/ui/dialog/inkscape-preferences.cpp:882 msgid "Put attributes on the same line as the element tag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 +#: ../src/ui/dialog/inkscape-preferences.cpp:885 msgid "_Indent, spaces:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 +#: ../src/ui/dialog/inkscape-preferences.cpp:885 msgid "" "The number of spaces to use for indenting nested elements; set to 0 for no " "indentation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:884 +#: ../src/ui/dialog/inkscape-preferences.cpp:887 msgid "Path data" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 msgid "Absolute" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 msgid "Relative" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:887 -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 +#: ../src/ui/dialog/inkscape-preferences.cpp:1180 msgid "Optimized" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:894 msgid "Path string format:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:894 msgid "" "Path data should be written: only with absolute coordinates, only with " "relative coordinates, or optimized for string length (mixed absolute and " "relative coordinates)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:893 +#: ../src/ui/dialog/inkscape-preferences.cpp:896 msgid "Force repeat commands" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:894 +#: ../src/ui/dialog/inkscape-preferences.cpp:897 msgid "" "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead " "of 'L 1,2 3,4')" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:896 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Numbers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:899 +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "_Numeric precision:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:899 +#: ../src/ui/dialog/inkscape-preferences.cpp:902 msgid "Significant figures of the values written to the SVG file" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:905 msgid "Minimum _exponent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:905 msgid "" "The smallest number written to SVG is 10 to the power of this exponent; " "anything smaller is written as zero" @@ -18019,56 +18049,56 @@ msgstr "" #. Code to add controls for attribute checking options #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:907 +#: ../src/ui/dialog/inkscape-preferences.cpp:910 msgid "Improper Attributes Actions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:909 -#: ../src/ui/dialog/inkscape-preferences.cpp:917 -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:912 +#: ../src/ui/dialog/inkscape-preferences.cpp:920 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Print warnings" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:910 +#: ../src/ui/dialog/inkscape-preferences.cpp:913 msgid "" "Print warning if invalid or non-useful attributes found. Database files " "located in inkscape_data_dir/attributes." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:911 +#: ../src/ui/dialog/inkscape-preferences.cpp:914 msgid "Remove attributes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:912 +#: ../src/ui/dialog/inkscape-preferences.cpp:915 msgid "Delete invalid or non-useful attributes from element tag" msgstr "" #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:915 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "Inappropriate Style Properties Actions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:918 +#: ../src/ui/dialog/inkscape-preferences.cpp:921 msgid "" "Print warning if inappropriate style properties found (i.e. 'font-family' " "set on a ). Database files located in inkscape_data_dir/attributes." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:919 -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:930 msgid "Remove style properties" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:920 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Delete inappropriate style properties" msgstr "" #. Add default or inherited style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:923 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Non-useful Style Properties Actions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:926 +#: ../src/ui/dialog/inkscape-preferences.cpp:929 msgid "" "Print warning if redundant style properties found (i.e. if a property has " "the default value and a different value is not inherited or if value is the " @@ -18076,207 +18106,207 @@ msgid "" "attributes." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:928 +#: ../src/ui/dialog/inkscape-preferences.cpp:931 msgid "Delete redundant style properties" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:930 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Check Attributes and Style Properties on" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:935 msgid "Reading" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 +#: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "" "Check attributes and style properties on reading in SVG files (including " "those internal to Inkscape which will slow down startup)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:934 +#: ../src/ui/dialog/inkscape-preferences.cpp:937 msgid "Editing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 +#: ../src/ui/dialog/inkscape-preferences.cpp:938 msgid "" "Check attributes and style properties while editing SVG files (may slow down " "Inkscape, mostly useful for debugging)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:936 +#: ../src/ui/dialog/inkscape-preferences.cpp:939 msgid "Writing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:940 msgid "Check attributes and style properties on writing out SVG files" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:939 +#: ../src/ui/dialog/inkscape-preferences.cpp:942 msgid "SVG output" msgstr "" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Perceptual" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Relative Colorimetric" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:948 msgid "Absolute Colorimetric" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:949 +#: ../src/ui/dialog/inkscape-preferences.cpp:952 msgid "(Note: Color management has been disabled in this build)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:953 +#: ../src/ui/dialog/inkscape-preferences.cpp:956 msgid "Display adjustment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:963 +#: ../src/ui/dialog/inkscape-preferences.cpp:966 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" "Searched directories:%s" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:964 +#: ../src/ui/dialog/inkscape-preferences.cpp:967 msgid "Display profile:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:969 +#: ../src/ui/dialog/inkscape-preferences.cpp:972 msgid "Retrieve profile from display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:972 +#: ../src/ui/dialog/inkscape-preferences.cpp:975 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:974 +#: ../src/ui/dialog/inkscape-preferences.cpp:977 msgid "Retrieve profiles from those attached to displays" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:979 +#: ../src/ui/dialog/inkscape-preferences.cpp:982 msgid "Display rendering intent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:980 +#: ../src/ui/dialog/inkscape-preferences.cpp:983 msgid "The rendering intent to use to calibrate display output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 +#: ../src/ui/dialog/inkscape-preferences.cpp:985 msgid "Proofing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:984 +#: ../src/ui/dialog/inkscape-preferences.cpp:987 msgid "Simulate output on screen" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:986 +#: ../src/ui/dialog/inkscape-preferences.cpp:989 msgid "Simulates output of target device" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:988 +#: ../src/ui/dialog/inkscape-preferences.cpp:991 msgid "Mark out of gamut colors" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:990 +#: ../src/ui/dialog/inkscape-preferences.cpp:993 msgid "Highlights colors that are out of gamut for the target device" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1002 +#: ../src/ui/dialog/inkscape-preferences.cpp:1005 msgid "Out of gamut warning color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1003 +#: ../src/ui/dialog/inkscape-preferences.cpp:1006 msgid "Selects the color used for out of gamut warning" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1005 +#: ../src/ui/dialog/inkscape-preferences.cpp:1008 msgid "Device profile:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1006 +#: ../src/ui/dialog/inkscape-preferences.cpp:1009 msgid "The ICC profile to use to simulate device output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1009 +#: ../src/ui/dialog/inkscape-preferences.cpp:1012 msgid "Device rendering intent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1010 +#: ../src/ui/dialog/inkscape-preferences.cpp:1013 msgid "The rendering intent to use to calibrate device output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1012 +#: ../src/ui/dialog/inkscape-preferences.cpp:1015 msgid "Black point compensation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1014 +#: ../src/ui/dialog/inkscape-preferences.cpp:1017 msgid "Enables black point compensation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1016 +#: ../src/ui/dialog/inkscape-preferences.cpp:1019 msgid "Preserve black" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1023 +#: ../src/ui/dialog/inkscape-preferences.cpp:1026 msgid "(LittleCMS 1.15 or later required)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1025 +#: ../src/ui/dialog/inkscape-preferences.cpp:1028 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1039 +#: ../src/ui/dialog/inkscape-preferences.cpp:1042 #: ../src/widgets/sp-color-icc-selector.cpp:449 #: ../src/widgets/sp-color-icc-selector.cpp:741 msgid "" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1084 +#: ../src/ui/dialog/inkscape-preferences.cpp:1087 msgid "Color management" msgstr "" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1087 +#: ../src/ui/dialog/inkscape-preferences.cpp:1090 msgid "Enable autosave (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1091 msgid "" "Automatically save the current document(s) at a given interval, thus " "minimizing loss in case of a crash" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgctxt "Filesystem" msgid "Autosave _directory:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1094 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "" "The directory where autosaves will be written. This should be an absolute " "path (starts with / on UNIX or a drive letter such as C: on Windows). " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "_Interval (in minutes):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "Interval (in minutes) at which document will be autosaved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "_Maximum number of autosaves:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "" "Maximum number of autosaved files; use this to limit the storage space used" msgstr "" @@ -18293,257 +18323,257 @@ msgstr "" #. _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE ); #. #. ----------- -#: ../src/ui/dialog/inkscape-preferences.cpp:1113 +#: ../src/ui/dialog/inkscape-preferences.cpp:1116 msgid "Autosave" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1117 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Open Clip Art Library _Server Name:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1118 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "" "The server name of the Open Clip Art Library webdav server; it's used by the " "Import and Export to OCAL function" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Open Clip Art Library _Username:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "The username used to log into Open Clip Art Library" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Open Clip Art Library _Password:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "The password used to log into Open Clip Art Library" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Open Clip Art" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1133 msgid "Behavior" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1134 +#: ../src/ui/dialog/inkscape-preferences.cpp:1137 msgid "_Simplification threshold:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1135 +#: ../src/ui/dialog/inkscape-preferences.cpp:1138 msgid "" "How strong is the Node tool's Simplify command by default. If you invoke " "this command several times in quick succession, it will act more and more " "aggressively; invoking it again after a pause restores the default threshold." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1137 +#: ../src/ui/dialog/inkscape-preferences.cpp:1140 msgid "Color stock markers the same color as object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1138 +#: ../src/ui/dialog/inkscape-preferences.cpp:1141 msgid "Color custom markers the same color as object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1139 -#: ../src/ui/dialog/inkscape-preferences.cpp:1349 +#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1352 msgid "Update marker color when object color changes" msgstr "" #. Selecting options -#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1145 msgid "Select in all layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1143 +#: ../src/ui/dialog/inkscape-preferences.cpp:1146 msgid "Select only within current layer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1144 +#: ../src/ui/dialog/inkscape-preferences.cpp:1147 msgid "Select in current layer and sublayers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1145 +#: ../src/ui/dialog/inkscape-preferences.cpp:1148 msgid "Ignore hidden objects and layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1146 +#: ../src/ui/dialog/inkscape-preferences.cpp:1149 msgid "Ignore locked objects and layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1147 +#: ../src/ui/dialog/inkscape-preferences.cpp:1150 msgid "Deselect upon layer change" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1150 +#: ../src/ui/dialog/inkscape-preferences.cpp:1153 msgid "" "Uncheck this to be able to keep the current objects selected when the " "current layer changes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1152 +#: ../src/ui/dialog/inkscape-preferences.cpp:1155 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1154 +#: ../src/ui/dialog/inkscape-preferences.cpp:1157 msgid "Make keyboard selection commands work on objects in all layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1159 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1158 +#: ../src/ui/dialog/inkscape-preferences.cpp:1161 msgid "" "Make keyboard selection commands work on objects in current layer and all " "its sublayers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1160 +#: ../src/ui/dialog/inkscape-preferences.cpp:1163 msgid "" "Uncheck this to be able to select objects that are hidden (either by " "themselves or by being in a hidden layer)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1165 msgid "" "Uncheck this to be able to select objects that are locked (either by " "themselves or by being in a locked layer)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1164 +#: ../src/ui/dialog/inkscape-preferences.cpp:1167 msgid "Wrap when cycling objects in z-order" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1166 +#: ../src/ui/dialog/inkscape-preferences.cpp:1169 msgid "Alt+Scroll Wheel" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1168 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Wrap around at start and end when cycling objects in z-order" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1173 msgid "Selecting" msgstr "" #. Transforms options -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/ui/dialog/inkscape-preferences.cpp:1176 #: ../src/widgets/select-toolbar.cpp:572 msgid "Scale stroke width" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1177 msgid "Scale rounded corners in rectangles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1175 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Transform gradients" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1176 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 msgid "Transform patterns" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1178 +#: ../src/ui/dialog/inkscape-preferences.cpp:1181 msgid "Preserved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 #: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/ui/dialog/inkscape-preferences.cpp:1186 #: ../src/widgets/select-toolbar.cpp:584 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1185 +#: ../src/ui/dialog/inkscape-preferences.cpp:1188 #: ../src/widgets/select-toolbar.cpp:595 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1187 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 #: ../src/widgets/select-toolbar.cpp:606 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1188 +#: ../src/ui/dialog/inkscape-preferences.cpp:1191 msgid "Store transformation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1190 +#: ../src/ui/dialog/inkscape-preferences.cpp:1193 msgid "" "If possible, apply transformation to objects without adding a transform= " "attribute" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1192 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "Always store transformation as a transform= attribute on objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1197 msgid "Transforms" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1201 msgid "Mouse _wheel scrolls by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 +#: ../src/ui/dialog/inkscape-preferences.cpp:1202 msgid "" "One mouse wheel notch scrolls by this distance in screen pixels " "(horizontally with Shift)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1200 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Ctrl+arrows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "Sc_roll by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1203 +#: ../src/ui/dialog/inkscape-preferences.cpp:1206 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "_Acceleration:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1206 +#: ../src/ui/dialog/inkscape-preferences.cpp:1209 msgid "" "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no " "acceleration)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 +#: ../src/ui/dialog/inkscape-preferences.cpp:1210 msgid "Autoscrolling" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1209 +#: ../src/ui/dialog/inkscape-preferences.cpp:1212 msgid "_Speed:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1210 +#: ../src/ui/dialog/inkscape-preferences.cpp:1213 msgid "" "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn " "autoscroll off)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1212 +#: ../src/ui/dialog/inkscape-preferences.cpp:1215 #: ../src/ui/dialog/tracedialog.cpp:522 ../src/ui/dialog/tracedialog.cpp:721 msgid "_Threshold:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +#: ../src/ui/dialog/inkscape-preferences.cpp:1216 msgid "" "How far (in screen pixels) you need to be from the canvas edge to trigger " "autoscroll; positive is outside the canvas, negative is within the canvas" @@ -18554,222 +18584,222 @@ msgstr "" #. _page_scrolling.add_line( false, "", _scroll_space, "", #. _("When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)")); #. -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1222 msgid "Mouse wheel zooms by default" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1221 +#: ../src/ui/dialog/inkscape-preferences.cpp:1224 msgid "" "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when " "off, it zooms with Ctrl and scrolls without Ctrl" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "Scrolling" msgstr "" #. Snapping options -#: ../src/ui/dialog/inkscape-preferences.cpp:1225 +#: ../src/ui/dialog/inkscape-preferences.cpp:1228 msgid "Enable snap indicator" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1227 +#: ../src/ui/dialog/inkscape-preferences.cpp:1230 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1230 +#: ../src/ui/dialog/inkscape-preferences.cpp:1233 msgid "_Delay (in ms):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1231 +#: ../src/ui/dialog/inkscape-preferences.cpp:1234 msgid "" "Postpone snapping as long as the mouse is moving, and then wait an " "additional fraction of a second. This additional delay is specified here. " "When set to zero or to a very small number, snapping will be immediate." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1233 +#: ../src/ui/dialog/inkscape-preferences.cpp:1236 msgid "Only snap the node closest to the pointer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1235 +#: ../src/ui/dialog/inkscape-preferences.cpp:1238 msgid "" "Only try to snap the node that is initially closest to the mouse pointer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1238 +#: ../src/ui/dialog/inkscape-preferences.cpp:1241 msgid "_Weight factor:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1239 +#: ../src/ui/dialog/inkscape-preferences.cpp:1242 msgid "" "When multiple snap solutions are found, then Inkscape can either prefer the " "closest transformation (when set to 0), or prefer the node that was " "initially the closest to the pointer (when set to 1)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1241 +#: ../src/ui/dialog/inkscape-preferences.cpp:1244 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1243 +#: ../src/ui/dialog/inkscape-preferences.cpp:1246 msgid "" "When dragging a knot along a constraint line, then snap the position of the " "mouse pointer instead of snapping the projection of the knot onto the " "constraint line" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1245 +#: ../src/ui/dialog/inkscape-preferences.cpp:1248 msgid "Snapping" msgstr "" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1250 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "_Arrow keys move by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1251 +#: ../src/ui/dialog/inkscape-preferences.cpp:1254 msgid "" "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1254 +#: ../src/ui/dialog/inkscape-preferences.cpp:1257 msgid "> and < _scale by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Pressing > or < scales selection up or down by this increment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1260 msgid "_Inset/Outset by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1258 +#: ../src/ui/dialog/inkscape-preferences.cpp:1261 msgid "Inset and Outset commands displace the path by this distance" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "Compass-like display of angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:1264 msgid "" "When on, angles are displayed with 0 at north, 0 to 360 range, positive " "clockwise; otherwise with 0 at east, -180 to 180 range, positive " "counterclockwise" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1263 +#: ../src/ui/dialog/inkscape-preferences.cpp:1266 msgctxt "Rotation angle" msgid "None" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1270 msgid "_Rotation snaps every:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1270 msgid "degrees" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1268 +#: ../src/ui/dialog/inkscape-preferences.cpp:1271 msgid "" "Rotating with Ctrl pressed snaps every that much degrees; also, pressing " "[ or ] rotates by this amount" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1269 +#: ../src/ui/dialog/inkscape-preferences.cpp:1272 msgid "Relative snapping of guideline angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1271 +#: ../src/ui/dialog/inkscape-preferences.cpp:1274 msgid "" "When on, the snap angles when rotating a guideline will be relative to the " "original angle" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/inkscape-preferences.cpp:1276 msgid "_Zoom in/out by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1273 +#: ../src/ui/dialog/inkscape-preferences.cpp:1276 #: ../src/ui/dialog/objects.cpp:1622 #: ../src/ui/widget/filter-effect-chooser.cpp:27 msgid "%" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1274 +#: ../src/ui/dialog/inkscape-preferences.cpp:1277 msgid "" "Zoom tool click, +/- keys, and middle click zoom in and out by this " "multiplier" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1275 +#: ../src/ui/dialog/inkscape-preferences.cpp:1278 msgid "Steps" msgstr "" #. Clones options -#: ../src/ui/dialog/inkscape-preferences.cpp:1278 +#: ../src/ui/dialog/inkscape-preferences.cpp:1281 msgid "Move in parallel" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1280 +#: ../src/ui/dialog/inkscape-preferences.cpp:1283 msgid "Stay unmoved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1282 +#: ../src/ui/dialog/inkscape-preferences.cpp:1285 msgid "Move according to transform" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1284 +#: ../src/ui/dialog/inkscape-preferences.cpp:1287 msgid "Are unlinked" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1286 +#: ../src/ui/dialog/inkscape-preferences.cpp:1289 msgid "Are deleted" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1289 +#: ../src/ui/dialog/inkscape-preferences.cpp:1292 msgid "Moving original: clones and linked offsets" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1291 +#: ../src/ui/dialog/inkscape-preferences.cpp:1294 msgid "Clones are translated by the same vector as their original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1293 +#: ../src/ui/dialog/inkscape-preferences.cpp:1296 msgid "Clones preserve their positions when their original is moved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1295 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 msgid "" "Each clone moves according to the value of its transform= attribute; for " "example, a rotated clone will move in a different direction than its original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1296 +#: ../src/ui/dialog/inkscape-preferences.cpp:1299 msgid "Deleting original: clones" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1298 +#: ../src/ui/dialog/inkscape-preferences.cpp:1301 msgid "Orphaned clones are converted to regular objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1300 +#: ../src/ui/dialog/inkscape-preferences.cpp:1303 msgid "Orphaned clones are deleted along with their original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1302 +#: ../src/ui/dialog/inkscape-preferences.cpp:1305 msgid "Duplicating original+clones/linked offset" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1304 +#: ../src/ui/dialog/inkscape-preferences.cpp:1307 msgid "Relink duplicated clones" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1306 +#: ../src/ui/dialog/inkscape-preferences.cpp:1309 msgid "" "When duplicating a selection containing both a clone and its original " "(possibly in groups), relink the duplicated clone to the duplicated original " @@ -18777,127 +18807,127 @@ msgid "" msgstr "" #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:1309 +#: ../src/ui/dialog/inkscape-preferences.cpp:1312 msgid "Clones" msgstr "" #. Clip paths and masks options -#: ../src/ui/dialog/inkscape-preferences.cpp:1312 +#: ../src/ui/dialog/inkscape-preferences.cpp:1315 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1314 +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "" "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1315 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Remove clippath/mask object after applying" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +#: ../src/ui/dialog/inkscape-preferences.cpp:1320 msgid "" "After applying, remove the object used as the clipping path or mask from the " "drawing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1319 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Before applying" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1324 msgid "Do not group clipped/masked objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1322 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Put every clipped/masked object in its own group" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1323 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "Put all clipped/masked objects into one group" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1326 +#: ../src/ui/dialog/inkscape-preferences.cpp:1329 msgid "Apply clippath/mask to every object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1329 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Apply clippath/mask to groups containing single object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1332 +#: ../src/ui/dialog/inkscape-preferences.cpp:1335 msgid "Apply clippath/mask to group containing all objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1334 +#: ../src/ui/dialog/inkscape-preferences.cpp:1337 msgid "After releasing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1336 +#: ../src/ui/dialog/inkscape-preferences.cpp:1339 msgid "Ungroup automatically created groups" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1338 +#: ../src/ui/dialog/inkscape-preferences.cpp:1341 msgid "Ungroup groups created when setting clip/mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1340 +#: ../src/ui/dialog/inkscape-preferences.cpp:1343 msgid "Clippaths and masks" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1343 +#: ../src/ui/dialog/inkscape-preferences.cpp:1346 msgid "Stroke Style Markers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1345 -#: ../src/ui/dialog/inkscape-preferences.cpp:1347 +#: ../src/ui/dialog/inkscape-preferences.cpp:1348 +#: ../src/ui/dialog/inkscape-preferences.cpp:1350 msgid "" "Stroke color same as object, fill color either object fill color or marker " "fill color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1351 +#: ../src/ui/dialog/inkscape-preferences.cpp:1354 #: ../share/extensions/hershey.inx.h:27 msgid "Markers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "Document cleanup" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1355 -#: ../src/ui/dialog/inkscape-preferences.cpp:1357 +#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1360 msgid "Remove unused swatches when doing a document cleanup" msgstr "" #. tooltip -#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1361 msgid "Cleanup" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1366 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 msgid "Number of _Threads:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "(requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:1370 msgid "Configure number of processors/threads to use when rendering filters" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 msgid "Rendering _cache size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 msgctxt "mebibyte (2^20 bytes) abbreviation" msgid "MiB" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1371 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 msgid "" "Set the amount of memory per document which can be used to store rendered " "parts of the drawing for later reuse; set to zero to disable caching" @@ -18905,189 +18935,189 @@ msgstr "" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:1374 -#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1377 +#: ../src/ui/dialog/inkscape-preferences.cpp:1401 msgid "Best quality (slowest)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1376 -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1379 +#: ../src/ui/dialog/inkscape-preferences.cpp:1403 msgid "Better quality (slower)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 -#: ../src/ui/dialog/inkscape-preferences.cpp:1402 +#: ../src/ui/dialog/inkscape-preferences.cpp:1381 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "Average quality" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1380 -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 +#: ../src/ui/dialog/inkscape-preferences.cpp:1407 msgid "Lower quality (faster)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1382 -#: ../src/ui/dialog/inkscape-preferences.cpp:1406 +#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1409 msgid "Lowest quality (fastest)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1388 msgid "Gaussian blur quality for display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1387 -#: ../src/ui/dialog/inkscape-preferences.cpp:1411 +#: ../src/ui/dialog/inkscape-preferences.cpp:1390 +#: ../src/ui/dialog/inkscape-preferences.cpp:1414 msgid "" "Best quality, but display may be very slow at high zooms (bitmap export " "always uses best quality)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1389 -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1392 +#: ../src/ui/dialog/inkscape-preferences.cpp:1416 msgid "Better quality, but slower display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1391 -#: ../src/ui/dialog/inkscape-preferences.cpp:1415 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 +#: ../src/ui/dialog/inkscape-preferences.cpp:1418 msgid "Average quality, acceptable display speed" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 -#: ../src/ui/dialog/inkscape-preferences.cpp:1417 +#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1420 msgid "Lower quality (some artifacts), but display is faster" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1395 -#: ../src/ui/dialog/inkscape-preferences.cpp:1419 +#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1422 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1409 +#: ../src/ui/dialog/inkscape-preferences.cpp:1412 msgid "Filter effects quality for display" msgstr "" #. build custom preferences tab -#: ../src/ui/dialog/inkscape-preferences.cpp:1421 +#: ../src/ui/dialog/inkscape-preferences.cpp:1424 #: ../src/ui/dialog/print.cpp:232 msgid "Rendering" msgstr "" #. Note: /options/bitmapoversample removed with Cairo renderer -#: ../src/ui/dialog/inkscape-preferences.cpp:1427 ../src/verbs.cpp:157 +#: ../src/ui/dialog/inkscape-preferences.cpp:1430 ../src/verbs.cpp:157 #: ../src/widgets/calligraphy-toolbar.cpp:626 msgid "Edit" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1431 msgid "Automatically reload bitmaps" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 +#: ../src/ui/dialog/inkscape-preferences.cpp:1433 msgid "Automatically reload linked images when file is changed on disk" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1432 +#: ../src/ui/dialog/inkscape-preferences.cpp:1435 msgid "_Bitmap editor:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1434 +#: ../src/ui/dialog/inkscape-preferences.cpp:1437 #: ../share/extensions/guillotine.inx.h:5 ../share/extensions/plotter.inx.h:55 #: ../share/extensions/print_win32_vector.inx.h:2 msgid "Export" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1436 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 msgid "Default export _resolution:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1437 +#: ../src/ui/dialog/inkscape-preferences.cpp:1440 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1438 +#: ../src/ui/dialog/inkscape-preferences.cpp:1441 #: ../src/ui/dialog/xml-tree.cpp:912 msgid "Create" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 +#: ../src/ui/dialog/inkscape-preferences.cpp:1443 msgid "Resolution for Create Bitmap _Copy:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1441 +#: ../src/ui/dialog/inkscape-preferences.cpp:1444 msgid "Resolution used by the Create Bitmap Copy command" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1444 +#: ../src/ui/dialog/inkscape-preferences.cpp:1447 msgid "Ask about linking and scaling when importing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1446 +#: ../src/ui/dialog/inkscape-preferences.cpp:1449 msgid "Pop-up linking and scaling dialog when importing bitmap image." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1452 +#: ../src/ui/dialog/inkscape-preferences.cpp:1455 msgid "Bitmap link:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1459 +#: ../src/ui/dialog/inkscape-preferences.cpp:1462 msgid "Bitmap scale (image-rendering):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 +#: ../src/ui/dialog/inkscape-preferences.cpp:1467 msgid "Default _import resolution:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1465 +#: ../src/ui/dialog/inkscape-preferences.cpp:1468 msgid "Default bitmap resolution (in dots per inch) for bitmap import" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1466 +#: ../src/ui/dialog/inkscape-preferences.cpp:1469 msgid "Override file resolution" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1468 +#: ../src/ui/dialog/inkscape-preferences.cpp:1471 msgid "Use default bitmap resolution in favor of information from file" msgstr "" #. rendering outlines for pixmap image tags -#: ../src/ui/dialog/inkscape-preferences.cpp:1472 +#: ../src/ui/dialog/inkscape-preferences.cpp:1475 msgid "Images in Outline Mode" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1473 +#: ../src/ui/dialog/inkscape-preferences.cpp:1476 msgid "" "When active will render images while in outline mode instead of a red box " "with an x. This is useful for manual tracing." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1475 +#: ../src/ui/dialog/inkscape-preferences.cpp:1478 msgid "Bitmaps" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1487 +#: ../src/ui/dialog/inkscape-preferences.cpp:1490 msgid "" "Select a file of predefined shortcuts to use. Any customized shortcuts you " "create will be added seperately to " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1490 +#: ../src/ui/dialog/inkscape-preferences.cpp:1493 msgid "Shortcut file:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1493 +#: ../src/ui/dialog/inkscape-preferences.cpp:1496 #: ../src/ui/dialog/template-load-tab.cpp:48 msgid "Search:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1505 +#: ../src/ui/dialog/inkscape-preferences.cpp:1508 msgid "Shortcut" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1506 +#: ../src/ui/dialog/inkscape-preferences.cpp:1509 #: ../src/ui/widget/page-sizer.cpp:260 msgid "Description" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1561 +#: ../src/ui/dialog/inkscape-preferences.cpp:1564 #: ../src/ui/dialog/pixelartdialog.cpp:296 #: ../src/ui/dialog/svg-fonts-dialog.cpp:698 #: ../src/ui/dialog/tracedialog.cpp:813 @@ -19095,183 +19125,183 @@ msgstr "" msgid "Reset" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1561 +#: ../src/ui/dialog/inkscape-preferences.cpp:1564 msgid "" "Remove all your customized keyboard shortcuts, and revert to the shortcuts " "in the shortcut file listed above" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1565 +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Import ..." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1565 +#: ../src/ui/dialog/inkscape-preferences.cpp:1568 msgid "Import custom keyboard shortcuts from a file" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1568 +#: ../src/ui/dialog/inkscape-preferences.cpp:1571 msgid "Export ..." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1568 +#: ../src/ui/dialog/inkscape-preferences.cpp:1571 msgid "Export custom keyboard shortcuts to a file" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1578 +#: ../src/ui/dialog/inkscape-preferences.cpp:1581 msgid "Keyboard Shortcuts" msgstr "" #. Find this group in the tree -#: ../src/ui/dialog/inkscape-preferences.cpp:1741 +#: ../src/ui/dialog/inkscape-preferences.cpp:1744 msgid "Misc" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1839 +#: ../src/ui/dialog/inkscape-preferences.cpp:1842 msgctxt "Spellchecker language" msgid "None" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1860 +#: ../src/ui/dialog/inkscape-preferences.cpp:1863 msgid "Set the main spell check language" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1863 +#: ../src/ui/dialog/inkscape-preferences.cpp:1866 msgid "Second language:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1864 +#: ../src/ui/dialog/inkscape-preferences.cpp:1867 msgid "" "Set the second spell check language; checking will only stop on words " "unknown in ALL chosen languages" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1867 +#: ../src/ui/dialog/inkscape-preferences.cpp:1870 msgid "Third language:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1868 +#: ../src/ui/dialog/inkscape-preferences.cpp:1871 msgid "" "Set the third spell check language; checking will only stop on words unknown " "in ALL chosen languages" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1870 +#: ../src/ui/dialog/inkscape-preferences.cpp:1873 msgid "Ignore words with digits" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1872 +#: ../src/ui/dialog/inkscape-preferences.cpp:1875 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1874 +#: ../src/ui/dialog/inkscape-preferences.cpp:1877 msgid "Ignore words in ALL CAPITALS" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1876 +#: ../src/ui/dialog/inkscape-preferences.cpp:1879 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1878 +#: ../src/ui/dialog/inkscape-preferences.cpp:1881 msgid "Spellcheck" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "Latency _skew:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1899 +#: ../src/ui/dialog/inkscape-preferences.cpp:1902 msgid "" "Factor by which the event clock is skewed from the actual time (0.9766 on " "some systems)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1901 +#: ../src/ui/dialog/inkscape-preferences.cpp:1904 msgid "Pre-render named icons" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1903 +#: ../src/ui/dialog/inkscape-preferences.cpp:1906 msgid "" "When on, named icons will be rendered before displaying the ui. This is for " "working around bugs in GTK+ named icon notification" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1911 +#: ../src/ui/dialog/inkscape-preferences.cpp:1914 msgid "System info" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1915 +#: ../src/ui/dialog/inkscape-preferences.cpp:1918 msgid "User config: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1915 +#: ../src/ui/dialog/inkscape-preferences.cpp:1918 msgid "Location of users configuration" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1919 +#: ../src/ui/dialog/inkscape-preferences.cpp:1922 msgid "User preferences: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1919 +#: ../src/ui/dialog/inkscape-preferences.cpp:1922 msgid "Location of the users preferences file" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1926 msgid "User extensions: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1926 msgid "Location of the users extensions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1927 +#: ../src/ui/dialog/inkscape-preferences.cpp:1930 msgid "User cache: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1927 +#: ../src/ui/dialog/inkscape-preferences.cpp:1930 msgid "Location of users cache" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1935 +#: ../src/ui/dialog/inkscape-preferences.cpp:1938 msgid "Temporary files: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1935 +#: ../src/ui/dialog/inkscape-preferences.cpp:1938 msgid "Location of the temporary files used for autosave" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1939 +#: ../src/ui/dialog/inkscape-preferences.cpp:1942 msgid "Inkscape data: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1939 +#: ../src/ui/dialog/inkscape-preferences.cpp:1942 msgid "Location of Inkscape data" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1943 +#: ../src/ui/dialog/inkscape-preferences.cpp:1946 msgid "Inkscape extensions: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1943 +#: ../src/ui/dialog/inkscape-preferences.cpp:1946 msgid "Location of the Inkscape extensions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1952 +#: ../src/ui/dialog/inkscape-preferences.cpp:1955 msgid "System data: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1952 +#: ../src/ui/dialog/inkscape-preferences.cpp:1955 msgid "Locations of system data" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1976 +#: ../src/ui/dialog/inkscape-preferences.cpp:1979 msgid "Icon theme: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1976 +#: ../src/ui/dialog/inkscape-preferences.cpp:1979 msgid "Locations of icon themes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1978 +#: ../src/ui/dialog/inkscape-preferences.cpp:1981 msgid "System" msgstr "" @@ -19516,57 +19546,57 @@ msgstr "" msgid "Lower the current path effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:313 +#: ../src/ui/dialog/livepatheffect-editor.cpp:312 msgid "Unknown effect is applied" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:316 +#: ../src/ui/dialog/livepatheffect-editor.cpp:315 msgid "Click button to add an effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:329 +#: ../src/ui/dialog/livepatheffect-editor.cpp:330 msgid "Click add button to convert clone" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:334 -#: ../src/ui/dialog/livepatheffect-editor.cpp:338 -#: ../src/ui/dialog/livepatheffect-editor.cpp:346 +#: ../src/ui/dialog/livepatheffect-editor.cpp:335 +#: ../src/ui/dialog/livepatheffect-editor.cpp:339 +#: ../src/ui/dialog/livepatheffect-editor.cpp:348 msgid "Select a path or shape" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:342 +#: ../src/ui/dialog/livepatheffect-editor.cpp:344 msgid "Only one item can be selected" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:374 +#: ../src/ui/dialog/livepatheffect-editor.cpp:376 msgid "Unknown effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:450 +#: ../src/ui/dialog/livepatheffect-editor.cpp:452 msgid "Create and apply path effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:485 +#: ../src/ui/dialog/livepatheffect-editor.cpp:488 msgid "Create and apply Clone original path effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:505 +#: ../src/ui/dialog/livepatheffect-editor.cpp:510 msgid "Remove path effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:522 +#: ../src/ui/dialog/livepatheffect-editor.cpp:528 msgid "Move path effect up" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:538 +#: ../src/ui/dialog/livepatheffect-editor.cpp:545 msgid "Move path effect down" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:577 +#: ../src/ui/dialog/livepatheffect-editor.cpp:584 msgid "Activate path effect" msgstr "" -#: ../src/ui/dialog/livepatheffect-editor.cpp:577 +#: ../src/ui/dialog/livepatheffect-editor.cpp:584 msgid "Deactivate path effect" msgstr "" @@ -19578,31 +19608,31 @@ msgstr "" msgid "Chamfer subdivisions:" msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:139 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:144 msgid "Modify Fillet-Chamfer" msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:140 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:145 msgid "_Modify" msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:203 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:210 msgid "Radius " msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:205 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:212 msgid "Radius approximated " msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:208 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:215 msgid "Knot distance " msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:215 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:222 msgid "Position (%):" msgstr "" -#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:219 +#: ../src/ui/dialog/lpe-fillet-chamfer-properties.cpp:226 msgid "(" msgstr "" @@ -20426,7 +20456,7 @@ msgstr "" msgid "Make symbols bigger by zooming in." msgstr "" -#: ../src/ui/dialog/symbols.cpp:640 +#: ../src/ui/dialog/symbols.cpp:639 msgid "Unnamed Symbols" msgstr "" @@ -28941,7 +28971,7 @@ msgstr "" msgid "Area (px^2): " msgstr "" -#: ../share/extensions/dxf_input.py:504 +#: ../share/extensions/dxf_input.py:512 #, python-format msgid "" "%d ENTITIES of type POLYLINE encountered and ignored. Please try to convert " @@ -30325,11 +30355,11 @@ msgid "DXF Input" msgstr "" #: ../share/extensions/dxf_input.inx.h:3 -msgid "Use automatic scaling to size A4" +msgid "Method of Scaling:" msgstr "" #: ../share/extensions/dxf_input.inx.h:4 -msgid "Or, use manual scale factor:" +msgid "Manual scale factor:" msgstr "" #: ../share/extensions/dxf_input.inx.h:5 @@ -30356,18 +30386,20 @@ msgstr "" #: ../share/extensions/dxf_input.inx.h:11 msgid "" "- AutoCAD Release 13 and newer.\n" -"- assume dxf drawing is in mm.\n" +"- for manual scaling, assume dxf drawing is in mm.\n" "- assume svg drawing is in pixels, at 96 dpi.\n" "- scale factor and origin apply only to manual scaling.\n" +"- 'Automatic scaling' will fit the width of an A4 page.\n" +"- 'Read from file' uses the variable $MEASUREMENT.\n" "- layers are preserved only on File->Open, not Import.\n" "- limited support for BLOCKS, use AutoCAD Explode Blocks instead, if needed." msgstr "" -#: ../share/extensions/dxf_input.inx.h:17 +#: ../share/extensions/dxf_input.inx.h:19 msgid "AutoCAD DXF R13 (*.dxf)" msgstr "" -#: ../share/extensions/dxf_input.inx.h:18 +#: ../share/extensions/dxf_input.inx.h:20 msgid "Import AutoCAD's Document Exchange Format" msgstr "" diff --git a/share/symbols/MapSymbolsNPS.svg b/share/symbols/MapSymbolsNPS.svg index 81b24adde..aa558c9b2 100644 --- a/share/symbols/MapSymbolsNPS.svg +++ b/share/symbols/MapSymbolsNPS.svg @@ -469,6 +469,7 @@ + Motorbike Trail @@ -484,6 +485,7 @@ + Motorbike Trail @@ -501,6 +503,7 @@ + Radiator Water @@ -511,6 +514,7 @@ + Radiator Water @@ -1040,6 +1044,7 @@ + Blank -- cgit v1.2.3 From c93948dfbffd855360c6f97438e001ed6a6c61d0 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Sun, 23 Nov 2014 21:58:57 +0100 Subject: Extensions: try to calculate the SVG unit We cannot use inkscape:document-unit for the SVG unit, because it specifies the UI display unit in Inkscape and is unrelated to the units used for SVG values. Instead, the real units of the SVG values is defined by document height/width and the viewbox. The calculation assumes isotropic units (give me a break!) and only looks at the width. It tries to match that with a list of known units. If no match found: assume 'px' units. Finds 'px' units for legacy Inkscape documents without viewbox. (bzr r13750) --- share/extensions/inkex.py | 62 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 55 insertions(+), 7 deletions(-) diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py index 0f880005d..a564b5c8d 100755 --- a/share/extensions/inkex.py +++ b/share/extensions/inkex.py @@ -101,6 +101,13 @@ def errormsg(msg): else: sys.stderr.write((unicode(msg, "utf-8", errors='replace') + "\n").encode("UTF-8")) +def are_near_relative(a, b, eps): + if (a-b <= a*eps) and (a-b >= -a*eps): + return True + else: + return False + + # third party library try: from lxml import etree @@ -277,16 +284,57 @@ class Effect: retval = None return retval - def getDocumentUnit(self): - docunit = self.document.xpath('//sodipodi:namedview/@inkscape:document-units', namespaces=NSS) - if docunit: - return docunit[0] - else: - return 'px' - #a dictionary of unit to user unit conversion factors __uuconv = {'in':96.0, 'pt':1.33333333333, 'px':1.0, 'mm':3.77952755913, 'cm':37.7952755913, 'm':3779.52755913, 'km':3779527.55913, 'pc':16.0, 'yd':3456.0 , 'ft':1152.0} + + # Function returns the unit used for the values in SVG. + # For lack of an attribute in SVG that explicitly defines what units are used for SVG coordinates, + # try to calculate the unit from the SVG width and SVG viewbox. + # Defaults to 'px' units. + def getDocumentUnit(self): + svgunit = 'px' #default to pixels + + svgwidth = self.document.getroot().get('width') + viewboxstr = self.document.getroot().get('viewBox') + if viewboxstr: + unitmatch = re.compile('(%s)$' % '|'.join(self.__uuconv.keys())) + param = re.compile(r'(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)') + + p = param.match(svgwidth) + u = unitmatch.search(svgwidth) + + width = 100 #default + viewboxwidth = 100 #default + svgwidthunit = 'px' #default assume 'px' unit + if p: + width = float(p.string[p.start():p.end()]) + else: + errormsg(_("SVG Width not set correctly! Assuming width = 100")) + if u: + svgwidthunit = u.string[u.start():u.end()] + + viewboxnumbers = [] + for t in viewboxstr.split(): + try: + viewboxnumbers.append(float(t)) + except ValueError: + pass + if len(viewboxnumbers) == 4: #check for correct number of numbers + viewboxwidth = viewboxnumbers[2] - viewboxnumbers[0] + + svgunitfactor = self.__uuconv[svgwidthunit] * width / viewboxwidth + + # try to find the svgunitfactor in the list of units known. If we don't find something, ... + eps = 0.01 #allow 1% error in factor + for key in self.__uuconv: + if are_near_relative(self.__uuconv[key], svgunitfactor, eps): + #found match! + svgunit = key; + + return svgunit + + def unittouu(self, string): '''Returns userunits given a string representation of units in another system''' unit = re.compile('(%s)$' % '|'.join(self.__uuconv.keys())) -- cgit v1.2.3