kopia lustrzana https://github.com/inkstitch/inkstitch
Porównaj commity
17 Commity
dev-build-
...
main
Autor | SHA1 | Data |
---|---|---|
![]() |
c2396081f0 | |
![]() |
93b9c0fa6d | |
![]() |
00b8297b1e | |
![]() |
b932d2ae21 | |
![]() |
7d4644ab2e | |
![]() |
d6faff13ea | |
![]() |
c0bf948a69 | |
![]() |
11e0676aba | |
![]() |
d252f5f109 | |
![]() |
ec6d55ac95 | |
![]() |
134ad001c4 | |
![]() |
cb43b3a50c | |
![]() |
4abe543a28 | |
![]() |
f809fb52a6 | |
![]() |
2d18a061e3 | |
![]() |
7ae5a4b91b | |
![]() |
4771b94df3 |
|
@ -315,15 +315,65 @@ jobs:
|
|||
make dist
|
||||
env:
|
||||
BUILD: windows
|
||||
- name: upload-unsigned-exe
|
||||
id: upload-unsigned-exe
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows32-exe
|
||||
path: |
|
||||
dist/inkstitch/bin/inkstitch.exe
|
||||
- name: Set siging policy to release
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/v*') }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo release_policy="release-signing" >> $GITHUB_ENV
|
||||
- name: Set siging policy to test
|
||||
if: ${{ ! startsWith(github.ref, 'refs/tags/v*') }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo release_policy="test-signing" >> $GITHUB_ENV
|
||||
- name: Sign-exe
|
||||
id: Sign-exe
|
||||
uses: signpath/github-action-submit-signing-request@v1.1
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '6b880880-2af8-4cf3-a8e7-1b4977c593df'
|
||||
project-slug: 'inkstitch'
|
||||
signing-policy-slug: '${{ env.release_policy }}'
|
||||
github-artifact-id: '${{ steps.upload-unsigned-exe.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: 'signed-artifacts'
|
||||
- name: Copy signed exe to dist
|
||||
shell: bash
|
||||
run: |
|
||||
mv -f signed-artifacts/inkstitch.exe dist/inkstitch/bin/inkstitch.exe
|
||||
- shell: bash
|
||||
run: |
|
||||
bash bin/build-windows-installer
|
||||
env:
|
||||
BUILD: windows
|
||||
- name: upload-unsigned-installer
|
||||
id: upload-unsigned-installer
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows32-installer
|
||||
path: artifacts
|
||||
- name: Sign-installer
|
||||
id: Sign-installer
|
||||
uses: signpath/github-action-submit-signing-request@v1.1
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '6b880880-2af8-4cf3-a8e7-1b4977c593df'
|
||||
project-slug: 'inkstitch'
|
||||
signing-policy-slug: '${{ env.release_policy }}'
|
||||
artifact-configuration-slug: 'windows-installer-config'
|
||||
github-artifact-id: '${{ steps.upload-unsigned-installer.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: 'signed-artifacts'
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows32
|
||||
path: artifacts
|
||||
path: signed-artifacts
|
||||
windows64:
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
|
@ -381,15 +431,65 @@ jobs:
|
|||
make dist
|
||||
env:
|
||||
BUILD: windows
|
||||
- name: Set siging policy to release
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/v*') }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo release_policy="release-signing" >> $GITHUB_ENV
|
||||
- name: Set siging policy to test
|
||||
if: ${{ ! startsWith(github.ref, 'refs/tags/v*') }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo release_policy="test-signing" >> $GITHUB_ENV
|
||||
- name: upload-unsigned-exe
|
||||
id: upload-unsigned-exe
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows64-exe
|
||||
path: |
|
||||
dist/inkstitch/bin/inkstitch.exe
|
||||
- name: Sign-exe
|
||||
id: Sign-exe
|
||||
uses: signpath/github-action-submit-signing-request@v1.1
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '6b880880-2af8-4cf3-a8e7-1b4977c593df'
|
||||
project-slug: 'inkstitch'
|
||||
signing-policy-slug: '${{ env.release_policy }}'
|
||||
github-artifact-id: '${{ steps.upload-unsigned-exe.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: 'signed-artifacts'
|
||||
- name: Copy signed exe to dist
|
||||
shell: bash
|
||||
run: |
|
||||
mv -f signed-artifacts/inkstitch.exe dist/inkstitch/bin/inkstitch.exe
|
||||
- shell: bash
|
||||
run: |
|
||||
bash bin/build-windows-installer
|
||||
env:
|
||||
BUILD: windows
|
||||
- name: upload-unsigned-installer
|
||||
id: upload-unsigned-installer
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows64-installer
|
||||
path: artifacts
|
||||
- name: Sign-installer
|
||||
id: Sign-installer
|
||||
uses: signpath/github-action-submit-signing-request@v1.1
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '6b880880-2af8-4cf3-a8e7-1b4977c593df'
|
||||
project-slug: 'inkstitch'
|
||||
signing-policy-slug: '${{ env.release_policy }}'
|
||||
artifact-configuration-slug: 'windows-installer-config'
|
||||
github-artifact-id: '${{ steps.upload-unsigned-installer.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: 'signed-artifacts'
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: inkstitch-windows64
|
||||
path: artifacts
|
||||
path: signed-artifacts
|
||||
macx86:
|
||||
runs-on: macos-13
|
||||
steps:
|
||||
|
@ -568,13 +668,13 @@ jobs:
|
|||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: 'inkstitch-windows32'
|
||||
path: 'artifacts/'
|
||||
path: 'signed-artifacts/'
|
||||
if: always()
|
||||
- name: download windows64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: 'inkstitch-windows64'
|
||||
path: 'artifacts/'
|
||||
path: 'signed-artifacts/'
|
||||
if: always()
|
||||
- name: download macx86
|
||||
uses: actions/download-artifact@v4
|
||||
|
@ -604,3 +704,5 @@ jobs:
|
|||
artifacts/*.tar.xz
|
||||
artifacts/*.sh
|
||||
artifacts/*.zip
|
||||
signed-artifacts/*.exe
|
||||
signed-artifacts/*.zip
|
||||
|
|
|
@ -24,7 +24,15 @@ iscc win/win_build.iss
|
|||
mv win/inkstitch.exe artifacts/inkstitch-${VERSION}-${OS}-${ARCH}.exe
|
||||
cd dist
|
||||
echo "Creating zip"
|
||||
if [[ -d "../signed-artifacts" ]]; then
|
||||
DIRECTORY="signed-artifacts"
|
||||
echo "Found signed artifacts"
|
||||
else
|
||||
DIRECTORY="artifacts"
|
||||
echo "No signed artifacts found, local build"
|
||||
fi
|
||||
|
||||
# The python zipfile command line utility can't handle directories
|
||||
# containing files with UTF-8 names on Windows, so we use 7-zip instead.
|
||||
7z a ../artifacts/inkstitch-${VERSION}-${OS}-${ARCH}.zip *
|
||||
7z a ../${DIRECTORY}/inkstitch-${VERSION}-${OS}-${ARCH}.zip *
|
||||
cd ..
|
||||
|
|
Plik diff jest za duży
Load Diff
Przed Szerokość: | Wysokość: | Rozmiar: 633 KiB Po Szerokość: | Wysokość: | Rozmiar: 675 KiB |
|
@ -54,14 +54,17 @@
|
|||
"~": 46,
|
||||
"<": 46,
|
||||
">": 46,
|
||||
"&": 92,
|
||||
"&": 93.0,
|
||||
"-": 54
|
||||
},
|
||||
"kerning_pairs": {},
|
||||
"kerning_pairs": {
|
||||
"& T": 5.0
|
||||
},
|
||||
"glyphs": [
|
||||
"!",
|
||||
"$",
|
||||
"%",
|
||||
"&",
|
||||
"'",
|
||||
"(",
|
||||
")",
|
||||
|
|
Plik diff jest za duży
Load Diff
Przed Szerokość: | Wysokość: | Rozmiar: 610 KiB Po Szerokość: | Wysokość: | Rozmiar: 668 KiB |
|
@ -1267,19 +1267,25 @@ class SatinColumn(EmbroideryElement):
|
|||
|
||||
return pairs
|
||||
|
||||
def _connect_stitch_group_with_point(self, first_stitch_group, start_point, connect_to_satin_end=False):
|
||||
def _connect_stitch_group_with_point(self, first_stitch_group, start_point, end_point=None):
|
||||
start_stitch_group = StitchGroup(
|
||||
color=self.color,
|
||||
stitches=[Stitch(*start_point)]
|
||||
)
|
||||
connector = self.offset_center_line
|
||||
split_line = shgeo.LineString(self.find_cut_points(start_point))
|
||||
|
||||
if end_point:
|
||||
split_line = shgeo.LineString(self.find_cut_points(end_point))
|
||||
else:
|
||||
split_line = shgeo.LineString(self.find_cut_points(start_point))
|
||||
start = connector.project(nearest_points(split_line, connector)[1])
|
||||
if connect_to_satin_end and not self._center_walk_is_odd():
|
||||
|
||||
if end_point and not self._center_walk_is_odd():
|
||||
end = connector.length
|
||||
else:
|
||||
split_line = shgeo.LineString(self.find_cut_points(first_stitch_group.stitches[0]))
|
||||
end = connector.project(nearest_points(split_line, connector)[1])
|
||||
|
||||
start_path = substring(connector, start, end)
|
||||
|
||||
stitches = [Stitch(*coord) for coord in start_path.coords]
|
||||
|
@ -1850,7 +1856,7 @@ class SatinColumn(EmbroideryElement):
|
|||
if end_point:
|
||||
ordered_stitch_groups = []
|
||||
ordered_stitch_groups.extend(stitch_groups[::2])
|
||||
ordered_stitch_groups.append(self._connect_stitch_group_with_point(stitch_groups[1], ordered_stitch_groups[-1].stitches[-1], True))
|
||||
ordered_stitch_groups.append(self._connect_stitch_group_with_point(stitch_groups[1], ordered_stitch_groups[-1].stitches[-1], end_point))
|
||||
ordered_stitch_groups.extend(stitch_groups[1::2])
|
||||
return ordered_stitch_groups
|
||||
return stitch_groups
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
import json
|
||||
import os
|
||||
import string
|
||||
import sys
|
||||
import tempfile
|
||||
from copy import deepcopy
|
||||
|
@ -133,10 +134,12 @@ class BatchLettering(InkstitchExtension):
|
|||
|
||||
path = tempfile.mkdtemp()
|
||||
files = []
|
||||
for text in texts:
|
||||
for i, text in enumerate(texts):
|
||||
if not text:
|
||||
continue
|
||||
stitch_plan, lettering_group = self.generate_stitch_plan(text, text_positioning_path)
|
||||
for file_format in file_formats:
|
||||
files.append(self.generate_output_file(file_format, path, text, stitch_plan))
|
||||
files.append(self.generate_output_file(file_format, path, text, stitch_plan, i))
|
||||
|
||||
self.reset_document(lettering_group, text_positioning_path)
|
||||
|
||||
|
@ -167,9 +170,13 @@ class BatchLettering(InkstitchExtension):
|
|||
parent.insert(index, text_positioning_path)
|
||||
lettering_group.delete()
|
||||
|
||||
def generate_output_file(self, file_format, path, text, stitch_plan):
|
||||
text = text.replace('\n', '')
|
||||
output_file = os.path.join(path, f"{text}.{file_format}")
|
||||
def generate_output_file(self, file_format, path, text, stitch_plan, iteration):
|
||||
allowed_characters = string.ascii_letters + string.digits
|
||||
filtered_text = ''.join(x for x in text if x in allowed_characters)
|
||||
if filtered_text:
|
||||
filtered_text = f'-{filtered_text}'
|
||||
file_name = f'{iteration:03d}{filtered_text:.8}'
|
||||
output_file = os.path.join(path, f"{file_name}.{file_format}")
|
||||
|
||||
if file_format == 'svg':
|
||||
document = deepcopy(self.document.getroot())
|
||||
|
|
|
@ -97,6 +97,15 @@ class ParamsTab(ScrolledPanel):
|
|||
|
||||
if self.toggle:
|
||||
self.update_toggle_state()
|
||||
# when there is a selection with satin elements and elements the user wants to turn into satins,
|
||||
# the satin checkbox will be activated and everything (except for running stitches with
|
||||
# only one subpath) will show in the simulator as satin.
|
||||
# It is highly confusing for users, when these elements are still running stitches when they click on apply.
|
||||
# So let's add the satin column param to the list of changed_inputs right away - even when they didn't actively
|
||||
# change it
|
||||
if self.toggle and self.toggle.name == 'satin_column':
|
||||
self.enable_change_indicator(self.toggle.name)
|
||||
self.changed_inputs.add(self.toggle_checkbox)
|
||||
|
||||
self.update_enable_widgets()
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@ class UnlinkClone(InkstitchExtension):
|
|||
def __init__(self, *args, **kwargs):
|
||||
InkstitchExtension.__init__(self, *args, **kwargs)
|
||||
self.arg_parser.add_argument("--notebook")
|
||||
self.arg_parser.add_argument("-g", "--add-group", dest="add_group", type=Boolean, default=True)
|
||||
self.arg_parser.add_argument("-r", "--recursive", dest="recursive", type=Boolean, default=True)
|
||||
|
||||
def effect(self) -> None:
|
||||
|
@ -36,11 +37,7 @@ class UnlinkClone(InkstitchExtension):
|
|||
if isinstance(element, Clone):
|
||||
resolved = element.resolve_clone(recursive=recursive)
|
||||
if resolved[0].tag in SVG_SYMBOL_TAG:
|
||||
group = Group()
|
||||
for child in resolved[0]:
|
||||
group.append(child)
|
||||
parent = cast(BaseElement, resolved[0].getparent()) # Safe assumption that this has a parent.
|
||||
parent.replace(resolved[0], group)
|
||||
self._resolve_symbol(resolved)
|
||||
clones_resolved.append((element.node, resolved[0]))
|
||||
|
||||
for (clone, resolved_clone) in clones_resolved:
|
||||
|
@ -52,3 +49,16 @@ class UnlinkClone(InkstitchExtension):
|
|||
backlink_attrib = CONNECTION_START if command.connector.get(CONNECTION_START) == ("#"+orig_id) else CONNECTION_END
|
||||
command.connector.set(backlink_attrib, "#"+new_id)
|
||||
resolved_clone.set_id(new_id)
|
||||
|
||||
def _resolve_symbol(self, resolved):
|
||||
parent = cast(BaseElement, resolved[0].getparent()) # Safe assumption that this has a parent.
|
||||
if self.options.add_group:
|
||||
group = Group()
|
||||
else:
|
||||
group = parent
|
||||
for child in resolved[0]:
|
||||
group.append(child)
|
||||
if self.options.add_group:
|
||||
parent.replace(resolved[0], group)
|
||||
else:
|
||||
resolved[0].delete()
|
||||
|
|
|
@ -137,11 +137,7 @@ class DrawingPanel(wx.Panel):
|
|||
canvas = wx.GraphicsContext.Create(dc)
|
||||
|
||||
self.draw_stitches(canvas)
|
||||
|
||||
if platform != "win32" or self.current_stitch >= 2:
|
||||
# on Windows the positioning of the ruler is a bit problematic
|
||||
# when current_stitch is smaller than 2
|
||||
self.draw_scale(canvas)
|
||||
self.draw_scale(canvas)
|
||||
|
||||
def draw_page(self, canvas):
|
||||
self._update_background_color()
|
||||
|
@ -214,6 +210,7 @@ class DrawingPanel(wx.Panel):
|
|||
canvas.StrokeLines(((x, y - crosshair_radius), (x, y + crosshair_radius)))
|
||||
|
||||
def draw_scale(self, canvas):
|
||||
canvas.SetTransform(canvas.CreateMatrix())
|
||||
canvas.BeginLayer(1)
|
||||
|
||||
canvas_width, canvas_height = self.GetClientSize()
|
||||
|
@ -307,8 +304,7 @@ class DrawingPanel(wx.Panel):
|
|||
|
||||
def set_background_color(self, color):
|
||||
self.background_color = color
|
||||
# this refresh is necessary for macOS
|
||||
self.Refresh()
|
||||
self._update_background_color()
|
||||
|
||||
def _update_background_color(self):
|
||||
if not self.page_specs:
|
||||
|
|
|
@ -146,8 +146,10 @@ class ViewPanel(ScrolledPanel):
|
|||
self.drawing_panel = drawing_panel
|
||||
|
||||
def on_update_background_color(self, event):
|
||||
self.set_background_color(event.Colour)
|
||||
self.drawing_panel.set_background_color(event.Colour)
|
||||
color = event.Colour
|
||||
self.set_background_color(color)
|
||||
self.drawing_panel.set_background_color(color)
|
||||
self.drawing_panel.Refresh()
|
||||
|
||||
def set_background_color(self, color):
|
||||
self.btnBackgroundColor.SetColour(color)
|
||||
|
|
|
@ -10,7 +10,7 @@ from .utils import build_environment, write_inx_file
|
|||
|
||||
def pyembroidery_input_formats():
|
||||
for format in pyembroidery.supported_formats():
|
||||
if 'reader' in format and format['category'] in ['embroidery', 'color', 'stitch', 'debug']:
|
||||
if 'reader' in format and format['category'] in ['embroidery', 'color', 'stitch', 'quilting', 'debug']:
|
||||
yield format['extension'], format['description']
|
||||
|
||||
|
||||
|
|
|
@ -13,13 +13,15 @@ def pyembroidery_output_formats():
|
|||
if 'writer' in format:
|
||||
description = format['description']
|
||||
if format['category'] == "color":
|
||||
description = "%s [COLOR]" % description
|
||||
description = f"{description} [COLOR]"
|
||||
elif format['category'] == "image":
|
||||
description = "%s [IMAGE]" % description
|
||||
description = f"{description} [IMAGE]"
|
||||
elif format['category'] == "stitch":
|
||||
description = "%s [STITCH]" % description
|
||||
description = f"{description} [STITCH]"
|
||||
elif format['category'] == "quilting":
|
||||
description = f"{description} [QUILTING]"
|
||||
elif format['category'] != "embroidery":
|
||||
description = "%s [DEBUG]" % description
|
||||
description = f"{description} [DEBUG]"
|
||||
if not format['extension'] == 'png':
|
||||
yield format['extension'], description, format['mimetype'], format['category']
|
||||
|
||||
|
|
|
@ -48,6 +48,8 @@ def get_font_by_id(font_id):
|
|||
except OSError:
|
||||
continue
|
||||
for font_dir in font_dirs:
|
||||
if not os.path.isdir(os.path.join(font_path, font_dir)) or font_dir.startswith('.'):
|
||||
continue
|
||||
font = Font(os.path.join(font_path, font_dir))
|
||||
if font.id == font_id:
|
||||
return font
|
||||
|
|
|
@ -477,17 +477,18 @@ def _generate_satin_guide_helper_lines_with_constant_pattern_distance(stroke, gu
|
|||
|
||||
def _generate_satin_guide_helper_lines_with_varying_pattern_distance(stroke, guide_line, outline, outline0, outline_width, outline_rotation):
|
||||
# rotate pattern and get the pattern width
|
||||
minx, miny, maxx, maxy = _transform_outline(Point([0, 0]), outline_rotation, 1, outline, Point(outline0), 0).bounds
|
||||
pattern_width = maxx - minx
|
||||
transformed_outline = _transform_outline(Point([0, 0]), outline_rotation, 1, outline, Point(outline0), 0)
|
||||
minx, miny, maxx, maxy = transformed_outline.bounds
|
||||
pattern_height = maxy - miny
|
||||
|
||||
distance = 0
|
||||
min_distance = stroke.min_line_dist or 0
|
||||
line_point_dict = defaultdict(list)
|
||||
while True:
|
||||
if distance > guide_line.center_line.length:
|
||||
break
|
||||
check_stop_flag()
|
||||
cut_point = guide_line.center_line.interpolate(distance)
|
||||
point0, point1 = guide_line.find_cut_points(*cut_point.coords)
|
||||
point0, point1 = get_cut_points(guide_line, distance)
|
||||
|
||||
# move to point0, rotate and scale so the other point hits point1
|
||||
scaling = (point1 - point0).length() / outline_width
|
||||
|
@ -496,8 +497,7 @@ def _generate_satin_guide_helper_lines_with_varying_pattern_distance(stroke, gui
|
|||
translation = point0 - outline0
|
||||
transformed_outline = _transform_outline(translation, rotation, scaling, outline, Point(point0), 0)
|
||||
|
||||
min_distance = stroke.min_line_dist or 0
|
||||
distance += max(1, (pattern_width * scaling) + min_distance)
|
||||
distance += max(0.01, (pattern_height * scaling) + min_distance)
|
||||
|
||||
# outline to helper line points
|
||||
for j, point in enumerate(transformed_outline.coords):
|
||||
|
@ -506,6 +506,11 @@ def _generate_satin_guide_helper_lines_with_varying_pattern_distance(stroke, gui
|
|||
return _point_dict_to_helper_lines(len(outline.coords), line_point_dict)
|
||||
|
||||
|
||||
def get_cut_points(guide_line, distance):
|
||||
cut_point = guide_line.center_line.interpolate(distance)
|
||||
return guide_line.find_cut_points(*cut_point.coords)
|
||||
|
||||
|
||||
def _transform_outline(translation, rotation, scaling, outline, origin, scale_axis):
|
||||
# transform
|
||||
transformed_outline = translate(outline, translation.x, translation.y)
|
||||
|
|
|
@ -39,7 +39,12 @@ class ThreadPalette(Set):
|
|||
"""
|
||||
|
||||
with open(palette_file, encoding='utf8') as palette:
|
||||
line = palette.readline().strip()
|
||||
try:
|
||||
line = palette.readline().strip()
|
||||
except UnicodeDecodeError:
|
||||
# File has wrong encoding. Can't read this file
|
||||
self.is_gimp_palette = False
|
||||
return
|
||||
|
||||
self.is_gimp_palette = True
|
||||
if line.lower() != "gimp palette":
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit afe103b49a1750c5aabe612dbdc6793ef21951b0
|
||||
Subproject commit 13e94dbfc4a3b7de93ce2e771bf8ccf22e3551cb
|
|
@ -37,7 +37,7 @@
|
|||
<option value="center">Center</option>
|
||||
<option value="right">Right</option>
|
||||
<option value="block">Block (default)</option>
|
||||
<option value="letterspacing">Block (letterpacing)</option>
|
||||
<option value="letterspacing">Block (letterspacing)</option>
|
||||
</param>
|
||||
</vbox>
|
||||
<spacer />
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
gui-description="Use '%X' for x-coordinate. Use '%Y' for y-coordinate and '%Z' for z-coordinate."></param>
|
||||
<param name="custom_color_change" type="string" appearance="multiline" gui-text="COLOR CHANGE"
|
||||
gui-description="Leave empty to use default value. Use 'none' to remove. Use %R %G %B for thread color values"></param>
|
||||
<param name="custom_jump" type="string" appearance="multiline" gui-text="JUMP"
|
||||
gui-description="Leave empty to ignore jumps. Use '%X' for x-coordinate and '%Y' for y-coordinate."></param>
|
||||
<param name="custom_stop" type="string" appearance="multiline" gui-text="STOP"
|
||||
gui-description="Leave empty to use default value. Use 'none' to remove."></param>
|
||||
<param name="custom_start" type="string" appearance="multiline" gui-text="START"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<page name="options" gui-text="Options">
|
||||
<param name="extension" type="string" gui-hidden="true">unlink_clone</param>
|
||||
<param name="recursive" type="boolean" gui-text="Recursive">true</param>
|
||||
<param name="add-group" type="boolean" gui-text="Group unlinked symbols">true</param>
|
||||
</page>
|
||||
<page name="info" gui-text="Help">
|
||||
<label>Unlink clones and apply the fill stitch angle.</label>
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2517,7 +2517,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Vyberte si prosím jinou barevnou paletu pro svůj design."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Vyberte jeden nebo více prvků tahu."
|
||||
|
||||
|
@ -2551,40 +2551,40 @@ msgstr "V celém dokumentu nejsou žádné objekty, se kterými Ink/Stitch umí
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Tip: Spusťte Rozšíření > Ink/Stitch > Odstraňování problémů > Odstraňování problémů s objekty"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch Písmo"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2622,15 +2622,15 @@ msgstr "Vyberte jeden nebo více saténových sloupců, které chcete přestřih
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "tento saténový sloupek nemá připojený příkaz \"bod řezu saténového sloupu\". Použijte prosím rozšíření \"Připojit příkazy\" a nejprve připojte příkaz \"Bod řezu saténového sloupce\"."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr "Vyberte prosím alespoň jeden prvek s barvou tahu."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Skupina Cutwork"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Jehla #%s"
|
||||
|
@ -3225,7 +3225,7 @@ msgstr "Možná řešení"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Je možné, že jeden objekt obsahuje více než jednu chybu, přesto bude pouze jeden ukazatel na objekt. Pokud dojde k dalším chybám, spusťte tuto funkci znovu. Odstraňte ukazatele odstraněním vrstvy s názvem \"Odstraňování problémů\" prostřednictvím panelu objektů (Objekt -> Objekty...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr "Vyberte prosím jeden nebo více klonů, které chcete odpojit."
|
||||
|
||||
|
@ -3308,7 +3308,7 @@ msgstr "Použít"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Nápověda"
|
||||
|
@ -3446,7 +3446,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr "Informace o prvku"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
|
@ -3552,7 +3552,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3619,7 +3619,7 @@ msgid "Font Sampling"
|
|||
msgstr "Test písma"
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3943,7 +3943,7 @@ msgstr "ZMĚNA BARVY"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr "Rozměry: {:.2f} x {:.2f}"
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr "Příkaz: %s"
|
||||
|
@ -3970,55 +3970,59 @@ msgstr "Velikost bodu pronikání jehly (mm)"
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulace vyšívání"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Zobrazit bod průniku jehly (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr "Ukázat skokové stehy"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr "Ukázat střihy"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr "Ukázat zastavení"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr "Ukázat změny barvy"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr "Otevřít informační dialog"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr "Změna barvy pozadí"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr "Další stránka"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr "Otevřete dialogové okno nastavení"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr "Okno simulátoru odpojit/připojit"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Zobrazit"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr "Nastavení simulátoru"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr "Design Info"
|
||||
|
||||
|
@ -5299,7 +5303,7 @@ msgstr "Toto rozšíření se pokusí vytvořit jednu stehovou cestu přes všec
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr "Více informací na našem webu"
|
||||
|
||||
|
@ -5348,10 +5352,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5685,7 +5685,7 @@ msgstr "Použije nastavení první vybrané položky na zbytek výběru"
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Upravit"
|
||||
|
||||
|
@ -7943,15 +7943,19 @@ msgstr "Odpojit klon"
|
|||
msgid "Recursive"
|
||||
msgstr "Rekurzivní"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr "Odpojte klony a použijte úhel výplňového stehu."
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr "Odpojte klony a použijte úhel výplně"
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-27 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2517,7 +2517,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Wähle eine andere Garnpalette für das Design."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Bitte wähle ein oder mehrere Elemente mit einer Kontur (Linie)."
|
||||
|
||||
|
@ -2551,40 +2551,40 @@ msgstr "Es gibt im gesamten Dokument keine Objekte, mit denen Ink/Stitch arbeite
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Tipp: Öffne Erweiterungen > Ink/Stitch > Fehlerbehebung > Fehlerbehebung an Objekten"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr "Bitte einen Text angeben"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr "Bitte eine Schrift angeben"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr "Bitte einen gültigen Schriftnamen angeben."
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr "Eine Liste mit allen Schriftnamen gibt es auf unserer Webseite: https://inkstitch.org/de/fonts/font-library/"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr "Bitte mindestens ein Ausgabe-Dateiformat angeben"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr "Bitte mindestens ein gültiges Ausgabeformat angeben"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr "Eine Liste mit allen unterstützten Dateiformaten gibt es auf unserer Webseite: https://inkstitch.org/de/docs/file-formats/#schreiben"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch Text"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr "Skalierung"
|
||||
|
||||
|
@ -2622,15 +2622,15 @@ msgstr "Bitte wähle eine oder mehrere Satinsäulen zum Zerteilen aus."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "Diese Satinsäule hat keinen \"Satinsäule schneiden\" -Befehl. Bitte verwende die Erweiterung \"Befehle zu Objekten hinzufügen\" und füge zuerst den Befehl \"Satinsäule schneiden\" hinzu."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr "Bitte mindestens ein Element mit einer Konturfarbe auswählen."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Cutwork Gruppe"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Nadel #%s"
|
||||
|
@ -3227,7 +3227,7 @@ msgstr "Mögliche Lösungen"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Es ist möglich, dass ein Objekt mehr als einen Fehler enthält. Trotzdem wird in einigen Fällen nur ein Fehler pro Objekt angezeigt. Tauchen noch weitere Fehlermeldungen auf, führe diese Funktion einfach erneut aus. Entferne diese Hinweise durch das Löschen der Ebene \"Fehlerbehebung\" im Dialogfenster Objekte (Objekt > Objekte...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr "Bitte mindestens einen Klon auswählen, um die Verknüpfung zu lösen."
|
||||
|
||||
|
@ -3310,7 +3310,7 @@ msgstr "Anwenden"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
@ -3448,7 +3448,7 @@ msgstr "Horizontaler Vorschub Leerzeichen"
|
|||
msgid "Element Info"
|
||||
msgstr "Element Info"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
|
@ -3554,7 +3554,7 @@ msgstr "Rechts"
|
|||
msgid "Block (default)"
|
||||
msgstr "Block (Standard)"
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr "Block (Buchstabenabstand)"
|
||||
|
||||
|
@ -3621,7 +3621,7 @@ msgid "Font Sampling"
|
|||
msgstr "Zeichentabelle"
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3949,7 +3949,7 @@ msgstr "FARBWECHSEL"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr "Maße: {:.2f} x {:.2f}"
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr "Befehl: %s"
|
||||
|
@ -3976,55 +3976,59 @@ msgstr "Punktgröße für Nadeleinstichstellen (mm)"
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Stick Simulation"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Zeige Nadeleinstichpositionen (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr "Sprungstiche anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr "Fadenschnittbefehle anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr "Stoppbefehle anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr "Farbwechsel anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr "Info-Box öffnen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr "Hintergrundfarbe ändern"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr "Fadenkreuz anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr "Seite anzeigen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr "Einstellungen öffnen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr "Simulator-Fenster loslösen/anhängen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Zeige"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr "Simulator Einstellungen"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr "Design Info"
|
||||
|
||||
|
@ -5305,7 +5309,7 @@ msgstr "Diese Erweiterung versucht, alle gewählten Satinsäulen ohne dazwischen
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr "Weitere Informationen auf unserer Webseite"
|
||||
|
||||
|
@ -5354,10 +5358,6 @@ msgstr "Der eingegebene Wert wird auf die für die jeweilige Schrift zugelassene
|
|||
msgid "Align Multiline Text"
|
||||
msgstr "Mehrzeiligen Text ausrichten"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr "Block (Buchstabenabstand)"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr "Schrift entlang Pfad: Textposition"
|
||||
|
@ -5691,7 +5691,7 @@ msgstr "Wendet Parameter vom ersten ausgewählten Element auf den Rest der Auswa
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
|
@ -7949,15 +7949,19 @@ msgstr "Klonverbindung auftrennen"
|
|||
msgid "Recursive"
|
||||
msgstr "Rekursiv"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr "Aufgelöste Symbole gruppieren"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr "Klonverbdindungen auftrennen und Füllwinkel anwenden."
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr "https://inkstitch.org/de/docs/edit/#klonverbindung-auftrennen"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr "Klonverbindung auftrennen und Füllstichwinkel anwenden"
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr "Πιθανές λύσεις"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr "Εφαρμογή"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Βοήθεια"
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr "Πληροφορίες στοιχείου"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Πληροφορίες"
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr "Εντολή: %s"
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Εμφάνιση"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Επεξεργασία"
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2516,7 +2516,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Elija otra paleta de colores para su diseño."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Porfavor selecione uno o mas trazados."
|
||||
|
||||
|
@ -2550,40 +2550,40 @@ msgstr "No hay objetos en todo el documento con los que Ink/Stitch sepa cómo tr
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Consejo: Ejecute Extensiones > Ink/Stitch > Solucionar problemas > Solucionar problemas de Objetos"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Letras de Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2621,15 +2621,15 @@ msgstr "Seleccione una o más columnas satinadas para cortar."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "esta columna satinada no tiene un comando de \"punto de corte de columna satinada\" adjunto. Utilice la extensión \"Adjuntar comandos\" y adjunte primero el comando \"Punto de corte de columna satinada\"."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Grupo Cutwork"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Aguja #%s"
|
||||
|
@ -3220,7 +3220,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Es posible que un objeto contenga más de un error, pero solo habrá un puntero por objeto. Vuelva a ejecutar esta función cuando se produzcan más errores. Elimine los punteros eliminando la capa denominada \"Solucionar problemas (Troubleshoot)\" a través del panel de objetos (Objeto -> Objetos...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3303,7 +3303,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Ayuda"
|
||||
|
@ -3441,7 +3441,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3546,7 +3546,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3613,7 +3613,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3935,7 +3935,7 @@ msgstr "Cambio de Color"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3962,55 +3962,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulación de bordado"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Muestra el punto de penetración de la aguja (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Mostrar"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5285,7 +5289,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5334,10 +5338,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5671,7 +5671,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
|
@ -7929,15 +7929,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch Kirjaimet"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr "Valitse yksi tai useampi satiinimuoto leikataksesi."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr "Vaihda väriä"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Brodeeraus simulaatio"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Näytä neulan paikat (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2518,7 +2518,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Veuillez choisir une autre palette de couleurs pour votre dessin."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Veuillez sélectionner un ou plusieurs traits."
|
||||
|
||||
|
@ -2552,40 +2552,40 @@ msgstr "Il n'y a aucun objet dans tout le document sur lequel Ink/Stitch sait qu
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Conseil : Exécutez Extensions > Ink/Stitch > Résolution de problèmes > Dépistage de problèmes avec des objets"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr "Merci de spécifier un texte"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr "Merci de spécifier une police"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr "Merci de spécifier un nom de police valide."
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr "Vous pouvez trouver la liste de tous les noms de polices sur notre site web : https://inkstitch.org/fr/fonts/font-library/"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr "Merci de spécifier au moins un format de fichier de sortie"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr "Merci de spécifier au moins un format de fichier supporté par Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr "Vous pouvez trouver la liste de tous les formats de fichier supportés sur notre site web : https://inkstitch.org/fr/docs/file-formats/#writing"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Lettrage Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr "Échelle"
|
||||
|
||||
|
@ -2623,15 +2623,15 @@ msgstr "Veuillez sélectionner une ou plusieurs colonnes satin à scinder."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "cette colonne satin n’a pas de commande « point de partage » attachée. Utilisez l’extension « ajouter des commandes » et attachez d’abord la commande « point de partage »."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr "Merci de sélectionner au moins un élément ayant une couleur de contour."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Groupe Richelieu"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Aiguille #%s"
|
||||
|
@ -2806,12 +2806,13 @@ msgstr "Ink/Stitch ne peut pas importer directement les formats de couleur. Mais
|
|||
|
||||
#: lib/extensions/install.py:44 lib/extensions/install.py:54
|
||||
msgid "Could not install color palettes. Please file an issue on"
|
||||
msgstr ""
|
||||
msgstr "Impossible d'installer les palettes de couleur. Merci de poster une \"issue\" sur"
|
||||
|
||||
#: lib/extensions/install.py:58
|
||||
msgid "Successfully installed Addons.\n\n"
|
||||
"Please restart Inkscape."
|
||||
msgstr ""
|
||||
msgstr "Les compléments ont été installés avec succès.\n\n"
|
||||
"Merci de redémarrer Inkscape."
|
||||
|
||||
#: lib/extensions/install_custom_palette.py:25
|
||||
#: lib/extensions/palette_to_text.py:27
|
||||
|
@ -3227,7 +3228,7 @@ msgstr "Solutions possibles"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Il est possible qu'un objet contienne plus d'une erreur, même s'il n'y a qu'un conseil par objet. Relancer cette fonction quand il y a plus d'erreurs. Enlever les conseils en supprimant le calque \"Résolution de problèmes\" dans le dialogue objets (Objet -> Objets...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr "Merci de sélectionner un ou plusieurs clones à délier."
|
||||
|
||||
|
@ -3310,7 +3311,7 @@ msgstr "Appliquer"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
@ -3448,7 +3449,7 @@ msgstr "Avancée horizontale de l'espace"
|
|||
msgid "Element Info"
|
||||
msgstr "Information sur l'élément"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
|
@ -3554,7 +3555,7 @@ msgstr "Droite"
|
|||
msgid "Block (default)"
|
||||
msgstr "Justifié (mots)"
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr "Justifié (lettres)"
|
||||
|
||||
|
@ -3621,7 +3622,7 @@ msgid "Font Sampling"
|
|||
msgstr "Test de police"
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3948,7 +3949,7 @@ msgstr "CHANGEMENT COULEUR"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr "Dimensions: {:.2f} x {:.2f}"
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr "Commande : %s"
|
||||
|
@ -3975,55 +3976,59 @@ msgstr "Taille du point de pénétration de l'aiguille (mm)"
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulation de broderie"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Afficher les points de pénétration de l'aiguille (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr "Montrer les sauts de fil"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr "Montrer les coupes de fil"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr "Montrer les stops"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr "Montrer les changements de couleur"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr "Ouvrir le dialogue Informations"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr "Changer la couleur d'arrière fond"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr "Montrer la position de l'aiguille"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr "Montrer la page"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr "Ouvrir le dialogue de paramétrage"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr "Détacher/Attacher le simulateur"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Montrer"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr "Préférences du simulateur"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr "Information sur la broderie"
|
||||
|
||||
|
@ -4327,7 +4332,7 @@ msgstr "Écriture : latin"
|
|||
|
||||
#: lib/lettering/font.py:97
|
||||
msgid "JSON file missing. Expected a JSON file at the following location:"
|
||||
msgstr "Il manque le fichier JSON. Un fichier JSO est attendu à cet endroit :"
|
||||
msgstr "Il manque le fichier JSON. Un fichier JSON est attendu à cet endroit :"
|
||||
|
||||
#: lib/lettering/font.py:99
|
||||
msgid "Generate the JSON file through:\n"
|
||||
|
@ -5305,7 +5310,7 @@ msgstr "Cette extension tente de créer un chemin de broderie unique qui parcour
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr "Plus d'information sur notre site web"
|
||||
|
||||
|
@ -5328,43 +5333,39 @@ msgstr "Outils : Satin"
|
|||
|
||||
#: inx/inkstitch_batch_lettering.inx:3
|
||||
msgid "Batch Lettering"
|
||||
msgstr ""
|
||||
msgstr "Lettrage par lot"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:13
|
||||
msgid "Enter the text. Each line of text will be exported to a separate file."
|
||||
msgstr ""
|
||||
msgstr "Entrez le texte. Chaque ligne de texte sera exportée dans un fichier séparé."
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:15
|
||||
msgid "Custom separator"
|
||||
msgstr ""
|
||||
msgstr "Séparateur personnalisé"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:15
|
||||
msgid "Set a custom separator for multiline text export. Leave empty for line break."
|
||||
msgstr ""
|
||||
msgstr "Choisir un séparateur personnalisé pour les exports de texte sur plusieurs lignes. Laisser vide pour fin de ligne."
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:19
|
||||
msgid "Font name"
|
||||
msgstr ""
|
||||
msgstr "Nom de la police"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:21
|
||||
msgid "The scale value must be within the scale range of the specified font."
|
||||
msgstr ""
|
||||
msgstr "La valeur de l'échelle doit être dans l'intervalle spécifié pour la police."
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:35
|
||||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
msgstr "Alignement des lignes de texte"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
msgstr "Lettrage le long d'un chemin : position du texte"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Uses this text position when using lettering along path"
|
||||
msgstr ""
|
||||
msgstr "Utilise cette position du texte pour du lettrage le long d'un chemin"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:52
|
||||
#: inx/inkstitch_lettering_along_path.inx:22
|
||||
|
@ -5373,31 +5374,31 @@ msgstr "Étendre"
|
|||
|
||||
#: inx/inkstitch_batch_lettering.inx:57
|
||||
msgid "File formats"
|
||||
msgstr ""
|
||||
msgstr "Formats de fichier"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:57
|
||||
msgid "Comma separated list of file formats"
|
||||
msgstr ""
|
||||
msgstr "Liste de formats de fichiers, séparés par des virgules"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:63
|
||||
msgid "Use this extension to save multiple files with the given text."
|
||||
msgstr ""
|
||||
msgstr "Utiliser cette extension pour sauvegarder plusieurs fichiers avec le texte donné."
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:65
|
||||
msgid "When the document contains a path element labeled as \"batch lettering\" it will be used to place the text along this path. The path itself will be removed and won't be rendered."
|
||||
msgstr ""
|
||||
msgstr "Quand le document contient un chemin avec le label \"batch lettering\", il sera utilisé par lettrage sur chemin pour placer le texte. Le chemin lui-même sera supprimé et non rendu."
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:68
|
||||
msgid "https://inkstitch.org/docs/lettering/#batch-export"
|
||||
msgstr ""
|
||||
msgstr "https://inkstitch.org/fr/docs/lettering/#batch-export"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:75
|
||||
msgid "Ink/Stitch: batch lettering (.zip)"
|
||||
msgstr ""
|
||||
msgstr "Ink/Stitch : lettrage par lot (.zip)"
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:76
|
||||
msgid "Create a zip with multiple files including embroidered text using Ink/Stitch"
|
||||
msgstr ""
|
||||
msgstr "Crée un zip avec des fichiers multiples qui incluent du texte brodé en utilisant Ink/Stitch"
|
||||
|
||||
#: inx/inkstitch_break_apart.inx:3
|
||||
msgid "Break Apart Fill Objects"
|
||||
|
@ -5691,7 +5692,7 @@ msgstr "Applique les paramètres du premier élément sélectionné au reste de
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Édition"
|
||||
|
||||
|
@ -6414,39 +6415,39 @@ msgstr "convertir un fichier ZXY en chemins de points manuels Ink/Stitch"
|
|||
|
||||
#: inx/inkstitch_install.inx:3
|
||||
msgid "Install Addons for Inkscape"
|
||||
msgstr ""
|
||||
msgstr "Installer des compléments pour Inkscape"
|
||||
|
||||
#: inx/inkstitch_install.inx:10
|
||||
msgid "Install thread color palettes"
|
||||
msgstr ""
|
||||
msgstr "Installer des palettes de couleur de fil"
|
||||
|
||||
#: inx/inkstitch_install.inx:10
|
||||
msgid "Installs some default thread color palettes."
|
||||
msgstr ""
|
||||
msgstr "Installe certaines palettes de couleur de fils."
|
||||
|
||||
#: inx/inkstitch_install.inx:12
|
||||
msgid "Install symbol libraries"
|
||||
msgstr ""
|
||||
msgstr "Installer des bibliothéques de symboles"
|
||||
|
||||
#: inx/inkstitch_install.inx:12
|
||||
msgid "Installs symbol libraries with reusable motifs for embroidery"
|
||||
msgstr ""
|
||||
msgstr "Installe des bibliothèques de symboles avec des motifs réutilisables pour la broderie"
|
||||
|
||||
#: inx/inkstitch_install.inx:15
|
||||
msgid "Installs color palettes or a motif stitch symbol library into Inkscape."
|
||||
msgstr ""
|
||||
msgstr "Installe des palettes de couleurs ou une bibliothèque de motif de points dans Inkscape."
|
||||
|
||||
#: inx/inkstitch_install.inx:16
|
||||
msgid "Please restart Inkscape after the installation is complete."
|
||||
msgstr ""
|
||||
msgstr "Merci de redémarrer Inkscape après avoir terminé l'installation."
|
||||
|
||||
#: inx/inkstitch_install.inx:19
|
||||
msgid "https://inkstitch.org/docs/install-addons"
|
||||
msgstr ""
|
||||
msgstr "https://inkstitch.org/fr/docs/install-addons"
|
||||
|
||||
#: inx/inkstitch_install.inx:26
|
||||
msgid "Installs color palettes or a symbol library for motif stitches into Inkscape"
|
||||
msgstr ""
|
||||
msgstr "Installe des palettes de couleur ou une bibliothèque de symboles (pour utiliser des motifs sur chemin) dans Inkscape"
|
||||
|
||||
#: inx/inkstitch_install_custom_palette.inx:3
|
||||
msgid "Install custom palette"
|
||||
|
@ -6854,7 +6855,7 @@ msgstr "Hauteur de ligne (par défaut : 100)"
|
|||
|
||||
#: inx/inkstitch_lettering_generate_json.inx:126
|
||||
msgid "Overwrite word spacing information from font file."
|
||||
msgstr "Surcharger la valeur d’espacement des mots du fichier."
|
||||
msgstr "Surcharge la valeur d’espacement des mots du fichier."
|
||||
|
||||
#: inx/inkstitch_lettering_generate_json.inx:128
|
||||
msgid "Word spacing (px)"
|
||||
|
@ -7548,7 +7549,7 @@ msgstr "Génère un satin multicolore"
|
|||
|
||||
#: inx/inkstitch_satin_to_stroke.inx:3
|
||||
msgid "Satin to Stroke"
|
||||
msgstr ""
|
||||
msgstr "Satin en Trait"
|
||||
|
||||
#: inx/inkstitch_satin_to_stroke.inx:10
|
||||
msgid "Keep satin column"
|
||||
|
@ -7895,7 +7896,7 @@ msgstr "https://inkstitch.org/fr/docs/satin-tools/#stroke-to-live-path-effect-sa
|
|||
|
||||
#: inx/inkstitch_stroke_to_satin.inx:3
|
||||
msgid "Stroke to Satin"
|
||||
msgstr ""
|
||||
msgstr "Trait en Satin"
|
||||
|
||||
#: inx/inkstitch_tartan.inx:9
|
||||
msgid "Tartan stripe editor"
|
||||
|
@ -7949,15 +7950,19 @@ msgstr "Délier le clone"
|
|||
msgid "Recursive"
|
||||
msgstr "Récursivement"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr "Grouper les clones déliés"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr "Délier les clones et appliquer l'angle de broderie."
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr "https://inkstitch.org/fr/docs/edit/#unlink-clone/"
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr "Délier les clones et appliquer l'angle de remplissage"
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2516,7 +2516,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Si selezioni un'altra palette di colori per il tuo design."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Si prega di selezionare uno o più elementi tratteggiati."
|
||||
|
||||
|
@ -2550,40 +2550,40 @@ msgstr "In tutto il documento non ci sono oggetti con cui Ink/Stitch sia in grad
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Suggerimento: esegui Estensioni > Ink/Stitch > Risoluzione dei problemi > Risoluzione dei problemi degli oggetti"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Caratteri Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr "scala"
|
||||
|
||||
|
@ -2621,15 +2621,15 @@ msgstr "Selezionare una o più colonne raso da tagliare."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "questa colonna raso non ha un commando \"punto di taglio colonna raso\" collegato. Usare l'estensione \"Collega comandi\" e collegare il il comando \"Punto di taglio colonna raso\"."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr "Si prega di selezionare almeno un elemento con un colore tratteggiato."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Gruppo di taglio"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Ago #%s"
|
||||
|
@ -3221,7 +3221,7 @@ msgstr "Soluzioni possibili"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Potrebbe accadere che un oggetto contenga più di un errore, ma ci sarà comunque un solo puntatore per oggetto. Eseguire questa funzione un'altra volta, se si verificano ulteriori errori. Rimuovere i puntatori cancellando il livello chiamato \"Risoluzione problemi\" attraverso il pannello degli oggetti (Oggetto -> Oggetti...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr "Si prega di selezionare uno o più cloni da scollegare."
|
||||
|
||||
|
@ -3304,7 +3304,7 @@ msgstr "Applica"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Aiuto"
|
||||
|
@ -3442,7 +3442,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr "Info sull'Elemento"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
|
@ -3548,7 +3548,7 @@ msgstr "Destra"
|
|||
msgid "Block (default)"
|
||||
msgstr "Giustificato (predefinito)"
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr "Giustifica (spaziatura delle lettere)"
|
||||
|
||||
|
@ -3615,7 +3615,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3937,7 +3937,7 @@ msgstr "CAMBIO COLORE"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3964,55 +3964,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulazione di ricamo"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Visualizza il punti di entrata dell'ago (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr "Mostra fermate"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr "Mostra cambiamenti di colore"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr "Apri dialogo d'informazioni"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr "Cambia colore di sfondo"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr "Mostra pagina"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr "Api dialogo di opzioni"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Mostra"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr "Preferenze Del Simulatore"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr "Info Sul Progetto"
|
||||
|
||||
|
@ -5287,7 +5291,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr "Maggiori informazioni sul nostro sito"
|
||||
|
||||
|
@ -5336,10 +5340,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5673,7 +5673,7 @@ msgstr "Applica i parametri del primo elemento selezionato al resto della selezi
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Modifica"
|
||||
|
||||
|
@ -7931,15 +7931,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2515,7 +2515,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "デザインに他のカラーパレットを選択してください。"
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2549,40 +2549,40 @@ msgstr "インクステッチが操作可能なオブジェクトがこのドキ
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "ヒント: 拡張機能 > インクステッチ > トラブルシューティング > オブジェクトのトラブルシューティングを実行"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "インク/ステッチの文字配置"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2620,15 +2620,15 @@ msgstr "カットするサテンの柱を1つ以上選択してください。"
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "このサテンカラムには、「サテンカラムカットポイント」コマンドが付加されていません。 「コマンドの添付」拡張機能を使用して、最初に「サテンカラムカットポイント」コマンドを添付してください。"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3219,7 +3219,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "1つのオブジェクトに複数のエラーが含まれている可能性がありますが、ポインタはオブジェクトごとに1つしかありません。 さらにエラーが発生した場合は、この関数を再度実行してください。 ポインタを削除するには、オブジェクトパネル(オブジェクト -> Objects...)で「Troubleshoot」というレイヤーを削除します。"
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3302,7 +3302,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3440,7 +3440,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3545,7 +3545,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3612,7 +3612,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3934,7 +3934,7 @@ msgstr "色変更"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3961,55 +3961,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "刺繡シミュレーション"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "針落ち点(O)を表示"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "表示"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5284,7 +5288,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5333,10 +5337,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5670,7 +5670,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "編集"
|
||||
|
||||
|
@ -7928,15 +7928,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2513,7 +2513,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Kies een ander kleurpalet voor je ontwerp."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Selecteer een of meer lijnelementen."
|
||||
|
||||
|
@ -2547,40 +2547,40 @@ msgstr "In het gehele document zit geen enkel object waar Ink/Stitch mee kan omg
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Tip: Start Extensies > Inkt/Stitch > Problemen oplossen > Objecten oplossen"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch Belettering"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2618,15 +2618,15 @@ msgstr "Selecteer een of meer satijnbanen om te snijden."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "deze satijnbaan heeft geen \"satijnbaan snijpunt\" commando gekoppeld. Gebruik de \"Koppel commando's\" uitbreiding en koppel het \"Satijnbaan Snijpunt\" commando eerst."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr "Snijwerk groep"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Naald #%s"
|
||||
|
@ -3218,7 +3218,7 @@ msgstr "Mogelijke oplossingen"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Het is mogelijk dat een object meer dan één fout bevat, er is echter slechts éé'n pointer per object. Voer de functie opnieuw uit als er meer fouten optreden. Verwijder pointers door de laag met naam \"Probleemoplossen\" te verwijderen via het objecten paneel (Object -> Objecten...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3301,7 +3301,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Help"
|
||||
|
@ -3439,7 +3439,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3545,7 +3545,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3612,7 +3612,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3934,7 +3934,7 @@ msgstr "KLEUR WISSEL"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3961,55 +3961,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Borduursimulatie"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Toon het naald penetratiepunt (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Toon"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5285,7 +5289,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5334,10 +5338,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5671,7 +5671,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
|
@ -7929,15 +7929,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "Vennligst velg et eller flere linje-elementer."
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr "Det er ingen objekter i hele dokumentet som Ink/Stitch finner ut av å j
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr "Vennligst velg en eller flere satengsøm for å kutte."
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3217,7 +3217,7 @@ msgstr "Mulige løsninger"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3300,7 +3300,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Hjelp"
|
||||
|
@ -3438,7 +3438,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3543,7 +3543,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3610,7 +3610,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3932,7 +3932,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3959,55 +3959,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Broderi-simulering"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Vis"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5282,7 +5286,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5331,10 +5335,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5668,7 +5668,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7926,15 +7926,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch Liternictwo"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Pomoc"
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr "ZMIANA KOLORU"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2515,7 +2515,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2549,40 +2549,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2620,15 +2620,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "Agulha #%s"
|
||||
|
@ -3219,7 +3219,7 @@ msgstr "Soluções possíveis"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3302,7 +3302,7 @@ msgstr "Aplicar"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Ajuda"
|
||||
|
@ -3440,7 +3440,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr "Informações do elemento"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Informações"
|
||||
|
||||
|
@ -3545,7 +3545,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3612,7 +3612,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3934,7 +3934,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3961,55 +3961,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulador de Bordado"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Mostrar"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5284,7 +5288,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5333,10 +5337,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5670,7 +5670,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
|
@ -7928,15 +7928,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Simulação de Bordado"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr "Schimba culoarea"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Arata"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Editeaza"
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Выберите другую палитру для вашего дизайна."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr "Во всем дизайне нет ни одного объекта с
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Совет: Попробуйте Расширения > Ink/Stitch > Решение ппроблем > Решение проблем с объектами"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Надписи Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr "Выберите одну или несколько сатиновых
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "эта сатиновая колонна не имеет команды \"точка разрыва сатиновой колонны\" прикрепленной к ней. Используйте \"Добавить команды\" из меню и прикрепите команду \"Точка разрыва сатиновой колонны\"."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Возможно, что один объект содержит более одной ошибки, но на каждый объект устанавливается только один указатель. Запустите эту функцию снова, когда будут возникать новые ошибки. Удалите указатели путём удаления слоя с именем \"Решение проблем\" через панель объектов (Объект -> Объекты...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr "СМЕНА ЦВЕТА"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Симуляция Вышивки"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Показывать точки проколов (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Показать"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Правка"
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr "Möjliga lösningar"
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr "Tillämpa"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "Hjälp"
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr "Elementinfo"
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Broderisimulering"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Visa"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5282,7 +5286,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5331,10 +5335,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5668,7 +5668,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
|
||||
|
@ -7926,15 +7926,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Nakış Simülasyonu"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "Выберіть іншу палітру для вашого дизайна."
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr "У всьому дизайні немає жодного об'єкта
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "Порада: Спробуйте Розширення > Ink/Stitch > Вирішення проблем > Вирішення проблем з об'єктами"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Надписи Ink/Stitch"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr "Виберіть одну або декілька сатинових к
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "у цій сатиновій колонці немає команди \"вирізати сатинові колонки\". Будь ласка, використовуйте розширення \"Додати команди\" і спочатку додайте команду \"Розірвати сатинову колонку\"."
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr "Можливо, що один об'єкт містить більше ніж одну помилку, але на кожен об'єкт встановлюється тільки один вказівник. Запустіть цю функцию знову, коли будуть виникати нові помилки. Видаліть вказівники шляхом видалення шару з іменем \"Вирішення проблем\" через панель об'єктів (Об'бєкт -> Об'єкти...)."
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr "ЗМІНА КОЛЬОРА"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "Симуляція вишивання"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "Показати точку проникнення голки (O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "Показати"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "Правка"
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:40\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2515,7 +2515,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr "请为您的设计选择另一个调色板。"
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr "请选择一个或多个笔画元素。"
|
||||
|
||||
|
@ -2549,40 +2549,40 @@ msgstr "整个文档中没有 Ink/Stitch 知道如何使用的对象。"
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr "提示:运行扩展 > Ink/Stitch > 疑难解答 > 对象疑难解答"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr "Ink/Stitch 刻字"
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2620,15 +2620,15 @@ msgstr "请选择一根或多根缎面柱进行切割。"
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr "此缎面柱没有附加“缎面柱切割点”命令。 请先使用“附加命令”扩展并附加“缎柱切割点”命令。"
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr "针 #%s"
|
||||
|
@ -3222,7 +3222,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3305,7 +3305,7 @@ msgstr "应用"
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr "帮助"
|
||||
|
@ -3443,7 +3443,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr "信息(详情)"
|
||||
|
||||
|
@ -3548,7 +3548,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3616,7 +3616,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3940,7 +3940,7 @@ msgstr "颜色变化"
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr "命令: %s"
|
||||
|
@ -3967,55 +3967,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr "刺绣模拟"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr "显示进针点(O)"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr "显示跳针"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr "显示剪线"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr "显示停止"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr "显示换色"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr "显示"
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5294,7 +5298,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5343,10 +5347,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5681,7 +5681,7 @@ msgstr "将第一个选定元素的参数应用于其余选定元素"
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr "编辑"
|
||||
|
||||
|
@ -7939,15 +7939,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: inkstitch\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"PO-Revision-Date: 2025-03-26 01:39\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2025-04-07 01:42\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Generated-By: Babel 2.17.0\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-03-26 01:39+0000\n"
|
||||
"POT-Creation-Date: 2025-04-07 01:42+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2512,7 +2512,7 @@ msgid "Please chose an other color palette for your design."
|
|||
msgstr ""
|
||||
|
||||
#. auto-route running stitch columns extension
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:44
|
||||
#: lib/extensions/auto_run.py:57 lib/extensions/cutwork_segmentation.py:45
|
||||
msgid "Please select one or more stroke elements."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2546,40 +2546,40 @@ msgstr ""
|
|||
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:55
|
||||
#: lib/extensions/batch_lettering.py:56
|
||||
msgid "Please specify a text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:61
|
||||
msgid "Please specify a font"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:64
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
msgid "Please specify a valid font name."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:65
|
||||
#: lib/extensions/batch_lettering.py:66
|
||||
msgid "You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:69
|
||||
#: lib/extensions/batch_lettering.py:70
|
||||
msgid "Please specify at least one output file format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:75
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
msgid "Please specify at least one file format supported by Ink/Stitch"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:76
|
||||
#: lib/extensions/batch_lettering.py:77
|
||||
msgid "You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:197 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/batch_lettering.py:204 lib/extensions/lettering.py:60
|
||||
#: lib/extensions/lettering.py:71
|
||||
msgid "Ink/Stitch Lettering"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/batch_lettering.py:203 lib/gui/lettering/main_panel.py:307
|
||||
#: lib/extensions/batch_lettering.py:210 lib/gui/lettering/main_panel.py:307
|
||||
msgid "scale"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2617,15 +2617,15 @@ msgstr ""
|
|||
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:74
|
||||
#: lib/extensions/cutwork_segmentation.py:83
|
||||
msgid "Please select at least one element with a stroke color."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:158
|
||||
#: lib/extensions/cutwork_segmentation.py:167
|
||||
msgid "Cutwork Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/cutwork_segmentation.py:166
|
||||
#: lib/extensions/cutwork_segmentation.py:175
|
||||
#, python-format
|
||||
msgid "Needle #%s"
|
||||
msgstr ""
|
||||
|
@ -3216,7 +3216,7 @@ msgstr ""
|
|||
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/extensions/unlink_clone.py:29
|
||||
#: lib/extensions/unlink_clone.py:30
|
||||
msgid "Please select one or more clones to unlink."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3299,7 +3299,7 @@ msgstr ""
|
|||
#: inx/inkstitch_satin_to_stroke.inx:12 inx/inkstitch_select_elements.inx:80
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:37
|
||||
#: inx/inkstitch_stroke_to_lpe_satin.inx:26 inx/inkstitch_troubleshoot.inx:12
|
||||
#: inx/inkstitch_unlink_clone.inx:10 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_unlink_clone.inx:11 inx/inkstitch_zigzag_line_to_satin.inx:18
|
||||
#: inx/inkstitch_zip.inx:62
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
@ -3437,7 +3437,7 @@ msgstr ""
|
|||
msgid "Element Info"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:113
|
||||
#: lib/gui/element_info.py:28 lib/gui/simulator/view_panel.py:120
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3542,7 +3542,7 @@ msgstr ""
|
|||
msgid "Block (default)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/lettering/option_panel.py:89
|
||||
#: lib/gui/lettering/option_panel.py:89 inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterspacing)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3609,7 +3609,7 @@ msgid "Font Sampling"
|
|||
msgstr ""
|
||||
|
||||
#: lib/gui/edit_json/main_panel.py:67 lib/gui/lettering_font_sample.py:36
|
||||
#: lib/gui/simulator/view_panel.py:122 print/templates/ui.html:5
|
||||
#: lib/gui/simulator/view_panel.py:129 print/templates/ui.html:5
|
||||
#: print/templates/ui.html:15 inx/inkstitch_lettering_generate_json.inx:77
|
||||
#: inx/inkstitch_png_realistic.inx:14 inx/inkstitch_png_simple.inx:14
|
||||
msgid "Settings"
|
||||
|
@ -3931,7 +3931,7 @@ msgstr ""
|
|||
msgid "Dimensions: {:.2f} x {:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/drawing_panel.py:436
|
||||
#: lib/gui/simulator/drawing_panel.py:435
|
||||
#, python-format
|
||||
msgid "Command: %s"
|
||||
msgstr ""
|
||||
|
@ -3958,55 +3958,59 @@ msgstr ""
|
|||
msgid "Embroidery Simulation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:39
|
||||
#: lib/gui/simulator/view_panel.py:40
|
||||
msgid "Display needle penetration point (O)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:43
|
||||
#: lib/gui/simulator/view_panel.py:44
|
||||
msgid "Show jump stitches"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:50
|
||||
#: lib/gui/simulator/view_panel.py:51
|
||||
msgid "Show trims"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:57
|
||||
#: lib/gui/simulator/view_panel.py:58
|
||||
msgid "Show stops"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:64
|
||||
#: lib/gui/simulator/view_panel.py:65
|
||||
msgid "Show color changes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:72
|
||||
#: lib/gui/simulator/view_panel.py:73
|
||||
msgid "Open info dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:77
|
||||
#: lib/gui/simulator/view_panel.py:78
|
||||
msgid "Change background color"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:85
|
||||
#: lib/gui/simulator/view_panel.py:82
|
||||
msgid "Show crosshair"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:92
|
||||
msgid "Show page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:88
|
||||
#: lib/gui/simulator/view_panel.py:95
|
||||
msgid "Open settings dialog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:94
|
||||
#: lib/gui/simulator/view_panel.py:101
|
||||
msgid "Detach/attach simulator window"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:100
|
||||
#: lib/gui/simulator/view_panel.py:107
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:171
|
||||
#: lib/gui/simulator/view_panel.py:185
|
||||
msgid "Simulator Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gui/simulator/view_panel.py:179
|
||||
#: lib/gui/simulator/view_panel.py:193
|
||||
msgid "Design Info"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5281,7 +5285,7 @@ msgstr ""
|
|||
#: inx/inkstitch_redwork.inx:31 inx/inkstitch_remove_duplicated_points.inx:24
|
||||
#: inx/inkstitch_satin_to_stroke.inx:15
|
||||
#: inx/inkstitch_stitch_plan_preview.inx:45 inx/inkstitch_troubleshoot.inx:15
|
||||
#: inx/inkstitch_unlink_clone.inx:13
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
msgid "More information on our website"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5330,10 +5334,6 @@ msgstr ""
|
|||
msgid "Align Multiline Text"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:40
|
||||
msgid "Block (letterpacing)"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_batch_lettering.inx:48
|
||||
msgid "Lettering along path: text position"
|
||||
msgstr ""
|
||||
|
@ -5667,7 +5667,7 @@ msgstr ""
|
|||
#: inx/inkstitch_selection_to_anchor_line.inx:12
|
||||
#: inx/inkstitch_selection_to_guide_line.inx:12
|
||||
#: inx/inkstitch_selection_to_pattern.inx:12 inx/inkstitch_test_swatches.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:23
|
||||
#: inx/inkstitch_unlink_clone.inx:24
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
@ -7925,15 +7925,19 @@ msgstr ""
|
|||
msgid "Recursive"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:11
|
||||
#: inx/inkstitch_unlink_clone.inx:9
|
||||
msgid "Group unlinked symbols"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:12
|
||||
msgid "Unlink clones and apply the fill stitch angle."
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:14
|
||||
#: inx/inkstitch_unlink_clone.inx:15
|
||||
msgid "https://inkstitch.org/docs/edit/#unlink-clone/"
|
||||
msgstr ""
|
||||
|
||||
#: inx/inkstitch_unlink_clone.inx:20
|
||||
#: inx/inkstitch_unlink_clone.inx:21
|
||||
msgid "Unlink clones and apply the fill stitch angle"
|
||||
msgstr ""
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue