WIP Concentric Circle & Square magic tools

This commit is contained in:
Bill Kendrick 2024-10-07 22:45:11 -07:00
parent 244ab1d6f2
commit d98ad2b4cf
134 changed files with 3649 additions and 948 deletions

View file

@ -6,7 +6,7 @@ Copyright (c) 2002-2024
Various contributors (see below, and CHANGES.txt) Various contributors (see below, and CHANGES.txt)
https://tuxpaint.org/ https://tuxpaint.org/
June 17, 2002 - October 4, 2024 June 17, 2002 - October 7, 2024
* Design and Coding: * Design and Coding:
@ -255,6 +255,9 @@ June 17, 2002 - October 4, 2024
Creative Commons Attribution 4.0 (CC BY 4.0) by Luke Sharples Creative Commons Attribution 4.0 (CC BY 4.0) by Luke Sharples
<https://freesound.org/people/LukeSharples/> <https://freesound.org/people/LukeSharples/>
"Concentric Circle" & "Concentric Square" magic tools
by Bill Kendrick <bill@newbreedsoftware.com>
Bloom magic tool Bloom magic tool
by Bill Kendrick <bill@newbreedsoftware.com> by Bill Kendrick <bill@newbreedsoftware.com>

View file

@ -85,6 +85,12 @@ https://tuxpaint.org/
<https://freesound.org/people/LukeSharples/> <https://freesound.org/people/LukeSharples/>
+ Closes https://sourceforge.net/p/tuxpaint/feature-requests/261/ + Closes https://sourceforge.net/p/tuxpaint/feature-requests/261/
* WIP "Concentric Circle" and "Concentric Square": Draw concentric shapes.
+ Code by Bill Kendrick <bill@newbreedsoftware.com>
+ TODO Icons
+ TODO Sound effects
+ TODO Documentation
* Magic Tool Improvements: * Magic Tool Improvements:
------------------------ ------------------------
* Sound pause/resume functions added to API * Sound pause/resume functions added to API

View file

@ -1,10 +1,9 @@
/* /*
spiral.c spiral.c
Draws a spiral shape centered around the mouse click point. Draws a spiral shape, or a concentric shape -- circular or square --
centered around the mouse click point. Size setting changes thickness
FIXME: This tool could be altered to draw concentric and spacing.
circles and squares. -bjk 2024.10.04
Tux Paint - A simple drawing program for children. Tux Paint - A simple drawing program for children.
@ -25,7 +24,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
Last updated: October 3, 2024 Last updated: October 7, 2024
*/ */
#include <stdio.h> #include <stdio.h>
@ -37,27 +36,37 @@
enum { enum {
TOOL_SPIRAL_CIRCLE, TOOL_SPIRAL_CIRCLE,
TOOL_SPIRAL_SQUARE, TOOL_SPIRAL_SQUARE,
TOOL_CONCENTRIC_CIRCLE,
TOOL_CONCENTRIC_SQUARE,
NUM_TOOLS NUM_TOOLS
}; };
const char * spiral_names[NUM_TOOLS] = { const char * spiral_names[NUM_TOOLS] = {
gettext_noop("Spiral"), gettext_noop("Spiral"),
gettext_noop("Square Spiral"), gettext_noop("Square Spiral"),
gettext_noop("Concentric Circles"),
gettext_noop("Concentric Squares"),
}; };
const char * spiral_descrs[NUM_TOOLS] = { const char * spiral_descrs[NUM_TOOLS] = {
gettext_noop("Click and drag to create a spiral."), gettext_noop("Click and drag to create a spiral."),
gettext_noop("Click and drag to create a square spiral."), gettext_noop("Click and drag to create a square spiral."),
gettext_noop("Click and drag to create concentric circles."),
gettext_noop("Click and drag to create concentric squares."),
}; };
const char * spiral_sounds[NUM_TOOLS] = { const char * spiral_sounds[NUM_TOOLS] = {
"spiral-circle.ogg", "spiral-circle.ogg",
"spiral-square.ogg", "spiral-square.ogg",
"spiral-circle.ogg", // FIXME
"spiral-square.ogg", // FIXME
}; };
const char * spiral_icons[NUM_TOOLS] = { const char * spiral_icons[NUM_TOOLS] = {
"spiral-circle.png", "spiral-circle.png",
"spiral-square.png", "spiral-square.png",
"spiral-circle.png", // FIXME
"spiral-square.png", // FIXME
}; };
static Mix_Chunk *spiral_snd[NUM_TOOLS]; static Mix_Chunk *spiral_snd[NUM_TOOLS];
@ -171,7 +180,7 @@ static void do_spiral_render(void *ptr, int which,
thick = spiral_thickness * 4; thick = spiral_thickness * 4;
if (which == TOOL_SPIRAL_CIRCLE) if (which == TOOL_SPIRAL_CIRCLE || which == TOOL_CONCENTRIC_CIRCLE)
{ {
int xx, yy; int xx, yy;
@ -180,7 +189,7 @@ static void do_spiral_render(void *ptr, int which,
if (api->in_circle(xx, yy, thick / 2)) if (api->in_circle(xx, yy, thick / 2))
api->putpixel(canvas, x + xx, y + yy, spiral_color); api->putpixel(canvas, x + xx, y + yy, spiral_color);
} }
else if (which == TOOL_SPIRAL_SQUARE) else if (which == TOOL_SPIRAL_SQUARE || which == TOOL_CONCENTRIC_SQUARE)
{ {
dest.x = x - thick / 2; dest.x = x - thick / 2;
dest.y = y - thick / 2; dest.y = y - thick / 2;
@ -210,13 +219,13 @@ void do_spiral(magic_api * api, int which, SDL_Surface * canvas,
else else
ysgn = 1; ysgn = 1;
if (final)
stp = 0.1;
else
stp = 0.5;
if (which == TOOL_SPIRAL_CIRCLE) if (which == TOOL_SPIRAL_CIRCLE)
{ {
if (final)
stp = 0.1;
else
stp = 0.5;
radius = sqrt(pow((x - spiral_cx), 2) + pow((y - spiral_cy), 2)); radius = sqrt(pow((x - spiral_cx), 2) + pow((y - spiral_cy), 2));
oxx = 0; oxx = 0;
@ -279,6 +288,65 @@ void do_spiral(magic_api * api, int which, SDL_Surface * canvas,
oi = i; oi = i;
} }
} }
else if (which == TOOL_CONCENTRIC_CIRCLE)
{
float ang, ang_stp;
radius = sqrt(pow((x - spiral_cx), 2) + pow((y - spiral_cy), 2));
if (final)
ang_stp = 1;
else
ang_stp = 5;
for (i = 0; i < radius; i += spiral_thickness * 8)
{
oxx = (i * cos(0));
oyy = (i * sin(0));
for (ang = 0; ang < 360; ang += ang_stp)
{
xx = (i * cos(ang / 180.0 * M_PI));
yy = (i * sin(ang / 180.0 * M_PI));
if (final)
{
api->line((void *) api, which, canvas, NULL,
((int) oxx) + spiral_cx, ((int) oyy) + spiral_cy,
((int) xx) + spiral_cx, ((int) yy) + spiral_cy,
1, do_spiral_render);
oxx = xx;
oyy = yy;
}
else
{
do_spiral_render(api, which, canvas, NULL, ((int) xx) + spiral_cx, ((int) yy) + spiral_cy);
}
}
}
}
else if (which == TOOL_CONCENTRIC_SQUARE)
{
radius = max(abs(x - spiral_cx), abs(y - spiral_cy));
for (i = spiral_thickness; i < radius; i += spiral_thickness * 8)
{
api->line((void *) api, which, canvas, NULL,
spiral_cx - i, spiral_cy - i,
spiral_cx + i, spiral_cy - i,
1, do_spiral_render);
api->line((void *) api, which, canvas, NULL,
spiral_cx + i, spiral_cy - i,
spiral_cx + i, spiral_cy + i,
1, do_spiral_render);
api->line((void *) api, which, canvas, NULL,
spiral_cx + i, spiral_cy + i,
spiral_cx - i, spiral_cy + i,
1, do_spiral_render);
api->line((void *) api, which, canvas, NULL,
spiral_cx - i, spiral_cy + i,
spiral_cx - i, spiral_cy - i,
1, do_spiral_render);
}
}
/* FIXME */ /* FIXME */
update_rect->x = 0; update_rect->x = 0;

View file

@ -47,10 +47,10 @@
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release version="0.9.34" date="2024-10-04"> <release version="0.9.34" date="2024-10-07">
<description> <description>
<p>New Fill mode: "Eraser" flood fill.</p> <p>New Fill mode: "Eraser" flood fill.</p>
<p>New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral" and "Square Spiral".</p> <p>New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral", "Square Spiral", "Concentric Circle", and "Concentric Square".</p>
<p>New brush: Fluff (gradient).</p> <p>New brush: Fluff (gradient).</p>
</description> </description>
</release> </release>

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-12-09 09:00+0200\n" "PO-Revision-Date: 2010-12-09 09:00+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3012,28 +3012,48 @@ msgstr "Dii wek imed odilo akuna ikum cal mamegi. "
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Dii wek imed pii mumake mapoto ki malo ikom cal mamegi." msgstr "Dii wek imed pii mumake mapoto ki malo ikom cal mamegi."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Lagwic angwen marom ducu" msgstr "Lagwic angwen marom ducu"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco." msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco." msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: af\n" "Project-Id-Version: af\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-19 06:38+0000\n" "PO-Revision-Date: 2017-12-19 06:38+0000\n"
"Last-Translator: OdettePretorius <odettepret@gmail.com>\n" "Last-Translator: OdettePretorius <odettepret@gmail.com>\n"
"Language-Team: translate-discuss-af@lists.sourceforge.net\n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2963,28 +2963,48 @@ msgstr "Klik om sneeuballe op die prent te maak."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik om sneeuvlokkies oor die prent te maak." msgstr "Klik om sneeuvlokkies oor die prent te maak."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Vierkant" msgstr "Vierkant"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik en beweeg om groot stene te teken." msgstr "Klik en beweeg om groot stene te teken."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik en beweeg om groot stene te teken." msgstr "Klik en beweeg om groot stene te teken."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klik en beweeg om groot stene te teken."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klik en beweeg om groot stene te teken."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-10-27 10:16-0000\n" "PO-Revision-Date: 2010-10-27 10:16-0000\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2981,28 +2981,48 @@ msgstr "Cleeke fa snɔɔ bɔɔlo ka wo nfonyin no ho."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Cleeke fa snɔɔ felake ka wo nfonyin no ho." msgstr "Cleeke fa snɔɔ felake ka wo nfonyin no ho."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ahinanan" msgstr "ahinanan"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse." msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse." msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-10 11:45+0100\n" "PO-Revision-Date: 2014-06-10 11:45+0100\n"
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n" "Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2970,28 +2970,48 @@ msgstr "በስዕልህ ላይ የበረዶ ኳስ ለመጨመር ጠቅ አድ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "በስዕልህ ላይ የበረዶ ካፊያ ለመጨመር ጠቅ አድርግ።" msgstr "በስዕልህ ላይ የበረዶ ካፊያ ለመጨመር ጠቅ አድርግ።"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ካሬ " msgstr "ካሬ "
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። " msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። " msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-29 10:04+0100\n" "PO-Revision-Date: 2017-12-29 10:04+0100\n"
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n" "Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
"Language-Team: softaragonés\n" "Language-Team: softaragonés\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2986,28 +2986,48 @@ msgstr "Fe clic pa dibuixar bolas de nieu."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Fe clic pa dibuixar copos de nieu." msgstr "Fe clic pa dibuixar copos de nieu."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Quadrau" msgstr "Quadrau"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans." msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans." msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2008-10-07 14:54+0200\n" "PO-Revision-Date: 2008-10-07 14:54+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -407,8 +407,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3010,28 +3010,48 @@ msgstr "انقر لإضافة كرات الثلج لصورتك."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "انقر لإضافة رقائق الثلج لصورتك." msgstr "انقر لإضافة رقائق الثلج لصورتك."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "مربع" msgstr "مربع"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه." msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه." msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-16 23:33-0800\n" "PO-Revision-Date: 2014-06-16 23:33-0800\n"
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n" "Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3028,28 +3028,48 @@ msgstr "আপোনাৰ ছবিলৈ বৰফৰ বলবোৰ যো
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "আপোনাৰ ছবিলৈ বৰফৰ চকলাবোৰ যোগ কৰিবলৈ ক্লিক কৰক." msgstr "আপোনাৰ ছবিলৈ বৰফৰ চকলাবোৰ যোগ কৰিবলৈ ক্লিক কৰক."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "বৰ্গক্ষেত্ৰ" msgstr "বৰ্গক্ষেত্ৰ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক." msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক." msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2011-02-16 18:38+0200\n" "PO-Revision-Date: 2011-02-16 18:38+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3006,28 +3006,48 @@ msgstr "Calca p'amestar boles de ñeve al dibuxu."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Calca p'amestar falopos nel dibuxu." msgstr "Calca p'amestar falopos nel dibuxu."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Cuadráu" msgstr "Cuadráu"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Calca y arrastra pa dibuxar lladrillos grandes." msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Calca y arrastra pa dibuxar lladrillos grandes." msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2008-02-10 19:28+0400\n" "PO-Revision-Date: 2008-02-10 19:28+0400\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -392,8 +392,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3048,17 +3048,25 @@ msgstr "Zərif dalğalar çəkmək üçün mausun sol düyməsini bas."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Zərif dalğalar çəkmək üçün mausun sol düyməsini bas." msgstr "Zərif dalğalar çəkmək üçün mausun sol düyməsini bas."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Dördkünc" msgstr "Dördkünc"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
@ -3066,7 +3074,7 @@ msgstr ""
"Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə " "Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə "
"gətir." "gətir."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
@ -3074,6 +3082,22 @@ msgstr ""
"Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə " "Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə "
"gətir." "gətir."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr ""
"Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə "
"gətir."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr ""
"Böyük kərpicləri düzmək üçün mausun sol düyməsini bas və mausu hərəkətə "
"gətir."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-10 23:09+0300\n" "PO-Revision-Date: 2014-06-10 23:09+0300\n"
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -398,8 +398,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3012,28 +3012,48 @@ msgstr "Націсніце, каб дадаць снежкі на ваш мал
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Націсніце, каб дадаць сняжынкі на ваш малюнак." msgstr "Націсніце, каб дадаць сняжынкі на ваш малюнак."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Квадрат" msgstr "Квадрат"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны." msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны." msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-02-28 21:39+0200\n" "PO-Revision-Date: 2024-02-28 21:39+0200\n"
"Last-Translator: Vankata453\n" "Last-Translator: Vankata453\n"
"Language-Team: \n" "Language-Team: \n"
@ -399,8 +399,8 @@ msgstr ""
#| msgid "New Magic tools: Epitrochoid and Hypotrochoid generators." #| msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
"Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори." "Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори."
@ -3015,28 +3015,50 @@ msgstr "Кликни, за да добавиш снежни топки на ри
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Кликни, за да добавиш снежинки на рисунката." msgstr "Кликни, за да добавиш снежинки на рисунката."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Квадрат" msgstr "Квадрат"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Изометрични линии"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели." msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели." msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-09-04 17:25+0200\n" "PO-Revision-Date: 2010-09-04 17:25+0200\n"
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n" "Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3011,28 +3011,48 @@ msgstr "Kilike I ka sanbɛlɛnin ɲɛgɛn ki ka ja la."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Kilike, i ka sanbɛlɛninkulu ki ka ja la." msgstr "Kilike, i ka sanbɛlɛninkulu ki ka ja la."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kare" msgstr "Kare"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn." msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn." msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-30 18:24+0000\n" "PO-Revision-Date: 2017-12-30 18:24+0000\n"
"Last-Translator: Chris <cjl@sugarlabs.org>\n" "Last-Translator: Chris <cjl@sugarlabs.org>\n"
"Language-Team: Bengali\n" "Language-Team: Bengali\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2994,28 +2994,48 @@ msgstr "আপনার ছবিতে বরফের বল যোগ কর
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "আপনার ছবিতে বরফের পরত যোগ করতে ক্লিক করুন." msgstr "আপনার ছবিতে বরফের পরত যোগ করতে ক্লিক করুন."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "বর্গ" msgstr "বর্গ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান." msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান." msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2006-01-01 17:43+0900\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -381,8 +381,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2716,24 +2716,40 @@ msgstr ""
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "g+iu.bZi." msgstr "g+iu.bZi."
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:54
msgid "Click and drag to create concentric circles."
msgstr ""
#: ../../magic/src/spiral.c:55
msgid "Click and drag to create concentric squares."
msgstr ""
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2005-01-09 14:49+0100\n" "PO-Revision-Date: 2005-01-09 14:49+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: none\n" "Language-Team: none\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2922,28 +2922,48 @@ msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Karrezenn" msgstr "Karrezenn"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras." msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras." msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2011-09-14 13:51+0530\n" "PO-Revision-Date: 2011-09-14 13:51+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bodo\n" "Language-Team: Bodo\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3020,28 +3020,48 @@ msgstr "नोंथांनि सावगारिआव बरफ गथा
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "नोंथांनि सावगारिआव बरफ थुख्रा दाजाबदेरनो क्लिक खालाम।" msgstr "नोंथांनि सावगारिआव बरफ थुख्रा दाजाबदेरनो क्लिक खालाम।"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "बर्ग दब्लाइ" msgstr "बर्ग दब्लाइ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।" msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।" msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-11-05 04:24+0000\n" "PO-Revision-Date: 2010-11-05 04:24+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n" "Last-Translator: Samir Ribić <Unknown>\n"
"Language-Team: Bosnian <bs@li.org>\n" "Language-Team: Bosnian <bs@li.org>\n"
@ -421,8 +421,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3141,31 +3141,53 @@ msgstr ""
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
# #
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrat" msgstr "Kvadrat"
#: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
# #
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klikni i pomjeraj da bi crtao velike cigle." msgstr "Klikni i pomjeraj da bi crtao velike cigle."
# #
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klikni i pomjeraj da bi crtao velike cigle." msgstr "Klikni i pomjeraj da bi crtao velike cigle."
#
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klikni i pomjeraj da bi crtao velike cigle."
#
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klikni i pomjeraj da bi crtao velike cigle."
# #
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy

View file

@ -21,7 +21,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint cvs 2009-06-21\n" "Project-Id-Version: Tuxpaint cvs 2009-06-21\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-10-08 01:03+0200\n" "PO-Revision-Date: 2024-10-08 01:03+0200\n"
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n" "Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n"
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\n" "Language-Team: Català <linux-ca@chanae.alphanet.ch>\n"
@ -259,7 +259,8 @@ msgstr ""
#: ../fill_tools.h:67 #: ../fill_tools.h:67
msgid "Click to erase an area, filling it with the background color or image." msgid "Click to erase an area, filling it with the background color or image."
msgstr "Feu clic per esborrar una àrea omplint-la amb el color o motiu del fons." msgstr ""
"Feu clic per esborrar una àrea omplint-la amb el color o motiu del fons."
#: ../fill_tools.h:80 #: ../fill_tools.h:80
msgid "Solid" msgid "Solid"
@ -431,11 +432,18 @@ msgid "New Fill mode: \"Eraser\" flood fill."
msgstr "Nou mode d'omplir: Esborra." msgstr "Nou mode d'omplir: Esborra."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
#, fuzzy
#| msgid ""
#| "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, "
#| "various \"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and "
#| "\"Square Spiral\"."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "Noves eines màgiques: «Ben-Day», «Gira», varis ASCII art, varis Fractals, «Creixent», «Esprai», «Espiral» i «Espiraal Quadrada»" msgstr ""
"Noves eines màgiques: «Ben-Day», «Gira», varis ASCII art, varis Fractals, "
"«Creixent», «Esprai», «Espiral» i «Espiraal Quadrada»"
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
msgid "New brush: Fluff (gradient)." msgid "New brush: Fluff (gradient)."
@ -491,7 +499,9 @@ msgstr ""
msgid "" msgid ""
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the " "Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
"desktop Trash on Haiku now, too." "desktop Trash on Haiku now, too."
msgstr "Els dibuixos esborrats en el diàleg de «Obre» ara també es mouen a la paperera en Haiku." msgstr ""
"Els dibuixos esborrats en el diàleg de «Obre» ara també es mouen a la "
"paperera en Haiku."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
msgid "" msgid ""
@ -530,7 +540,9 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
msgid "Font name and size shown when selecting fonts in Text and Label tools." msgid "Font name and size shown when selecting fonts in Text and Label tools."
msgstr "Es mostra el nom del tipus de lletra i la seva mida en les eines Text i Etiquetes." msgstr ""
"Es mostra el nom del tipus de lletra i la seva mida en les eines Text i "
"Etiquetes."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:79 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:79
msgid "Bug-fixes and localization updates." msgid "Bug-fixes and localization updates."
@ -1807,7 +1819,9 @@ msgstr "ASCII %s"
#, c-format #, c-format
msgid "" msgid ""
"Click and drag to transform parts of your drawing to ASCII art (%s style)." "Click and drag to transform parts of your drawing to ASCII art (%s style)."
msgstr "Feu clic i arrossegueu per transformar parts del dibuix en text ACII (estil %s)." msgstr ""
"Feu clic i arrossegueu per transformar parts del dibuix en text ACII (estil "
"%s)."
#: ../../magic/src/ascii.c:343 #: ../../magic/src/ascii.c:343
#, c-format #, c-format
@ -2016,7 +2030,9 @@ msgstr "Creixent"
msgid "" msgid ""
"Click and drag to draw a crescent shape. Use the size option to change the " "Click and drag to draw a crescent shape. Use the size option to change the "
"shape." "shape."
msgstr "Feu clic i arrossegueu per dibuixar la forma d'un creixent de lluna. Feu servir el selector de mida per canviar-ne la forma." msgstr ""
"Feu clic i arrossegueu per dibuixar la forma d'un creixent de lluna. Feu "
"servir el selector de mida per canviar-ne la forma."
#: ../../magic/src/distortion.c:142 #: ../../magic/src/distortion.c:142
msgid "Distortion" msgid "Distortion"
@ -2210,7 +2226,9 @@ msgstr "Fractal %d"
msgid "" msgid ""
"Click and drag to sketch a shape. It will repeat, %1$s %2$d%% and rotating " "Click and drag to sketch a shape. It will repeat, %1$s %2$d%% and rotating "
"%3$d degrees." "%3$d degrees."
msgstr "Feu clic i arrossegueu per dibuixar una forma, es repetirà, %1$s %2$d%% girant %3$d graus." msgstr ""
"Feu clic i arrossegueu per dibuixar una forma, es repetirà, %1$s %2$d%% "
"girant %3$d graus."
#: ../../magic/src/fractal.c:153 ../../magic/src/fractal.c:157 #: ../../magic/src/fractal.c:153 ../../magic/src/fractal.c:157
msgid "scaling up" msgid "scaling up"
@ -2223,12 +2241,14 @@ msgstr "disminuint"
#: ../../magic/src/fractal.c:157 #: ../../magic/src/fractal.c:157
#, c-format #, c-format
msgid "Click and drag to sketch a shape. It will repeat, %1$s %2$d%%." msgid "Click and drag to sketch a shape. It will repeat, %1$s %2$d%%."
msgstr "Feu clic i arrossegueu per dibuixar una forma, es repetirà , %1$s %2$d%%." msgstr ""
"Feu clic i arrossegueu per dibuixar una forma, es repetirà , %1$s %2$d%%."
#: ../../magic/src/fractal.c:162 #: ../../magic/src/fractal.c:162
#, c-format #, c-format
msgid "Click and drag to sketch a shape. It will repeat, rotating %d degrees." msgid "Click and drag to sketch a shape. It will repeat, rotating %d degrees."
msgstr "Feu clic i arrossegueu per dibuixar una forma, es repetirà girada %d graus." msgstr ""
"Feu clic i arrossegueu per dibuixar una forma, es repetirà girada %d graus."
#: ../../magic/src/fretwork.c:222 #: ../../magic/src/fretwork.c:222
msgid "Fretwork" msgid "Fretwork"
@ -2992,22 +3012,44 @@ msgstr "Feu clic per afegir boles de neu al dibuix."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Feu clic per afegir flocs de neu al dibuix." msgstr "Feu clic per afegir flocs de neu al dibuix."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "Espiral" msgstr "Espiral"
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Espiral Quadrada" msgstr "Espiral Quadrada"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Línies iso­mètriques"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Feu clic i arrossegueu per crear una espiral." msgstr "Feu clic i arrossegueu per crear una espiral."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Feu clic i arrossegueu per dibuixar una espiral quadrada." msgstr "Feu clic i arrossegueu per dibuixar una espiral quadrada."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to create a spiral."
msgid "Click and drag to create concentric circles."
msgstr "Feu clic i arrossegueu per crear una espiral."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to create a square spiral."
msgid "Click and drag to create concentric squares."
msgstr "Feu clic i arrossegueu per dibuixar una espiral quadrada."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
msgid "Spray Paint" msgid "Spray Paint"
msgstr "Esprai" msgstr "Esprai"

View file

@ -4,7 +4,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2020-03-29 23:40+0200\n" "PO-Revision-Date: 2020-03-29 23:40+0200\n"
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n" "Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n"
"Language-Team: LliureX\n" "Language-Team: LliureX\n"
@ -393,8 +393,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3011,28 +3011,48 @@ msgstr "Feu clic per a afegir boles de neu a la imatge."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Feu clic per a afegir flocs de neu a la imatge." msgstr "Feu clic per a afegir flocs de neu a la imatge."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Quadrat" msgstr "Quadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans." msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans." msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-09-17 16:19+0200fu\n" "PO-Revision-Date: 2010-09-17 16:19+0200fu\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3053,28 +3053,48 @@ msgstr "imata okwongyera omukishushani kyawe omupiira gwo'rubaare."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Imata okwongyera omukishushani kyawe akajuma ko'rubaare." msgstr "Imata okwongyera omukishushani kyawe akajuma ko'rubaare."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kirikwingana hoona" msgstr "Kirikwingana hoona"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango." msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango." msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-07-08 13:33+0100\n" "PO-Revision-Date: 2010-07-08 13:33+0100\n"
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n" "Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n"
"Language-Team: Czech <cs@li.org>\n" "Language-Team: Czech <cs@li.org>\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3014,28 +3014,48 @@ msgstr "Kliknutím přidáš na obrázek sněhové koule."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Kliknutím přidáš na svůj obrázek sněhové vločky." msgstr "Kliknutím přidáš na svůj obrázek sněhové vločky."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Čtverec" msgstr "Čtverec"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly." msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly." msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: cy\n" "Project-Id-Version: cy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2004-09-21 14:29+0100\n" "PO-Revision-Date: 2004-09-21 14:29+0100\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2912,26 +2912,44 @@ msgstr "Clicia a symuda'r llygoden i deneuo'r llun."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Clicia a symuda'r llygoden i deneuo'r llun." msgstr "Clicia a symuda'r llygoden i deneuo'r llun."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Sgwâr" msgstr "Sgwâr"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Clicia a symuda i lunio gwreichion." msgstr "Clicia a symuda i lunio gwreichion."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Clicia a symuda i lunio gwreichion." msgstr "Clicia a symuda i lunio gwreichion."
#: ../../magic/src/spiral.c:54
#, fuzzy
msgid "Click and drag to create concentric circles."
msgstr "Clicia a symuda i lunio gwreichion."
#: ../../magic/src/spiral.c:55
#, fuzzy
msgid "Click and drag to create concentric squares."
msgstr "Clicia a symuda i lunio gwreichion."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-05 12:38+0100\n" "PO-Revision-Date: 2017-12-05 12:38+0100\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -404,8 +404,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2994,28 +2994,48 @@ msgstr "Klik for at tilføje snebolde i dit billede."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik for at tilføje snefnug i dit billede." msgstr "Klik for at tilføje snefnug i dit billede."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrat" msgstr "Kvadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik og bevæg for at tegne store mursten." msgstr "Klik og bevæg for at tegne store mursten."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik og bevæg for at tegne store mursten." msgstr "Klik og bevæg for at tegne store mursten."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klik og bevæg for at tegne store mursten."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klik og bevæg for at tegne store mursten."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: de\n" "Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-25 21:13+0200\n" "PO-Revision-Date: 2017-12-25 21:13+0200\n"
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n" "Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3002,28 +3002,48 @@ msgstr "Klicke, um deinem Bild Schneebälle hinzuzufügen."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klicke, um deinem Bild Schneeflocken hinzuzufügen." msgstr "Klicke, um deinem Bild Schneeflocken hinzuzufügen."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Quadrat" msgstr "Quadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen." msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen." msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2013-09-04 10:23+0530\n" "PO-Revision-Date: 2013-09-04 10:23+0530\n"
"Last-Translator: <b>\n" "Last-Translator: <b>\n"
"Language-Team: Dogri\n" "Language-Team: Dogri\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3002,28 +3002,48 @@ msgstr "अपनी तस्वीरा पर बर्फ-गोले ज
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "अपनी तस्वीरा पर बर्फु दे फाहे जोड़ने आस्तै क्लिक करो." msgstr "अपनी तस्वीरा पर बर्फु दे फाहे जोड़ने आस्तै क्लिक करो."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "वर्ग" msgstr "वर्ग"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ." msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ." msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2021-09-02 07:45+0000\n" "PO-Revision-Date: 2021-09-02 07:45+0000\n"
"Last-Translator: kiolalis <kiolalis@gmail.com>\n" "Last-Translator: kiolalis <kiolalis@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3050,28 +3050,48 @@ msgstr "Κάνε κλικ για να προσθέσεις μπάλες χιον
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Κάνε κλικ για να προσθέσεις νιφάδες χιονιού στη ζωγραφιά σου." msgstr "Κάνε κλικ για να προσθέσεις νιφάδες χιονιού στη ζωγραφιά σου."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Τετράγωνο" msgstr "Τετράγωνο"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα." msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα." msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-29 23:36+0930\n" "PO-Revision-Date: 2014-06-29 23:36+0930\n"
"Last-Translator: ilox <ilox11@gmail.com>\n" "Last-Translator: ilox <ilox11@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3010,28 +3010,48 @@ msgstr "Click to add snow balls to your picture."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Click to add snow flakes to your picture." msgstr "Click to add snow flakes to your picture."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Square" msgstr "Square"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-07-07 12:22+0100\n" "PO-Revision-Date: 2014-07-07 12:22+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3006,28 +3006,48 @@ msgstr "Click to add snow balls to your picture."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Click to add snow flakes to your picture." msgstr "Click to add snow flakes to your picture."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Square" msgstr "Square"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-30 21:17+0000\n" "PO-Revision-Date: 2017-12-30 21:17+0000\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2967,28 +2967,48 @@ msgstr "Click to add snow balls to your picture."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Click to add snow flakes to your picture." msgstr "Click to add snow flakes to your picture."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Square" msgstr "Square"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.16\n" "Project-Id-Version: 0.9.16\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2009-09-06 15:46+0100\n" "PO-Revision-Date: 2009-09-06 15:46+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: English (South African) <en_za@li.org>\n" "Language-Team: English (South African) <en_za@li.org>\n"
@ -393,8 +393,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2939,28 +2939,48 @@ msgstr "Click and move the mouse around to blur the picture."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Click and move the mouse around to blur the picture." msgstr "Click and move the mouse around to blur the picture."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Square" msgstr "Square"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Click and move to draw large bricks." msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Click and move to draw large bricks."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-16 16:00+0000\n" "PO-Revision-Date: 2014-06-16 16:00+0000\n"
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n" "Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n" "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@ -393,8 +393,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2986,28 +2986,48 @@ msgstr "Alklaku por aldoni neĝglobojn al via bildo."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Alklaku por aldoni neĝflokojn al via bildo." msgstr "Alklaku por aldoni neĝflokojn al via bildo."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrato" msgstr "Kvadrato"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Alklaku kaj movu por desegni brikegojn." msgstr "Alklaku kaj movu por desegni brikegojn."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Alklaku kaj movu por desegni brikegojn." msgstr "Alklaku kaj movu por desegni brikegojn."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Alklaku kaj movu por desegni brikegojn."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Alklaku kaj movu por desegni brikegojn."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -29,7 +29,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-18 20:31-0300\n" "PO-Revision-Date: 2017-12-18 20:31-0300\n"
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n" "Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -414,8 +414,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3006,28 +3006,48 @@ msgstr "Haz click para dibujar bolas de nieve."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Haz click para dibujar copos de nieve." msgstr "Haz click para dibujar copos de nieve."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Cuadrado" msgstr "Cuadrado"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos." msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos." msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.2\n" "Project-Id-Version: TuxPaint 0.9.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2007-08-05 19:22-0400\n" "PO-Revision-Date: 2007-08-05 19:22-0400\n"
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\n" "Last-Translator: Ignacio Tike <itike17@yahoo.com>\n"
"Language-Team: Español <ggabriel@internet.com.uy>\n" "Language-Team: Español <ggabriel@internet.com.uy>\n"
@ -389,8 +389,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2998,28 +2998,48 @@ msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen." "Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Cuadrado" msgstr "Cuadrado"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Haz clic y arrastra para dibujar ladrillos grandes." msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Haz clic y arrastra para dibujar ladrillos grandes." msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2015-03-07 13:09+0000\n" "PO-Revision-Date: 2015-03-07 13:09+0000\n"
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n" "Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/" "Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/"
@ -400,8 +400,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2970,28 +2970,48 @@ msgstr "Klõpsa, et lisada pildile lumepalle."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klõpsa, et lisada pildile lumehelbeid." msgstr "Klõpsa, et lisada pildile lumehelbeid."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Ruut" msgstr "Ruut"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive." msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive." msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2020-07-30 16:43+0200\n" "PO-Revision-Date: 2020-07-30 16:43+0200\n"
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n" "Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
"Language-Team: librezale@librezale.org\n" "Language-Team: librezale@librezale.org\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2976,28 +2976,48 @@ msgstr "Klik egin irudiari elur-bolak gehitzeko."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik egin irudiari elur malutak gehitzeko." msgstr "Klik egin irudiari elur malutak gehitzeko."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Laukia" msgstr "Laukia"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Egin klik eta mugitu adreilu handiak marrazteko." msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Egin klik eta mugitu adreilu handiak marrazteko." msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-11-09 21:17+0330\n" "PO-Revision-Date: 2014-11-09 21:17+0330\n"
"Last-Translator: snima <unix.nima@gmail.com>\n" "Last-Translator: snima <unix.nima@gmail.com>\n"
"Language-Team: farsi <farinaz.hedayat@gmail.com>\n" "Language-Team: farsi <farinaz.hedayat@gmail.com>\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3035,28 +3035,48 @@ msgstr "کلیک کن تا روی تصویرت موج ایجاد شود."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "کلیک کن تا روی تصویرت موج ایجاد شود." msgstr "کلیک کن تا روی تصویرت موج ایجاد شود."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "مربع" msgstr "مربع"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده." msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده." msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-03 10:35+0200\n" "PO-Revision-Date: 2017-12-03 10:35+0200\n"
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n" "Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
"Language-Team: FULAH LOCALIZATION\n" "Language-Team: FULAH LOCALIZATION\n"
@ -393,8 +393,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2936,28 +2936,48 @@ msgstr "Dobo ngam ɓeydude baluuji nees e natal maa."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Dobo ngam ɓeydude ñaaƴe nees e natal maa." msgstr "Dobo ngam ɓeydude ñaaƴe nees e natal maa."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Nay kiɓɓal" msgstr "Nay kiɓɓal"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe." msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe." msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2015-10-09 18:00+0200\n" "PO-Revision-Date: 2015-10-09 18:00+0200\n"
"Last-Translator: inactive\n" "Last-Translator: inactive\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@ -402,8 +402,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3008,28 +3008,48 @@ msgstr "Lisää lumipalloja maalaukseesi hiirtä napsauttamalla."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Lisää lumihiutaleita maalaukseesi hiirtä napsauttamalla." msgstr "Lisää lumihiutaleita maalaukseesi hiirtä napsauttamalla."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Neliö" msgstr "Neliö"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta." msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta." msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint 0.9.18\n" "Project-Id-Version: Tux Paint 0.9.18\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2008-01-18 12:40-0000\n" "PO-Revision-Date: 2008-01-18 12:40-0000\n"
"Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n" "Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n"
"Language-Team: Faroese <morshus@morshus.com>\n" "Language-Team: Faroese <morshus@morshus.com>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2946,28 +2946,48 @@ msgstr "Klikkja til at fáa aldur á myndina."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klikkja til at fáa aldur á myndina." msgstr "Klikkja til at fáa aldur á myndina."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Ferningur" msgstr "Ferningur"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar." msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar." msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: fr\n" "Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-10-07 19:29+0200\n" "PO-Revision-Date: 2024-10-07 19:29+0200\n"
"Last-Translator: jacques.chion@orange.fr\n" "Last-Translator: jacques.chion@orange.fr\n"
"Language-Team: <fr@li.org>\n" "Language-Team: <fr@li.org>\n"
@ -395,10 +395,15 @@ msgid "New Fill mode: \"Eraser\" flood fill."
msgstr "Nouveau mode de remplissage : \"Gomme\" avec remplissage." msgstr "Nouveau mode de remplissage : \"Gomme\" avec remplissage."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
#, fuzzy
#| msgid ""
#| "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, "
#| "various \"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and "
#| "\"Square Spiral\"."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square Spiral" "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
"Nouveaux outils Magie : \"Points Comiques\", \"Rotation\", divers arts " "Nouveaux outils Magie : \"Points Comiques\", \"Rotation\", divers arts "
"\"ASCII\", divers \"Fractales\",\"Croissant\", \"Peinture en spray\", " "\"ASCII\", divers \"Fractales\",\"Croissant\", \"Peinture en spray\", "
@ -459,9 +464,9 @@ msgid ""
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the " "Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
"desktop Trash on Haiku now, too." "desktop Trash on Haiku now, too."
msgstr "" msgstr ""
"Les dessins effacés via l'option \"Effacer\" de la boîte de dialogue \"Ouvrir" "Les dessins effacés via l'option \"Effacer\" de la boîte de dialogue "
"\" sont maintenant placés dans la corbeille du bureau sur les appareils " "\"Ouvrir\" sont maintenant placés dans la corbeille du bureau sur les "
"fonctionnant avec HaIku." "appareils fonctionnant avec HaIku."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
msgid "" msgid ""
@ -745,9 +750,9 @@ msgstr ""
"Six nouveaux outils de \"Magie\" ont été ajoutés. 'Panneaux\" contracte le " "Six nouveaux outils de \"Magie\" ont été ajoutés. 'Panneaux\" contracte le "
"dessin et le reproduit ensuite sur une grille de 2x2, ce qui est utile pour " "dessin et le reproduit ensuite sur une grille de 2x2, ce qui est utile pour "
"concevoir des B.D. sur quatre panneaux. \"Complément\" donne la couleur " "concevoir des B.D. sur quatre panneaux. \"Complément\" donne la couleur "
"complémentaire. \"Éclair\" dessine un éclair de manière interactive. \"Reflet" "complémentaire. \"Éclair\" dessine un éclair de manière interactive. "
"\" crée un reflet du dessin comme sur un lac. \"Étirer\" pour étirer et " "\"Reflet\" crée un reflet du dessin comme sur un lac. \"Étirer\" pour étirer "
"déformer l'image comme un miroir de foire. Et enfin, \"Arc-en-ciel doux\" " "et déformer l'image comme un miroir de foire. Et enfin, \"Arc-en-ciel doux\" "
"fournit une variation plus douce que l'outil arc-en-ciel classique." "fournit une variation plus douce que l'outil arc-en-ciel classique."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
@ -844,10 +849,10 @@ msgid ""
"using the Text and Label tools, now appears larger on bigger displays; " "using the Text and Label tools, now appears larger on bigger displays; "
"helpful for users of coarser input devices, such as eye-tracking systems." "helpful for users of coarser input devices, such as eye-tracking systems."
msgstr "" msgstr ""
"Le clavier virtuel, disponible sur option quand on utilise les outils \"Texte" "Le clavier virtuel, disponible sur option quand on utilise les outils "
"\" et \"Étiquette\" , apparaît plus grand sur des écrans plus grand; c'est " "\"Texte\" et \"Étiquette\" , apparaît plus grand sur des écrans plus grand; "
"utile avec des des dispositifs d'entrée moins précis, tels que systèmes " "c'est utile avec des des dispositifs d'entrée moins précis, tels que "
"pilotés avec les yeux." "systèmes pilotés avec les yeux."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
msgid "" msgid ""
@ -1553,8 +1558,8 @@ msgid ""
"You already turned this picture into a template. Look for it in the “New“ " "You already turned this picture into a template. Look for it in the “New“ "
"dialog!" "dialog!"
msgstr "" msgstr ""
"Tu as déjà mis cette image comme modèle. Vois la boîte de dialogue \"Nouveau" "Tu as déjà mis cette image comme modèle. Vois la boîte de dialogue "
"\" !" "\"Nouveau\" !"
#: ../tuxpaint.c:2546 #: ../tuxpaint.c:2546
msgid "Sorry! Your picture could not turned into a template!" msgid "Sorry! Your picture could not turned into a template!"
@ -3113,22 +3118,44 @@ msgstr "Clique pour ajouter des boules de neige."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Clique pour ajouter des flocons de neige." msgstr "Clique pour ajouter des flocons de neige."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "Spirale" msgstr "Spirale"
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Spirale Carrée" msgstr "Spirale Carrée"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Lignes isométriques"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Clique et déplace la souris pour créer une spirale" msgstr "Clique et déplace la souris pour créer une spirale"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Clique et déplace la souris pour créer une spirale carrée" msgstr "Clique et déplace la souris pour créer une spirale carrée"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to create a spiral."
msgid "Click and drag to create concentric circles."
msgstr "Clique et déplace la souris pour créer une spirale"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to create a square spiral."
msgid "Click and drag to create concentric squares."
msgstr "Clique et déplace la souris pour créer une spirale carrée"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
msgid "Spray Paint" msgid "Spray Paint"
msgstr "Peinture en spray" msgstr "Peinture en spray"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2015-10-09 17:38+0500\n" "PO-Revision-Date: 2015-10-09 17:38+0500\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n" "Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -385,8 +385,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2884,28 +2884,48 @@ msgstr "Cliceáil chun meallta sneachta a chur leis an bpictiúr."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Cliceáil chun cáithníní sneachta a chur leis an bpictiúr." msgstr "Cliceáil chun cáithníní sneachta a chur leis an bpictiúr."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Cearnóg" msgstr "Cearnóg"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh." msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh." msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2021-09-02 12:18-0700\n" "PO-Revision-Date: 2021-09-02 12:18-0700\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n" "Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Fòram na Gàidhlig\n" "Language-Team: Fòram na Gàidhlig\n"
@ -402,8 +402,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3040,28 +3040,48 @@ msgstr "Briog gus bàlaichean sneachda a chur ris an dealbh agad."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Briog gus bleideagan sneachda a chur ris an dealbh agad." msgstr "Briog gus bleideagan sneachda a chur ris an dealbh agad."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Ceàrnag" msgstr "Ceàrnag"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra." msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra." msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2021-03-03 10:01+0100\n" "PO-Revision-Date: 2021-03-03 10:01+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\n" "Language-Team: Proxecto Trasno <proxecto@trasno.net>\n"
@ -406,8 +406,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2978,28 +2978,48 @@ msgstr "Preme para engadirlle cerellos ao debuxo."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Preme para engadirlle folerpas ao debuxo." msgstr "Preme para engadirlle folerpas ao debuxo."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Cadrado" msgstr "Cadrado"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Preme e arrastra o rato para debuxar píxeles grandes." msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Preme e arrastra o rato para debuxar píxeles grandes." msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2005-07-26 01:30-0800\n" "PO-Revision-Date: 2005-07-26 01:30-0800\n"
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n" "Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -391,8 +391,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2912,26 +2912,44 @@ msgstr "Klik en beweeg de moes um dien tijken dun te moaken."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik en beweeg de moes um dien tijken dun te moaken." msgstr "Klik en beweeg de moes um dien tijken dun te moaken."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Vaarkaande" msgstr "Vaarkaande"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik en beweeg um sputters te tijken." msgstr "Klik en beweeg um sputters te tijken."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik en beweeg um sputters te tijken." msgstr "Klik en beweeg um sputters te tijken."
#: ../../magic/src/spiral.c:54
#, fuzzy
msgid "Click and drag to create concentric circles."
msgstr "Klik en beweeg um sputters te tijken."
#: ../../magic/src/spiral.c:55
#, fuzzy
msgid "Click and drag to create concentric squares."
msgstr "Klik en beweeg um sputters te tijken."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-31 11:57+0530\n" "PO-Revision-Date: 2017-12-31 11:57+0530\n"
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n" "Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
"Language-Team: Gujarati <team@utkarsh.org>\n" "Language-Team: Gujarati <team@utkarsh.org>\n"
@ -378,8 +378,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2860,28 +2860,48 @@ msgstr "તમારા ચિત્રમાં બરફનાં ગોળા
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "તમારા ચિત્રકામમાં બરફના ટુકડાઓ ઉમેરવા માટે માઉસને ક્લિક કરો." msgstr "તમારા ચિત્રકામમાં બરફના ટુકડાઓ ઉમેરવા માટે માઉસને ક્લિક કરો."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ચોરસ" msgstr "ચોરસ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો." msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો." msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: he\n" "Project-Id-Version: he\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2009-05-10 21:45+0200\n" "PO-Revision-Date: 2009-05-10 21:45+0200\n"
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\n" "Last-Translator: Jorge Mariano <jmariano@ymail.com>\n"
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n" "Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
@ -403,8 +403,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2985,28 +2985,48 @@ msgstr "לחצי להופעת אדוות על התמונה."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "לחצי להופעת אדוות על התמונה." msgstr "לחצי להופעת אדוות על התמונה."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ריבוע" msgstr "ריבוע"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות." msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות." msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-08-09 02:17+1000\n" "PO-Revision-Date: 2014-08-09 02:17+1000\n"
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n" "Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
"Language-Team: Hindi\n" "Language-Team: Hindi\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2999,28 +2999,48 @@ msgstr "तस्वीर में बर्फ की गेंदों क
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|" msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "चोकार १" msgstr "चोकार १"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|" msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|" msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-26 10:53+0100\n" "PO-Revision-Date: 2017-12-26 10:53+0100\n"
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n" "Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -393,8 +393,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2936,28 +2936,48 @@ msgstr "Klikni da dodaš grude snijega na sliku."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klikni da dodaš pahuljice na sliu.." msgstr "Klikni da dodaš pahuljice na sliu.."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrat" msgstr "Kvadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klikni i pomakni miš za crtanje velikih cigla." msgstr "Klikni i pomakni miš za crtanje velikih cigla."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klikni i pomakni miš za crtanje velikih cigla." msgstr "Klikni i pomakni miš za crtanje velikih cigla."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klikni i pomakni miš za crtanje velikih cigla."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klikni i pomakni miš za crtanje velikih cigla."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-28 12:48+0200\n" "PO-Revision-Date: 2014-06-28 12:48+0200\n"
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n" "Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n" "Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3021,28 +3021,48 @@ msgstr "Kattints a hógolyók hozzáadásához a rajzhoz."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Kattints a hópelyhek hozzáadásához a rajzhoz." msgstr "Kattints a hópelyhek hozzáadásához a rajzhoz."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Négyzet" msgstr "Négyzet"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni." msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni." msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.8\n" "Project-Id-Version: 1.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-03-22 11:39+0400\n" "PO-Revision-Date: 2014-03-22 11:39+0400\n"
"Last-Translator: Aram Palyan <ararat.info@gmail.com>\n" "Last-Translator: Aram Palyan <ararat.info@gmail.com>\n"
"Language-Team: Armenian <ararat.info@gmail.com>\n" "Language-Team: Armenian <ararat.info@gmail.com>\n"
@ -400,8 +400,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3035,28 +3035,48 @@ msgstr "Սեղմիր` նկարումդ ձնագնդիներ ավելացնելո
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Սեղմիր` նկարումդ ձյան փաթիլներ ավելացնելու համար:" msgstr "Սեղմիր` նկարումդ ձյան փաթիլներ ավելացնելու համար:"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Քառակուսի" msgstr "Քառակուսի"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար" msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար" msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-09 04:22+0000\n" "PO-Revision-Date: 2017-12-09 04:22+0000\n"
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n" "Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3003,28 +3003,48 @@ msgstr "Klik untuk menambahkan bola salju pada gambar anda."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik untuk menambahkan serpihan salju pada gambar anda." msgstr "Klik untuk menambahkan serpihan salju pada gambar anda."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Persegi" msgstr "Persegi"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik dan pindahkan untuk menggambar balok besar." msgstr "Klik dan pindahkan untuk menggambar balok besar."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik dan pindahkan untuk menggambar balok besar." msgstr "Klik dan pindahkan untuk menggambar balok besar."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klik dan pindahkan untuk menggambar balok besar."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klik dan pindahkan untuk menggambar balok besar."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2023-06-28 15:44+0000\n" "PO-Revision-Date: 2023-06-28 15:44+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n" "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic\n" "Language-Team: Icelandic\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2852,28 +2852,48 @@ msgstr "Smelltu til bæta snjóboltum við myndina þína."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Smelltu til bæta snjókornum við myndina þína." msgstr "Smelltu til bæta snjókornum við myndina þína."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Ferningur" msgstr "Ferningur"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla." msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla." msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.23\n" "Project-Id-Version: TuxPaint 0.9.23\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-18 09:15+0000\n" "PO-Revision-Date: 2017-12-18 09:15+0000\n"
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n" "Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
@ -416,8 +416,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3035,28 +3035,48 @@ msgstr "Fai clic per aggiungere palle di neve al tuo disegno."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Fai clic per aggiungere fiocchi di neve al tuo disegno." msgstr "Fai clic per aggiungere fiocchi di neve al tuo disegno."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Quadrato" msgstr "Quadrato"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Fai clic e trascina per disegnare dei mattoni grandi." msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Fai clic e trascina per disegnare dei mattoni grandi." msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint Inuktitut\n" "Project-Id-Version: Tuxpaint Inuktitut\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2013-07-04 16:05-0500\n" "PO-Revision-Date: 2013-07-04 16:05-0500\n"
"Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n" "Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n"
"Language-Team: LANGUAGE <harveyginter@gmail.com>\n" "Language-Team: LANGUAGE <harveyginter@gmail.com>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2975,28 +2975,48 @@ msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᕐᒥᒃ ᐊᐳᑎᐊᕐᔪᑕᕐᓰᓂ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᕐᒥᒃ ᐱᓕᓕᕐᑐᐃᓂᕐᒧᑦ" msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᕐᒥᒃ ᐱᓕᓕᕐᑐᐃᓂᕐᒧᑦ"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ᓯᒃᑭᑕᖅ" msgstr "ᓯᒃᑭᑕᖅ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ." msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ." msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.29\n" "Project-Id-Version: tuxpaint 0.9.29\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-06-15 21:26+0900\n" "PO-Revision-Date: 2024-06-15 21:26+0900\n"
"Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n" "Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n"
"Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n" "Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n"
@ -394,8 +394,8 @@ msgstr ""
#| msgid "New Magic tools: Dither, Filled Polygon." #| msgid "New Magic tools: Dither, Filled Polygon."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "「まほう」ツールの追加: 「ディザ」「たかっけい」" msgstr "「まほう」ツールの追加: 「ディザ」「たかっけい」"
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2999,28 +2999,50 @@ msgstr "えを クリックして ぜんたいに ゆきだまを かこう。"
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "えを クリックして ぜんたいに ゆきを ふらせよう。" msgstr "えを クリックして ぜんたいに ゆきを ふらせよう。"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ましかく" msgstr "ましかく"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "とうかく びょうが"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "おおきなドットのふでで せんを かこう。" msgstr "おおきなドットのふでで せんを かこう。"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "おおきなドットのふでで せんを かこう。" msgstr "おおきなドットのふでで せんを かこう。"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "おおきなドットのふでで せんを かこう。"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "おおきなドットのふでで せんを かこう。"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint\n" "Project-Id-Version: TuxPaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2023-04-01 20:01+0400\n" "PO-Revision-Date: 2023-04-01 20:01+0400\n"
"Last-Translator: Giasher <giasher@gmail.com>\n" "Last-Translator: Giasher <giasher@gmail.com>\n"
"Language-Team: Gia Shervashidze <giasher@gmail.com>\n" "Language-Team: Gia Shervashidze <giasher@gmail.com>\n"
@ -392,8 +392,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2914,28 +2914,48 @@ msgstr "დაწკაპეთ თქვენს ნახატზე გუ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "დაწკაპეთ თქვენს ნახატზე ფიფქების დასამატებლად." msgstr "დაწკაპეთ თქვენს ნახატზე ფიფქების დასამატებლად."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "კვადრატი" msgstr "კვადრატი"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის." msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის." msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: kab\n" "Project-Id-Version: kab\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-23 23:11+0100\n" "PO-Revision-Date: 2017-12-23 23:11+0100\n"
"Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n" "Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3034,28 +3034,48 @@ msgstr "Ssed iwakken ad ternuḍ takurin n wedfel i tugna."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Ssed iwakken ad ternuḍ iḥeḍḍufen n wedfel i tugna." msgstr "Ssed iwakken ad ternuḍ iḥeḍḍufen n wedfel i tugna."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Amkuẓ" msgstr "Amkuẓ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin." msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin." msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2008-05-30 15:41+0700\n" "PO-Revision-Date: 2008-05-30 15:41+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2932,28 +2932,48 @@ msgstr "ចុច ដើម្បី​ធ្វើ​ឲ្យ​រូបភ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ចុច ដើម្បី​ធ្វើ​ឲ្យ​រូបភាព​របស់​អ្នក​គួច ។" msgstr "ចុច ដើម្បី​ធ្វើ​ឲ្យ​រូបភាព​របស់​អ្នក​គួច ។"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ការេ" msgstr "ការេ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។" msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។" msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​គូរ​រូប​ឥដ្ឋ​ធំៗ ។"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-08 23:43+0630\n" "PO-Revision-Date: 2014-06-08 23:43+0630\n"
"Last-Translator: Savitha <savithasprasad@yahoo.com>\n" "Last-Translator: Savitha <savithasprasad@yahoo.com>\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n" "Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3045,28 +3045,48 @@ msgstr "ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಚಿತ್ರಕ್ಕೆ ಹಿ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಚಿತ್ರಕ್ಕೆ ಹಿಮದ ಚೂರುಗಳನ್ನು ಸೇರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ." msgstr "ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಚಿತ್ರಕ್ಕೆ ಹಿಮದ ಚೂರುಗಳನ್ನು ಸೇರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ಚೌಕ" msgstr "ಚೌಕ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ." msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ." msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2022-09-10 06:06-0400\n" "PO-Revision-Date: 2022-09-10 06:06-0400\n"
"Last-Translator: Mark K. Kim <markuskimius@gmail.com>\n" "Last-Translator: Mark K. Kim <markuskimius@gmail.com>\n"
"Language-Team: N/A\n" "Language-Team: N/A\n"
@ -383,8 +383,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2834,28 +2834,48 @@ msgstr "눈덩이를 그려보세요."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "눈을 그려보세요." msgstr "눈을 그려보세요."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "정사각형" msgstr "정사각형"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!" msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!" msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: en_gb\n" "Project-Id-Version: en_gb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-05-19 23:18+0200\n" "PO-Revision-Date: 2014-05-19 23:18+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2997,28 +2997,48 @@ msgstr "तुमच्या पिंतुराक झेलाचे बॉ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तुमच्या पिंतुराक झेलाचे पातळ कुडके जोडूंक क्लिक करचें." msgstr "तुमच्या पिंतुराक झेलाचे पातळ कुडके जोडूंक क्लिक करचें."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "चवकोन" msgstr "चवकोन"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो." msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो." msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2012-05-11 18:00+0530\n" "PO-Revision-Date: 2012-05-11 18:00+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3040,28 +3040,48 @@ msgstr " tujea pinturak dova gullo zoddunk klik kor "
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr " tujea pinturak dova borof zoddunk klik kor " msgstr " tujea pinturak dova borof zoddunk klik kor "
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "chovkon" msgstr "chovkon"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor " msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor " msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2012-01-02 11:36+0530\n" "PO-Revision-Date: 2012-01-02 11:36+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Kashmiri-PA\n" "Language-Team: Kashmiri-PA\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3012,28 +3012,48 @@ msgstr "پَنٕنہِ تصویر منٛز شِنہٕ گۄلہٕ رَلاونہ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "پَنٕنہِ تصویر منٛز شِنہٕ تھٔس۪ی رَلاونہٕ خٲطرٕ کٔریو کلِک" msgstr "پَنٕنہِ تصویر منٛز شِنہٕ تھٔس۪ی رَلاونہٕ خٲطرٕ کٔریو کلِک"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr " مۄربعہٕ" msgstr " مۄربعہٕ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ" msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ" msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2012-12-21 11:04+0530\n" "PO-Revision-Date: 2012-12-21 11:04+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Kashmiri-DV\n" "Language-Team: Kashmiri-DV\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3026,28 +3026,48 @@ msgstr "पननॊ तसविर पयॊठ अख शोनो बाल
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "पननॊ तसविर पयॊठ अख शोनो थुस हूररावनो बापत कॊरीव कोलोक." msgstr "पननॊ तसविर पयॊठ अख शोनो थुस हूररावनो बापत कॊरीव कोलोक."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "मुरबबा" msgstr "मुरबबा"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत." msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत." msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ku\n" "Project-Id-Version: ku\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2009-05-25 12:52+0300\n" "PO-Revision-Date: 2009-05-25 12:52+0300\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: en_US <kde-i18n-doc@kde.org>\n" "Language-Team: en_US <kde-i18n-doc@kde.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2947,28 +2947,48 @@ msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake." msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Çargoşe" msgstr "Çargoşe"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne." msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne." msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lb\n" "Project-Id-Version: lb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-02-16 21:10+0100\n" "PO-Revision-Date: 2010-02-16 21:10+0100\n"
"Last-Translator: René Brandenburger <rene@brandenburger.lu>\n" "Last-Translator: René Brandenburger <rene@brandenburger.lu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3000,28 +3000,48 @@ msgstr "Klick fir a Schnéiball op däi Bild ze geheien."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klick fir eng Schnéiflack op däi Bild falen ze loossen." msgstr "Klick fir eng Schnéiflack op däi Bild falen ze loossen."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Véiereck" msgstr "Véiereck"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen." msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen." msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-09-21 09:37+0200\n" "PO-Revision-Date: 2010-09-21 09:37+0200\n"
"Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n" "Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3018,11 +3018,11 @@ msgstr "Nyiga okuteeka amakerenda ga muzira mu kifaananyi kyo"
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Nyiga okuteeka muzira mu kifaananyi kyo" msgstr "Nyiga okuteeka muzira mu kifaananyi kyo"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
@ -3030,18 +3030,38 @@ msgstr ""
"Kitundu kya nzida n'ensonda nnya ezenkanankana nga buli nsonda elina diguli " "Kitundu kya nzida n'ensonda nnya ezenkanankana nga buli nsonda elina diguli "
"kyenda" "kyenda"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kona era otambuze okusiga amaatafali amanene" msgstr "Kona era otambuze okusiga amaatafali amanene"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kona era otambuze okusiga amaatafali amanene" msgstr "Kona era otambuze okusiga amaatafali amanene"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kona era otambuze okusiga amaatafali amanene"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kona era otambuze okusiga amaatafali amanene"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint 0.9.9\n" "Project-Id-Version: Tuxpaint 0.9.9\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2004-12-10 18:11+0200\n" "PO-Revision-Date: 2004-12-10 18:11+0200\n"
"Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n" "Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n"
"Language-Team: Lithuanian <komp_lt@konf.lt>\n" "Language-Team: Lithuanian <komp_lt@konf.lt>\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2944,28 +2944,48 @@ msgstr "Spustelėkite kad ant piešinio atsirastų bangelių."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Spustelėkite kad ant piešinio atsirastų bangelių." msgstr "Spustelėkite kad ant piešinio atsirastų bangelių."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadratas" msgstr "Kvadratas"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Spustelėkite ir pieškite dideles plytas." msgstr "Spustelėkite ir pieškite dideles plytas."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Spustelėkite ir pieškite dideles plytas." msgstr "Spustelėkite ir pieškite dideles plytas."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Spustelėkite ir pieškite dideles plytas."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Spustelėkite ir pieškite dideles plytas."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-11 23:13-0000\n" "PO-Revision-Date: 2014-06-11 23:13-0000\n"
"Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n" "Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n"
"Language-Team: Valoda <raivucis@gmail.com>\n" "Language-Team: Valoda <raivucis@gmail.com>\n"
@ -396,8 +396,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3038,28 +3038,48 @@ msgstr "Noklikšķini, lai bildi pārklātu ar sniegapiku."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Noklikšķini, lai bildi pārklātu ar sniegpārslām." msgstr "Noklikšķini, lai bildi pārklātu ar sniegpārslām."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrāts" msgstr "Kvadrāts"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus." msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus." msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2013-02-18 09:21+0530\n" "PO-Revision-Date: 2013-02-18 09:21+0530\n"
"Last-Translator: sk <sk>\n" "Last-Translator: sk <sk>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n" "Language-Team: American English <kde-i18n-doc@kde.org>\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2991,28 +2991,48 @@ msgstr "तस्वीर मे बर्फक गेंदकेँ जो
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तस्वीरमे बर्फक फ्लेक जोड़बा क' लेल क्लिक करू." msgstr "तस्वीरमे बर्फक फ्लेक जोड़बा क' लेल क्लिक करू."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "वर्ग" msgstr "वर्ग"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू." msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू." msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2006-06-17 23:07+0000\n" "PO-Revision-Date: 2006-06-17 23:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Macedonian <mk@li.org>\n" "Language-Team: Macedonian <mk@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2958,28 +2958,48 @@ msgstr "Кликнете за да направите огледална сли
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Кликнете за да направите огледална слика." msgstr "Кликнете за да направите огледална слика."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Квадрат" msgstr "Квадрат"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли." msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли." msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -18,7 +18,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-08-03 16:29+0530\n" "PO-Revision-Date: 2014-08-03 16:29+0530\n"
"Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n" "Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n"
"Language-Team: Malayalam\n" "Language-Team: Malayalam\n"
@ -405,8 +405,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2996,28 +2996,48 @@ msgstr "ചിത്രത്തില്‍ മഞ്ഞുണ്ടകള്
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ചിത്രത്തില്‍ മഞ്ഞ് വിതറാന്‍ അമര്‍ത്തുക" msgstr "ചിത്രത്തില്‍ മഞ്ഞ് വിതറാന്‍ അമര്‍ത്തുക"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "സമചതുരം" msgstr "സമചതുരം"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക" msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക" msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന്‍ അമര്‍ത്തിയശേഷം നീക്കുക"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -372,8 +372,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2661,22 +2661,38 @@ msgstr ""
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
msgid "Square Spiral" msgid "Square Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:54
msgid "Click and drag to create concentric circles."
msgstr ""
#: ../../magic/src/spiral.c:55
msgid "Click and drag to create concentric squares."
msgstr ""
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
msgid "Spray Paint" msgid "Spray Paint"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2011-10-07 15:05+0530\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n"
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n" "Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2993,28 +2993,48 @@ msgstr "অদোমগী লাইদা স্নো বোল হাপচ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "অদোমগী লাইদা স্নো ফ্লেক্স হাপচিন্নবা ক্লিক তৌরো." msgstr "অদোমগী লাইদা স্নো ফ্লেক্স হাপচিন্নবা ক্লিক তৌরো."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "স্কায়র" msgstr "স্কায়র"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো." msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো." msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2011-10-07 15:05+0530\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n"
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n" "Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -394,8 +394,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2984,28 +2984,48 @@ msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯁ꯭ꯅꯣ ꯕꯣꯜ ꯍꯥꯞꯆꯤ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯁ꯭ꯅꯣ ꯐ꯭ꯂꯦꯛ ꯍꯥꯞꯆꯤꯟꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ." msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯁ꯭ꯅꯣ ꯐ꯭ꯂꯦꯛ ꯍꯥꯞꯆꯤꯟꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ꯁ꯭ꯀꯥꯌꯔ" msgstr "ꯁ꯭ꯀꯥꯌꯔ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ." msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ." msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.21c\n" "Project-Id-Version: tuxpaint 0.9.21c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2013-03-28 12:11+0530\n" "PO-Revision-Date: 2013-03-28 12:11+0530\n"
"Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n" "Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n"
"Language-Team: Marathi\n" "Language-Team: Marathi\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3020,28 +3020,48 @@ msgstr "तस्वीर में बर्फ की गेंदों क
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|" msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "्चोरस" msgstr "्चोरस"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|" msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|" msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2015-03-07 23:30+0000\n" "PO-Revision-Date: 2015-03-07 23:30+0000\n"
"Last-Translator: abuyop <abuyop@gmail.com>\n" "Last-Translator: abuyop <abuyop@gmail.com>\n"
"Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/" "Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/"
@ -407,8 +407,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2994,28 +2994,48 @@ msgstr "Klik untuk tambah bola salji ke dalam gambar anda."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik untuk tambah kepingan salji ke dalam gambar anda." msgstr "Klik untuk tambah kepingan salji ke dalam gambar anda."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Segiempat Sama" msgstr "Segiempat Sama"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik dan gerak untuk melukis bata besar." msgstr "Klik dan gerak untuk melukis bata besar."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik dan gerak untuk melukis bata besar." msgstr "Klik dan gerak untuk melukis bata besar."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Klik dan gerak untuk melukis bata besar."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Klik dan gerak untuk melukis bata besar."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nb\n" "Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2021-06-28 19:40+0200\n" "PO-Revision-Date: 2021-06-28 19:40+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n" "Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
@ -403,8 +403,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2974,28 +2974,48 @@ msgstr "Trykk for å kaste snøballer på tegningen."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Trykk for å drysse snøflak på tegningen." msgstr "Trykk for å drysse snøflak på tegningen."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrat" msgstr "Kvadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler." msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler." msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-09 08:08+0530\n" "PO-Revision-Date: 2014-06-09 08:08+0530\n"
"Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n" "Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3015,28 +3015,48 @@ msgstr "तपाईँको चित्रमा स्नो बल थप
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तपाईँको चित्रमा स्नो फेक थप्नका लागि क्लिक गर्नुहोस्।" msgstr "तपाईँको चित्रमा स्नो फेक थप्नका लागि क्लिक गर्नुहोस्।"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "चारपाटे" msgstr "चारपाटे"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्" msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्" msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2023-03-30 14:41+0200\n" "PO-Revision-Date: 2023-03-30 14:41+0200\n"
"Last-Translator: Willem Heppe <heppew@yahoo.com>\n" "Last-Translator: Willem Heppe <heppew@yahoo.com>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2980,28 +2980,48 @@ msgstr "Klik en zet sneeuwballen op je tekening."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Klik en laat sneeuwvlokken vallen op je tekening." msgstr "Klik en laat sneeuwvlokken vallen op je tekening."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Vierkant" msgstr "Vierkant"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Klik en sleep om de grote pixels te tekenen." msgstr "Klik en sleep om de grote pixels te tekenen."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Klik en sleep om de grote pixels te tekenen." msgstr "Klik en sleep om de grote pixels te tekenen."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Klik en sleep om de grote pixels te tekenen."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Klik en sleep om de grote pixels te tekenen."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nn\n" "Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-06-02 13:17+0200\n" "PO-Revision-Date: 2024-06-02 13:17+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n" "Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
@ -391,8 +391,8 @@ msgstr ""
#| msgid "New Magic tools: Dither, Filled Polygon." #| msgid "New Magic tools: Dither, Filled Polygon."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar." msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2993,28 +2993,50 @@ msgstr "Trykk for å kasta snøballar på teikninga."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Trykk for å dryssa snøflak på teikninga." msgstr "Trykk for å dryssa snøflak på teikninga."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kvadrat" msgstr "Kvadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Isometriske linjer"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar." msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar." msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2006-10-09 20:32+0200\n" "PO-Revision-Date: 2006-10-09 20:32+0200\n"
"Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n" "Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3021,28 +3021,48 @@ msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
"Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe." "Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Sikwere" msgstr "Sikwere"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu." msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu." msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
msgid "Spray Paint" msgid "Spray Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2010-10-04 17:44+0200\n" "PO-Revision-Date: 2010-10-04 17:44+0200\n"
"Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n" "Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3098,28 +3098,48 @@ msgstr "Kgotla gore o tsenye dikgwele tša lehlwa seswantšhong sa gago."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Kgotla gore o tsenye dikgapetlana tša lehlwa seswantšhong sa gago." msgstr "Kgotla gore o tsenye dikgapetlana tša lehlwa seswantšhong sa gago."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Sekwere" msgstr "Sekwere"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo." msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo." msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2021-06-06 18:54+0200\n" "PO-Revision-Date: 2021-06-06 18:54+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Occitan (post 1500) <oc@li.org>\n" "Language-Team: Occitan (post 1500) <oc@li.org>\n"
@ -383,8 +383,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2715,24 +2715,40 @@ msgstr ""
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Carrat" msgstr "Carrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:54
msgid "Click and drag to create concentric circles."
msgstr ""
#: ../../magic/src/spiral.c:55
msgid "Click and drag to create concentric squares."
msgstr ""
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ojibwaytuxpaint\n" "Project-Id-Version: ojibwaytuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2007-10-08 18:19-0500\n" "PO-Revision-Date: 2007-10-08 18:19-0500\n"
"Last-Translator: Ed Montgomery <edm@rocketmail.com>\n" "Last-Translator: Ed Montgomery <edm@rocketmail.com>\n"
"Language-Team: Ed <edm@rocketmail.com>\n" "Language-Team: Ed <edm@rocketmail.com>\n"
@ -381,8 +381,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2838,26 +2838,44 @@ msgstr "Waabimoojichaagwaazo"
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Waabimoojichaagwaazo" msgstr "Waabimoojichaagwaazo"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Zhashaweyaa" msgstr "Zhashaweyaa"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Waabizo" msgstr "Waabizo"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Waabizo" msgstr "Waabizo"
#: ../../magic/src/spiral.c:54
#, fuzzy
msgid "Click and drag to create concentric circles."
msgstr "Waabizo"
#: ../../magic/src/spiral.c:55
#, fuzzy
msgid "Click and drag to create concentric squares."
msgstr "Waabizo"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Paint" #| msgid "Paint"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2012-04-05 20:08+0530\n" "PO-Revision-Date: 2012-04-05 20:08+0530\n"
"Last-Translator: Ekanta <ekanta@gmail.com>\n" "Last-Translator: Ekanta <ekanta@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3001,28 +3001,48 @@ msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ବରଫ ଗୋଲାଗୁଡ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ହିମକଣଗୁଡିକ ଯୋଗ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ ୤ " msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ହିମକଣଗୁଡିକ ଯୋଗ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ ୤ "
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ବର୍ଗକ୍ଷେତ୍ର" msgstr "ବର୍ଗକ୍ଷେତ୍ର"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ " msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ " msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2022-10-13 16:28-0700\n" "PO-Revision-Date: 2022-10-13 16:28-0700\n"
"Last-Translator: A S Alam <aalam@satluj.org>\n" "Last-Translator: A S Alam <aalam@satluj.org>\n"
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n" "Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
@ -388,8 +388,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2874,28 +2874,48 @@ msgstr "ਆਪਣੀ ਤਸਵੀਰ ਉੱਤੇ ਬਰਫ਼ ਦੀਆਂ ਗ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ਵਰਗ" msgstr "ਵਰਗ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।" msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।" msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-30 18:21+0000\n" "PO-Revision-Date: 2017-12-30 18:21+0000\n"
"Last-Translator: Chris <cjl@sugarlabs.org>\n" "Last-Translator: Chris <cjl@sugarlabs.org>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -400,8 +400,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2957,28 +2957,48 @@ msgstr "Kliknij, aby dodać śnieżk do rysunku."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Kliknij, aby dodać śnieżynki do rysunku." msgstr "Kliknij, aby dodać śnieżynki do rysunku."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Kwadrat" msgstr "Kwadrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Kliknij i przesuń, aby narysować duże cegły." msgstr "Kliknij i przesuń, aby narysować duże cegły."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Kliknij i przesuń, aby narysować duże cegły." msgstr "Kliknij i przesuń, aby narysować duże cegły."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Kliknij i przesuń, aby narysować duże cegły."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Kliknij i przesuń, aby narysować duże cegły."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-10-06 17:17+0100\n" "PO-Revision-Date: 2024-10-06 17:17+0100\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n" "Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
@ -395,10 +395,15 @@ msgid "New Fill mode: \"Eraser\" flood fill."
msgstr "Novo modo de preenchimento: preenchimento com \"Borracha\"." msgstr "Novo modo de preenchimento: preenchimento com \"Borracha\"."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
#, fuzzy
#| msgid ""
#| "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, "
#| "various \"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and "
#| "\"Square Spiral\"."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
"Novas ferramentas de magia: “Pontos de banda desenhada”, \"Rodar\", arte " "Novas ferramentas de magia: “Pontos de banda desenhada”, \"Rodar\", arte "
"\"ASCII\" diversa, diversos \"Fractais\", \"Crescente\", \"Pintura em " "\"ASCII\" diversa, diversos \"Fractais\", \"Crescente\", \"Pintura em "
@ -561,8 +566,8 @@ msgid ""
"Minor improvements to the selection buttons for the 'special' colors " "Minor improvements to the selection buttons for the 'special' colors "
"(pipette, HSV picker, and color mixer)." "(pipette, HSV picker, and color mixer)."
msgstr "" msgstr ""
"Pequenos melhoramentos nos botões de seleção para as cores \"especiais\" " "Pequenos melhoramentos nos botões de seleção para as cores "
"(pipeta, seletor HSV e misturador de cores)." "\"especiais\" (pipeta, seletor HSV e misturador de cores)."
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
msgid "Many Magic tools now offer size settings." msgid "Many Magic tools now offer size settings."
@ -3010,22 +3015,44 @@ msgstr "Clica para adicionar bolas de neve ao desenho."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Clica para adicionar flocos de neve ao desenho." msgstr "Clica para adicionar flocos de neve ao desenho."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "Espiral" msgstr "Espiral"
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Espiral quadrada" msgstr "Espiral quadrada"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Linhas isométricas"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Clica e arrasta para criar uma espiral." msgstr "Clica e arrasta para criar uma espiral."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Clica e arrasta para criar uma espiral quadrada." msgstr "Clica e arrasta para criar uma espiral quadrada."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to create a spiral."
msgid "Click and drag to create concentric circles."
msgstr "Clica e arrasta para criar uma espiral."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to create a square spiral."
msgid "Click and drag to create concentric squares."
msgstr "Clica e arrasta para criar uma espiral quadrada."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
msgid "Spray Paint" msgid "Spray Paint"
msgstr "Pintura em spray" msgstr "Pintura em spray"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2017-12-06 13:01-0300\n" "PO-Revision-Date: 2017-12-06 13:01-0300\n"
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n" "Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -397,8 +397,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2963,28 +2963,48 @@ msgstr "Clique para jogar bolas de neve na sua figura."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Clique para adicionar flocos de neve à sua figura." msgstr "Clique para adicionar flocos de neve à sua figura."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Quadrado" msgstr "Quadrado"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Clique e arraste para desenhar tijolos grandes." msgstr "Clique e arraste para desenhar tijolos grandes."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Clique e arraste para desenhar tijolos grandes." msgstr "Clique e arraste para desenhar tijolos grandes."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Clique e arraste para desenhar tijolos grandes."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Clique e arraste para desenhar tijolos grandes."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint 0.9.2pre\n" "Project-Id-Version: Tuxpaint 0.9.2pre\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2003-01-03 21:32-0500\n" "PO-Revision-Date: 2003-01-03 21:32-0500\n"
"Language-Team: Romanian <ro@li.org>\n" "Language-Team: Romanian <ro@li.org>\n"
"Language: ro\n" "Language: ro\n"
@ -401,8 +401,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3065,28 +3065,48 @@ msgstr "Click pentru a adăuga bulgări de zăpadă."
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Click pentru a adăuga fulgi de zăpadă pe pictura ta." msgstr "Click pentru a adăuga fulgi de zăpadă pe pictura ta."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Pătrat" msgstr "Pătrat"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Click şi mişcă pentru a desena blocuri mari." msgstr "Click şi mişcă pentru a desena blocuri mari."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Click şi mişcă pentru a desena blocuri mari." msgstr "Click şi mişcă pentru a desena blocuri mari."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "Click şi mişcă pentru a desena blocuri mari."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "Click şi mişcă pentru a desena blocuri mari."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint\n" "Project-Id-Version: TuxPaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2024-06-27 16:04+0300\n" "PO-Revision-Date: 2024-06-27 16:04+0300\n"
"Last-Translator: Alevtina <karashokovaaa@basealt.ru>\n" "Last-Translator: Alevtina <karashokovaaa@basealt.ru>\n"
"Language-Team: Basealt Translation Team\n" "Language-Team: Basealt Translation Team\n"
@ -430,8 +430,8 @@ msgstr ""
#| msgid "New Magic tools: Dither, Filled Polygon." #| msgid "New Magic tools: Dither, Filled Polygon."
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
"Новые магические инструменты: Узор из точек, Закрашенный многоугольник." "Новые магические инструменты: Узор из точек, Закрашенный многоугольник."
@ -3079,28 +3079,50 @@ msgstr "Щёлкните, чтобы добавить снежки на карт
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Щёлкните, чтобы добавить снежинки на картинку." msgstr "Щёлкните, чтобы добавить снежинки на картинку."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "Квадрат" msgstr "Квадрат"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
#, fuzzy
#| msgid "Isometric Lines"
msgid "Concentric Circles"
msgstr "Изометрические линии"
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы." msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large pixels." #| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы." msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric circles."
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large pixels."
msgid "Click and drag to create concentric squares."
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n" "Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@ -405,8 +405,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2881,26 +2881,44 @@ msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho"
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho" msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "kare" msgstr "kare"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "Na Kwimura Kuri Gushushanya" msgstr "Na Kwimura Kuri Gushushanya"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "Na Kwimura Kuri Gushushanya" msgstr "Na Kwimura Kuri Gushushanya"
#: ../../magic/src/spiral.c:54
#, fuzzy
msgid "Click and drag to create concentric circles."
msgstr "Na Kwimura Kuri Gushushanya"
#: ../../magic/src/spiral.c:55
#, fuzzy
msgid "Click and drag to create concentric squares."
msgstr "Na Kwimura Kuri Gushushanya"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
msgid "Spray Paint" msgid "Spray Paint"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2011-11-19 07:03+0530\n" "PO-Revision-Date: 2011-11-19 07:03+0530\n"
"Last-Translator: Aarathi Bala\n" "Last-Translator: Aarathi Bala\n"
"Language-Team: \n" "Language-Team: \n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2983,28 +2983,48 @@ msgstr "तव चित्रं प्रति तुषारकणान्
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "तव चित्रं प्रति तुषारकणान् सङ्कलयितुं क्लिक् कुरु।" msgstr "तव चित्रं प्रति तुषारकणान् सङ्कलयितुं क्लिक् कुरु।"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "समचतुर्भुजः" msgstr "समचतुर्भुजः"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।" msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।" msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2014-06-16 16:55+0530\n" "PO-Revision-Date: 2014-06-16 16:55+0530\n"
"Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n" "Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -395,8 +395,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -3004,28 +3004,48 @@ msgstr "आमाक् चिता़र रे इतिञ दाक् ढ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "आमाक् चिता़र रे इतिञ दाक् रोत् सेलेद ला़गित् ओताय मे." msgstr "आमाक् चिता़र रे इतिञ दाक् रोत् सेलेद ला़गित् ओताय मे."
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "पुन सोमान जिलिञ गार ते एसेत् तेयार, पुन सिरा" msgstr "पुन सोमान जिलिञ गार ते एसेत् तेयार, पुन सिरा"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे." msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and move to draw large bricks." #| msgid "Click and move to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे." msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and move to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-04 21:06-0700\n" "POT-Creation-Date: 2024-10-07 22:44-0700\n"
"PO-Revision-Date: 2022-02-11 18:33+0530\n" "PO-Revision-Date: 2022-02-11 18:33+0530\n"
"Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n" "Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -392,8 +392,8 @@ msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
msgid "" msgid ""
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various " "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square " "\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
"Spiral\"." "\"Concentric Circle\", and \"Concentric Square\"."
msgstr "" msgstr ""
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54 #: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
@ -2977,28 +2977,48 @@ msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱤᱛᱤᱧ ᱫᱟᱜ ᱰᱷᱩ
msgid "Click to add snow flakes to your picture." msgid "Click to add snow flakes to your picture."
msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱤᱛᱤᱧ ᱫᱟᱜ ᱨᱚᱫ ᱥᱮᱞᱮᱫ ᱞᱟᱹᱜᱤᱫ ᱚᱛᱟᱭ ᱢᱮ ᱾" msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱤᱛᱤᱧ ᱫᱟᱜ ᱨᱚᱫ ᱥᱮᱞᱮᱫ ᱞᱟᱹᱜᱤᱫ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/spiral.c:41 #: ../../magic/src/spiral.c:45
msgid "Spiral" msgid "Spiral"
msgstr "" msgstr ""
#: ../../magic/src/spiral.c:42 #: ../../magic/src/spiral.c:46
#, fuzzy #, fuzzy
#| msgid "Square" #| msgid "Square"
msgid "Square Spiral" msgid "Square Spiral"
msgstr "ᱯᱩᱱ ᱥᱚᱢᱟᱱ ᱡᱤᱞᱤᱧ ᱜᱟᱨ ᱛᱮ ᱮᱥᱮᱫ ᱛᱮᱭᱟᱨ, ᱯᱩᱱ ᱥᱤᱨᱟ" msgstr "ᱯᱩᱱ ᱥᱚᱢᱟᱱ ᱡᱤᱞᱤᱧ ᱜᱟᱨ ᱛᱮ ᱮᱥᱮᱫ ᱛᱮᱭᱟᱨ, ᱯᱩᱱ ᱥᱤᱨᱟ"
#: ../../magic/src/spiral.c:46 #: ../../magic/src/spiral.c:47
msgid "Concentric Circles"
msgstr ""
#: ../../magic/src/spiral.c:48
msgid "Concentric Squares"
msgstr ""
#: ../../magic/src/spiral.c:52
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a spiral." msgid "Click and drag to create a spiral."
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/spiral.c:47 #: ../../magic/src/spiral.c:53
#, fuzzy #, fuzzy
#| msgid "Click and drag to draw large bricks." #| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create a square spiral." msgid "Click and drag to create a square spiral."
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/spiral.c:54
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric circles."
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/spiral.c:55
#, fuzzy
#| msgid "Click and drag to draw large bricks."
msgid "Click and drag to create concentric squares."
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/spraypaint.c:104 #: ../../magic/src/spraypaint.c:104
#, fuzzy #, fuzzy
#| msgid "Metal Paint" #| msgid "Metal Paint"

Some files were not shown because too many files have changed in this diff Show more