WIP "Spiral" & "Square Spiral" magic tools
Needs docs, icons, sound effects, and correct grouping/ordering. For https://sourceforge.net/p/tuxpaint/feature-requests/261/
This commit is contained in:
parent
f296e98acf
commit
cc8b903850
134 changed files with 3590 additions and 265 deletions
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2024
|
|||
Various contributors (see below, and CHANGES.txt)
|
||||
https://tuxpaint.org/
|
||||
|
||||
June 17, 2002 - October 2, 2024
|
||||
June 17, 2002 - October 4, 2024
|
||||
|
||||
* Design and Coding:
|
||||
|
||||
|
|
@ -247,6 +247,9 @@ June 17, 2002 - October 2, 2024
|
|||
Creative Commons Zero 1.0 Public Domain License by "j4p4n"
|
||||
<https://openclipart.org/artist/j4p4n>
|
||||
|
||||
"Spiral" & "Spiral Square" magic tools
|
||||
by Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
Bloom magic tool
|
||||
by Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2024
|
|||
Various contributors (see below, and AUTHORS.txt)
|
||||
https://tuxpaint.org/
|
||||
|
||||
2024.October.2 (0.9.34)
|
||||
2024.October.4 (0.9.34)
|
||||
* New Magic Tools:
|
||||
----------------
|
||||
* "Comic Dots", draws repeating dots (using a multiply blend)
|
||||
|
|
@ -76,7 +76,14 @@ https://tuxpaint.org/
|
|||
<https://freesound.org/people/rpew1/sounds/108483/>
|
||||
Creative Commons CC0 1.0 Universal by "rpew1"
|
||||
<https://freesound.org/people/rpew1/>
|
||||
+ TODO Needs documentation
|
||||
|
||||
* "Spiral" and "Square Spiral": Draw spiral shapes.
|
||||
+ Code by Bill Kendrick <bill@newbreedsoftware.com>
|
||||
+ TODO Correct location
|
||||
+ TODO Icons
|
||||
+ TODO Sound effects
|
||||
+ TODO Documentation
|
||||
+ Closes https://sourceforge.net/p/tuxpaint/feature-requests/261/
|
||||
|
||||
* Magic Tool Improvements:
|
||||
------------------------
|
||||
|
|
|
|||
351
magic/src/spiral.c
Normal file
351
magic/src/spiral.c
Normal file
|
|
@ -0,0 +1,351 @@
|
|||
/*
|
||||
spiral.c
|
||||
|
||||
Draws a spiral shape centered around the mouse click point.
|
||||
|
||||
Tux Paint - A simple drawing program for children.
|
||||
|
||||
Copyright (c) 2024 by Bill Kendrick
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
Last updated: October 3, 2024
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "tp_magic_api.h"
|
||||
#include "SDL_image.h"
|
||||
#include "SDL_mixer.h"
|
||||
|
||||
enum {
|
||||
TOOL_SPIRAL_CIRCLE,
|
||||
TOOL_SPIRAL_SQUARE,
|
||||
NUM_TOOLS
|
||||
};
|
||||
|
||||
const char * spiral_names[NUM_TOOLS] = {
|
||||
gettext_noop("Spiral"),
|
||||
gettext_noop("Square Spiral"),
|
||||
};
|
||||
|
||||
const char * spiral_descrs[NUM_TOOLS] = {
|
||||
gettext_noop("Click and drag to create a spiral."),
|
||||
gettext_noop("Click and drag to create a square spiral."),
|
||||
};
|
||||
|
||||
static Mix_Chunk *spiral_snd;
|
||||
static int spiral_thickness = 2;
|
||||
Uint32 spiral_color;
|
||||
int spiral_cx, spiral_cy, spiral_has_dragged;
|
||||
|
||||
/* When first clicking, and when click-and-release-ing
|
||||
(without dragging), we'll draw a default spiral that
|
||||
is `MIN_RADIUS` * `sprial_thickness` in radius. */
|
||||
#define MIN_RADIUS 32
|
||||
|
||||
/* Angle will be the radius multiplied by `ITER` divided
|
||||
by `spiral_thickness`; the larger the thickness, the
|
||||
fewer the iterations (the slower the spiral will go around) */
|
||||
#define ITER 50
|
||||
|
||||
Uint32 spiral_api_version(void);
|
||||
int spiral_init(magic_api * api, Uint8 disabled_features, Uint8 complexity_level);
|
||||
int spiral_get_tool_count(magic_api * api);
|
||||
SDL_Surface *spiral_get_icon(magic_api * api, int which);
|
||||
char *spiral_get_name(magic_api * api, int which);
|
||||
int spiral_get_group(magic_api * api, int which);
|
||||
int spiral_get_order(int which);
|
||||
char *spiral_get_description(magic_api * api, int which, int mode);
|
||||
|
||||
void spiral_drag(magic_api * api, int which, SDL_Surface * canvas,
|
||||
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect);
|
||||
|
||||
void spiral_click(magic_api * api, int which, int mode,
|
||||
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect);
|
||||
|
||||
void spiral_release(magic_api * api, int which,
|
||||
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect);
|
||||
|
||||
void spiral_shutdown(magic_api * api);
|
||||
void spiral_set_color(magic_api * api, int which, SDL_Surface * canvas,
|
||||
SDL_Surface * last, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect);
|
||||
int spiral_requires_colors(magic_api * api, int which);
|
||||
void spiral_switchin(magic_api * api, int which, int mode, SDL_Surface * canvas);
|
||||
void spiral_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas);
|
||||
int spiral_modes(magic_api * api, int which);
|
||||
Uint8 spiral_accepted_sizes(magic_api * api, int which, int mode);
|
||||
Uint8 spiral_default_size(magic_api * api, int which, int mode);
|
||||
void spiral_set_size(magic_api * api, int which, int mode, SDL_Surface * canvas, SDL_Surface * last, Uint8 size,
|
||||
SDL_Rect * update_rect);
|
||||
|
||||
|
||||
Uint32 spiral_api_version(void)
|
||||
{
|
||||
return (TP_MAGIC_API_VERSION);
|
||||
}
|
||||
|
||||
int spiral_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint8 complexity_level ATTRIBUTE_UNUSED)
|
||||
{
|
||||
char fname[1024];
|
||||
|
||||
snprintf(fname, sizeof(fname), "%ssounds/magic/xor.ogg", api->data_directory);
|
||||
spiral_snd = Mix_LoadWAV(fname);
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
int spiral_get_tool_count(magic_api * api ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return (NUM_TOOLS);
|
||||
}
|
||||
|
||||
SDL_Surface *spiral_get_icon(magic_api * api, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
char fname[1024];
|
||||
|
||||
snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory);
|
||||
|
||||
return (IMG_Load(fname));
|
||||
}
|
||||
|
||||
char *spiral_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return (strdup(gettext(spiral_names[which])));
|
||||
}
|
||||
|
||||
int spiral_get_group(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return MAGIC_TYPE_COLOR_FILTERS;
|
||||
}
|
||||
|
||||
int spiral_get_order(int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return 800;
|
||||
}
|
||||
|
||||
char *spiral_get_description(magic_api * api ATTRIBUTE_UNUSED, int which, int mode)
|
||||
{
|
||||
return (strdup(gettext(spiral_descrs[which])));
|
||||
}
|
||||
|
||||
static void do_spiral_render(void *ptr, int which,
|
||||
SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED, int x, int y)
|
||||
{
|
||||
magic_api *api = (magic_api *) ptr;
|
||||
SDL_Rect dest;
|
||||
int thick;
|
||||
|
||||
thick = spiral_thickness * 4;
|
||||
|
||||
if (which == TOOL_SPIRAL_CIRCLE)
|
||||
{
|
||||
int xx, yy;
|
||||
|
||||
for (yy = -thick / 2; yy <= thick / 2; yy++)
|
||||
for (xx = -thick / 2; xx <= thick / 2; xx++)
|
||||
if (api->in_circle(xx, yy, thick / 2))
|
||||
api->putpixel(canvas, x + xx, y + yy, spiral_color);
|
||||
}
|
||||
else if (which == TOOL_SPIRAL_SQUARE)
|
||||
{
|
||||
dest.x = x - thick / 2;
|
||||
dest.y = y - thick / 2;
|
||||
dest.w = thick;
|
||||
dest.h = thick;
|
||||
|
||||
SDL_FillRect(canvas, &dest, spiral_color);
|
||||
}
|
||||
}
|
||||
|
||||
void do_spiral(magic_api * api, int which, SDL_Surface * canvas,
|
||||
SDL_Surface * last, int x, int y, SDL_Rect * update_rect,
|
||||
int final)
|
||||
{
|
||||
float radius, i, xx, yy, xsgn, ysgn, ox, oy, stp, oxx, oyy;
|
||||
|
||||
SDL_BlitSurface(last, NULL, canvas, NULL);
|
||||
|
||||
if (x < spiral_cx)
|
||||
xsgn = -1;
|
||||
else
|
||||
xsgn = 1;
|
||||
|
||||
if (y < spiral_cy)
|
||||
ysgn = -1;
|
||||
else
|
||||
ysgn = 1;
|
||||
|
||||
if (final)
|
||||
stp = 0.1;
|
||||
else
|
||||
stp = 0.5;
|
||||
|
||||
if (which == TOOL_SPIRAL_CIRCLE)
|
||||
{
|
||||
radius = sqrt(pow((x - spiral_cx), 2) + pow((y - spiral_cy), 2));
|
||||
|
||||
oxx = 0;
|
||||
oyy = 0;
|
||||
|
||||
for (i = 0; i < radius; i += stp)
|
||||
{
|
||||
xx = (i * cos((i * (ITER / spiral_thickness)) / 180.0 * M_PI)) * xsgn;
|
||||
yy = (i * sin((i * (ITER / spiral_thickness)) / 180.0 * M_PI)) * ysgn;
|
||||
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_SPIRAL_SQUARE)
|
||||
{
|
||||
int dir, oi, ooi, ix, iy;
|
||||
|
||||
radius = max(abs(x - spiral_cx), abs(y - spiral_cy));
|
||||
|
||||
dir = 0;
|
||||
ooi = 0;
|
||||
oi = 0;
|
||||
for (i = spiral_thickness; i < radius; i += spiral_thickness * 2)
|
||||
{
|
||||
if (dir == 0) // right
|
||||
api->line((void *) api, which, canvas, NULL,
|
||||
spiral_cx - (ooi * xsgn), spiral_cy - (oi * ysgn),
|
||||
spiral_cx + (i * xsgn), spiral_cy - (oi * ysgn),
|
||||
1, do_spiral_render);
|
||||
else if (dir == 1) // down
|
||||
api->line((void *) api, which, canvas, NULL,
|
||||
spiral_cx + (oi * xsgn), spiral_cy - (ooi * ysgn),
|
||||
spiral_cx + (oi * xsgn), spiral_cy + (i * ysgn),
|
||||
1, do_spiral_render);
|
||||
else if (dir == 2) // left
|
||||
api->line((void *) api, which, canvas, NULL,
|
||||
spiral_cx + (ooi * xsgn), spiral_cy + (oi * ysgn),
|
||||
spiral_cx - (i * xsgn), spiral_cy + (oi * ysgn),
|
||||
1, do_spiral_render);
|
||||
else if (dir == 3) // up
|
||||
api->line((void *) api, which, canvas, NULL,
|
||||
spiral_cx - (oi * xsgn), spiral_cy + (ooi * ysgn),
|
||||
spiral_cx - (oi * xsgn), spiral_cy - (i * ysgn),
|
||||
1, do_spiral_render);
|
||||
|
||||
dir = (dir + 1) % 4;
|
||||
|
||||
ooi = oi;
|
||||
oi = i;
|
||||
}
|
||||
}
|
||||
|
||||
/* FIXME */
|
||||
update_rect->x = 0;
|
||||
update_rect->y = 0;
|
||||
update_rect->w = canvas->w;
|
||||
update_rect->h = canvas->h;
|
||||
|
||||
api->playsound(spiral_snd, (x * 255) / canvas->w, 255);
|
||||
}
|
||||
|
||||
void spiral_drag(magic_api * api, int which, SDL_Surface * canvas,
|
||||
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect)
|
||||
{
|
||||
spiral_has_dragged = 1;
|
||||
do_spiral(api, which, canvas, last, x, y, update_rect, 0);
|
||||
}
|
||||
|
||||
void spiral_click(magic_api * api, int which, int mode,
|
||||
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect)
|
||||
{
|
||||
spiral_cx = x;
|
||||
spiral_cy = y;
|
||||
|
||||
spiral_drag(api, which, canvas, last, x, y, x + (spiral_thickness * MIN_RADIUS), y, update_rect);
|
||||
|
||||
spiral_has_dragged = 0;
|
||||
}
|
||||
|
||||
void spiral_release(magic_api * api, int which,
|
||||
SDL_Surface * canvas,
|
||||
SDL_Surface * last , int x,
|
||||
int y, SDL_Rect * update_rect)
|
||||
{
|
||||
float radius;
|
||||
|
||||
radius = sqrt(pow((x - spiral_cx), 2) + pow((y - spiral_cy), 2));
|
||||
if (radius < spiral_thickness * MIN_RADIUS && spiral_has_dragged == 0)
|
||||
x = spiral_cx + (spiral_thickness * MIN_RADIUS);
|
||||
|
||||
do_spiral(api, which, canvas, last, x, y, update_rect, 1);
|
||||
}
|
||||
|
||||
void spiral_shutdown(magic_api * api ATTRIBUTE_UNUSED)
|
||||
{
|
||||
if (spiral_snd != NULL)
|
||||
Mix_FreeChunk(spiral_snd);
|
||||
}
|
||||
|
||||
void spiral_set_color(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, SDL_Surface * canvas,
|
||||
SDL_Surface * last ATTRIBUTE_UNUSED, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect ATTRIBUTE_UNUSED)
|
||||
{
|
||||
spiral_color = SDL_MapRGB(canvas->format, r, g, b);
|
||||
}
|
||||
|
||||
int spiral_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
void spiral_switchin(magic_api * api ATTRIBUTE_UNUSED,
|
||||
int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED)
|
||||
{
|
||||
}
|
||||
|
||||
void spiral_switchout(magic_api * api ATTRIBUTE_UNUSED,
|
||||
int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED)
|
||||
{
|
||||
}
|
||||
|
||||
int spiral_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return MODE_PAINT;
|
||||
}
|
||||
|
||||
|
||||
Uint8 spiral_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode)
|
||||
{
|
||||
return 8;
|
||||
}
|
||||
|
||||
Uint8 spiral_default_size(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return 4;
|
||||
}
|
||||
|
||||
void spiral_set_size(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED,
|
||||
SDL_Surface * canvas ATTRIBUTE_UNUSED, SDL_Surface * last ATTRIBUTE_UNUSED,
|
||||
Uint8 size ATTRIBUTE_UNUSED, SDL_Rect * update_rect ATTRIBUTE_UNUSED)
|
||||
{
|
||||
spiral_thickness = size;
|
||||
}
|
||||
|
|
@ -47,10 +47,10 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.9.34" date="2024-10-02">
|
||||
<release version="0.9.34" date="2024-10-04">
|
||||
<description>
|
||||
<p>New Fill mode: "Eraser" flood fill.</p>
|
||||
<p>New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", and "Spray Paint".</p>
|
||||
<p>New Magic tools: "Comic dots", "Rotate", various "ASCII" art, various "Fractals", "Crescent", "Spray Paint", "Spiral" and "Square Spiral".</p>
|
||||
<p>New brush: Fluff (gradient).</p>
|
||||
</description>
|
||||
</release>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-12-09 09:00+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3011,6 +3012,28 @@ msgstr "Dii wek imed odilo akuna ikum cal mamegi. "
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Dii wek imed pii mumake mapoto ki malo ikom cal mamegi."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Lagwic angwen marom ducu"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Dii ci idir wek ogo cal matapwali ma dit odoco."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/af.po
27
src/po/af.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: af\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-19 06:38+0000\n"
|
||||
"Last-Translator: OdettePretorius <odettepret@gmail.com>\n"
|
||||
"Language-Team: translate-discuss-af@lists.sourceforge.net\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2962,6 +2963,28 @@ msgstr "Klik om sneeuballe op die prent te maak."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik om sneeuvlokkies oor die prent te maak."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Vierkant"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik en beweeg om groot stene te teken."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik en beweeg om groot stene te teken."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ak.po
27
src/po/ak.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-10-27 10:16-0000\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2980,6 +2981,28 @@ msgstr "Cleeke fa snɔɔ bɔɔlo ka wo nfonyin no ho."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Cleeke fa snɔɔ felake ka wo nfonyin no ho."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ahinanan"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kleeke na twe ma ɛdrɔɔ breeke akɛse."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/am.po
27
src/po/am.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-10 11:45+0100\n"
|
||||
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2969,6 +2970,28 @@ msgstr "በስዕልህ ላይ የበረዶ ኳስ ለመጨመር ጠቅ አድ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "በስዕልህ ላይ የበረዶ ካፊያ ለመጨመር ጠቅ አድርግ።"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ካሬ "
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ትላልቅ ጡቦች ለመሳል አዝራሩን ጠቅ አድርገህ አንቀሳቅስ። "
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/an.po
27
src/po/an.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-29 10:04+0100\n"
|
||||
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
|
||||
"Language-Team: softaragonés\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2985,6 +2986,28 @@ msgstr "Fe clic pa dibuixar bolas de nieu."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Fe clic pa dibuixar copos de nieu."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrau"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Fe clic y arrociega pa dibuixar ladrillos grans."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ar.po
27
src/po/ar.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2008-10-07 14:54+0200\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -407,7 +407,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3009,6 +3010,28 @@ msgstr "انقر لإضافة كرات الثلج لصورتك."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "انقر لإضافة رقائق الثلج لصورتك."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "مربع"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "انقر وحرّكُ لرسَم طوبة كبيرِه."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/as.po
27
src/po/as.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-16 23:33-0800\n"
|
||||
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3027,6 +3028,28 @@ msgstr "আপোনাৰ ছবিলৈ বৰফৰ বলবোৰ যো
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "আপোনাৰ ছবিলৈ বৰফৰ চকলাবোৰ যোগ কৰিবলৈ ক্লিক কৰক."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "বৰ্গক্ষেত্ৰ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ডাঙৰ ইটাবোৰ অংকন কৰিবলৈ ক্লিক কৰক আৰু স্থানান্তৰ কৰক."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2011-02-16 18:38+0200\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3005,6 +3006,28 @@ msgstr "Calca p'amestar boles de ñeve al dibuxu."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Calca p'amestar falopos nel dibuxu."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Cuadráu"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Calca y arrastra pa dibuxar lladrillos grandes."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
31
src/po/az.po
31
src/po/az.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2008-02-10 19:28+0400\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -392,7 +392,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3047,6 +3048,32 @@ msgstr "Zərif dalğalar çəkmək üçün mausun sol düyməsini bas."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Zərif dalğalar çəkmək üçün mausun sol düyməsini bas."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Dördkünc"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
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:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
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
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/be.po
27
src/po/be.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-10 23:09+0300\n"
|
||||
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -398,7 +398,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3011,6 +3012,28 @@ msgstr "Націсніце, каб дадаць снежкі на ваш мал
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Націсніце, каб дадаць сняжынкі на ваш малюнак."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Квадрат"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Націсніце і павадзіце, каб намаляваць вялікія цагліны."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/bg.po
27
src/po/bg.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-02-28 21:39+0200\n"
|
||||
"Last-Translator: Vankata453\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -399,7 +399,8 @@ msgstr ""
|
|||
#| msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
"Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори."
|
||||
|
||||
|
|
@ -3014,6 +3015,28 @@ msgstr "Кликни, за да добавиш снежни топки на ри
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Кликни, за да добавиш снежинки на рисунката."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Квадрат"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Кликни и движи мишката, за да рисуваш големи пиксели."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/bm.po
27
src/po/bm.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-09-04 17:25+0200\n"
|
||||
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3010,6 +3011,28 @@ msgstr "Kilike I ka sanbɛlɛnin ɲɛgɛn k’i ka ja la."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Kilike, i ka sanbɛlɛninkulu k’i ka ja la."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kare"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kilike i ka ɲinɛnin cɛɛnɛ ka birikiden kunba dɔw ɲɛgɛn."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/bn.po
27
src/po/bn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-30 18:24+0000\n"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: Bengali\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2993,6 +2994,28 @@ msgstr "আপনার ছবিতে বরফের বল যোগ কর
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "আপনার ছবিতে বরফের পরত যোগ করতে ক্লিক করুন."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "বর্গ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "বড় ইট আঁকতে ক্লিক করুন ও ঘোরান."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
23
src/po/bo.po
23
src/po/bo.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2006-01-01 17:43+0900\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -381,7 +381,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2715,6 +2716,24 @@ msgstr ""
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "g+iu.bZi."
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/br.po
27
src/po/br.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2005-01-09 14:49+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2921,6 +2922,28 @@ msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Karrezenn"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik ha fiñv al logodenn evit tresañ bloc'hadoù bras."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2011-09-14 13:51+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bodo\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3019,6 +3020,28 @@ msgstr "नोंथांनि सावगारिआव बरफ गथा
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "नोंथांनि सावगारिआव बरफ थुख्रा दाजाबदेरनो क्लिक खालाम।"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "बर्ग दब्लाइ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "गेदेर इटा आखिनो क्लिक खालाम आरो लोरिहो।"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
30
src/po/bs.po
30
src/po/bs.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-11-05 04:24+0000\n"
|
||||
"Last-Translator: Samir Ribić <Unknown>\n"
|
||||
"Language-Team: Bosnian <bs@li.org>\n"
|
||||
|
|
@ -421,7 +421,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3140,6 +3141,31 @@ msgstr ""
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrat"
|
||||
|
||||
#
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klikni i pomjeraj da bi crtao velike cigle."
|
||||
|
||||
#
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klikni i pomjeraj da bi crtao velike cigle."
|
||||
|
||||
#
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
|
|
|
|||
27
src/po/ca.po
27
src/po/ca.po
|
|
@ -21,7 +21,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint cvs 2009-06-21\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-06-04 00:14+0200\n"
|
||||
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n"
|
||||
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\n"
|
||||
|
|
@ -437,7 +437,8 @@ msgstr ""
|
|||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr "Noves eines màgiques: Tramat, Polígon."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3012,6 +3013,28 @@ msgstr "Feu clic per afegir boles de neu al dibuix."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Feu clic per afegir flocs de neu al dibuix."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Feu clic i arrossegueu per dibuixar píxels grans."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Feu clic i arrossegueu per dibuixar píxels grans."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2020-03-29 23:40+0200\n"
|
||||
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n"
|
||||
"Language-Team: LliureX\n"
|
||||
|
|
@ -393,7 +393,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3010,6 +3011,28 @@ msgstr "Feu clic per a afegir boles de neu a la imatge."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Feu clic per a afegir flocs de neu a la imatge."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Feu clic i arrossegueu per a dibuixar rajoles grans."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-09-17 16:19+0200fu\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3052,6 +3053,28 @@ msgstr "imata okwongyera omukishushani kyawe omupiira gwo'rubaare."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Imata okwongyera omukishushani kyawe akajuma ko'rubaare."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kirikwingana hoona"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Imata kandi oyetoroze mawusi okuteera amatafari amahango."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/cs.po
27
src/po/cs.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-07-08 13:33+0100\n"
|
||||
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3013,6 +3014,28 @@ msgstr "Kliknutím přidáš na obrázek sněhové koule."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Kliknutím přidáš na svůj obrázek sněhové vločky."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Čtverec"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kliknutím, nebo pohybem myši nakreslíš velké cihly."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
25
src/po/cy.po
25
src/po/cy.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: cy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2004-09-21 14:29+0100\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2911,6 +2912,26 @@ msgstr "Clicia a symuda'r llygoden i deneuo'r llun."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Clicia a symuda'r llygoden i deneuo'r llun."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Sgwâr"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Clicia a symuda i lunio gwreichion."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Clicia a symuda i lunio gwreichion."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/da.po
27
src/po/da.po
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-05 12:38+0100\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
|
@ -404,7 +404,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2993,6 +2994,28 @@ msgstr "Klik for at tilføje snebolde i dit billede."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik for at tilføje snefnug i dit billede."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik og bevæg for at tegne store mursten."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik og bevæg for at tegne store mursten."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/de.po
27
src/po/de.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-25 21:13+0200\n"
|
||||
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
|
||||
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3001,6 +3002,28 @@ msgstr "Klicke, um deinem Bild Schneebälle hinzuzufügen."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klicke, um deinem Bild Schneeflocken hinzuzufügen."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klicke und ziehe die Maus, um große Blöcke zu malen."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2013-09-04 10:23+0530\n"
|
||||
"Last-Translator: <b>\n"
|
||||
"Language-Team: Dogri\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3001,6 +3002,28 @@ msgstr "अपनी तस्वीरा पर बर्फ-गोले ज
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "अपनी तस्वीरा पर बर्फु दे फाहे जोड़ने आस्तै क्लिक करो."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "वर्ग"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "बड्डियां इट्टां चित्तरने आस्तै क्लिक करो ते लेओ."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/el.po
27
src/po/el.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2021-09-02 07:45+0000\n"
|
||||
"Last-Translator: kiolalis <kiolalis@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3049,6 +3050,28 @@ msgstr "Κάνε κλικ για να προσθέσεις μπάλες χιον
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Κάνε κλικ για να προσθέσεις νιφάδες χιονιού στη ζωγραφιά σου."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Τετράγωνο"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Κάνε κλικ και κίνησε το ποντίκι για να ζωγραφίσεις μεγάλα τούβλα."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-29 23:36+0930\n"
|
||||
"Last-Translator: ilox <ilox11@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3009,6 +3010,28 @@ msgstr "Click to add snow balls to your picture."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Click to add snow flakes to your picture."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Square"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-07-07 12:22+0100\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3005,6 +3006,28 @@ msgstr "Click to add snow balls to your picture."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Click to add snow flakes to your picture."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Square"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-30 21:17+0000\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2966,6 +2967,28 @@ msgstr "Click to add snow balls to your picture."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Click to add snow flakes to your picture."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Square"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.9.16\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2009-09-06 15:46+0100\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: English (South African) <en_za@li.org>\n"
|
||||
|
|
@ -393,7 +393,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2938,6 +2939,28 @@ msgstr "Click and move the mouse around to blur the picture."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Click and move the mouse around to blur the picture."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Square"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Click and move to draw large bricks."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/eo.po
27
src/po/eo.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-16 16:00+0000\n"
|
||||
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n"
|
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
|
||||
|
|
@ -393,7 +393,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2985,6 +2986,28 @@ msgstr "Alklaku por aldoni neĝglobojn al via bildo."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Alklaku por aldoni neĝflokojn al via bildo."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrato"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Alklaku kaj movu por desegni brikegojn."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Alklaku kaj movu por desegni brikegojn."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/es.po
27
src/po/es.po
|
|
@ -29,7 +29,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-18 20:31-0300\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -414,7 +414,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3005,6 +3006,28 @@ msgstr "Haz click para dibujar bolas de nieve."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Haz click para dibujar copos de nieve."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Cuadrado"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Haz click y arrastra el ratón para dibujar grandes ladrillos."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2007-08-05 19:22-0400\n"
|
||||
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\n"
|
||||
"Language-Team: Español <ggabriel@internet.com.uy>\n"
|
||||
|
|
@ -389,7 +389,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2997,6 +2998,28 @@ msgid "Click to add snow flakes to your picture."
|
|||
msgstr ""
|
||||
"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Cuadrado"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/et.po
27
src/po/et.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2015-03-07 13:09+0000\n"
|
||||
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/"
|
||||
|
|
@ -400,7 +400,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2969,6 +2970,28 @@ msgstr "Klõpsa, et lisada pildile lumepalle."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klõpsa, et lisada pildile lumehelbeid."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Ruut"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Tee klõps ja liiguta hiirt, et joonistada suuri telliskive."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/eu.po
27
src/po/eu.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2020-07-30 16:43+0200\n"
|
||||
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
|
||||
"Language-Team: librezale@librezale.org\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2975,6 +2976,28 @@ msgstr "Klik egin irudiari elur-bolak gehitzeko."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik egin irudiari elur malutak gehitzeko."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Laukia"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Egin klik eta mugitu adreilu handiak marrazteko."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/fa.po
27
src/po/fa.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-11-09 21:17+0330\n"
|
||||
"Last-Translator: snima <unix.nima@gmail.com>\n"
|
||||
"Language-Team: farsi <farinaz.hedayat@gmail.com>\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3034,6 +3035,28 @@ msgstr "کلیک کن تا روی تصویرت موج ایجاد شود."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "کلیک کن تا روی تصویرت موج ایجاد شود."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "مربع"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "برای کشیدن آجرهای بزرگ کلیک کن و موس را حرکت بده."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ff.po
27
src/po/ff.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-03 10:35+0200\n"
|
||||
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
|
||||
"Language-Team: FULAH LOCALIZATION\n"
|
||||
|
|
@ -393,7 +393,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2935,6 +2936,28 @@ msgstr "Dobo ngam ɓeydude baluuji nees e natal maa."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Dobo ngam ɓeydude ñaaƴe nees e natal maa."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Nay kiɓɓal"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Dobo, ndaasaa doombel ngam natde tuufeeje mawɗe."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/fi.po
27
src/po/fi.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2015-10-09 18:00+0200\n"
|
||||
"Last-Translator: inactive\n"
|
||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
||||
|
|
@ -402,7 +402,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3007,6 +3008,28 @@ msgstr "Lisää lumipalloja maalaukseesi hiirtä napsauttamalla."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Lisää lumihiutaleita maalaukseesi hiirtä napsauttamalla."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Neliö"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Piirrä isoja tiiliä painamalla hiiren painiketta."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/fo.po
27
src/po/fo.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint 0.9.18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2008-01-18 12:40-0000\n"
|
||||
"Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n"
|
||||
"Language-Team: Faroese <morshus@morshus.com>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2945,6 +2946,28 @@ msgstr "Klikkja til at fáa aldur á myndina."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klikkja til at fáa aldur á myndina."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Ferningur"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klikkja og drag músina til at tekna stórar múrsteinar."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/fr.po
27
src/po/fr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: fr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-09-30 07:37+0200\n"
|
||||
"Last-Translator: jacques.chion@orange.fr\n"
|
||||
"Language-Team: <fr@li.org>\n"
|
||||
|
|
@ -401,7 +401,8 @@ msgstr "Nouveau mode de remplissage : \"Gomme\" avec remplissage."
|
|||
#| "various \"Fractals\", and \"Crescent\"."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
"Nouveaux outils Magie : \"Points Comiques\", \"Rotation\", divers arts "
|
||||
"\"ASCII\", divers \"Fractales\" et \"Croissant\".."
|
||||
|
|
@ -3115,6 +3116,28 @@ msgstr "Clique pour ajouter des boules de neige."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Clique pour ajouter des flocons de neige."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Carré"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Clique et déplace la souris pour dessiner de grands pixels."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Clique et déplace la souris pour dessiner de grands pixels."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ga.po
27
src/po/ga.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2015-10-09 17:38+0500\n"
|
||||
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
|
@ -385,7 +385,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2883,6 +2884,28 @@ msgstr "Cliceáil chun meallta sneachta a chur leis an bpictiúr."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Cliceáil chun cáithníní sneachta a chur leis an bpictiúr."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Cearnóg"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Cliceáil agus tarraing chun picteilíní móra a dhearadh."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/gd.po
27
src/po/gd.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2021-09-02 12:18-0700\n"
|
||||
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
|
||||
"Language-Team: Fòram na Gàidhlig\n"
|
||||
|
|
@ -402,7 +402,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3039,6 +3040,28 @@ msgstr "Briog gus bàlaichean sneachda a chur ris an dealbh agad."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Briog gus bleideagan sneachda a chur ris an dealbh agad."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Ceàrnag"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Briog is slaod an luchag mu thimcheall a tharraing piogsailean mòra."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/gl.po
27
src/po/gl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2021-03-03 10:01+0100\n"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
|
||||
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\n"
|
||||
|
|
@ -406,7 +406,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2977,6 +2978,28 @@ msgstr "Preme para engadirlle cerellos ao debuxo."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Preme para engadirlle folerpas ao debuxo."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Cadrado"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Preme e arrastra o rato para debuxar píxeles grandes."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2005-07-26 01:30-0800\n"
|
||||
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -391,7 +391,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2911,6 +2912,26 @@ msgstr "Klik en beweeg de moes um dien tijken dun te moaken."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik en beweeg de moes um dien tijken dun te moaken."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Vaarkaande"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik en beweeg um sputters te tijken."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik en beweeg um sputters te tijken."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/gu.po
27
src/po/gu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-31 11:57+0530\n"
|
||||
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
|
||||
"Language-Team: Gujarati <team@utkarsh.org>\n"
|
||||
|
|
@ -378,7 +378,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2859,6 +2860,28 @@ msgstr "તમારા ચિત્રમાં બરફનાં ગોળા
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "તમારા ચિત્રકામમાં બરફના ટુકડાઓ ઉમેરવા માટે માઉસને ક્લિક કરો."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ચોરસ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "મોટા પિક્સેલ દોરવા માટે ક્લિક કરો અને ખેંચો."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/he.po
27
src/po/he.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2009-05-10 21:45+0200\n"
|
||||
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\n"
|
||||
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
|
||||
|
|
@ -403,7 +403,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2984,6 +2985,28 @@ msgstr "לחצי להופעת אדוות על התמונה."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "לחצי להופעת אדוות על התמונה."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ריבוע"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "לחצי והזיזי את העכבר לציור לבנים גדולות."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/hi.po
27
src/po/hi.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-08-09 02:17+1000\n"
|
||||
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
|
||||
"Language-Team: Hindi\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2998,6 +2999,28 @@ msgstr "तस्वीर में बर्फ की गेंदों क
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "चोकार १"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/hr.po
27
src/po/hr.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-26 10:53+0100\n"
|
||||
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -393,7 +393,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2935,6 +2936,28 @@ msgstr "Klikni da dodaš grude snijega na sliku."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klikni da dodaš pahuljice na sliu.."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klikni i pomakni miš za crtanje velikih cigla."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klikni i pomakni miš za crtanje velikih cigla."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/hu.po
27
src/po/hu.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-28 12:48+0200\n"
|
||||
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
|
||||
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3020,6 +3021,28 @@ msgstr "Kattints a hógolyók hozzáadásához a rajzhoz."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Kattints a hópelyhek hozzáadásához a rajzhoz."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Négyzet"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kattints oda a rajzodon, ahol nagy téglákat szeretnél rajzolni."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/hy.po
27
src/po/hy.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 1.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-03-22 11:39+0400\n"
|
||||
"Last-Translator: Aram Palyan <ararat.info@gmail.com>\n"
|
||||
"Language-Team: Armenian <ararat.info@gmail.com>\n"
|
||||
|
|
@ -400,7 +400,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3034,6 +3035,28 @@ msgstr "Սեղմիր` նկարումդ ձնագնդիներ ավելացնելո
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Սեղմիր` նկարումդ ձյան փաթիլներ ավելացնելու համար:"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Քառակուսի"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Սեղմիր և տեղաշարժիր մեծ աղյուսներ նկարելու համար"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/id.po
27
src/po/id.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-09 04:22+0000\n"
|
||||
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3002,6 +3003,28 @@ msgstr "Klik untuk menambahkan bola salju pada gambar anda."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik untuk menambahkan serpihan salju pada gambar anda."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Persegi"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik dan pindahkan untuk menggambar balok besar."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik dan pindahkan untuk menggambar balok besar."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/is.po
27
src/po/is.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2023-06-28 15:44+0000\n"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2851,6 +2852,28 @@ msgstr "Smelltu til bæta snjóboltum við myndina þína."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Smelltu til bæta snjókornum við myndina þína."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Ferningur"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Smelltu og dragðu músina til að búa til stóra mynddíla."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
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."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/it.po
27
src/po/it.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.23\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-18 09:15+0000\n"
|
||||
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
|
@ -416,7 +416,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3034,6 +3035,28 @@ msgstr "Fai clic per aggiungere palle di neve al tuo disegno."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Fai clic per aggiungere fiocchi di neve al tuo disegno."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrato"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Fai clic e trascina per disegnare dei mattoni grandi."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/iu.po
27
src/po/iu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint Inuktitut\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2013-07-04 16:05-0500\n"
|
||||
"Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <harveyginter@gmail.com>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2974,6 +2975,28 @@ msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᕐᒥᒃ ᐊᐳᑎᐊᕐᔪᑕᕐᓰᓂ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᕐᒥᒃ ᐱᓕᓕᕐᑐᐃᓂᕐᒧᑦ"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ᓯᒃᑭᑕᖅ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᖏᔪᖑᐊᓂᒃ ᓯᒃᑭᑕᑲᓪᓚᓕᐅᕐᓂᒧᑦ."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ja.po
27
src/po/ja.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.29\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-06-15 21:26+0900\n"
|
||||
"Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n"
|
||||
"Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr "「まほう」ツールの追加: 「ディザ」「たかっけい」"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2998,6 +2999,28 @@ msgstr "えを クリックして ぜんたいに ゆきだまを かこう。"
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "えを クリックして ぜんたいに ゆきを ふらせよう。"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ましかく"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "おおきなドットのふでで せんを かこう。"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "おおきなドットのふでで せんを かこう。"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ka.po
27
src/po/ka.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2023-04-01 20:01+0400\n"
|
||||
"Last-Translator: Giasher <giasher@gmail.com>\n"
|
||||
"Language-Team: Gia Shervashidze <giasher@gmail.com>\n"
|
||||
|
|
@ -392,7 +392,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2913,6 +2914,28 @@ msgstr "დაწკაპეთ თქვენს ნახატზე გუ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "დაწკაპეთ თქვენს ნახატზე ფიფქების დასამატებლად."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "კვადრატი"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "დაწკაპეთ და გადაატარეთ დიდი პიქსელებისთვის."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kab\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-23 23:11+0100\n"
|
||||
"Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3033,6 +3034,28 @@ msgstr "Ssed iwakken ad ternuḍ takurin n wedfel i tugna."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Ssed iwakken ad ternuḍ iḥeḍḍufen n wedfel i tugna."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Amkuẓ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Ssed u selḥu taɣerdayt iwakken ad tsunɣeḍ tibrikin timeqranin."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/km.po
27
src/po/km.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2008-05-30 15:41+0700\n"
|
||||
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
|
||||
"Language-Team: Khmer <support@khmeros.info>\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2931,6 +2932,28 @@ msgstr "ចុច ដើម្បីធ្វើឲ្យរូបភ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ចុច ដើម្បីធ្វើឲ្យរូបភាពរបស់អ្នកគួច ។"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ការេ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ចុច ហើយផ្លាស់ទីកណ្ដុរ ដើម្បីគូររូបឥដ្ឋធំៗ ។"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ចុច ហើយផ្លាស់ទីកណ្ដុរ ដើម្បីគូររូបឥដ្ឋធំៗ ។"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/kn.po
27
src/po/kn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-08 23:43+0630\n"
|
||||
"Last-Translator: Savitha <savithasprasad@yahoo.com>\n"
|
||||
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3044,6 +3045,28 @@ msgstr "ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಚಿತ್ರಕ್ಕೆ ಹಿ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಚಿತ್ರಕ್ಕೆ ಹಿಮದ ಚೂರುಗಳನ್ನು ಸೇರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ಚೌಕ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ದೊಡ್ಡದಾದ ಇಟ್ಟಿಗೆಗಳನ್ನು ರಚಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಜರುಗಿಸಿ."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ko.po
27
src/po/ko.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2022-09-10 06:06-0400\n"
|
||||
"Last-Translator: Mark K. Kim <markuskimius@gmail.com>\n"
|
||||
"Language-Team: N/A\n"
|
||||
|
|
@ -383,7 +383,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2833,6 +2834,28 @@ msgstr "눈덩이를 그려보세요."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "눈을 그려보세요."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "정사각형"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "마우스를 누르고 끌면 큰 화소가 그려져요!"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: en_gb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-05-19 23:18+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2996,6 +2997,28 @@ msgstr "तुमच्या पिंतुराक झेलाचे बॉ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तुमच्या पिंतुराक झेलाचे पातळ कुडके जोडूंक क्लिक करचें."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "चवकोन"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "व्हड इटे पिंतरांवक क्लिक करून दुसरे कडेन व्हरचो."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2012-05-11 18:00+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3039,6 +3040,28 @@ msgstr " tujea pinturak dova gullo zoddunk klik kor "
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr " tujea pinturak dova borof zoddunk klik kor "
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "chovkon"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr " vhodd itte pintranvk klik kor ane zogeantor kor "
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ks.po
27
src/po/ks.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2012-01-02 11:36+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-PA\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3011,6 +3012,28 @@ msgstr "پَنٕنہِ تصویر منٛز شِنہٕ گۄلہٕ رَلاونہ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "پَنٕنہِ تصویر منٛز شِنہٕ تھٔس۪ی رَلاونہٕ خٲطرٕ کٔریو کلِک"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr " مۄربعہٕ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس بَجہٕ سیرِ بناونہٕ خٲطرٕ"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2012-12-21 11:04+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-DV\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3025,6 +3026,28 @@ msgstr "पननॊ तसविर पयॊठ अख शोनो बाल
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "पननॊ तसविर पयॊठ अख शोनो थुस हूररावनो बापत कॊरीव कोलोक."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "मुरबबा"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "कोलोक तॊ पकनॊयीव बजो बरीको डरा करनो बापत."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ku.po
27
src/po/ku.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ku\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2009-05-25 12:52+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: en_US <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2946,6 +2947,28 @@ msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Çargoşe"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Ji bo blokên mezin ên xêzkirinê bitikîne û mişkî bigerîne."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/lb.po
27
src/po/lb.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: lb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-02-16 21:10+0100\n"
|
||||
"Last-Translator: René Brandenburger <rene@brandenburger.lu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2999,6 +3000,28 @@ msgstr "Klick fir a Schnéiball op däi Bild ze geheien."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klick fir eng Schnéiflack op däi Bild falen ze loossen."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Véiereck"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klick a beweeg d'Maus fir grouss Zillen ze molen."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
29
src/po/lg.po
29
src/po/lg.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-09-21 09:37+0200\n"
|
||||
"Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3017,6 +3018,30 @@ msgstr "Nyiga okuteeka amakerenda ga muzira mu kifaananyi kyo"
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Nyiga okuteeka muzira mu kifaananyi kyo"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr ""
|
||||
"Kitundu kya nzida n'ensonda nnya ezenkanankana nga buli nsonda elina diguli "
|
||||
"kyenda"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kona era otambuze okusiga amaatafali amanene"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kona era otambuze okusiga amaatafali amanene"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/lt.po
27
src/po/lt.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.9\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2004-12-10 18:11+0200\n"
|
||||
"Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konf.lt>\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2943,6 +2944,28 @@ msgstr "Spustelėkite kad ant piešinio atsirastų bangelių."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Spustelėkite kad ant piešinio atsirastų bangelių."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadratas"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Spustelėkite ir pieškite dideles plytas."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Spustelėkite ir pieškite dideles plytas."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/lv.po
27
src/po/lv.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-11 23:13-0000\n"
|
||||
"Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n"
|
||||
"Language-Team: Valoda <raivucis@gmail.com>\n"
|
||||
|
|
@ -396,7 +396,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3037,6 +3038,28 @@ msgstr "Noklikšķini, lai bildi pārklātu ar sniegapiku."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Noklikšķini, lai bildi pārklātu ar sniegpārslām."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrāts"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmētu lielus ķieģeļus."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
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."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2013-02-18 09:21+0530\n"
|
||||
"Last-Translator: sk <sk>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2990,6 +2991,28 @@ msgstr "तस्वीर मे बर्फक गेंदकेँ जो
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तस्वीरमे बर्फक फ्लेक जोड़बा क' लेल क्लिक करू."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "वर्ग"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "बड़ ईंट बनाबै क' लेल क्लिक करू आओर स्थानांतरित करू."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/mk.po
27
src/po/mk.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2006-06-17 23:07+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Macedonian <mk@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2957,6 +2958,28 @@ msgstr "Кликнете за да направите огледална сли
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Кликнете за да направите огледална слика."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Квадрат"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Кликнете на глувчето и влечете за да цртате големи цигли."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
27
src/po/ml.po
27
src/po/ml.po
|
|
@ -18,7 +18,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-08-03 16:29+0530\n"
|
||||
"Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n"
|
||||
"Language-Team: Malayalam\n"
|
||||
|
|
@ -405,7 +405,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2995,6 +2996,28 @@ msgstr "ചിത്രത്തില് മഞ്ഞുണ്ടകള്
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ചിത്രത്തില് മഞ്ഞ് വിതറാന് അമര്ത്തുക"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "സമചതുരം"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന് അമര്ത്തിയശേഷം നീക്കുക"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "വലിയ ഇഷ്ടിക വരയ്ക്കാന് അമര്ത്തിയശേഷം നീക്കുക"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
21
src/po/mn.po
21
src/po/mn.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -372,7 +372,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2660,6 +2661,22 @@ msgstr ""
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
msgid "Square Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
msgid "Spray Paint"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2011-10-07 15:05+0530\n"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2992,6 +2993,28 @@ msgstr "অদোমগী লাইদা স্নো বোল হাপচ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "অদোমগী লাইদা স্নো ফ্লেক্স হাপচিন্নবা ক্লিক তৌরো."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "স্কায়র"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "অচৌবা ব্রিকশিং য়েক্নবা ক্লিক তৌরো অদুগা চৎলো."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2011-10-07 15:05+0530\n"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -394,7 +394,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2983,6 +2984,28 @@ msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯁ꯭ꯅꯣ ꯕꯣꯜ ꯍꯥꯞꯆꯤ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯁ꯭ꯅꯣ ꯐ꯭ꯂꯦꯛ ꯍꯥꯞꯆꯤꯟꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ꯁ꯭ꯀꯥꯌꯔ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ꯑꯆꯧꯕ ꯕ꯭ꯔꯤꯛꯁꯤꯡ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯠꯂꯣ."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/mr.po
27
src/po/mr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.21c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2013-03-28 12:11+0530\n"
|
||||
"Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n"
|
||||
"Language-Team: Marathi\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3019,6 +3020,28 @@ msgstr "तस्वीर में बर्फ की गेंदों क
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तस्वीर में बर्फ के गुचे जोड़ने के लिए क्लिक्क करें|"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "्चोरस"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "बड़ी इटें बनाने के लिए क्लिक करें और स्थानांतरित करें|"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ms.po
27
src/po/ms.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2015-03-07 23:30+0000\n"
|
||||
"Last-Translator: abuyop <abuyop@gmail.com>\n"
|
||||
"Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/"
|
||||
|
|
@ -407,7 +407,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2993,6 +2994,28 @@ msgstr "Klik untuk tambah bola salji ke dalam gambar anda."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik untuk tambah kepingan salji ke dalam gambar anda."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Segiempat Sama"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik dan gerak untuk melukis bata besar."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik dan gerak untuk melukis bata besar."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/nb.po
27
src/po/nb.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2021-06-28 19:40+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
|
||||
|
|
@ -403,7 +403,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2973,6 +2974,28 @@ msgstr "Trykk for å kaste snøballer på tegningen."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Trykk for å drysse snøflak på tegningen."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Hold inne knappen og flytt rundt for å tegne store piksler."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ne.po
27
src/po/ne.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-09 08:08+0530\n"
|
||||
"Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3014,6 +3015,28 @@ msgstr "तपाईँको चित्रमा स्नो बल थप
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तपाईँको चित्रमा स्नो फेक थप्नका लागि क्लिक गर्नुहोस्।"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "चारपाटे"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ठुलो ब्रिक्सबनाउनका लागि क्लिक गरेर मुभ गर्नुहोस्"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/nl.po
27
src/po/nl.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2023-03-30 14:41+0200\n"
|
||||
"Last-Translator: Willem Heppe <heppew@yahoo.com>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2979,6 +2980,28 @@ msgstr "Klik en zet sneeuwballen op je tekening."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Klik en laat sneeuwvlokken vallen op je tekening."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Vierkant"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Klik en sleep om de grote pixels te tekenen."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Klik en sleep om de grote pixels te tekenen."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/nn.po
27
src/po/nn.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-06-02 13:17+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||
|
|
@ -391,7 +391,8 @@ msgstr ""
|
|||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2992,6 +2993,28 @@ msgstr "Trykk for å kasta snøballar på teikninga."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Trykk for å dryssa snøflak på teikninga."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kvadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Hald inne knappen og flytt rundt for å teikna store pikslar."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/nr.po
27
src/po/nr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2006-10-09 20:32+0200\n"
|
||||
"Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3020,6 +3021,28 @@ msgid "Click to add snow flakes to your picture."
|
|||
msgstr ""
|
||||
"Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Sikwere"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Qhwarhaza bewudose njalo ukuze udwebe iintina ezikulu."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
msgid "Spray Paint"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2010-10-04 17:44+0200\n"
|
||||
"Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3097,6 +3098,28 @@ msgstr "Kgotla gore o tsenye dikgwele tša lehlwa seswantšhong sa gago."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Kgotla gore o tsenye dikgapetlana tša lehlwa seswantšhong sa gago."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Sekwere"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kgotla gomme o šuthe gore o thale ditena tše dikgolo."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
23
src/po/oc.po
23
src/po/oc.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2021-06-06 18:54+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Occitan (post 1500) <oc@li.org>\n"
|
||||
|
|
@ -383,7 +383,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2714,6 +2715,24 @@ msgstr ""
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Carrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
25
src/po/oj.po
25
src/po/oj.po
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ojibwaytuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2007-10-08 18:19-0500\n"
|
||||
"Last-Translator: Ed Montgomery <edm@rocketmail.com>\n"
|
||||
"Language-Team: Ed <edm@rocketmail.com>\n"
|
||||
|
|
@ -381,7 +381,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2837,6 +2838,26 @@ msgstr "Waabimoojichaagwaazo"
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Waabimoojichaagwaazo"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Zhashaweyaa"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Waabizo"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Waabizo"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Paint"
|
||||
|
|
|
|||
27
src/po/or.po
27
src/po/or.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2012-04-05 20:08+0530\n"
|
||||
"Last-Translator: Ekanta <ekanta@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3000,6 +3001,28 @@ msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ବରଫ ଗୋଲାଗୁଡ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ହିମକଣଗୁଡିକ ଯୋଗ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ "
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ବର୍ଗକ୍ଷେତ୍ର"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ "
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ବଡ ବଡ ଇଟା ଅଙ୍କନ କରିବା ପାଇଁ କ୍ଲିକ କରି ବୁଲାନ୍ତୁ "
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/pa.po
27
src/po/pa.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2022-10-13 16:28-0700\n"
|
||||
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||
|
|
@ -388,7 +388,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2873,6 +2874,28 @@ msgstr "ਆਪਣੀ ਤਸਵੀਰ ਉੱਤੇ ਬਰਫ਼ ਦੀਆਂ ਗ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ਵਰਗ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ਵੱਡੇ ਪਿਕਸਲ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ ਤੇ ਖਿੱਚੋ।"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/pl.po
27
src/po/pl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-30 18:21+0000\n"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -400,7 +400,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2956,6 +2957,28 @@ msgstr "Kliknij, aby dodać śnieżk do rysunku."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Kliknij, aby dodać śnieżynki do rysunku."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Kwadrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Kliknij i przesuń, aby narysować duże cegły."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Kliknij i przesuń, aby narysować duże cegły."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/pt.po
27
src/po/pt.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-09-29 22:43+0100\n"
|
||||
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
|
||||
|
|
@ -401,7 +401,8 @@ msgstr "Novo modo de preenchimento: preenchimento com \"Borracha\"."
|
|||
#| "various \"Fractals\", and \"Crescent\"."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
"Novas ferramentas de magia: “Pontos de banda desenhada”, \"Rodar\", várias "
|
||||
"artes \"ASCII\", vários \"Fractais\" e \"Crescente\"."
|
||||
|
|
@ -3012,6 +3013,28 @@ msgstr "Clica para adicionar bolas de neve ao desenho."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Clica para adicionar flocos de neve ao desenho."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrado"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Clica e arrasta para desenhares pixéis grandes."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Clica e arrasta para desenhares pixéis grandes."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2017-12-06 13:01-0300\n"
|
||||
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -397,7 +397,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2962,6 +2963,28 @@ msgstr "Clique para jogar bolas de neve na sua figura."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Clique para adicionar flocos de neve à sua figura."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Quadrado"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Clique e arraste para desenhar tijolos grandes."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Clique e arraste para desenhar tijolos grandes."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ro.po
27
src/po/ro.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.2pre\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2003-01-03 21:32-0500\n"
|
||||
"Language-Team: Romanian <ro@li.org>\n"
|
||||
"Language: ro\n"
|
||||
|
|
@ -401,7 +401,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3064,6 +3065,28 @@ msgstr "Click pentru a adăuga bulgări de zăpadă."
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Click pentru a adăuga fulgi de zăpadă pe pictura ta."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Pătrat"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Click şi mişcă pentru a desena blocuri mari."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Click şi mişcă pentru a desena blocuri mari."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
27
src/po/ru.po
27
src/po/ru.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2024-06-27 16:04+0300\n"
|
||||
"Last-Translator: Alevtina <karashokovaaa@basealt.ru>\n"
|
||||
"Language-Team: Basealt Translation Team\n"
|
||||
|
|
@ -430,7 +430,8 @@ msgstr ""
|
|||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
"Новые магические инструменты: Узор из точек, Закрашенный многоугольник."
|
||||
|
||||
|
|
@ -3078,6 +3079,28 @@ msgstr "Щёлкните, чтобы добавить снежки на карт
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Щёлкните, чтобы добавить снежинки на картинку."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "Квадрат"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large pixels."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать большие пикселы."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
25
src/po/rw.po
25
src/po/rw.po
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
|
||||
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
||||
|
|
@ -405,7 +405,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2880,6 +2881,26 @@ msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho"
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "kare"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "Na Kwimura Kuri Gushushanya"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "Na Kwimura Kuri Gushushanya"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
msgid "Spray Paint"
|
||||
msgstr ""
|
||||
|
|
|
|||
27
src/po/sa.po
27
src/po/sa.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2011-11-19 07:03+0530\n"
|
||||
"Last-Translator: Aarathi Bala\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2982,6 +2983,28 @@ msgstr "तव चित्रं प्रति तुषारकणान्
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "तव चित्रं प्रति तुषारकणान् सङ्कलयितुं क्लिक् कुरु।"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "समचतुर्भुजः"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "बृहतीः इष्टकाः आलिखितुं क्लिक् कृत्वा चेष्टय।"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2014-06-16 16:55+0530\n"
|
||||
"Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -395,7 +395,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -3003,6 +3004,28 @@ msgstr "आमाक् चिता़र रे इतिञ दाक् ढ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "आमाक् चिता़र रे इतिञ दाक् रोत् सेलेद ला़गित् ओताय मे."
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "पुन सोमान जिलिञ गार ते एसेत् तेयार, पुन सिरा"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and move to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "माराङ इंटा को गार ला़गित् आ़चुर आर ओताय मे."
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-02 23:33-0700\n"
|
||||
"POT-Creation-Date: 2024-10-04 21:06-0700\n"
|
||||
"PO-Revision-Date: 2022-02-11 18:33+0530\n"
|
||||
"Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -392,7 +392,8 @@ msgstr ""
|
|||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:53
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", and \"Spray Paint\"."
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\" and \"Square "
|
||||
"Spiral\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:54
|
||||
|
|
@ -2976,6 +2977,28 @@ msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱤᱛᱤᱧ ᱫᱟᱜ ᱰᱷᱩ
|
|||
msgid "Click to add snow flakes to your picture."
|
||||
msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱤᱛᱤᱧ ᱫᱟᱜ ᱨᱚᱫ ᱥᱮᱞᱮᱫ ᱞᱟᱹᱜᱤᱫ ᱚᱛᱟᱭ ᱢᱮ ᱾"
|
||||
|
||||
#: ../../magic/src/spiral.c:41
|
||||
msgid "Spiral"
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/spiral.c:42
|
||||
#, fuzzy
|
||||
#| msgid "Square"
|
||||
msgid "Square Spiral"
|
||||
msgstr "ᱯᱩᱱ ᱥᱚᱢᱟᱱ ᱡᱤᱞᱤᱧ ᱜᱟᱨ ᱛᱮ ᱮᱥᱮᱫ ᱛᱮᱭᱟᱨ, ᱯᱩᱱ ᱥᱤᱨᱟ"
|
||||
|
||||
#: ../../magic/src/spiral.c:46
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a spiral."
|
||||
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
|
||||
|
||||
#: ../../magic/src/spiral.c:47
|
||||
#, fuzzy
|
||||
#| msgid "Click and drag to draw large bricks."
|
||||
msgid "Click and drag to create a square spiral."
|
||||
msgstr "ᱢᱟᱨᱟᱝ ᱤᱸᱴᱟ ᱠᱚ ᱜᱟᱨ ᱞᱟᱹᱜᱤ ᱜᱟᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
|
||||
|
||||
#: ../../magic/src/spraypaint.c:104
|
||||
#, fuzzy
|
||||
#| msgid "Metal Paint"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue