"Tessellation": Two variations; add icon; move...
... to pattern painting group
This commit is contained in:
parent
881ea9a3c1
commit
7ccd3aca7f
135 changed files with 3781 additions and 289 deletions
|
|
@ -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"
|
||||
<https://freesound.org/people/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 <bill@newbreedsoftware.com>
|
||||
+ TODO Move to proper section
|
||||
+ TODO Add icon
|
||||
+ TODO Add sound effect
|
||||
+ TODO Documentation
|
||||
|
||||
|
|
|
|||
BIN
magic/icons/tessellation-flat.png
Normal file
BIN
magic/icons/tessellation-flat.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 566 B |
BIN
magic/icons/tessellation-pointy.png
Normal file
BIN
magic/icons/tessellation-pointy.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 722 B |
|
|
@ -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 <stdio.h>
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,10 +47,10 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.9.34" date="2024-10-08">
|
||||
<release version="0.9.34" date="2024-10-09">
|
||||
<description>
|
||||
<p>New Fill mode: "Eraser" flood fill.</p>
|
||||
<p>New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral", "Square Spiral", "Concentric Circle", "Concentric Square", and "Tessellation".</p>
|
||||
<p>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.</p>
|
||||
<p>New brush: Fluff (gradient).</p>
|
||||
</description>
|
||||
</release>
|
||||
|
|
|
|||
|
|
@ -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."
|
||||
|
|
|
|||
31
src/po/af.po
31
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 <odettepret@gmail.com>\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"
|
||||
|
|
|
|||
31
src/po/ak.po
31
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"
|
||||
|
|
|
|||
31
src/po/am.po
31
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 <solohavi@yahoo.com>\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 "ቅልም "
|
||||
|
|
|
|||
31
src/po/an.po
31
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 <jpmart[arroba]unizar.es>\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"
|
||||
|
|
|
|||
31
src/po/ar.po
31
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 "صبغة"
|
||||
|
|
|
|||
31
src/po/as.po
31
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 <kulkarni1016@yahoo.co.in>\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 "ৰঙৰ গাঢ়তা"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
31
src/po/az.po
31
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"
|
||||
|
|
|
|||
31
src/po/be.po
31
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 "Змена колеру"
|
||||
|
|
|
|||
31
src/po/bg.po
31
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 "Окраска"
|
||||
|
|
|
|||
31
src/po/bm.po
31
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 <konate20032001@yahoo.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
31
src/po/bn.po
31
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 <cjl@sugarlabs.org>\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 "রঙের আভা"
|
||||
|
|
|
|||
27
src/po/bo.po
27
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."
|
||||
|
|
|
|||
29
src/po/br.po
29
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"
|
||||
|
|
|
|||
|
|
@ -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 "टिन्ट"
|
||||
|
|
|
|||
33
src/po/bs.po
33
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ć <Unknown>\n"
|
||||
"Language-Team: Bosnian <bs@li.org>\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"
|
||||
|
|
|
|||
31
src/po/ca.po
31
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 <perepujal@gmail.com>\n"
|
||||
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\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"
|
||||
|
|
|
|||
|
|
@ -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 <embid_mar@gva.es>\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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
29
src/po/cs.po
29
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ý <chalzd@gmail.com>\n"
|
||||
"Language-Team: Czech <cs@li.org>\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"
|
||||
|
|
|
|||
29
src/po/cy.po
29
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"
|
||||
|
|
|
|||
31
src/po/da.po
31
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 <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\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"
|
||||
|
|
|
|||
31
src/po/de.po
31
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 <hwansing@mailbox.org>\n"
|
||||
"Language-Team: Debian German <debian-l10n-german@lists.debian.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
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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: <b>\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 "रंग दी परत चाढ़ो"
|
||||
|
|
|
|||
31
src/po/el.po
31
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 <kiolalis@gmail.com>\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 "Απόχρωση"
|
||||
|
|
|
|||
|
|
@ -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 <ilox11@gmail.com>\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"
|
||||
|
|
|
|||
|
|
@ -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 <caroline.ford.work@googlemail.com>\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"
|
||||
|
|
|
|||
|
|
@ -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 <caroline.ford.work@googlemail.com>\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"
|
||||
|
|
|
|||
|
|
@ -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 <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: English (South African) <en_za@li.org>\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"
|
||||
|
|
|
|||
29
src/po/eo.po
29
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 <nunomagalhaes@eu.ipp.pt>\n"
|
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\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"
|
||||
|
|
|
|||
31
src/po/es.po
31
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 <matiasbellone+debian@gmail.com>\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"
|
||||
|
|
|
|||
|
|
@ -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 <itike17@yahoo.com>\n"
|
||||
"Language-Team: Español <ggabriel@internet.com.uy>\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"
|
||||
|
|
|
|||
31
src/po/et.po
31
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 <sven.ollino@gmail.com>\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"
|
||||
|
|
|
|||
31
src/po/eu.po
31
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 <alexgabi@irakasle.net>\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"
|
||||
|
|
|
|||
31
src/po/fa.po
31
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 <unix.nima@gmail.com>\n"
|
||||
"Language-Team: farsi <farinaz.hedayat@gmail.com>\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 "سایه رنگ کردن"
|
||||
|
|
|
|||
31
src/po/ff.po
31
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 <ibrahima.sarr@pulaagu.com>\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"
|
||||
|
|
|
|||
31
src/po/fi.po
31
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 <translation-team-fi@lists.sourceforge.net>\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"
|
||||
|
|
|
|||
29
src/po/fo.po
29
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 <morshus@morshus.com>\n"
|
||||
"Language-Team: Faroese <morshus@morshus.com>\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"
|
||||
|
|
|
|||
31
src/po/fr.po
31
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: <fr@li.org>\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"
|
||||
|
|
|
|||
31
src/po/ga.po
31
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 <kscanne@gmail.com>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\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"
|
||||
|
|
|
|||
31
src/po/gd.po
31
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 <fios@foramnagaidhlig.net>\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"
|
||||
|
|
|
|||
31
src/po/gl.po
31
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 <mbouzada@gmail.com>\n"
|
||||
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\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"
|
||||
|
|
|
|||
|
|
@ -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 <bill@newbreedsoftware.com>\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"
|
||||
|
|
|
|||
31
src/po/gu.po
31
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 <kartik.mistry@gmail.com>\n"
|
||||
"Language-Team: Gujarati <team@utkarsh.org>\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 "આછો રંગ"
|
||||
|
|
|
|||
31
src/po/he.po
31
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 <jmariano@ymail.com>\n"
|
||||
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\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 "גוון"
|
||||
|
|
|
|||
31
src/po/hi.po
31
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 <ashish.arora13@gmail.com>\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 "आभा"
|
||||
|
|
|
|||
31
src/po/hr.po
31
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ć <pavacic.p@gmail.com>\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"
|
||||
|
|
|
|||
31
src/po/hu.po
31
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 <eknagy@omikk.bme.hu>\n"
|
||||
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\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"
|
||||
|
|
|
|||
31
src/po/hy.po
31
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 <ararat.info@gmail.com>\n"
|
||||
"Language-Team: Armenian <ararat.info@gmail.com>\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 "Երանգավորել"
|
||||
|
|
|
|||
31
src/po/id.po
31
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 <tsuryafajri@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
31
src/po/is.po
31
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 <sv1@fellsnet.is>\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"
|
||||
|
|
|
|||
31
src/po/it.po
31
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 <ironbishop@fsfe.org>\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"
|
||||
|
|
|
|||
31
src/po/iu.po
31
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 <harveyginter@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <harveyginter@gmail.com>\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 "ᑕᐅᑦᑐᖓ"
|
||||
|
|
|
|||
33
src/po/ja.po
33
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 <dolphin6k@wmail.plala.or.jp>\n"
|
||||
"Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\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 "そめる"
|
||||
|
|
|
|||
31
src/po/ka.po
31
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 <giasher@gmail.com>\n"
|
||||
"Language-Team: Gia Shervashidze <giasher@gmail.com>\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 "ელფერი"
|
||||
|
|
|
|||
|
|
@ -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 <yacine_tizi2003@yahoo.fr>\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"
|
||||
|
|
|
|||
29
src/po/km.po
29
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 <khoemsokhem@khmeros.info>\n"
|
||||
"Language-Team: Khmer <support@khmeros.info>\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 "ពណ៌ព្រឿងៗ"
|
||||
|
|
|
|||
31
src/po/kn.po
31
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 <savithasprasad@yahoo.com>\n"
|
||||
"Language-Team: Kannada <kde-i18n-doc@kde.org>\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 "ತಿಳಿಬಣ್ಣ"
|
||||
|
|
|
|||
31
src/po/ko.po
31
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 <markuskimius@gmail.com>\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 "배합"
|
||||
|
|
|
|||
|
|
@ -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 "रंगाची झांक"
|
||||
|
|
|
|||
|
|
@ -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 <LL@li.org>\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 "
|
||||
|
|
|
|||
31
src/po/ks.po
31
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 "ٹِنٹ"
|
||||
|
|
|
|||
|
|
@ -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 "टोंट"
|
||||
|
|
|
|||
29
src/po/ku.po
29
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 <kde-i18n-doc@kde.org>\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ê"
|
||||
|
|
|
|||
31
src/po/lb.po
31
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 <rene@brandenburger.lu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
31
src/po/lg.po
31
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 <sjolweny85@yahoo.co.uk>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
29
src/po/lt.po
29
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 <gintaras@nes.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konf.lt>\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"
|
||||
|
|
|
|||
31
src/po/lv.po
31
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 <raivis.strogonovs@gmail.com>\n"
|
||||
"Language-Team: Valoda <raivucis@gmail.com>\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"
|
||||
|
|
|
|||
|
|
@ -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 <sk>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.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
|
||||
|
|
@ -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 "टिंट"
|
||||
|
|
|
|||
29
src/po/mk.po
29
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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Macedonian <mk@li.org>\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 "Боење"
|
||||
|
|
|
|||
31
src/po/ml.po
31
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 <akhilkrishnans@gmail.com>\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 "നിഴലിപ്പ്"
|
||||
|
|
|
|||
27
src/po/mn.po
27
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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
|
|
|
|||
|
|
@ -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 <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 "তিন্ত"
|
||||
|
|
|
|||
|
|
@ -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 <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 "ꯇꯤꯟꯠ"
|
||||
|
|
|
|||
29
src/po/mr.po
29
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 <quicklearning@rediffmail.com>\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 "आभा"
|
||||
|
|
|
|||
31
src/po/ms.po
31
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 <abuyop@gmail.com>\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"
|
||||
|
|
|
|||
31
src/po/nb.po
31
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 <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\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"
|
||||
|
|
|
|||
31
src/po/ne.po
31
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 <khagen.sharma@gmail.com>\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 "रंगाउनु"
|
||||
|
|
|
|||
31
src/po/nl.po
31
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 <heppew@yahoo.com>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\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"
|
||||
|
|
|
|||
31
src/po/nn.po
31
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 <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\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"
|
||||
|
|
|
|||
31
src/po/nr.po
31
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 <vmahlangu@parliament.gov.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
|
|
@ -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 <pheledi@mosekolatranslation.co.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
|
|
|||
27
src/po/oc.po
27
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) <oc@li.org>\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 ""
|
||||
|
|
|
|||
29
src/po/oj.po
29
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 <edm@rocketmail.com>\n"
|
||||
"Language-Team: Ed <edm@rocketmail.com>\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 ""
|
||||
|
|
|
|||
31
src/po/or.po
31
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 <ekanta@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 "ଈଷତ ରଙ୍ଗ"
|
||||
|
|
|
|||
31
src/po/pa.po
31
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 <aalam@satluj.org>\n"
|
||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\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 "ਰੰਗਤ"
|
||||
|
|
|
|||
31
src/po/pl.po
31
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 <cjl@sugarlabs.org>\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"
|
||||
|
|
|
|||
31
src/po/pt.po
31
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 <hugokarvalho@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\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"
|
||||
|
|
|
|||
|
|
@ -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 <fred.maranhao@gmail.com>\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"
|
||||
|
|
|
|||
31
src/po/ro.po
31
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 <ro@li.org>\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ă"
|
||||
|
|
|
|||
33
src/po/ru.po
33
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 <karashokovaaa@basealt.ru>\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 "Смена цвета"
|
||||
|
|
|
|||
29
src/po/rw.po
29
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 <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\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"
|
||||
|
|
|
|||
31
src/po/sa.po
31
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 "टिण्ट्"
|
||||
|
|
|
|||
|
|
@ -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 <murmu.ganesh@gmail.com>\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 "आ़डी लेकान रोङ"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue