diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 282c33ded..a62a65404 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -6,7 +6,7 @@ Copyright (c) 2002-2024 Various contributors (see below, and AUTHORS.txt) https://tuxpaint.org/ -2024.October.8 (0.9.34) +2024.October.9 (0.9.34) * New Magic Tools: ---------------- * "Comic Dots", draws repeating dots (using a multiply blend) @@ -96,10 +96,9 @@ https://tuxpaint.org/ Creative Commons Attribution 3.0 (CC BY 3.0) by "THE_bizniss" - * WIP "Tessellation": Draw a repeating tessellation pattern + * "Tessellation Pointy" & "Tessellation Flat", a pair of tools + to draw a repeating hexagon tessellation pattern + Code by Bill Kendrick - + TODO Move to proper section - + TODO Add icon + TODO Add sound effect + TODO Documentation diff --git a/magic/icons/tessellation-flat.png b/magic/icons/tessellation-flat.png new file mode 100644 index 000000000..bffa1b836 Binary files /dev/null and b/magic/icons/tessellation-flat.png differ diff --git a/magic/icons/tessellation-pointy.png b/magic/icons/tessellation-pointy.png new file mode 100644 index 000000000..3673ce227 Binary files /dev/null and b/magic/icons/tessellation-pointy.png differ diff --git a/magic/src/tessell.c b/magic/src/tessell.c index e4d3614bd..0a76b2c79 100644 --- a/magic/src/tessell.c +++ b/magic/src/tessell.c @@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - Last updated: October 8, 2024 + Last updated: October 9, 2024 */ #include @@ -35,6 +35,12 @@ #define REPEAT_CNT 3 #define SIN_60DEG 0.866025403784439 +enum { + TOOL_TESSELL_POINTY_TOP, + TOOL_TESSELL_FLAT_TOP, + NUM_TOOLS +}; + static Mix_Chunk *tessell_snd; static int tessell_radius = 16, tessell_width, tessell_height; static Uint32 tessell_color; @@ -87,39 +93,48 @@ int tessell_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint int tessell_get_tool_count(magic_api * api ATTRIBUTE_UNUSED) { - return (1); + return (NUM_TOOLS); } -SDL_Surface *tessell_get_icon(magic_api * api, int which ATTRIBUTE_UNUSED) +SDL_Surface *tessell_get_icon(magic_api * api, int which) { char fname[1024]; - snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory); // FIXME + if (which == TOOL_TESSELL_POINTY_TOP) + snprintf(fname, sizeof(fname), "%simages/magic/tessellation-pointy.png", api->data_directory); + else // which == TOOL_TESSELL_FLAT_TOP + snprintf(fname, sizeof(fname), "%simages/magic/tessellation-flat.png", api->data_directory); return (IMG_Load(fname)); } -char *tessell_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) +char *tessell_get_name(magic_api * api ATTRIBUTE_UNUSED, int which) { - return (strdup(gettext("Tessellation"))); + if (which == TOOL_TESSELL_POINTY_TOP) + return (strdup(gettext("Tessellation Pointy"))); + else // which == TOOL_TESSELL_TOP_TOP + return (strdup(gettext("Tessellation Flat"))); } int tessell_get_group(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) { - return MAGIC_TYPE_PAINTING; + return MAGIC_TYPE_PATTERN_PAINTING; } -int tessell_get_order(int which ATTRIBUTE_UNUSED) +int tessell_get_order(int which) { - return 800; + return 300 + which; } -char *tessell_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode) +char *tessell_get_description(magic_api * api ATTRIBUTE_UNUSED, int which, int mode ATTRIBUTE_UNUSED) { - return (strdup(gettext("Click and drag to draw a repeating tessellating pattern."))); + if (which == TOOL_TESSELL_POINTY_TOP) + return (strdup(gettext("Click and drag to draw a repeating tessellating pattern of pointy-topped hexagons."))); + else // which == TOOL_TESSELL_FLAT_TOP + return (strdup(gettext("Click and drag to draw a repeating tessellating pattern of flat-topped hexagons."))); } -static void do_tessell_circle(void *ptr, int which ATTRIBUTE_UNUSED, +static void do_tessell_circle(void *ptr, int which, SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED, int x, int y) { int xx, yy, rx, ry, sx, sy; @@ -135,10 +150,20 @@ static void do_tessell_circle(void *ptr, int which ATTRIBUTE_UNUSED, { for (rx = -REPEAT_CNT; rx <= REPEAT_CNT; rx++) { - sx = rx * tessell_width; - if (abs(ry) % 2 == 1) - sx += tessell_width / 2; - sy = ry * tessell_height; + if (which == TOOL_TESSELL_POINTY_TOP) + { + sx = rx * tessell_width; + if (abs(ry) % 2 == 1) + sx += tessell_width / 2; + sy = ry * tessell_height; + } + else // which == TOOL_TESSELL_FLAT_TOP + { + sx = rx * tessell_width; + sy = ry * tessell_height; + if (abs(rx) % 2 == 1) + sy += tessell_height / 2; + } api->putpixel(canvas, x + xx + sx, y + yy + sy, tessell_color); } @@ -149,7 +174,7 @@ static void do_tessell_circle(void *ptr, int which ATTRIBUTE_UNUSED, } void tessell_drag(magic_api * api, int which, SDL_Surface * canvas, - SDL_Surface * last ATTRIBUTE_UNUSED, int ox, int oy, int x, int y, SDL_Rect * update_rect) + SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect) { api->line((void *)api, which, canvas, last, ox, oy, x, y, 1, do_tessell_circle); @@ -161,8 +186,8 @@ void tessell_drag(magic_api * api, int which, SDL_Surface * canvas, api->playsound(tessell_snd, (x * 255) / canvas->w, 255); } -void tessell_click(magic_api * api, int which, int mode, - SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED, int x, int y, SDL_Rect * update_rect) +void tessell_click(magic_api * api, int which, int mode ATTRIBUTE_UNUSED, + SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect) { tessell_drag(api, which, canvas, last, x, y, x, y, update_rect); } @@ -193,7 +218,7 @@ int tessell_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUT } void tessell_switchin(magic_api * api ATTRIBUTE_UNUSED, - int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED) + int which, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas) { int tessell_mult; @@ -202,8 +227,16 @@ void tessell_switchin(magic_api * api ATTRIBUTE_UNUSED, else tessell_mult = canvas->h / (REPEAT_CNT + 1); - tessell_width = tessell_mult; - tessell_height = tessell_mult * SIN_60DEG; + if (which == TOOL_TESSELL_POINTY_TOP) + { + tessell_width = tessell_mult; + tessell_height = tessell_mult * SIN_60DEG; + } + else // which == TOOL_TESSELL_FLAT_TOP + { + tessell_width = tessell_mult * SIN_60DEG; + tessell_height = tessell_mult; + } } void tessell_switchout(magic_api * api ATTRIBUTE_UNUSED, @@ -217,7 +250,7 @@ int tessell_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) } -Uint8 tessell_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode) +Uint8 tessell_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED) { return 8; } diff --git a/src/org.tuxpaint.Tuxpaint.appdata.xml.in b/src/org.tuxpaint.Tuxpaint.appdata.xml.in index dc29fd3ff..7e3c2ea12 100644 --- a/src/org.tuxpaint.Tuxpaint.appdata.xml.in +++ b/src/org.tuxpaint.Tuxpaint.appdata.xml.in @@ -47,10 +47,10 @@ - +

New Fill mode: "Eraser" flood fill.

-

New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral", "Square Spiral", "Concentric Circle", "Concentric Square", and "Tessellation".

+

New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral", "Square Spiral", "Concentric Circle", "Concentric Square", and a pair of "Tessellation" tools.

New brush: Fluff (gradient).

diff --git a/src/po/ach.po b/src/po/ach.po index 84cab02dd..948c5e54f 100644 --- a/src/po/ach.po +++ b/src/po/ach.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-12-09 09:00+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3161,6 +3162,32 @@ msgstr "Dii ci iywa ladic iyi akina ne wek ilok cal kun dwoko ne igoc ma coka." msgid "Click and drag to add fur to your picture." msgstr "Dii ki iywa wek igo yoo tyen gar ikom cal mamegi." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Dii ki iywa wek igoo latero ma gitiyo ki cale me toltol." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Dii ki iywa wek igoo latero ma gitiyo ki cale me toltol." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Rangi ma gi rubu matar." diff --git a/src/po/af.po b/src/po/af.po index 3f4889844..fa7f62140 100644 --- a/src/po/af.po +++ b/src/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: af\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-19 06:38+0000\n" "Last-Translator: OdettePretorius \n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3114,6 +3115,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik en sleep om treinspore op die prent te teken." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik en sleep om herhalende patrone te teken. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik en sleep om herhalende patrone te teken. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tint" diff --git a/src/po/ak.po b/src/po/ak.po index ed0c905bf..c0eebe3e8 100644 --- a/src/po/ak.po +++ b/src/po/ak.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-10-27 10:16-0000\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3127,6 +3128,32 @@ msgstr "Kleeke na twe mauso no dane nfonyin no ɛnyɛ sɛ kyɔɔkɔ drɔɔe." msgid "Click and drag to add fur to your picture." msgstr "Kleeke na twe ma ɛnnrɔ keteke kwan no wɔ wo nfonyin no so." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Cleeke na twe na ɛndrɔɔ agyan ano a wɔ de nhoma ayɛ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Cleeke na twe na ɛndrɔɔ agyan ano a wɔ de nhoma ayɛ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Dum" diff --git a/src/po/am.po b/src/po/am.po index 87396e09c..f3715554a 100644 --- a/src/po/am.po +++ b/src/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-10 11:45+0100\n" "Last-Translator: Solomon Gizaw \n" "Language-Team: none\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3116,6 +3117,32 @@ msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አ msgid "Click and drag to add fur to your picture." msgstr "በስእሉ ላይ የባቡር ሃዲድ ለመሳል አዝራሩን ጠቅ አድርጉና ጎትት።" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ተደጋጋሚ ስርአተ ጥለት ለመሳል አዝራሩን ጠቅ አድርግ እና ጎትት።" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ተደጋጋሚ ስርአተ ጥለት ለመሳል አዝራሩን ጠቅ አድርግ እና ጎትት።" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ቅልም " diff --git a/src/po/an.po b/src/po/an.po index 1cce00a51..ad4078580 100644 --- a/src/po/an.po +++ b/src/po/an.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-29 10:04+0100\n" "Last-Translator: juanpabl \n" "Language-Team: softaragonés\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3141,6 +3142,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Fe clic y arrociega pa dibuixar vías de tren en o tuyo dibuixo." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Fe clic y arrociega pa dibuixar patrons repetitivos. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Fe clic y arrociega pa dibuixar patrons repetitivos. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tintar" diff --git a/src/po/ar.po b/src/po/ar.po index c62f4394b..e455cb370 100644 --- a/src/po/ar.po +++ b/src/po/ar.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2008-10-07 14:54+0200\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -408,7 +408,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3150,6 +3151,32 @@ msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها msgid "Click and drag to add fur to your picture." msgstr "انقر واسحب لوضع مسار من قضبان القطار علي صورتك" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw train track rails on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "انقر واسحب لوضع مسار من قضبان القطار علي صورتك" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw train track rails on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "انقر واسحب لوضع مسار من قضبان القطار علي صورتك" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "صبغة" diff --git a/src/po/as.po b/src/po/as.po index d5d58ce4a..06c2765ba 100644 --- a/src/po/as.po +++ b/src/po/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-16 23:33-0800\n" "Last-Translator: Anand Kulkarni \n" "Language-Team: none\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3178,6 +3179,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "আপোনাৰ ছবিত ৰেলপথৰ ছিৰিবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু টানক." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "পুণৰাবৃত্ত আৰ্হি অংকন কৰিবলৈ ক্লিক কৰক আৰু টানক." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "পুণৰাবৃত্ত আৰ্হি অংকন কৰিবলৈ ক্লিক কৰক আৰু টানক." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ৰঙৰ গাঢ়তা" diff --git a/src/po/ast.po b/src/po/ast.po index a13cad928..63d72d5f2 100644 --- a/src/po/ast.po +++ b/src/po/ast.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-02-16 18:38+0200\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3155,6 +3156,32 @@ msgstr "Calca y arrastra'l mur pa que la imaxe paeza fecha con tiza." msgid "Click and drag to add fur to your picture." msgstr "Calca y arrastra pa dibuxar víes de tren na imaxe." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Calca y arrastra pa dibuxar fleches feches de filos artísticos." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Calca y arrastra pa dibuxar fleches feches de filos artísticos." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tiñir" diff --git a/src/po/az.po b/src/po/az.po index 68b58a6e3..7699e8768 100644 --- a/src/po/az.po +++ b/src/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2008-02-10 19:28+0400\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -393,7 +393,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3202,6 +3203,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Şəkili işıqlandırmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Şəkili işıqlandırmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Şəkili işıqlandırmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Ton" diff --git a/src/po/be.po b/src/po/be.po index d488f7796..4bc4f5ad2 100644 --- a/src/po/be.po +++ b/src/po/be.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-10 23:09+0300\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Language-Team: none\n" @@ -399,7 +399,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3159,6 +3160,32 @@ msgstr "Націсніце і павадзіце па малюнку, каб р msgid "Click and drag to add fur to your picture." msgstr "Націсніце і пацягніце мыш, каб намаляваць чыгуначныя рэйкі." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Націсніце і пацягніце, каб намаляваць узор, які паўтараецца." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Націсніце і пацягніце, каб намаляваць узор, які паўтараецца." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Змена колеру" diff --git a/src/po/bg.po b/src/po/bg.po index c6236066a..8a65b81b9 100644 --- a/src/po/bg.po +++ b/src/po/bg.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-02-28 21:39+0200\n" "Last-Translator: Vankata453\n" "Language-Team: \n" @@ -400,7 +400,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" "Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори." @@ -3149,6 +3150,32 @@ msgstr "Кликни, за да превърнеш цялата рисунка msgid "Click and drag to add fur to your picture." msgstr "Кликни и движи мишката, за да добавиш козина към рисунката." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Кликни и движи мишката, за да нарисуваш повтарящи се шарки." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Кликни и движи мишката, за да нарисуваш повтарящи се шарки." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Окраска" diff --git a/src/po/bm.po b/src/po/bm.po index 24b15c7aa..ef4b9c96b 100644 --- a/src/po/bm.po +++ b/src/po/bm.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-09-04 17:25+0200\n" "Last-Translator: Fasokan \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3163,6 +3164,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Kilike, i ka ɲinɛnin cɛɛnɛ walasa ka arayew ɲɛgɛn i ka ja kan." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Kilike, i ka ɲinɛnin layaala ya ka dogodogonin tilennenw ci." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Kilike, i ka ɲinɛnin layaala ya ka dogodogonin tilennenw ci." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ɲɛw" diff --git a/src/po/bn.po b/src/po/bn.po index e18b4551a..31b3f7d6f 100644 --- a/src/po/bn.po +++ b/src/po/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-30 18:24+0000\n" "Last-Translator: Chris \n" "Language-Team: Bengali\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3140,6 +3141,32 @@ msgstr "ছবিটি একটি চক অঙ্কনে পরিণত msgid "Click and drag to add fur to your picture." msgstr "আপনার ছবিতে ট্রেন ট্র্যাক রেল আঁকতে ক্লিক করুন ও টানুন." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "স্ট্রিং আর্টের তৈরি তীর আঁকতে ক্লিক করুন ও টানুন." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "স্ট্রিং আর্টের তৈরি তীর আঁকতে ক্লিক করুন ও টানুন." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "রঙের আভা" diff --git a/src/po/bo.po b/src/po/bo.po index 817591e15..2c5696533 100644 --- a/src/po/bo.po +++ b/src/po/bo.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -382,7 +382,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2829,6 +2830,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "m]xon.mdvs." diff --git a/src/po/br.po b/src/po/br.po index 0fd7561d6..489582a89 100644 --- a/src/po/br.po +++ b/src/po/br.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2005-01-09 14:49+0100\n" "Last-Translator: \n" "Language-Team: none\n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3057,6 +3058,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Livaj" diff --git a/src/po/brx.po b/src/po/brx.po index 2250c6b31..fc7636e95 100644 --- a/src/po/brx.po +++ b/src/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-09-14 13:51+0530\n" "Last-Translator: \n" "Language-Team: Bodo\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3169,6 +3170,32 @@ msgstr "सावगारिखौ सक आखिनायाव सोला msgid "Click and drag to add fur to your picture." msgstr "नोंथांनि सावगारिआव रेलगारिनि लामा आखिनो थाखाय क्लिक खालाम आरो बोबो।" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "स्ट्रिं आरिमुजों बानायजानाय थिरफोरखौ आखिनो क्लिक खालाम आरो बोबो।" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "स्ट्रिं आरिमुजों बानायजानाय थिरफोरखौ आखिनो क्लिक खालाम आरो बोबो।" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "टिन्ट" diff --git a/src/po/bs.po b/src/po/bs.po index fe6f865c5..a184f9d56 100644 --- a/src/po/bs.po +++ b/src/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-11-05 04:24+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -422,7 +422,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3293,6 +3294,34 @@ msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež kredom." msgid "Click and drag to add fur to your picture." msgstr "Klikni i pomjeraj mišem da bi zatamnio sliku." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +# +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and move to draw sparkles." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klikni i pomjeraj da bi crtao iskrice." + +# +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and move to draw sparkles." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klikni i pomjeraj da bi crtao iskrice." + # #: ../../magic/src/tint.c:73 msgid "Tint" diff --git a/src/po/ca.po b/src/po/ca.po index 701b6de8f..aa658d174 100644 --- a/src/po/ca.po +++ b/src/po/ca.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint cvs 2009-06-21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-10-08 01:03+0200\n" "Last-Translator: Pere Pujal i Carabantes \n" "Language-Team: Català \n" @@ -440,7 +440,8 @@ msgstr "Nou mode d'omplir: Esborra." msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" "Noves eines màgiques: «Ben-Day», «Gira», varis ASCII art, varis Fractals, " "«Creixent», «Esprai», «Espiral» i «Espiraal Quadrada»" @@ -3136,6 +3137,32 @@ msgstr "Feu clic per transformar el dibuix en traços radials." msgid "Click and drag to add fur to your picture." msgstr "Feu clic i arrossegueu per dibuixar pelatge." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Feu clic i arrossegueu per dibuixar una sanefa." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Feu clic i arrossegueu per dibuixar una sanefa." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tenyeix" diff --git a/src/po/ca@valencia.po b/src/po/ca@valencia.po index b4c76a50d..c58de32a4 100644 --- a/src/po/ca@valencia.po +++ b/src/po/ca@valencia.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2020-03-29 23:40+0200\n" "Last-Translator: Pilar Embid Giner \n" "Language-Team: LliureX\n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3171,6 +3172,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Feu clic i arrossegueu per a dibuixar rails de tren en la imatge." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Feu clic i arrossegueu per a dibuixar una sanefa." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Feu clic i arrossegueu per a dibuixar una sanefa." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinta" diff --git a/src/po/cgg.po b/src/po/cgg.po index cb33073e7..8ed512f90 100644 --- a/src/po/cgg.po +++ b/src/po/cgg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-09-17 16:19+0200fu\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3209,6 +3210,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Imata kandi okurure kuteera obuziga bwegaari yomwika omukishushani kyawe." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Imata kandi okurure oteere enyambi eyemikono." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Imata kandi okurure oteere enyambi eyemikono." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Erangi yokuhindura erangi eyindi" diff --git a/src/po/cs.po b/src/po/cs.po index 889d8613c..7598c4a2e 100644 --- a/src/po/cs.po +++ b/src/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-07-08 13:33+0100\n" "Last-Translator: Zdeněk Chalupský \n" "Language-Team: Czech \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3166,6 +3167,30 @@ msgstr "Pohybem myši po čáře získáš vzhled čáry od křídy." msgid "Click and drag to add fur to your picture." msgstr "Kliknutím, nebo tažením nakresli vlakové koleje." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klepni a pohybuj myší - rozostříš obrázek." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klepni a pohybuj myší - rozostříš obrázek." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Obarvit" diff --git a/src/po/cy.po b/src/po/cy.po index aff545a8e..bd2883979 100644 --- a/src/po/cy.po +++ b/src/po/cy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2004-09-21 14:29+0100\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3043,6 +3044,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Clicia a symuda'r llygoden i deneuo'r llun." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Clicia a symuda'r llygoden i deneuo'r llun." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Clicia a symuda'r llygoden i deneuo'r llun." + #: ../../magic/src/tint.c:73 #, fuzzy msgid "Tint" diff --git a/src/po/da.po b/src/po/da.po index 18857e67a..d8bc2cd5f 100644 --- a/src/po/da.po +++ b/src/po/da.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-05 12:38+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -405,7 +405,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3148,6 +3149,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik og bevæg musen rundt for at tegne togspor på dit billede." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik og bevæg for at tegne gentagende mønstre." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik og bevæg for at tegne gentagende mønstre." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Farve" diff --git a/src/po/de.po b/src/po/de.po index d29194f4e..1b5fa1c4b 100644 --- a/src/po/de.po +++ b/src/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-25 21:13+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3158,6 +3159,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klicke und ziehe, um Eisenbahnschienen auf dein Bild zu malen." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klicke und ziehe die Maus, um sich wiederholende Muster zu malen." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klicke und ziehe die Maus, um sich wiederholende Muster zu malen." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Färben" diff --git a/src/po/doi.po b/src/po/doi.po index 71b599a78..293ef8f23 100644 --- a/src/po/doi.po +++ b/src/po/doi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-09-04 10:23+0530\n" "Last-Translator: \n" "Language-Team: Dogri\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3151,6 +3152,32 @@ msgstr "तस्वीरा गी चाकी ड्राइङ बना msgid "Click and drag to add fur to your picture." msgstr "अपनी तस्वीरा पर रेला दी पटड़ी चित्तरने आस्तै क्लिक करो ते माउस फेरो.." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "धागा कला कन्नै बने दे तीर चित्तरने आस्तै क्लिक करो ते खिच्चो." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "धागा कला कन्नै बने दे तीर चित्तरने आस्तै क्लिक करो ते खिच्चो." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "रंग दी परत चाढ़ो" diff --git a/src/po/el.po b/src/po/el.po index 378449974..5e6b3f7d0 100644 --- a/src/po/el.po +++ b/src/po/el.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2021-09-02 07:45+0000\n" "Last-Translator: kiolalis \n" "Language-Team: \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3211,6 +3212,32 @@ msgstr "" "Κάνε κλικ και σύρε το ποντίκι για να σχεδιάσεις ράγες διαδρομής τρένων στη " "ζωγραφιά σου." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Κάνε κλικ και σύρε για να σχεδιάσεις επαναλαμβανόμενα μοτίβα." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Κάνε κλικ και σύρε για να σχεδιάσεις επαναλαμβανόμενα μοτίβα." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Απόχρωση" diff --git a/src/po/en_AU.po b/src/po/en_AU.po index 96425c043..358989127 100644 --- a/src/po/en_AU.po +++ b/src/po/en_AU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-29 23:36+0930\n" "Last-Translator: ilox \n" "Language-Team: none\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3164,6 +3165,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Click and drag to draw train track rails on your picture." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tint" diff --git a/src/po/en_CA.po b/src/po/en_CA.po index 9e2d18389..85d4a93fe 100644 --- a/src/po/en_CA.po +++ b/src/po/en_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-07-07 12:22+0100\n" "Last-Translator: Caroline Ford \n" "Language-Team: \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3160,6 +3161,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Click and drag to draw train track rails on your picture." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tint" diff --git a/src/po/en_GB.po b/src/po/en_GB.po index e4143cca5..311cfd4d2 100644 --- a/src/po/en_GB.po +++ b/src/po/en_GB.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-30 21:17+0000\n" "Last-Translator: Caroline Ford \n" "Language-Team: none\n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3121,6 +3122,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Click and drag to draw train track rails on your picture." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Click and drag to draw repetitive patterns. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tint" diff --git a/src/po/en_ZA.po b/src/po/en_ZA.po index b0236f1d0..9e9f525dd 100644 --- a/src/po/en_ZA.po +++ b/src/po/en_ZA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2009-09-06 15:46+0100\n" "Last-Translator: Caroline Ford \n" "Language-Team: English (South African) \n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3076,6 +3077,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Click and move the mouse around to blur the picture." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Click and move the mouse around to blur the picture." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Click and move the mouse around to blur the picture." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tint" diff --git a/src/po/eo.po b/src/po/eo.po index 4e70570d8..328df78c7 100644 --- a/src/po/eo.po +++ b/src/po/eo.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-16 16:00+0000\n" "Last-Translator: Nuno MAGALHÃES \n" "Language-Team: Esperanto \n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3135,6 +3136,30 @@ msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon en kretodesegnaĵon." msgid "Click and drag to add fur to your picture." msgstr "Alklaku kaj movu la muson por desegni trajnrelojn en via bildo." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Alklaku kaj tiru por desegni ripetivajn figurojn." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Alklaku kaj tiru por desegni ripetivajn figurojn." + #: ../../magic/src/tint.c:73 #, fuzzy msgid "Tint" diff --git a/src/po/es.po b/src/po/es.po index aaa190855..0304cc7a6 100644 --- a/src/po/es.po +++ b/src/po/es.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-18 20:31-0300\n" "Last-Translator: Matías Bellone \n" "Language-Team: none\n" @@ -415,7 +415,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3161,6 +3162,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Haz click y mueve para dibujar unos rieles en tu dibujo." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Haz click y mueve el ratón para dibujar patrones repetitivos. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Haz click y mueve el ratón para dibujar patrones repetitivos. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Teñir" diff --git a/src/po/es_MX.po b/src/po/es_MX.po index 2214e4309..9e4e3eab7 100644 --- a/src/po/es_MX.po +++ b/src/po/es_MX.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2007-08-05 19:22-0400\n" "Last-Translator: Ignacio Tike \n" "Language-Team: Español \n" @@ -390,7 +390,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3141,6 +3142,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Teñir" diff --git a/src/po/et.po b/src/po/et.po index 7c4183261..7bab384a5 100644 --- a/src/po/et.po +++ b/src/po/et.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2015-03-07 13:09+0000\n" "Last-Translator: Sven Ollino \n" "Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/" @@ -401,7 +401,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3121,6 +3122,32 @@ msgstr "Tee klõps ja liiguta hiirt, et muuta pilt kriidijoonistuse sarnaseks." msgid "Click and drag to add fur to your picture." msgstr "Hoia hiirenuppu all ja liiguta, et joonistada pildile raudtee rööpaid." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Hoia hiirenuppu all ja liiguta, et teha nöörikunstist tehtud noolekesi." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Hoia hiirenuppu all ja liiguta, et teha nöörikunstist tehtud noolekesi." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Toonimine" diff --git a/src/po/eu.po b/src/po/eu.po index a7fcb4e8f..1ae79bf8b 100644 --- a/src/po/eu.po +++ b/src/po/eu.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2020-07-30 16:43+0200\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: librezale@librezale.org\n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3133,6 +3134,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik egin eta mugitu irudiaren gainean trenbidea marrazteko." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik egin eta arrastatu ereduak errepikatzeko. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik egin eta arrastatu ereduak errepikatzeko. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tindatu" diff --git a/src/po/fa.po b/src/po/fa.po index 8f390a390..6f54d6f70 100644 --- a/src/po/fa.po +++ b/src/po/fa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-11-09 21:17+0330\n" "Last-Translator: snima \n" "Language-Team: farsi \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3177,6 +3178,32 @@ msgstr ".برای سفید کردن تصویر با گچ کلیک کن و موس msgid "Click and drag to add fur to your picture." msgstr "برای ایجاد پرتوهای نور در تصویر کلیک کن و موس را بکش." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "برای ایجاد پرتوهای نور در تصویر کلیک کن و موس را بکش." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "برای ایجاد پرتوهای نور در تصویر کلیک کن و موس را بکش." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "سایه رنگ کردن" diff --git a/src/po/ff.po b/src/po/ff.po index b460d1c2e..7e8fa2476 100644 --- a/src/po/ff.po +++ b/src/po/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-03 10:35+0200\n" "Last-Translator: Ibrahima SARR \n" "Language-Team: FULAH LOCALIZATION\n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3083,6 +3084,32 @@ msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno kereewo." msgid "Click and drag to add fur to your picture." msgstr "Dobo, ndaasaa ngam natde lappi laana njoorndi e natal maa." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Dobo, ndaasaa ngam natde laañe baɗiraaɗe geese. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Dobo, ndaasaa ngam natde laañe baɗiraaɗe geese. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tentugol" diff --git a/src/po/fi.po b/src/po/fi.po index 7d62953c7..79f97fbf8 100644 --- a/src/po/fi.po +++ b/src/po/fi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2015-10-09 18:00+0200\n" "Last-Translator: inactive\n" "Language-Team: Finnish \n" @@ -403,7 +403,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3154,6 +3155,32 @@ msgstr "Muuta piirros liitupiirrokseksi painamalla hiiren painiketta." msgid "Click and drag to add fur to your picture." msgstr "Piirrä junaraiteita maalaukseesi raahaamalla hiirtä." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Napsauta ja vedä piirtääksesi toistuvia kuvioita." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Napsauta ja vedä piirtääksesi toistuvia kuvioita." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Värisävy" diff --git a/src/po/fo.po b/src/po/fo.po index b5532c619..75af1ee54 100644 --- a/src/po/fo.po +++ b/src/po/fo.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint 0.9.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2008-01-18 12:40-0000\n" "Last-Translator: Lis Gøthe í Jákupsstovu \n" "Language-Team: Faroese \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3082,6 +3083,30 @@ msgstr "Klikkja og drag músina til at umgera myndina til eina kritmynd." msgid "Click and drag to add fur to your picture." msgstr "Klikkja og drag músina til at tekna eina ljósstrálu á myndina." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klikkja og drag músina til at tekna eina ljósstrálu á myndina." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klikkja og drag músina til at tekna eina ljósstrálu á myndina." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Lita" diff --git a/src/po/fr.po b/src/po/fr.po index 7e9c3fb9f..b6786cb48 100644 --- a/src/po/fr.po +++ b/src/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-10-07 19:29+0200\n" "Last-Translator: jacques.chion@orange.fr\n" "Language-Team: \n" @@ -403,7 +403,8 @@ msgstr "Nouveau mode de remplissage : \"Gomme\" avec remplissage." msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" "Nouveaux outils Magie : \"Points Comiques\", \"Rotation\", divers arts " "\"ASCII\", divers \"Fractales\",\"Croissant\", \"Peinture en spray\", " @@ -3250,6 +3251,32 @@ msgstr "Clique pour que ton dessin soit en totalité rayé de coups de pinceau." msgid "Click and drag to add fur to your picture." msgstr "Clique et déplace la souris pour ajouter de la fourrure à ton dessin." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Clique et promène la souris pour dessiner des motifs répétitifs." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Clique et promène la souris pour dessiner des motifs répétitifs." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Colorier" diff --git a/src/po/ga.po b/src/po/ga.po index 61153515e..dd2eef255 100644 --- a/src/po/ga.po +++ b/src/po/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2015-10-09 17:38+0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -386,7 +386,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3014,6 +3015,32 @@ msgstr "Cliceáil chun gathanna scuaibe a chur ar an bpictiúr iomlán." msgid "Click and drag to add fur to your picture." msgstr "Cliceáil agus tarraing chun fionnadh a chur leis an bpictiúr." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Cliceáil agus tarraing chun patrún athfhillteach a dhearadh." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Cliceáil agus tarraing chun patrún athfhillteach a dhearadh." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Imir" diff --git a/src/po/gd.po b/src/po/gd.po index bd463abf0..0260b076c 100644 --- a/src/po/gd.po +++ b/src/po/gd.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2021-09-02 12:18-0700\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig\n" @@ -403,7 +403,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3198,6 +3199,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Briog is slaod gus rèilean rathaid-iarainn a pheantadh air an dealbh agad." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Briog is slaod gus pàtranan ath-chùrsach a pheantadh. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Briog is slaod gus pàtranan ath-chùrsach a pheantadh. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Fiamh-dhath" diff --git a/src/po/gl.po b/src/po/gl.po index 628ee605d..8f6dcbd0e 100644 --- a/src/po/gl.po +++ b/src/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2021-03-03 10:01+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Proxecto Trasno \n" @@ -407,7 +407,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3135,6 +3136,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Preme e arrastra o rato para debuxar unhas vías do tren no debuxo." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Preme e arrastra o rato para debuxar patróns repetitivos." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Preme e arrastra o rato para debuxar patróns repetitivos." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinguir" diff --git a/src/po/gos.po b/src/po/gos.po index a3e9d0619..2a2434245 100644 --- a/src/po/gos.po +++ b/src/po/gos.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2005-07-26 01:30-0800\n" "Last-Translator: Bill Kendrick \n" "Language-Team: \n" @@ -392,7 +392,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3043,6 +3044,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik en beweeg de moes um dien tijken dun te moaken." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik en beweeg de moes um dien tijken dun te moaken." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik en beweeg de moes um dien tijken dun te moaken." + #: ../../magic/src/tint.c:73 #, fuzzy msgid "Tint" diff --git a/src/po/gu.po b/src/po/gu.po index bc5e190f1..984172a77 100644 --- a/src/po/gu.po +++ b/src/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-31 11:57+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -379,7 +379,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3000,6 +3001,32 @@ msgstr "ચિત્રને ચોક ચિત્રમાં ફેરવવ msgid "Click and drag to add fur to your picture." msgstr "તમારા ચિત્રમાં રેલ્વેનાં પાટાઓ દોરવા માટે માઉસને ક્લિક કરીને ખેંચો." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ફરીથી બનતી ભાતોને દોરવા માટે માઉસને ક્લિક કરીને ખેંચો." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ફરીથી બનતી ભાતોને દોરવા માટે માઉસને ક્લિક કરીને ખેંચો." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "આછો રંગ" diff --git a/src/po/he.po b/src/po/he.po index 966e8ecb3..c3d501742 100644 --- a/src/po/he.po +++ b/src/po/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2009-05-10 21:45+0200\n" "Last-Translator: Jorge Mariano \n" "Language-Team: Hebrew \n" @@ -404,7 +404,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3131,6 +3132,32 @@ msgstr "לחצי והזיזי את העכבר להפיכת התמונה לציו msgid "Click and drag to add fur to your picture." msgstr "לחצי וגררי לציור מסילת רכבת על התמונה." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "לחצי וגררי לציור מסילת רכבת על התמונה." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "לחצי וגררי לציור מסילת רכבת על התמונה." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "גוון" diff --git a/src/po/hi.po b/src/po/hi.po index 0bf3c7cbe..98688596e 100644 --- a/src/po/hi.po +++ b/src/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-08-09 02:17+1000\n" "Last-Translator: Ashish Arora \n" "Language-Team: Hindi\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3153,6 +3154,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "तस्वीर पर ट्रेन ट्रैक बनाने के लिए क्लिक करें और खीचें|" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "पैटर्न को दोहराने के लिए क्लिक करें और खीचें|" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "पैटर्न को दोहराने के लिए क्लिक करें और खीचें|" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "आभा" diff --git a/src/po/hr.po b/src/po/hr.po index 53452bc9c..116ca628c 100644 --- a/src/po/hr.po +++ b/src/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-26 10:53+0100\n" "Last-Translator: Paulo Pavačić \n" "Language-Team: none\n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3089,6 +3090,32 @@ msgstr "Klikni i pomakni miš. Na crtežu će se izmješati boje." msgid "Click and drag to add fur to your picture." msgstr "Klikni i pomakni miš da nacrtaš tračnice na svojoj slici." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klikni i pomakni miš za crtanje ponavljajućih redoslijeda uzorka." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klikni i pomakni miš za crtanje ponavljajućih redoslijeda uzorka." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Nijansa" diff --git a/src/po/hu.po b/src/po/hu.po index 7a1cb5546..d109bc044 100644 --- a/src/po/hu.po +++ b/src/po/hu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-28 12:48+0200\n" "Last-Translator: Dr. Nagy Elemér Károly \n" "Language-Team: Hungarian \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3173,6 +3174,32 @@ msgstr "Kattints oda a rajzodon, ahol krétával szeretnél rajzolni." msgid "Click and drag to add fur to your picture." msgstr "Kattints oda a rajzodon, ahova vasúti síneket szeretnél rajzolni." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Az egér gombját lenyomva tartva ismétlődő mintát rajzolhatsz." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Az egér gombját lenyomva tartva ismétlődő mintát rajzolhatsz." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Árnyalat" diff --git a/src/po/hy.po b/src/po/hy.po index 9e075a764..ced4c4bdd 100644 --- a/src/po/hy.po +++ b/src/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-03-22 11:39+0400\n" "Last-Translator: Aram Palyan \n" "Language-Team: Armenian \n" @@ -401,7 +401,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3189,6 +3190,32 @@ msgstr "Սեղմիր և շարժիր մկնիկը, պատկերը կավիճով msgid "Click and drag to add fur to your picture." msgstr "Սեղմիր և քաշիր` նկարումդ երկաթգծեր նկարելու համար" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Սեղմիր և քաշիր կրկնվող ձևանմուշներ նկարելու համար " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Սեղմիր և քաշիր կրկնվող ձևանմուշներ նկարելու համար " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Երանգավորել" diff --git a/src/po/id.po b/src/po/id.po index 58943754d..40d3eb0a1 100644 --- a/src/po/id.po +++ b/src/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-09 04:22+0000\n" "Last-Translator: Teuku Surya \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3160,6 +3161,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Klik dan tarik untuk menggambar rel kereta api pada gambar anda." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik dan tarik untuk menggambar pola yang berulang. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik dan tarik untuk menggambar pola yang berulang. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tipis" diff --git a/src/po/is.po b/src/po/is.po index 2364944d3..5b2f44129 100644 --- a/src/po/is.po +++ b/src/po/is.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-06-28 15:44+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2982,6 +2983,32 @@ msgstr "Smelltu til að breyta allri myndinni í geislandi pensilstrokur." msgid "Click and drag to add fur to your picture." msgstr "Smelltu og dragðu músina til bæta við loðnum hárum í myndina." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Smelltu og dragðu músina til að teikna endurtekin mynstur." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Smelltu og dragðu músina til að teikna endurtekin mynstur." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Litblær" diff --git a/src/po/it.po b/src/po/it.po index 75c5b9713..6c12f36a3 100644 --- a/src/po/it.po +++ b/src/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-18 09:15+0000\n" "Last-Translator: Flavio Pastore \n" "Language-Team: Italian\n" @@ -417,7 +417,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3192,6 +3193,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Fai clic e trascina per disegnare le rotaie del treno nel tuo disegno." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Fai clic e trascina per disegnare modelli ripetitivi." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Fai clic e trascina per disegnare modelli ripetitivi." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinta" diff --git a/src/po/iu.po b/src/po/iu.po index f574651c0..a6c5fe501 100644 --- a/src/po/iu.po +++ b/src/po/iu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint Inuktitut\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-07-04 16:05-0500\n" "Last-Translator: Harvey Ginter \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3121,6 +3122,32 @@ msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑ msgid "Click and drag to add fur to your picture." msgstr "ᓇᕐᓂᓗᒍ ᐊᓪᓚᖑᐊᕐᓂᒧᑦ ᓄᓇᒃᑰᔫᑯᑖᑦ ᐊᕐᖁᑎᖏᓐᓂᒃ ᐊᑦᔨᖑᐊᕐᓂ." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ᓇᕐᓂᓗᒍ ᐅᓂᐊᑯᑖᕐᓗᒍᓗ ᐊᓪᓚᖑᐊᕐᓂᒧᑦ ᑎᒃᑯᑑᑎᓂᒃ ᑐᑭᒧᐊᑦᑐᓄᑦ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ᓇᕐᓂᓗᒍ ᐅᓂᐊᑯᑖᕐᓗᒍᓗ ᐊᓪᓚᖑᐊᕐᓂᒧᑦ ᑎᒃᑯᑑᑎᓂᒃ ᑐᑭᒧᐊᑦᑐᓄᑦ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ᑕᐅᑦᑐᖓ" diff --git a/src/po/ja.po b/src/po/ja.po index 0c61b19a6..fcd9c1f05 100644 --- a/src/po/ja.po +++ b/src/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.29\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-06-15 21:26+0900\n" "Last-Translator: Shin-ichi TOYAMA \n" "Language-Team: japanese \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "「まほう」ツールの追加: 「ディザ」「たかっけい」" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3132,6 +3133,34 @@ msgstr "クリックして えの ぜんたいを こうせんみたいに け msgid "Click and drag to add fur to your picture." msgstr "クリックしたまま マウスをうごかして けがわを かこう。" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +# msgid "Click and drag to draw train track rails on your picture." +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "クリックしたまま マウスをうごかして くりかえしもようを かこう。" + +# msgid "Click and drag to draw train track rails on your picture." +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "クリックしたまま マウスをうごかして くりかえしもようを かこう。" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "そめる" diff --git a/src/po/ka.po b/src/po/ka.po index 0b96975e2..499bc5c89 100644 --- a/src/po/ka.po +++ b/src/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-04-01 20:01+0400\n" "Last-Translator: Giasher \n" "Language-Team: Gia Shervashidze \n" @@ -393,7 +393,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3039,6 +3040,32 @@ msgstr "დაწკაპეთ მთლიანი ნახატის ს msgid "Click and drag to add fur to your picture." msgstr "დაწკაპეთ და გადაატარეთ ბეწვების დასამატებლად." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "დაწკაპეთ და გადაათრიეთ გამეორებადი ბლოკებისთვის." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "დაწკაპეთ და გადაათრიეთ გამეორებადი ბლოკებისთვის." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ელფერი" diff --git a/src/po/kab.po b/src/po/kab.po index 826dfc885..cbb038895 100644 --- a/src/po/kab.po +++ b/src/po/kab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kab\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-23 23:11+0100\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3191,6 +3192,32 @@ msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna d unuɣ s unegmirs." msgid "Click and drag to add fur to your picture." msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tirayin." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Ssed u selḥu taɣerdayt iwakken ad tsuneɣeḍ izamulen yulsen. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Ssed u selḥu taɣerdayt iwakken ad tsuneɣeḍ izamulen yulsen. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Klu" diff --git a/src/po/km.po b/src/po/km.po index c62f2afd6..88d20d3eb 100644 --- a/src/po/km.po +++ b/src/po/km.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2008-05-30 15:41+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3068,6 +3069,30 @@ msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដ msgid "Click and drag to add fur to your picture." msgstr "ចុច ហើយ​អូស ដើម្បី​គូរ​​ភ្លើងហ្វា​នៅលើ​រូបភាព​របស់​អ្នក ។" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ចុច ហើយ​អូស ដើម្បី​គូរ​​ភ្លើងហ្វា​នៅលើ​រូបភាព​របស់​អ្នក ។" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ចុច ហើយ​អូស ដើម្បី​គូរ​​ភ្លើងហ្វា​នៅលើ​រូបភាព​របស់​អ្នក ។" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ពណ៌​ព្រឿងៗ" diff --git a/src/po/kn.po b/src/po/kn.po index 61505a29a..85ac124e3 100644 --- a/src/po/kn.po +++ b/src/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-08 23:43+0630\n" "Last-Translator: Savitha \n" "Language-Team: Kannada \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3201,6 +3202,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "ನಿಮ್ಮ ಚಿತ್ರದಲ್ಲಿ ರೈಲಿನ ಹಳಿಗಳನ್ನು ಚಿತ್ರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಎಳೆಯಿರಿ." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ಪುನರಾವರ್ತಿತ ವಿನ್ಯಾಸಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಎಳೆಯಿರಿ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ಪುನರಾವರ್ತಿತ ವಿನ್ಯಾಸಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಎಳೆಯಿರಿ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ತಿಳಿಬಣ್ಣ" diff --git a/src/po/ko.po b/src/po/ko.po index fd86323a2..4e1f1b3b8 100644 --- a/src/po/ko.po +++ b/src/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2022-09-10 06:06-0400\n" "Last-Translator: Mark K. Kim \n" "Language-Team: N/A\n" @@ -384,7 +384,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2972,6 +2973,32 @@ msgstr "마우스를 누르면 그림이 만화형이 되어요." msgid "Click and drag to add fur to your picture." msgstr "마우스를 누르고 끌면 레일을 그릴 수 있어요." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "마우스를 누르고 끌면 무늬를 그릴 수 있습니다." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "마우스를 누르고 끌면 무늬를 그릴 수 있습니다." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "배합" diff --git a/src/po/kok.po b/src/po/kok.po index 2090e569d..8ea105568 100644 --- a/src/po/kok.po +++ b/src/po/kok.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: en_gb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-05-19 23:18+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3143,6 +3144,32 @@ msgstr "खडू पिंतरावणेंत पिंतुर बदल msgid "Click and drag to add fur to your picture." msgstr "तुमच्या पिंतुराचेर ट्रेन ट्रॅक रेल्स पिंतरांवक क्लिक करून ओडचें." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "स्ट्रिंग कले वरवीं केल्ले बाण पिंतरांवक क्लिक करून ओडचें." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "स्ट्रिंग कले वरवीं केल्ले बाण पिंतरांवक क्लिक करून ओडचें." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "रंगाची झांक" diff --git a/src/po/kok@roman.po b/src/po/kok@roman.po index 84c5eb61b..2c8dc4990 100644 --- a/src/po/kok@roman.po +++ b/src/po/kok@roman.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2012-05-11 18:00+0530\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3192,6 +3193,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr " rola patte pintranvk klik korun vodd " +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr " suta kolent kel'lo bann pintranvk klik korun vodd " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr " suta kolent kel'lo bann pintranvk klik korun vodd " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr " rongachi zank " diff --git a/src/po/ks.po b/src/po/ks.po index bb2f3170d..96621e6f7 100644 --- a/src/po/ks.po +++ b/src/po/ks.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2012-01-02 11:36+0530\n" "Last-Translator: \n" "Language-Team: Kashmiri-PA\n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3166,6 +3167,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr " کلِک تہٕ ڈریگ کٔریو پَنٕنہِ تصویر ہد۪ٹھ ٹرین پَٹرٕ بناونہٕ خٲطرٕ۔" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "پَنکہِ فَن ست۪ی بَنومُت ایرو بناونہٕ خٲطرٕ کٔریو کلِک تہٕ ڈریگ" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "پَنکہِ فَن ست۪ی بَنومُت ایرو بناونہٕ خٲطرٕ کٔریو کلِک تہٕ ڈریگ" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ٹِنٹ" diff --git a/src/po/ks@devanagari.po b/src/po/ks@devanagari.po index 360dd14c3..e08525fa5 100644 --- a/src/po/ks@devanagari.po +++ b/src/po/ks@devanagari.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2012-12-21 11:04+0530\n" "Last-Translator: \n" "Language-Team: Kashmiri-DV\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3181,6 +3182,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "कोलोक कॊरीव तॊ डरिग कॊरीव पननॊ तसविर पयॊठ टरिन टरिक रिलो डरा करनॊ बापत." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "कोलोक कॊरीव तॊ डरिग कॊरीव सोटरोंग आरटीक बनॊमीत तिर डरा करनो बापत." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "कोलोक कॊरीव तॊ डरिग कॊरीव सोटरोंग आरटीक बनॊमीत तिर डरा करनो बापत." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "टोंट" diff --git a/src/po/ku.po b/src/po/ku.po index 10dd38dea..a58805e85 100644 --- a/src/po/ku.po +++ b/src/po/ku.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2009-05-25 12:52+0300\n" "Last-Translator: \n" "Language-Team: en_US \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3092,6 +3093,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Berê" diff --git a/src/po/lb.po b/src/po/lb.po index 770742eb2..f9595102f 100644 --- a/src/po/lb.po +++ b/src/po/lb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-02-16 21:10+0100\n" "Last-Translator: René Brandenburger \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3150,6 +3151,32 @@ msgstr "Klick a beweeg d'Maus fir d'Bild an eng Kräidzeechnung ze verwandelen." msgid "Click and drag to add fur to your picture." msgstr "Klick a beweeg d'Maus fir Schinnen op däi Bild ze molen." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klick a beweeg d'Maus fir a Spaweck Feil ze molen" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klick a beweeg d'Maus fir a Spaweck Feil ze molen" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Fierwen" diff --git a/src/po/lg.po b/src/po/lg.po index 743aa788c..2aeccabb8 100644 --- a/src/po/lg.po +++ b/src/po/lg.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-09-21 09:37+0200\n" "Last-Translator: OLWENY San James \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3167,6 +3168,32 @@ msgstr "Nyiga era tambuza mawusi okukyusa ekifaananyi ng'ekyennoni" msgid "Click and drag to add fur to your picture." msgstr "Nyiga era walula okuteeka oluguudo lw'eggaali ku kifaanani kyo" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Nyiga era walula okukuba obusaale nga bukoleddwa mu buwuzi" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Nyiga era walula okukuba obusaale nga bukoleddwa mu buwuzi" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tabika langi" diff --git a/src/po/lt.po b/src/po/lt.po index 034138135..886de1e34 100644 --- a/src/po/lt.po +++ b/src/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint 0.9.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2004-12-10 18:11+0200\n" "Last-Translator: Gintaras Goštautas \n" "Language-Team: Lithuanian \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3077,6 +3078,30 @@ msgstr "Spustelėkite ir judinkite pelę ir piešinys taps panašus į kreida" msgid "Click and drag to add fur to your picture." msgstr "Spustelėkite ir pele pieškite šviesos spindulį." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Spustelėkite ir pele pieškite šviesos spindulį." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Spustelėkite ir pele pieškite šviesos spindulį." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Spalvinti" diff --git a/src/po/lv.po b/src/po/lv.po index df55a50e2..ce8911b4c 100644 --- a/src/po/lv.po +++ b/src/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-11 23:13-0000\n" "Last-Translator: Raivis Strogonovs \n" "Language-Team: Valoda \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3196,6 +3197,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Noklikšķini un velc peli lai zīmētu vilciena sliedes savā bildē." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Nospied peles pogu un velc, lai zīmētu atkārtojošus rakstus." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Nospied peles pogu un velc, lai zīmētu atkārtojošus rakstus." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinte" diff --git a/src/po/mai.po b/src/po/mai.po index 286df46a3..fc9ace170 100644 --- a/src/po/mai.po +++ b/src/po/mai.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-02-18 09:21+0530\n" "Last-Translator: sk \n" "Language-Team: American English \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3143,6 +3144,32 @@ msgstr "चाक ड्राइंग केँ ब्लाक टाइप msgid "Click and drag to add fur to your picture." msgstr "तस्वीर पर ट्रेन ट्रैक बनाबैक लेल क्लिक करू आओर खींचू." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "स्ट्रिंग कला सँ बनल तीर बनाबैक लेल क्लिक करू आओर खीचू." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "स्ट्रिंग कला सँ बनल तीर बनाबैक लेल क्लिक करू आओर खीचू." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "टिंट" diff --git a/src/po/mk.po b/src/po/mk.po index ebfc8589a..662624861 100644 --- a/src/po/mk.po +++ b/src/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-06-17 23:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Macedonian \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3101,6 +3102,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Кликнете и движете го глувчето наоколу за да ја замаглите сликата." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Кликнете и движете го глувчето наоколу за да ја замаглите сликата." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Кликнете и движете го глувчето наоколу за да ја замаглите сликата." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Боење" diff --git a/src/po/ml.po b/src/po/ml.po index e0869e4b1..a4943029a 100644 --- a/src/po/ml.po +++ b/src/po/ml.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-08-03 16:29+0530\n" "Last-Translator: Akhil Krishnan S \n" "Language-Team: Malayalam\n" @@ -406,7 +406,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3140,6 +3141,32 @@ msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക് msgid "Click and drag to add fur to your picture." msgstr "മൗസ് ബട്ടണ്‍ അമര്‍ത്തിവലിച്ചാല്‍ റെയില്‍വേ പാളങ്ങള്‍ വരയ്ക്കാനാവും." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ഒരേപോലുള്ള പാറ്റേൺ ലഭിക്കാൻ ക്ലിക്ക് ചെയ്ത് വലിക്കുക" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ഒരേപോലുള്ള പാറ്റേൺ ലഭിക്കാൻ ക്ലിക്ക് ചെയ്ത് വലിക്കുക" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "നിഴലിപ്പ്" diff --git a/src/po/mn.po b/src/po/mn.po index 51022bffd..a637ef9c4 100644 --- a/src/po/mn.po +++ b/src/po/mn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -373,7 +373,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2769,6 +2770,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "" diff --git a/src/po/mni.po b/src/po/mni.po index 5a4823cb8..692b09dd0 100644 --- a/src/po/mni.po +++ b/src/po/mni.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n" "Last-Translator: Hidam Dolen \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3139,6 +3140,32 @@ msgstr "লাই অদু চোক দ্রোইং অমদা ওন্ msgid "Click and drag to add fur to your picture." msgstr "অদোমগী লাইদা ত্রেইন ত্রেক রেল য়েক্নবা ক্লিক তৌরো অমসুং চিংঙো." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "স্ত্রিং আর্তনা শেম্বা তেনজৈশিং য়েক্নবা ক্লিক তৌরো অমসুং চিংঙো." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "স্ত্রিং আর্তনা শেম্বা তেনজৈশিং য়েক্নবা ক্লিক তৌরো অমসুং চিংঙো." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "তিন্ত" diff --git a/src/po/mni@meiteimayek.po b/src/po/mni@meiteimayek.po index 4e315ec32..73a25387b 100644 --- a/src/po/mni@meiteimayek.po +++ b/src/po/mni@meiteimayek.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n" "Last-Translator: Hidam Dolen \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3130,6 +3131,32 @@ msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊ msgid "Click and drag to add fur to your picture." msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯇ꯭ꯔꯦꯏꯟ ꯇ꯭ꯔꯦꯛ ꯔꯦꯜ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯃꯁꯨꯡ ꯆꯤꯡꯉꯣ." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ꯁ꯭ꯇ꯭ꯔꯤꯡ ꯑꯥꯔ꯭ꯠꯅ ꯁꯦꯝꯕ ꯇꯦꯟꯖꯩꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯃꯁꯨꯡ ꯆꯤꯡꯉꯣ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ꯁ꯭ꯇ꯭ꯔꯤꯡ ꯑꯥꯔ꯭ꯠꯅ ꯁꯦꯝꯕ ꯇꯦꯟꯖꯩꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯃꯁꯨꯡ ꯆꯤꯡꯉꯣ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ꯇꯤꯟꯠ" diff --git a/src/po/mr.po b/src/po/mr.po index afe9b2970..d7128edf9 100644 --- a/src/po/mr.po +++ b/src/po/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.21c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-03-28 12:11+0530\n" "Last-Translator: Santosh Jankiram Kshetre \n" "Language-Team: Marathi\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3176,6 +3177,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "क्लिक करा आणि रेल्वेच्या टक चित्र काढा." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "पतला करो" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "पतला करो" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "आभा" diff --git a/src/po/ms.po b/src/po/ms.po index bd131fbda..a2124059e 100644 --- a/src/po/ms.po +++ b/src/po/ms.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2015-03-07 23:30+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/" @@ -408,7 +408,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3148,6 +3149,32 @@ msgstr "Klik dan alihkan tetikus di sekeliling untuk membuat lukisan kapur." msgid "Click and drag to add fur to your picture." msgstr "Klik dan seret untuk melukis landasan keretapi di dalam gambar anda." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Klik dan seret untuk melukis anak panah yang dihasilkan dari seni tali." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Klik dan seret untuk melukis anak panah yang dihasilkan dari seni tali." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Seri Warna" diff --git a/src/po/nb.po b/src/po/nb.po index 317cd43bf..1704cc948 100644 --- a/src/po/nb.po +++ b/src/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2021-06-28 19:40+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Bokmål \n" @@ -404,7 +404,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3129,6 +3130,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Hold inne knappen og flytt rundt for å tegne jernbanelinjer." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Hold inne knappen og flytt rundt for å tegne mønster." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Hold inne knappen og flytt rundt for å tegne mønster." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Fargelegg" diff --git a/src/po/ne.po b/src/po/ne.po index 78457bc80..940b6a7f2 100644 --- a/src/po/ne.po +++ b/src/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-09 08:08+0530\n" "Last-Translator: Khagen Sarma \n" "Language-Team: none\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3164,6 +3165,32 @@ msgstr "चित्रलाई चक ड्रइङ बनाउनका msgid "Click and drag to add fur to your picture." msgstr "तपाईँको चित्रमा रेलको पटरी बनाउनका लागि क्लिक गर्नुहोस् अनि ड्रयाग गर्नुहोस्।" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "स्ट्रिङ आर्टले बनेको तीर ड्र गर्नका लागि क्लिक गर्नुहोस् अनि ड्र्याग गर्नुहोस्।" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "स्ट्रिङ आर्टले बनेको तीर ड्र गर्नका लागि क्लिक गर्नुहोस् अनि ड्र्याग गर्नुहोस्।" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "रंगाउनु" diff --git a/src/po/nl.po b/src/po/nl.po index bf9f8c146..fd45fcb00 100644 --- a/src/po/nl.po +++ b/src/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-03-30 14:41+0200\n" "Last-Translator: Willem Heppe \n" "Language-Team: Dutch \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3110,6 +3111,32 @@ msgstr "Klik om de gehele tekening te veranderen in penseelstreek stralen." msgid "Click and drag to add fur to your picture." msgstr "Klik en sleep om vacht in je tekening toe te voegen." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik en sleep om zich herhalende patronen te tekenen." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik en sleep om zich herhalende patronen te tekenen." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Kleur" diff --git a/src/po/nn.po b/src/po/nn.po index f022710d5..c0f168fe3 100644 --- a/src/po/nn.po +++ b/src/po/nn.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-06-02 13:17+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -392,7 +392,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar." #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3126,6 +3127,32 @@ msgstr "Trykk for å gjera heile teikninga om til strålar av penselstrok." msgid "Click and drag to add fur to your picture." msgstr "Hald inne knappen og flytt rundt for å teikna pels." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Hald inne knappen og flytt rundt for å teikna mønster." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Hald inne knappen og flytt rundt for å teikna mønster." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Fargelegg" diff --git a/src/po/nr.po b/src/po/nr.po index 9a3770648..ddc2640c0 100644 --- a/src/po/nr.po +++ b/src/po/nr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-10-09 20:32+0200\n" "Last-Translator: Vincent Mahlangu \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3167,6 +3168,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Umbala" diff --git a/src/po/nso.po b/src/po/nso.po index 1ff2fa7ce..b887a9197 100644 --- a/src/po/nso.po +++ b/src/po/nso.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-10-04 17:44+0200\n" "Last-Translator: Pheledi \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3259,6 +3260,34 @@ msgstr "" "Kgotla gomme o goge gore o thale mehlala ya direile tša setimela " "seswantšhong sa gago." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Kgotla gomme o goge gore o thale mesebe yeo e dirilwego ka bokgabo bja thapo." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Kgotla gomme o goge gore o thale mesebe yeo e dirilwego ka bokgabo bja thapo." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Fetoša mmala" diff --git a/src/po/oc.po b/src/po/oc.po index aa7f6cbcb..6092570a5 100644 --- a/src/po/oc.po +++ b/src/po/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2021-06-06 18:54+0200\n" "Last-Translator: \n" "Language-Team: Occitan (post 1500) \n" @@ -384,7 +384,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2829,6 +2830,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "" diff --git a/src/po/oj.po b/src/po/oj.po index 24b74b0c8..efa442130 100644 --- a/src/po/oj.po +++ b/src/po/oj.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ojibwaytuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2007-10-08 18:19-0500\n" "Last-Translator: Ed Montgomery \n" "Language-Team: Ed \n" @@ -382,7 +382,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2964,6 +2965,30 @@ msgstr "Waabizo" msgid "Click and drag to add fur to your picture." msgstr "Waabizo" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Waabizo" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Waabizo" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "" diff --git a/src/po/or.po b/src/po/or.po index fb63aeb3c..9c2305682 100644 --- a/src/po/or.po +++ b/src/po/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2012-04-05 20:08+0530\n" "Last-Translator: Ekanta \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3147,6 +3148,32 @@ msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ msgid "Click and drag to add fur to your picture." msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ଟ୍ରେନ ପଥ ଧାରଣାଗୁଡିକ ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ଡ୍ରାଗ କରନ୍ତୁ ୤ " +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ଷ୍ଟ୍ରିଙ୍ଗ କଳାରେ ତିଆରି ତୀରଗୁଡିକ ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ ଏବଂ ଡ୍ରାଗ କରନ୍ତୁ ୤ " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ଷ୍ଟ୍ରିଙ୍ଗ କଳାରେ ତିଆରି ତୀରଗୁଡିକ ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ ଏବଂ ଡ୍ରାଗ କରନ୍ତୁ ୤ " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ଈଷତ ରଙ୍ଗ" diff --git a/src/po/pa.po b/src/po/pa.po index 2f2620970..774c33cb2 100644 --- a/src/po/pa.po +++ b/src/po/pa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2022-10-13 16:28-0700\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -389,7 +389,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3013,6 +3014,32 @@ msgstr "ਪੂਰੀ ਤਸਵੀਰ ਨੂੰ ਕਾਰਟੂਨ ਵਿੱਚ msgid "Click and drag to add fur to your picture." msgstr "ਆਪਣੀ ਤਸਵੀਰ ਉੱਤੇ ਰੇਲ ਗੱਡੀ ਦੀਆਂ ਲਾਈਨਾਂ ਬਣਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ਦੁਹਰਾਏ ਜਾਣ ਵਾਲੀਆਂ ਤਰਤੀਬਾਂ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰਕੇ ਖਿੱਚੋ।" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ਦੁਹਰਾਏ ਜਾਣ ਵਾਲੀਆਂ ਤਰਤੀਬਾਂ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰਕੇ ਖਿੱਚੋ।" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ਰੰਗਤ" diff --git a/src/po/pl.po b/src/po/pl.po index a037cc4d6..140f8820e 100644 --- a/src/po/pl.po +++ b/src/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-30 18:21+0000\n" "Last-Translator: Chris \n" "Language-Team: none\n" @@ -401,7 +401,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3111,6 +3112,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Kliknij i przeciągnij aby narysować tory kolejowe." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Kliknij i przeciągnij myszką, aby narysować powtarzający się wzór." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Kliknij i przeciągnij myszką, aby narysować powtarzający się wzór." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Zabarwienie" diff --git a/src/po/pt.po b/src/po/pt.po index f8165a005..844c15f78 100644 --- a/src/po/pt.po +++ b/src/po/pt.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-10-06 17:17+0100\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" @@ -403,7 +403,8 @@ msgstr "Novo modo de preenchimento: preenchimento com \"Borracha\"." msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" "Novas ferramentas de magia: “Pontos de banda desenhada”, \"Rodar\", arte " "\"ASCII\" diversa, diversos \"Fractais\", \"Crescente\", \"Pintura em " @@ -3137,6 +3138,32 @@ msgstr "Clica para transformar o desenho inteiro em raios de pincelada." msgid "Click and drag to add fur to your picture." msgstr "Clica e arrasta para adicionar pelagem ao teu desenho." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Clica e arrasta para desenhar padrões repetitivos." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Clica e arrasta para desenhar padrões repetitivos." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tom" diff --git a/src/po/pt_BR.po b/src/po/pt_BR.po index 52f541eef..f22ec3b86 100644 --- a/src/po/pt_BR.po +++ b/src/po/pt_BR.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-06 13:01-0300\n" "Last-Translator: Fred Ulisses Maranhão \n" "Language-Team: none\n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3113,6 +3114,34 @@ msgstr "Clique e arraste para transformar a figura em um desenho de giz." msgid "Click and drag to add fur to your picture." msgstr "Clique e arraste para desenhar trilhos de trem na sua figura." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +# The space ending this sentence is correct? +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Clique e arraste para desenhar repetidamente. " + +# The space ending this sentence is correct? +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Clique e arraste para desenhar repetidamente. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Pintar" diff --git a/src/po/ro.po b/src/po/ro.po index 28f1c1850..a9d805882 100644 --- a/src/po/ro.po +++ b/src/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint 0.9.2pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2003-01-03 21:32-0500\n" "Language-Team: Romanian \n" "Language: ro\n" @@ -402,7 +402,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3220,6 +3221,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Click şi trage ouse-ul pentru a desena şine pe pictura ta." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Click și trage mausul pentru a desena șine" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Click și trage mausul pentru a desena șine" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tentă" diff --git a/src/po/ru.po b/src/po/ru.po index c9d06bcde..7a8e81385 100644 --- a/src/po/ru.po +++ b/src/po/ru.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-06-27 16:04+0300\n" "Last-Translator: Alevtina \n" "Language-Team: Basealt Translation Team\n" @@ -431,7 +431,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" "Новые магические инструменты: Узор из точек, Закрашенный многоугольник." @@ -3216,6 +3217,34 @@ msgstr "Щёлкните, чтобы превратить всю картинк msgid "Click and drag to add fur to your picture." msgstr "Щёлкните и ведите мышью по картинке, чтобы добавить на неё шерсть." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Щёлкните и ведите мышью по картинке, чтобы нарисовать повторяющиеся узоры." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Щёлкните и ведите мышью по картинке, чтобы нарисовать повторяющиеся узоры." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Смена цвета" diff --git a/src/po/rw.po b/src/po/rw.po index 3fd8073ae..54e771dd3 100644 --- a/src/po/rw.po +++ b/src/po/rw.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -406,7 +406,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3005,6 +3006,30 @@ msgstr "Na Kwimura i Imbeba Kuri i() y'Ishusho a Igishushanyo" msgid "Click and drag to add fur to your picture." msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho" + #: ../../magic/src/tint.c:73 #, fuzzy msgid "Tint" diff --git a/src/po/sa.po b/src/po/sa.po index 86056a03d..a437be9e3 100644 --- a/src/po/sa.po +++ b/src/po/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-11-19 07:03+0530\n" "Last-Translator: Aarathi Bala\n" "Language-Team: \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3129,6 +3130,32 @@ msgstr "सुधाखण्डालेख इव चित्रं परि msgid "Click and drag to add fur to your picture." msgstr "तव चित्रे धूम्रयानदण्डान् आलिखितुं क्लिक् कृत्वा कर्षय।" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "सूत्रकलया तीरान् आलिखितुं क्लिक् कृत्वा कर्षय।" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "सूत्रकलया तीरान् आलिखितुं क्लिक् कृत्वा कर्षय।" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "टिण्ट्" diff --git a/src/po/sat.po b/src/po/sat.po index 0fb8c0d43..c43bc28c2 100644 --- a/src/po/sat.po +++ b/src/po/sat.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-16 16:55+0530\n" "Last-Translator: Ganesh Murmu \n" "Language-Team: none\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3150,6 +3151,32 @@ msgstr "चोक खुड़ी गार तेयार रे चिता msgid "Click and drag to add fur to your picture." msgstr "आमाक् चिता़र रे रेलगाड़ी पांजा मेड़हेद छोड़ गार तेयार ला़गित् ओर आर ओताय मे." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr " दोपोड़हा हुना़र को गार ला़गित् ओता आर ओरपेनडरा रोङपेनडरा रोङ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr " दोपोड़हा हुना़र को गार ला़गित् ओता आर ओरपेनडरा रोङपेनडरा रोङ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "आ़डी लेकान रोङ" diff --git a/src/po/sat@olchiki.po b/src/po/sat@olchiki.po index d22ba34ee..789abb631 100644 --- a/src/po/sat@olchiki.po +++ b/src/po/sat@olchiki.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2022-02-11 18:33+0530\n" "Last-Translator: Prasanta Hembram \n" "Language-Team: \n" @@ -393,7 +393,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3124,6 +3125,32 @@ msgstr "ᱜᱚᱴᱟ ᱪᱤᱛᱟᱹᱨ ᱞᱟᱥᱮᱨ ᱞᱟᱹᱜᱤᱫ ᱚ msgid "Click and drag to add fur to your picture." msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱨᱮᱞᱜᱟᱲᱤ ᱯᱟᱸᱡᱟ ᱵᱤᱱᱫᱷᱟᱲ ᱜᱟᱨ ᱛᱮᱭᱟᱨ ᱞᱟᱹᱜᱤ ᱚᱨ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "ᱫᱚᱯᱚᱲᱦᱟᱣ ᱪᱤᱱᱦᱟᱹ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾ " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "ᱫᱚᱯᱚᱲᱦᱟᱣ ᱪᱤᱱᱦᱟᱹ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾ " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ᱴᱤᱸᱴ" diff --git a/src/po/sc.po b/src/po/sc.po index 3f9178e53..0e431d94f 100644 --- a/src/po/sc.po +++ b/src/po/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: sc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2020-10-29 00:00+0000\n" "Last-Translator: Flavia Floris \n" "Language-Team: LANGUAGE \n" @@ -393,7 +393,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3127,6 +3128,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Incarca e traga pro disinnare binàrios de ferrovia in s'immàgine." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Incarca e traga pro disinnare modellos in ripetitzione. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Incarca e traga pro disinnare modellos in ripetitzione. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tintura" diff --git a/src/po/sd.po b/src/po/sd.po index 2ac234b64..09450300a 100644 --- a/src/po/sd.po +++ b/src/po/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-01-09 14:39+0530\n" "Last-Translator: Chandrakant Dhutadmal\n" "Language-Team: Sindhi-PA\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3147,6 +3148,32 @@ msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪر msgid "Click and drag to add fur to your picture." msgstr "پنهنجي تصوير ۽ ريل جي پٽن جو نقش رچڻ لاءِ ڪلڪ ڪريو ۽ گهليو۔" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "پوئڻ جي ڪلا سان تير رچڻ لاءِ ڪلڪ ڪريو ۽ گهليو۔" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "پوئڻ جي ڪلا سان تير رچڻ لاءِ ڪلڪ ڪريو ۽ گهليو۔" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "هلڪو رنگ" diff --git a/src/po/sd@devanagari.po b/src/po/sd@devanagari.po index fcb0452bd..e8bcef8c1 100644 --- a/src/po/sd@devanagari.po +++ b/src/po/sd@devanagari.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2013-01-19 23:29+0530\n" "Last-Translator: \n" "Language-Team: Sindhi-DV\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3168,6 +3169,32 @@ msgstr "लीकुनिवारे नक़्श में तस्वीर msgid "Click and drag to add fur to your picture." msgstr "पंहिंजे तस्वीर में रेल जे पटनि जो नक्शु रचण लाइ क्लिक करियो ऐं गिहिलियो." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "पोइण जे कला सां तीर रचण लाइ क्लिक करियो ऐं गिहिलियो." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "पोइण जे कला सां तीर रचण लाइ क्लिक करियो ऐं गिहिलियो." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "हलिको रंगु" diff --git a/src/po/shs.po b/src/po/shs.po index eb196b330..562891bba 100644 --- a/src/po/shs.po +++ b/src/po/shs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.17\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2008-10-20 09:16-0700\n" "Last-Translator: Neskie Manuel \n" "Language-Team: Ubuntu Secwepemc Translators \n" "Language-Team: none\n" @@ -400,7 +400,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3159,6 +3160,32 @@ msgstr "පින්තූරය පාට කූරු මගින් ඇඳ msgid "Click and drag to add fur to your picture." msgstr "එබීමෙන් සහ ඇදගෙන යාමෙන් ඔබේ පින්තුරයට රේල් පිලි පාරක් ඇදිය හැක." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "මායිම් සඳහා මෝස්තරයක් එක් කිරීමට ක්ලික් කර ඇද ගෙන යන්න." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw string art aligned to the edges." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "මායිම් සඳහා මෝස්තරයක් එක් කිරීමට ක්ලික් කර ඇද ගෙන යන්න." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "අඩු වර්ණ" diff --git a/src/po/sk.po b/src/po/sk.po index a60ec3839..1d2bc52e9 100644 --- a/src/po/sk.po +++ b/src/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.28\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-04-10 13:48+0200\n" "Last-Translator: Jose Riha \n" "Language-Team: Slovak \n" @@ -400,7 +400,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3111,6 +3112,32 @@ msgstr "Klikni a premeň obrázok na lúče ťahov štetcom." msgid "Click and drag to add fur to your picture." msgstr "Kliknutím a ťahaním myši pridaj do obrázka kožušinu." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Kliknutím a pohybom myši môžeš kresliť opakujúce sa vzory." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Kliknutím a pohybom myši môžeš kresliť opakujúce sa vzory." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Zafarbiť" diff --git a/src/po/sl.po b/src/po/sl.po index b03697617..ca491bff1 100644 --- a/src/po/sl.po +++ b/src/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-26 21:51+0100\n" "Last-Translator: Matej Urbančič \n" "Language-Team: Slovenian GNOME Translation Team \n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3095,6 +3096,32 @@ msgstr "S klikom in premikanjem miške je mogoče risati s kredo." msgid "Click and drag to add fur to your picture." msgstr "S klikom in premikanjem miške je mogoče narisati tračnice na sliko." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "S klikom in premikanjem miške se izrisuje vzorec." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "S klikom in premikanjem miške se izrisuje vzorec." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Odtenek" diff --git a/src/po/son.po b/src/po/son.po index aff47b7f4..7fa0f4940 100644 --- a/src/po/son.po +++ b/src/po/son.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint-Songhay\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-04-20 15:29+0200\n" "Last-Translator: Chris \n" "Language-Team: Songhay Localization Team\n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3047,6 +3048,32 @@ msgstr "Naagu ka ni bii timmantaa bere k'a tee caaraykalam waynaycindiyaŋ." msgid "Click and drag to add fur to your picture." msgstr "Naagu nda nor ka haabu tonton ni biyoo ga." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Naagu nda nor ka noonekur fillanteyaŋ zeeri." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Naagu nda nor ka noonekur fillanteyaŋ zeeri." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Dawa" diff --git a/src/po/sq.po b/src/po/sq.po index c08e990d0..13061dc07 100644 --- a/src/po/sq.po +++ b/src/po/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-01-26 19:44+0200\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" @@ -402,7 +402,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "Mjeti i ri Magjik: Prodhues vizatimesh Epitrohoide dhe Hipotrohoide." #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3182,6 +3183,32 @@ msgstr "Klikoni që krejt figura juaj të shndërrohet në rreze penelatash." msgid "Click and drag to add fur to your picture." msgstr "Klikoni dhe tërhiqeni që të shtohet gëzof te vizatimi juaj." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klikoni dhe tërhiqeni që të vizatohen rregullsi të përsëritura." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klikoni dhe tërhiqeni që të vizatohen rregullsi të përsëritura." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Ngjyrosje" diff --git a/src/po/sr.po b/src/po/sr.po index ecf7ad3dd..12e6bdc24 100644 --- a/src/po/sr.po +++ b/src/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.15rc1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-12-12 00:00+0100\n" "Last-Translator: Ivana \n" "Language-Team: Serbian \n" @@ -421,7 +421,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3399,6 +3400,32 @@ msgstr "Кликни и шетај миша да би претворио сли msgid "Click and drag to add fur to your picture." msgstr "Кликни и мрдај мишем да нацрташ железничку пругу на слици." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +# +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Кликни и мрдај мишем да би замаглио слику." + +# +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Кликни и мрдај мишем да би замаглио слику." + # #: ../../magic/src/tint.c:73 msgid "Tint" diff --git a/src/po/sr@latin.po b/src/po/sr@latin.po index d9d0fb6b5..72147870f 100644 --- a/src/po/sr@latin.po +++ b/src/po/sr@latin.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.15rc1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-12-12 00:00+0100\n" "Last-Translator: Ivana \n" "Language-Team: Serbian \n" @@ -421,7 +421,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3403,6 +3404,32 @@ msgstr "Klikni i šetaj miša da bi pretvorio sliku u crtež kredom." msgid "Click and drag to add fur to your picture." msgstr "Klikni i mrdaj mišem da nacrtaš železničku prugu na slici." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +# +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klikni i mrdaj mišem da bi zamaglio sliku." + +# +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klikni i mrdaj mišem da bi zamaglio sliku." + # #: ../../magic/src/tint.c:73 msgid "Tint" diff --git a/src/po/su.po b/src/po/su.po index 3a89b7bf4..048382023 100644 --- a/src/po/su.po +++ b/src/po/su.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-05-27 06:24+0200\n" "Last-Translator: kumincir \n" "Language-Team: LANGUAGE \n" @@ -387,7 +387,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2932,6 +2933,30 @@ msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." msgid "Click and drag to add fur to your picture." msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "" diff --git a/src/po/sv.po b/src/po/sv.po index c8d472d01..64b5f361a 100644 --- a/src/po/sv.po +++ b/src/po/sv.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2017-12-17 22:48+0100\n" "Last-Translator: Sebastian Rasmussen \n" "Language-Team: Svenska \n" @@ -398,7 +398,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3111,6 +3112,32 @@ msgstr "Klicka och dra med musen för att omvandla bilden till kritteckning." msgid "Click and drag to add fur to your picture." msgstr "Klicka och dra för att rita tågräls på bilden." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Klicka och dra för att rita repetitiva mönster. " + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Klicka och dra för att rita repetitiva mönster. " + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tona" diff --git a/src/po/sw.po b/src/po/sw.po index 5911f9495..754f9e477 100644 --- a/src/po/sw.po +++ b/src/po/sw.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2010-11-04 23:59+0200\n" "Last-Translator: Emanuel Feruzi \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3151,6 +3152,32 @@ msgstr "Bofya na sogea kipanya kuchua picha na chaki." msgid "Click and drag to add fur to your picture." msgstr "Bofya na kokota kipanya kuchora reli ya treni kwenye picha yako." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Bofya na kokota kichora mishale iliyo na maneno." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Bofya na kokota kichora mishale iliyo na maneno." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Kivuli cha rangi" diff --git a/src/po/ta.po b/src/po/ta.po index e70f551bd..26939e407 100644 --- a/src/po/ta.po +++ b/src/po/ta.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2009-01-18 00:06+0530\n" "Last-Translator: ravishankar \n" "Language-Team: A. Ravishankar \n" @@ -392,7 +392,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3141,6 +3142,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "சொடுக்கி இழுத்தால், படத்தில் தொடர்வண்டி இருப்புப் பாதைகளை வரையலாம்." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw train track rails on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "சொடுக்கி இழுத்தால், படத்தில் தொடர்வண்டி இருப்புப் பாதைகளை வரையலாம்." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw train track rails on your picture." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "சொடுக்கி இழுத்தால், படத்தில் தொடர்வண்டி இருப்புப் பாதைகளை வரையலாம்." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "சாயல்" diff --git a/src/po/te.po b/src/po/te.po index 4f5fbaba7..7d6e1cd33 100644 --- a/src/po/te.po +++ b/src/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-01-07 15:08+0530\n" "Last-Translator: saikumar \n" "Language-Team: Telugu \n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3135,6 +3136,30 @@ msgstr "చిత్రమును శీమ సున్నము తో గ msgid "Click and drag to add fur to your picture." msgstr "రైలు పట్టాలు చిత్రించడానికి క్లిక్ చేసే లాగండి." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "చిత్రానికి మఱక వేయడానికి క్లిక్ చేసి దాని చుట్టూ జరపండి" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "చిత్రానికి మఱక వేయడానికి క్లిక్ చేసి దాని చుట్టూ జరపండి" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "లేత చాయ" diff --git a/src/po/th.po b/src/po/th.po index 1019b6f73..21261dd3e 100644 --- a/src/po/th.po +++ b/src/po/th.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2015-03-09 11:22+0000\n" "Last-Translator: Nudjaree \n" "Language-Team: Thai (http://www.transifex.com/projects/p/doudoulinux/" @@ -402,7 +402,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3085,6 +3086,30 @@ msgstr "คลิกแล้วลากเมาส์ไปมาเพื่ msgid "Click and drag to add fur to your picture." msgstr "คลิกและลากเพื่อวาดรางรถไฟบนรูปภาพ." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "คลิกและลากเพื่อวาดลูกศรให้เป็นเส้นศิลปะ." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "คลิกและลากเพื่อวาดลูกศรให้เป็นเส้นศิลปะ." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ทาสีจาง" diff --git a/src/po/tl.po b/src/po/tl.po index 791395681..71d42dd82 100644 --- a/src/po/tl.po +++ b/src/po/tl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -382,7 +382,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2846,6 +2847,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Bahagyang Kulay" diff --git a/src/po/tlh.po b/src/po/tlh.po index a0c13c41a..27742333c 100644 --- a/src/po/tlh.po +++ b/src/po/tlh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2004-08-16 23:14-0800\n" "Last-Translator: Bill Kendrick \n" "Language-Team: Bill Kendrick \n" @@ -384,7 +384,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2820,6 +2821,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + # thin #: ../../magic/src/tint.c:73 #, fuzzy diff --git a/src/po/tr.po b/src/po/tr.po index 017db5331..c2522c33b 100644 --- a/src/po/tr.po +++ b/src/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2012-01-02 22:41+0200\n" "Last-Translator: gvhı \n" "Language-Team: Turkish \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3202,6 +3203,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Resminizde tren rayı yapmak için fareyi tıklayın ve sürükleyin." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Resmi bulanıklaştırmak için tıkla ve fareyi etrafta gezdir." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Resmi bulanıklaştırmak için tıkla ve fareyi etrafta gezdir." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tonla" diff --git a/src/po/tuxpaint.pot b/src/po/tuxpaint.pot index 16152fff8..7854b55a3 100644 --- a/src/po/tuxpaint.pot +++ b/src/po/tuxpaint.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -373,7 +373,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2769,6 +2770,28 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "" diff --git a/src/po/tw.po b/src/po/tw.po index 8ccf97eac..56442a43b 100644 --- a/src/po/tw.po +++ b/src/po/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2007-04-26 15:45+0200\n" "Last-Translator: Joana Portia Antwi-Danso \n" "MIME-Version: 1.0\n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3052,6 +3053,30 @@ msgstr "Fa akura no fa mfoni no so ma no nyɛ sɛ hyirew." msgid "Click and drag to add fur to your picture." msgstr "Mia so na fa akura no to mfoni no so ma no nyɛ wisiwisi." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Mia so na fa akura no to mfoni no so ma no nyɛ wisiwisi." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Mia so na fa akura no to mfoni no so ma no nyɛ wisiwisi." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Dumm" diff --git a/src/po/uk.po b/src/po/uk.po index f7f5ff739..70695a245 100644 --- a/src/po/uk.po +++ b/src/po/uk.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.23 uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-03-29 19:54+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -402,7 +402,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3232,6 +3233,36 @@ msgstr "" "Натисніть кнопку миші і перетягніть вказівник, щоб додати шерстяний " "візерунок на ваш малюнок." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Щоб намалювати повторювані візерунки, натисніть кнопку миші і перетягніть " +"вказівник." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Щоб намалювати повторювані візерунки, натисніть кнопку миші і перетягніть " +"вказівник." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Барва" diff --git a/src/po/ur.po b/src/po/ur.po index 01da9ec64..50835a007 100644 --- a/src/po/ur.po +++ b/src/po/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-10-30 15:34+0530\n" "Last-Translator: Chandrakant Dhutadmal\n" "Language-Team: Urdu\n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3198,6 +3199,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "تصویر پر ٹرین ٹیك بنانے كے لئے كلك كریں اور كھینچے۔" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "اسٹرینگ آرٹ سے بنے آرو ڈرا كرنے كے لئے كلك اور ڈریگ كریں۔" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "اسٹرینگ آرٹ سے بنے آرو ڈرا كرنے كے لئے كلك اور ڈریگ كریں۔" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "ٹنٹ" diff --git a/src/po/ve.po b/src/po/ve.po index a7530295a..5417a9556 100644 --- a/src/po/ve.po +++ b/src/po/ve.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-09-21 20:04+0200\n" "Last-Translator: Shumani Mercy Ṋevhulaudzi \n" "Language-Team: LANGUAGE \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3155,6 +3156,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Kiḽikani ni sudzuluse mausu u mona u ita uri tshifanyiso tshi si vhonale." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Kiḽikani ni sudzuluse mausu u mona u ita uri tshifanyiso tshi si vhonale." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Kiḽikani ni sudzuluse mausu u mona u ita uri tshifanyiso tshi si vhonale." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Muvhala" diff --git a/src/po/vec.po b/src/po/vec.po index c88f696e0..e9addff37 100644 --- a/src/po/vec.po +++ b/src/po/vec.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-18 07:59+0100\n" "Last-Translator: el Galepin \n" "Language-Team: none\n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3141,6 +3142,32 @@ msgstr "Clica e strasina so 'l dixegno par farla cofà un dixegno a geseto." msgid "Click and drag to add fur to your picture." msgstr "Clica e strasina par dixegnar sine de i trèni so 'l to dixegno." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Clica e strasina par dixegnar decorasion ripeteste." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Clica e strasina par dixegnar decorasion ripeteste." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinta" diff --git a/src/po/vi.po b/src/po/vi.po index 15527df70..29b3d4ccf 100644 --- a/src/po/vi.po +++ b/src/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint-0.9.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2024-07-26 00:51-0700\n" "Last-Translator: Cas Pascal \n" "Language-Team: Vietnamese \n" @@ -394,7 +394,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2913,6 +2914,32 @@ msgstr "Nhấn chuột để biến toàn bộ tranh thành các nét cọ tia." msgid "Click and drag to add fur to your picture." msgstr "Nhấn và kéo chuột để vẽ lông lên tranh." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Nhấn và kéo chuột để vẽ các hoạ tiết lặp lại." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Nhấn và kéo chuột để vẽ các hoạ tiết lặp lại." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Nhuốm" diff --git a/src/po/wa.po b/src/po/wa.po index 0865c8727..1db43786d 100644 --- a/src/po/wa.po +++ b/src/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.17\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2007-08-30 18:24+0200\n" "Last-Translator: Pablo Saratxaga \n" "Language-Team: Walloon \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3120,6 +3121,32 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Clitchîz et s' bodjîz l' sori po mete des bokets d' l' imådje pus féns." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Clitchîz et s' bodjîz l' sori po mete des bokets d' l' imådje pus féns." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Clitchîz et s' bodjîz l' sori po mete des bokets d' l' imådje pus féns." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Tinte" diff --git a/src/po/wo.po b/src/po/wo.po index 23e4fbbb3..8ac5ea6b3 100644 --- a/src/po/wo.po +++ b/src/po/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-08-09 13:24-0000\n" "Last-Translator: Haby Diallo \n" "Language-Team: \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3135,6 +3136,32 @@ msgstr "Bëssël te jalale ak jinax bi ngir sopi natal bi ak kare." msgid "Click and drag to add fur to your picture." msgstr "Bëssël tediri ngir rëdë ay rayu oto ray ci sa natal bi." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Bëssël te nga diri ngir rëd ak melo yiy ñëwat." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Bëssël te nga diri ngir rëd ak melo yiy ñëwat." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Pentur" diff --git a/src/po/xh.po b/src/po/xh.po index 49be1b004..2f1b58a86 100644 --- a/src/po/xh.po +++ b/src/po/xh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2006-09-22 01:42+0200\n" "Last-Translator: Dwayne Bailey \n" "Language-Team: LANGUAGE \n" @@ -395,7 +395,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3078,6 +3079,30 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Nqomfa ushenxashenxise impuku ukuze udyobhe umfanekiso." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Nqomfa ushenxashenxise impuku ukuze udyobhe umfanekiso." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Nqomfa ushenxashenxise impuku ukuze udyobhe umfanekiso." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Krweca ngombala" diff --git a/src/po/zam.po b/src/po/zam.po index 2ecd78629..be51f6388 100644 --- a/src/po/zam.po +++ b/src/po/zam.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-08-08 12:35+0200\n" "Last-Translator: Rodrigo Perez \n" "Language-Team: \n" @@ -396,7 +396,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3112,6 +3113,32 @@ msgstr "" msgid "Click and drag to add fur to your picture." msgstr "Gaás ha neér kuin naá paar toób luú diíf beél tií loó mon naá luú." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "Gash mdin xha toób luú diíf beél tií loó moón naá luú." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "Gash mdin xha toób luú diíf beél tií loó moón naá luú." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Kuúy" diff --git a/src/po/zh_CN.po b/src/po/zh_CN.po index 3b8df0032..22ae779cb 100644 --- a/src/po/zh_CN.po +++ b/src/po/zh_CN.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2023-04-07 09:13+0800\n" "Last-Translator: hackergene \n" "Language-Team: hackergene \n" @@ -389,7 +389,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -2975,6 +2976,32 @@ msgstr "单击可将整个图片转换为笔触光线。" msgid "Click and drag to add fur to your picture." msgstr "单击然后移动鼠标在画面上画出火车铁路。" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "点击和拖拽来重复图样。" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "点击和拖拽来重复图样。" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "滤镜处理" diff --git a/src/po/zh_TW.po b/src/po/zh_TW.po index a67dbf173..b3620862e 100644 --- a/src/po/zh_TW.po +++ b/src/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2014-06-24 14:46+0800\n" "Last-Translator: Song Huang \n" "Language-Team: Chinese (traditional) \n" @@ -460,7 +460,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3324,6 +3325,32 @@ msgstr "按著並移動滑鼠來產生粉筆的痕跡。" msgid "Click and drag to add fur to your picture." msgstr "按著並移動滑鼠畫一段鐵軌到你的圖上。" +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "按著並移動滑鼠來畫出重複的鏤空樣式。" + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw repetitive patterns. " +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "按著並移動滑鼠來畫出重複的鏤空樣式。" + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "著色" diff --git a/src/po/zu.po b/src/po/zu.po index 97cbed88a..65e192eb9 100644 --- a/src/po/zu.po +++ b/src/po/zu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 22:44-0700\n" +"POT-Creation-Date: 2024-10-09 19:25-0700\n" "PO-Revision-Date: 2011-02-07 12:30+0200\n" "Last-Translator: sipho \n" "Language-Team: SIpho\n" @@ -397,7 +397,8 @@ msgstr "" msgid "" "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", " -"\"Concentric Circle\", and \"Concentric Square\"." +"\"Concentric Circle\", \"Concentric Square\", and a pair of \"Tessellation\" " +"tools." msgstr "" #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 @@ -3263,6 +3264,36 @@ msgid "Click and drag to add fur to your picture." msgstr "" "Chofoza bese uyadonsa ukuze udwebe izindlela zesitimela esithombeni sakho." +#: ../../magic/src/tessell.c:114 +msgid "Tessellation Pointy" +msgstr "" + +#. which == TOOL_TESSELL_TOP_TOP +#: ../../magic/src/tessell.c:116 +msgid "Tessellation Flat" +msgstr "" + +#: ../../magic/src/tessell.c:132 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of pointy-topped " +"hexagons." +msgstr "" +"Chofoza bese uyadonsa ukuze udwebe imicibisholo eyenziwe ngochungechunge " +"lobuciko." + +#. which == TOOL_TESSELL_FLAT_TOP +#: ../../magic/src/tessell.c:134 +#, fuzzy +#| msgid "Click and drag to draw arrows made of string art." +msgid "" +"Click and drag to draw a repeating tessellating pattern of flat-topped " +"hexagons." +msgstr "" +"Chofoza bese uyadonsa ukuze udwebe imicibisholo eyenziwe ngochungechunge " +"lobuciko." + #: ../../magic/src/tint.c:73 msgid "Tint" msgstr "Umbadlana"