diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 4a5fb9eab..9c7cd9e4d 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,6 +7,16 @@ Various contributors (see below, and AUTHORS.txt) https://tuxpaint.org/ 2024.September.16 (0.9.34) + * New Magic Tools: + ---------------- + * WIP "Comic Dots", draws repeating dots (using a multiply blend) + to simulate the "Ben Day process" of coloring/shading. + Bill Kendrick + - TODO needs icons + - TODO needs sound effects + - TODO needs documentation + Closes https://sourceforge.net/p/tuxpaint/feature-requests/257/ + * Improvements to Fill tool: -------------------------- * New "Eraser" flood fill mode, to expose the background diff --git a/magic/icons/comicdot-pattern.png b/magic/icons/comicdot-pattern.png new file mode 100644 index 000000000..e0ba7c35d Binary files /dev/null and b/magic/icons/comicdot-pattern.png differ diff --git a/magic/src/comicdot.c b/magic/src/comicdot.c new file mode 100644 index 000000000..fb8110e5c --- /dev/null +++ b/magic/src/comicdot.c @@ -0,0 +1,321 @@ +/* + comicdot.c + + Paints a pattern of circular dots, simulating the effect of + older comic books that used the "Ben Day Process" + (https://en.wikipedia.org/wiki/Ben_Day_process) + + 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: September 16, 2024 +*/ + +#include +#include +#include "tp_magic_api.h" +#include "SDL_image.h" +#include "SDL_mixer.h" + +static Mix_Chunk *comicdot_snd; +static int comicdot_radius = 16; +static int comicdot_r, comicdot_g, comicdot_b; + +enum { + COMICDOT_LG, + COMICDOT_SM, + NUM_COMICDOT_SIZES +}; + +SDL_Surface * comicdot_pattern[NUM_COMICDOT_SIZES]; + +Uint32 comicdot_api_version(void); +int comicdot_init(magic_api * api, Uint8 disabled_features, Uint8 complexity_level); +int comicdot_get_tool_count(magic_api * api); +SDL_Surface *comicdot_get_icon(magic_api * api, int which); +char *comicdot_get_name(magic_api * api, int which); +int comicdot_get_group(magic_api * api, int which); +int comicdot_get_order(int which); +char *comicdot_get_description(magic_api * api, int which, int mode); + +void comicdot_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 comicdot_click(magic_api * api, int which, int mode, + SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect); + +void comicdot_release(magic_api * api, int which, + SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect); + +void comicdot_shutdown(magic_api * api); +void comicdot_set_color(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect); +int comicdot_requires_colors(magic_api * api, int which); +void comicdot_switchin(magic_api * api, int which, int mode, SDL_Surface * canvas); +void comicdot_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas); +int comicdot_modes(magic_api * api, int which); +Uint8 comicdot_accepted_sizes(magic_api * api, int which, int mode); +Uint8 comicdot_default_size(magic_api * api, int which, int mode); +void comicdot_set_size(magic_api * api, int which, int mode, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, + SDL_Rect * update_rect); + +Uint32 comicdot_api_version(void) +{ + return (TP_MAGIC_API_VERSION); +} + +int comicdot_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint8 complexity_level ATTRIBUTE_UNUSED) +{ + char fname[1024]; + int i; + + snprintf(fname, sizeof(fname), "%ssounds/magic/xor.ogg", api->data_directory); // FIXME + comicdot_snd = Mix_LoadWAV(fname); + + /* Load base pattern image */ + snprintf(fname, sizeof(fname), "%simages/magic/comicdot-pattern.png", api->data_directory); + comicdot_pattern[0] = IMG_Load(fname); + if (comicdot_pattern[0] == NULL) + { + fprintf(stderr, "Can't open %s\n", fname); + return 0; + } + + /* Create the scaled versions */ + for (i = 1; i < NUM_COMICDOT_SIZES; i++) + { + int size; + + size = (100 * (NUM_COMICDOT_SIZES - i)) / NUM_COMICDOT_SIZES; + + comicdot_pattern[i] = api->scale(comicdot_pattern[0], + (comicdot_pattern[0]->w * size) / 100, + (comicdot_pattern[0]->h * size) / 100, 1); + if (comicdot_pattern[i] == NULL) + { + fprintf(stderr, "Can't scale %s (%d%%)\n", fname, size); + return 0; + } + } + + return (1); +} + +int comicdot_get_tool_count(magic_api * api ATTRIBUTE_UNUSED) +{ + return (NUM_COMICDOT_SIZES); +} + +SDL_Surface *comicdot_get_icon(magic_api * api, int which) +{ + char fname[1024]; + + snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory); // FIXME [which] + + return (IMG_Load(fname)); +} + +char *comicdot_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) +{ + return (strdup(gettext_noop("Comic Dots"))); +} + +int comicdot_get_group(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) +{ + return MAGIC_TYPE_PAINTING; +} + +int comicdot_get_order(int which ATTRIBUTE_UNUSED) +{ + return 1910; +} + +char *comicdot_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode) +{ + if (mode == MODE_PAINT) + return (strdup(gettext_noop("Click and drag to draw an a dot pattern on your picture"))); + else + return (strdup(gettext_noop("Click to apply a dot pattern on your entire picture"))); +} + +static void do_comicdot(void *ptr, int which, + SDL_Surface * canvas, SDL_Surface * last, int x, int y) +{ + magic_api *api = (magic_api *) ptr; + Uint8 r1, g1, b1, r, g, b, n, _, nr, ng, nb; + Uint32 pixel; + int offx, offy; + SDL_Surface * pat; + + pat = comicdot_pattern[which]; + + offx = (((comicdot_r + comicdot_g) / 2) * pat->w) / 255; + offy = (((comicdot_b - comicdot_g) / 2) * pat->h) / 255; + + SDL_GetRGB(api->getpixel(last, x, y), last->format, &r1, &g1, &b1); + SDL_GetRGB(api->getpixel(pat, (x + offx) % pat->w, (y + offy) % pat->h), pat->format, &n, &_, &_); + r = ((r1 * n) + (comicdot_r * (255 - n))) / 255; + g = ((g1 * n) + (comicdot_g * (255 - n))) / 255; + b = ((b1 * n) + (comicdot_b * (255 - n))) / 255; + nr = (r1 * r) / 255; + ng = (g1 * g) / 255; + nb = (b1 * b) / 255; + pixel = SDL_MapRGB(canvas->format, nr, ng, nb); + api->putpixel(canvas, x, y, pixel); +} + +static void do_comicdot_circle(void *ptr, int which ATTRIBUTE_UNUSED, + SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED, int x, int y) +{ + magic_api *api = (magic_api *) ptr; + int xx, yy; + + for (yy = -comicdot_radius; yy < comicdot_radius; yy++) + { + for (xx = -comicdot_radius; xx < comicdot_radius; xx++) + { + if (api->in_circle(xx, yy, comicdot_radius)) + { + if (!api->touched(xx + x, yy + y)) + do_comicdot(api, which, canvas, last, x + xx, y + yy); + } + } + } +} + +void comicdot_drag(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last ATTRIBUTE_UNUSED, int ox, int oy, int x, int y, SDL_Rect * update_rect) +{ + api->line((void *)api, which, canvas, last, ox, oy, x, y, 1, do_comicdot_circle); + + if (ox > x) + { + int tmp = ox; + + ox = x; + x = tmp; + } + if (oy > y) + { + int tmp = oy; + + oy = y; + y = tmp; + } + + update_rect->x = ox - comicdot_radius; + update_rect->y = oy - comicdot_radius; + update_rect->w = (x + comicdot_radius) - update_rect->x; + update_rect->h = (y + comicdot_radius) - update_rect->y; + + api->playsound(comicdot_snd, (x * 255) / canvas->w, 255); +} + +void comicdot_click(magic_api * api, int which, int mode, + SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED, int x, int y, SDL_Rect * update_rect) +{ + if (mode == MODE_PAINT) + comicdot_drag(api, which, canvas, last, x, y, x, y, update_rect); + else + { + int xx, yy; + + for (yy = 0; yy < canvas->h; yy++) + for (xx = 0; xx < canvas->w; xx++) + do_comicdot(api, which, canvas, last, xx, yy); + + update_rect->x = 0; + update_rect->y = 0; + update_rect->w = canvas->w; + update_rect->h = canvas->h; + api->playsound(comicdot_snd, (x * 255) / canvas->w, 255); + } +} + +void comicdot_release(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, + SDL_Surface * canvas ATTRIBUTE_UNUSED, + SDL_Surface * last ATTRIBUTE_UNUSED, int x ATTRIBUTE_UNUSED, + int y ATTRIBUTE_UNUSED, SDL_Rect * update_rect ATTRIBUTE_UNUSED) +{ +} + +void comicdot_shutdown(magic_api * api ATTRIBUTE_UNUSED) +{ + int i; + + if (comicdot_snd != NULL) + Mix_FreeChunk(comicdot_snd); + + for (i = 0; i < NUM_COMICDOT_SIZES; i++) + { + if (comicdot_pattern[i] != NULL) + { + SDL_FreeSurface(comicdot_pattern[i]); + comicdot_pattern[i] = NULL; + } + } +} + +void comicdot_set_color(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED, + SDL_Surface * last ATTRIBUTE_UNUSED, Uint8 r, Uint8 g, Uint8 b, + SDL_Rect * update_rect ATTRIBUTE_UNUSED) +{ + comicdot_r = r; + comicdot_g = g; + comicdot_b = b; +} + +int comicdot_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) +{ + return 1; +} + +void comicdot_switchin(magic_api * api ATTRIBUTE_UNUSED, + int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED) +{ +} + +void comicdot_switchout(magic_api * api ATTRIBUTE_UNUSED, + int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED) +{ +} + +int comicdot_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) +{ + return (MODE_PAINT | MODE_FULLSCREEN); +} + + +Uint8 comicdot_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode) +{ + if (mode == MODE_PAINT) + return 8; + else + return 0; +} + +Uint8 comicdot_default_size(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED) +{ + return 4; +} + +void comicdot_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) +{ + comicdot_radius = size * 4; +} diff --git a/src/po/ach.po b/src/po/ach.po index cc0377b9e..e3fa81104 100644 --- a/src/po/ach.po +++ b/src/po/ach.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-12-09 09:00+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1841,6 +1841,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Dii ci iywa wek ogo layin acara pa lero okom cal mamegi." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Dii wek icid woko cal mamegi weng." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Kwone cale ma giyiko ma mile" diff --git a/src/po/af.po b/src/po/af.po index ce794b854..7ca620bda 100644 --- a/src/po/af.po +++ b/src/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: af\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-19 06:38+0000\n" "Last-Translator: OdettePretorius \n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n" @@ -1828,6 +1828,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik en sleep om 'n ligstraal op die prent te teken." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik om die hele prent donkerder te maak." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/ak.po b/src/po/ak.po index 789dde3e7..3fd74c83e 100644 --- a/src/po/ak.po +++ b/src/po/ak.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-10-27 10:16-0000\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1836,6 +1836,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kleeke na twe drɔɔ beem kanea wɔ nfonyin no so." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kleeke na ma wo nfonyin no nyɛ sum." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/am.po b/src/po/am.po index 01d4c68f1..bb938ba94 100644 --- a/src/po/am.po +++ b/src/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-10 11:45+0100\n" "Last-Translator: Solomon Gizaw \n" "Language-Team: none\n" @@ -1837,6 +1837,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "በስዕሎት ላይ የብርሃን ጨረር ለመሳል ጠቅ አድርገውና ጎትት። " + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "የስዕሎችህን ሁሉንም ክፍል ለማጥቆር ጠቅ አድርግ።" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "የሚበተን አበባ " diff --git a/src/po/an.po b/src/po/an.po index ef21caa6b..d4d3a1d67 100644 --- a/src/po/an.po +++ b/src/po/an.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-29 10:04+0100\n" "Last-Translator: juanpabl \n" "Language-Team: softaragonés\n" @@ -1834,6 +1834,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Fe clic y arrociega lo ratet pa dibuixar un rayo de luz." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Fe clic pa escurir tot lo dibuixo." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confeti" diff --git a/src/po/ar.po b/src/po/ar.po index d913567e7..adc800f5e 100644 --- a/src/po/ar.po +++ b/src/po/ar.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2008-10-07 14:54+0200\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1850,6 +1850,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "انقر واسحب الفأره لرسم شعاع من الضوء على صورتك" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "انقر وحرك الماوس لتقليل الاضاءه على صورتك." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "قصاصات ورق ملون" diff --git a/src/po/as.po b/src/po/as.po index a62d6d9f8..cfab632fd 100644 --- a/src/po/as.po +++ b/src/po/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-16 23:33-0800\n" "Last-Translator: Anand Kulkarni \n" "Language-Team: none\n" @@ -1850,6 +1850,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "আপোনাৰ ছবিটোত পোহৰৰ বিকিৰণ এটা অংকন কৰিবলৈ ক্লিক কৰক আৰু টানক." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "আপোনাৰ সম্পূৰ্ণ ছবিটো আন্ধাৰ কৰিবলৈ ক্লিক কৰক." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ৰঙীণ কাগজৰ টুকুৰাবোৰ" diff --git a/src/po/ast.po b/src/po/ast.po index 6636ec36b..2d11b08fe 100644 --- a/src/po/ast.po +++ b/src/po/ast.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-02-16 18:38+0200\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1840,6 +1840,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Calca y arrastra pa dibuxar un rayu de lluz nel to dibuxu." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Calca pa escurecer la imaxe entera." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confeti" diff --git a/src/po/az.po b/src/po/az.po index c58c6fad2..852ba3d84 100644 --- a/src/po/az.po +++ b/src/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2008-02-10 19:28+0400\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1854,6 +1854,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Şəkili işıqlandırmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Şəkili azca rəngləmək üçün mausun sol düyməsini bas və mausu hərəkətə gətir." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/be.po b/src/po/be.po index 8acdaf05f..ef3a4fcf8 100644 --- a/src/po/be.po +++ b/src/po/be.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-10 23:09+0300\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Language-Team: none\n" @@ -1847,6 +1847,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Націсніце і вядзіце мыш, каб намаляваць прамень святла." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Націсніце, каб зацямніць ваш малюнак." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Канфеці" diff --git a/src/po/bg.po b/src/po/bg.po index b43301d60..28df3a5da 100644 --- a/src/po/bg.po +++ b/src/po/bg.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-02-28 21:39+0200\n" "Last-Translator: Vankata453\n" "Language-Team: \n" @@ -1937,6 +1937,23 @@ msgstr "" "зеленото на твоята картина. За да правиш анаглифи, може да гледаш през 3D " "очила!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Кликни и движи мишката, за да нарисуваш лъч светлина на твоята рисунка." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Кликни, за да наситиш цялата рисунка." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Конфети" diff --git a/src/po/bm.po b/src/po/bm.po index 41822c825..1056d2fd8 100644 --- a/src/po/bm.po +++ b/src/po/bm.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-09-04 17:25+0200\n" "Last-Translator: Fasokan \n" "Language-Team: LANGUAGE \n" @@ -1842,6 +1842,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kilike, i ka ɲinɛnin cɛɛnɛ ka yelen ɛrɛyɔn ɲɛgɛn." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kilike, i ka ja fan bɛɛ ɲɛ ladibi. " + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Kɔnfeti (papiye ɲɛgɛnnen mɔlɔnkɔtɔlen)" diff --git a/src/po/bn.po b/src/po/bn.po index 1fa13d6e2..25be1a9ad 100644 --- a/src/po/bn.po +++ b/src/po/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-30 18:24+0000\n" "Last-Translator: Chris \n" "Language-Team: Bengali\n" @@ -1839,6 +1839,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "আপনার ছবিতে আলোকের স্তম্ভ আঁকতে ক্লিক করুন ও টানুন." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "আপনার সমগ্র ছবি অন্ধকার করতে ক্লিক করুন." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "রঙিন কাগজ" diff --git a/src/po/bo.po b/src/po/bo.po index 4fe6d7f34..176788e0a 100644 --- a/src/po/bo.po +++ b/src/po/bo.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1724,6 +1724,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/br.po b/src/po/br.po index 41dbdc110..1acf5ef75 100644 --- a/src/po/br.po +++ b/src/po/br.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2005-01-09 14:49+0100\n" "Last-Translator: \n" "Language-Team: none\n" @@ -1827,6 +1827,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik ha fiñv al logodenn evit cheñch liv an dresadenn." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/brx.po b/src/po/brx.po index f40ab3019..911192916 100644 --- a/src/po/brx.po +++ b/src/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-09-14 13:51+0530\n" "Last-Translator: \n" "Language-Team: Bodo\n" @@ -1843,6 +1843,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "नोंथांनि सावगारिआव सोरांनि रोदा आखिनो क्लिक खालाम आरो बोबो।" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "नोंथांनि आबुं सावगारिखौ खोमसि खालामनो क्लिक खालाम।" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कन्फेटि" diff --git a/src/po/bs.po b/src/po/bs.po index e7c7ea622..17bf27854 100644 --- a/src/po/bs.po +++ b/src/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-11-05 04:24+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -1950,6 +1950,25 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +# +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and move the mouse around to blur the picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klikni i pomjeraj mišem da bi zatamnio sliku." + +# +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "" +#| "Click and move the mouse around to turn the picture into a chalk drawing." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež kredom." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/ca.po b/src/po/ca.po index e2f230fec..8e13e5aa0 100644 --- a/src/po/ca.po +++ b/src/po/ca.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint cvs 2009-06-21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-06-04 00:14+0200\n" "Last-Translator: Pere Pujal i Carabantes \n" "Language-Team: Català \n" @@ -1953,6 +1953,22 @@ msgstr "" "Feu clic i arrossegueu a dreta o esquerra per separar el vermell i el cian, " "per fer anaglifs que podeu mirar amb ulleres 3D de dos colors!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Feu clic i arrossegueu per dibuixar un camí de llum en la imatge." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Feu clic per saturar el dibuix." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confeti" diff --git a/src/po/ca@valencia.po b/src/po/ca@valencia.po index 562e445a5..a1a77abfa 100644 --- a/src/po/ca@valencia.po +++ b/src/po/ca@valencia.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2020-03-29 23:40+0200\n" "Last-Translator: Pilar Embid Giner \n" "Language-Team: LliureX\n" @@ -1843,6 +1843,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Feu clic i arrossegueu per a dibuixar un raig de llum en la imatge." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Feu clic per a enfosquir tota la imatge." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Paperets" diff --git a/src/po/cgg.po b/src/po/cgg.po index b279c4b87..08cf13149 100644 --- a/src/po/cgg.po +++ b/src/po/cgg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-09-17 16:19+0200fu\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1852,6 +1852,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Imata kandi okurure kuteera amarangi gekyerereezi ahakishushani." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Imata okwatise ekishushani kyona" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Baluuni" diff --git a/src/po/cs.po b/src/po/cs.po index 4051e738a..af5e56a2a 100644 --- a/src/po/cs.po +++ b/src/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-07-08 13:33+0100\n" "Last-Translator: Zdeněk Chalupský \n" "Language-Team: Czech \n" @@ -1847,6 +1847,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Stisknutím a tažením nakresli světelnou stopu na svůj obrázek." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikni pro ztmavení celého obrázku." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfety" diff --git a/src/po/cy.po b/src/po/cy.po index 9f8805274..5d598924e 100644 --- a/src/po/cy.po +++ b/src/po/cy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2004-09-21 14:29+0100\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1817,6 +1817,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Clicia a symuda'r llygoden i deneuo'r llun." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clicia a symuda'r llygoden o gwmpas i wneud blociau ar liwiau'r llun." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/da.po b/src/po/da.po index e049fb921..75c8c7b5d 100644 --- a/src/po/da.po +++ b/src/po/da.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-05 12:38+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -1838,6 +1838,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik og bevæg musen rundt, for at tegne en lysstråle på dit billede." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik for at formørke hele dit billede." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/de.po b/src/po/de.po index 72ff9eede..5fa22ba91 100644 --- a/src/po/de.po +++ b/src/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-25 21:13+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -1840,6 +1840,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Klicke und ziehe die Maus, um einen Lichtstrahl auf dein Bild zu malen." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klicke, um das ganze Bild abzudunkeln." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti " diff --git a/src/po/doi.po b/src/po/doi.po index 36f2c376c..3ad33620c 100644 --- a/src/po/doi.po +++ b/src/po/doi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-09-04 10:23+0530\n" "Last-Translator: \n" "Language-Team: Dogri\n" @@ -1840,6 +1840,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "अपनी तस्वीरा पर लोई दा किरण-पुंज चित्तरने आस्तै क्लिक करो ते माउस फेरो. " + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "अपनी सबूरी तस्वीरा गी गूढ़ा करने आस्तै क्लिक करो." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कनफेट्टी" diff --git a/src/po/el.po b/src/po/el.po index 2662bf112..5ee95c5d7 100644 --- a/src/po/el.po +++ b/src/po/el.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2021-09-02 07:45+0000\n" "Last-Translator: kiolalis \n" "Language-Team: \n" @@ -1851,6 +1851,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Κάνε κλικ και σύρε το ποντίκι για να βάλεις μια δέσμη φωτός στην εικόνα σου." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Κάνε κλικ για να σκουρήνεις ολόκληρη τη ζωγραφιά σου." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Χαρτοπόλεμος" diff --git a/src/po/en_AU.po b/src/po/en_AU.po index 8aa505e56..de19ceacb 100644 --- a/src/po/en_AU.po +++ b/src/po/en_AU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-29 23:36+0930\n" "Last-Translator: ilox \n" "Language-Team: none\n" @@ -1846,6 +1846,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Click and drag to draw a beam of light on your picture." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Click to darken your entire picture." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/en_CA.po b/src/po/en_CA.po index d8bbccac9..eb9790ba6 100644 --- a/src/po/en_CA.po +++ b/src/po/en_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-07-07 12:22+0100\n" "Last-Translator: Caroline Ford \n" "Language-Team: \n" @@ -1844,6 +1844,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Click and drag to draw a beam of light on your picture." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Click to darken your entire picture." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/en_GB.po b/src/po/en_GB.po index cad8ff5a2..728a8f244 100644 --- a/src/po/en_GB.po +++ b/src/po/en_GB.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-30 21:17+0000\n" "Last-Translator: Caroline Ford \n" "Language-Team: none\n" @@ -1827,6 +1827,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Click and drag to draw a beam of light on your picture." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Click to darken your entire picture." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/en_ZA.po b/src/po/en_ZA.po index 7b04a5de2..9cc0097cc 100644 --- a/src/po/en_ZA.po +++ b/src/po/en_ZA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2009-09-06 15:46+0100\n" "Last-Translator: Caroline Ford \n" "Language-Team: English (South African) \n" @@ -1831,6 +1831,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Click and move the mouse around to blur the picture." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Click and move the mouse around to change the picture’s colour." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/eo.po b/src/po/eo.po index acdeb888d..ff17bbdbe 100644 --- a/src/po/eo.po +++ b/src/po/eo.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-16 16:00+0000\n" "Last-Translator: Nuno MAGALHÃES \n" "Language-Team: Esperanto \n" @@ -1827,6 +1827,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Alklaku kaj movu la muson por desegni lumradion sur via bildo." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klaku por malheligi vian tutan bildon." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeto" diff --git a/src/po/es.po b/src/po/es.po index c9cc034d1..2b8d93829 100644 --- a/src/po/es.po +++ b/src/po/es.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-18 20:31-0300\n" "Last-Translator: Matías Bellone \n" "Language-Team: none\n" @@ -1853,6 +1853,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Haz click y mueve el ratón para dibujar un rayo de luz." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Haz click para oscurecer todo el dibujo." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confeti" diff --git a/src/po/es_MX.po b/src/po/es_MX.po index 192fa7557..ed368f51a 100644 --- a/src/po/es_MX.po +++ b/src/po/es_MX.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2007-08-05 19:22-0400\n" "Last-Translator: Ignacio Tike \n" "Language-Team: Español \n" @@ -1833,6 +1833,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Haz clic y arrastra el ratón alrededor para cambiar el color de la imagen." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/et.po b/src/po/et.po index 77d8ed3d1..1929da267 100644 --- a/src/po/et.po +++ b/src/po/et.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2015-03-07 13:09+0000\n" "Last-Translator: Sven Ollino \n" "Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/" @@ -1822,6 +1822,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Hoia hiirenuppu all ja liiguta, et tekitada valguskiiri." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klõpsa, et terve pilt tumedamaks teha." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Paberkettad" diff --git a/src/po/eu.po b/src/po/eu.po index 393d39c10..64a0ded34 100644 --- a/src/po/eu.po +++ b/src/po/eu.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2020-07-30 16:43+0200\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: librezale@librezale.org\n" @@ -1835,6 +1835,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik egin eta arrastatu argi-izpia irudiaren gainean marrazteko." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik egin irudi osoa iluntzeko." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfettia" diff --git a/src/po/fa.po b/src/po/fa.po index 5ba3d0e69..8c5bf8155 100644 --- a/src/po/fa.po +++ b/src/po/fa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-11-09 21:17+0330\n" "Last-Translator: snima \n" "Language-Team: farsi \n" @@ -1854,6 +1854,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "برای ایجاد پرتوهای نور در تصویر کلیک کن و موس را بکش." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to make ripples appear over your picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "کلیک کن تا روی تصویرت موج ایجاد شود." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "نقل" diff --git a/src/po/ff.po b/src/po/ff.po index e0b2f108d..bcd484a78 100644 --- a/src/po/ff.po +++ b/src/po/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-03 10:35+0200\n" "Last-Translator: Ibrahima SARR \n" "Language-Team: FULAH LOCALIZATION\n" @@ -1817,6 +1817,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Dobo, ndaasaa doombel ngam natde loocol fooyre e natal maa." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Dobo ngam niɓɓiɗinde natal ngal fof." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/fi.po b/src/po/fi.po index b9ca4fb49..1968920fa 100644 --- a/src/po/fi.po +++ b/src/po/fi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2015-10-09 18:00+0200\n" "Last-Translator: inactive\n" "Language-Team: Finnish \n" @@ -1857,6 +1857,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Piirrä valonsäde maalauksessi raahaamalla hiirtä." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Tummenna koko maalauksesi hiirtä napsauttamalla." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/fo.po b/src/po/fo.po index 31fa36fb5..7415cf96c 100644 --- a/src/po/fo.po +++ b/src/po/fo.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint 0.9.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2008-01-18 12:40-0000\n" "Last-Translator: Lis Gøthe í Jákupsstovu \n" "Language-Team: Faroese \n" @@ -1821,6 +1821,21 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klikkja og drag músina til at tekna eina ljósstrálu á myndina." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikkja og drag músina til at broyta litin á myndini." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/fr.po b/src/po/fr.po index ebb16d471..4850c508d 100644 --- a/src/po/fr.po +++ b/src/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-07-07 08:05+0200\n" "Last-Translator: jacques.chion@orange.fr\n" "Language-Team: \n" @@ -1964,6 +1964,23 @@ msgstr "" "couleurs rouge et cyan de ton dessin, en vue de réaliser des anaglyphes que " "tu pourras voir avec des lunettes 3D !" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Clique et déplace la souris pour dessiner un rayon de lumière." + +# +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clique pour aviver les couleurs sur la totalité du dessin." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confettis" diff --git a/src/po/ga.po b/src/po/ga.po index 92e607bca..24dad3730 100644 --- a/src/po/ga.po +++ b/src/po/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2015-10-09 17:38+0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -1794,6 +1794,22 @@ msgstr "" "Cliceáil agus tarraing an luch ar chlé agus ar dheis chun dearg agus cian a " "scaradh sa bpictiúr sa chaoi gur féidir leat breathnú air trí ghloiní 3T." +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Cliceáil agus tarraing chun léas solais a dhearadh ar an bpictiúr." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Cliceáil chun an pictiúr iomlán a sháithiú." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Coinfití" diff --git a/src/po/gd.po b/src/po/gd.po index 425025b48..c033dcd05 100644 --- a/src/po/gd.po +++ b/src/po/gd.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2021-09-02 12:18-0700\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig\n" @@ -1860,6 +1860,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Briog is slaod gus boillsgeadh lòchrain a pheantadh air dealbh agad." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Briog is gluais an luchag gus an dealbh gu lèir a dhèanamh nas duirche." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Coinfeataidh" diff --git a/src/po/gl.po b/src/po/gl.po index 0a94525dc..2e9f91769 100644 --- a/src/po/gl.po +++ b/src/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2021-03-03 10:01+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Proxecto Trasno \n" @@ -1836,6 +1836,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Preme e arrastra o rato para debuxar unha raiola no debuxo." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Preme para escurecer todo o debuxo." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confeti" diff --git a/src/po/gos.po b/src/po/gos.po index 7fb504afe..2d67d5f44 100644 --- a/src/po/gos.po +++ b/src/po/gos.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2005-07-26 01:30-0800\n" "Last-Translator: Bill Kendrick \n" "Language-Team: \n" @@ -1815,6 +1815,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik en beweeg de moes um dien tijken dun te moaken." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik en beweeg de moes rond um dien tijken blokkeg te moaken." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/gu.po b/src/po/gu.po index 1af844b00..8bafbef74 100644 --- a/src/po/gu.po +++ b/src/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-31 11:57+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -1782,6 +1782,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "તમારા ચિત્રકામમાં પ્રકાશનું કિરણ દોરવા માટે માઉસને ક્લિક કરીને ખેંચો." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "તમારા સમગ્ર ચિત્રને ઘાટું કરવા માટે ક્લિક કરો." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "કોનફેટ્ટી" diff --git a/src/po/he.po b/src/po/he.po index efbd5801f..1068be9e1 100644 --- a/src/po/he.po +++ b/src/po/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2009-05-10 21:45+0200\n" "Last-Translator: Jorge Mariano \n" "Language-Team: Hebrew \n" @@ -1834,6 +1834,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "לחצי וגררי לציור קרן אור על התמונה." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "לחצי להאפלת כל התמונה." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "קונפטי" diff --git a/src/po/hi.po b/src/po/hi.po index 7f4ab56f1..0b412bc29 100644 --- a/src/po/hi.po +++ b/src/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-08-09 02:17+1000\n" "Last-Translator: Ashish Arora \n" "Language-Team: Hindi\n" @@ -1842,6 +1842,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "प्रकाश की एक किरण बनाने के लिए क्लिक करें और खीचें|" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "पूरी तस्वीर को गहरा करने के लिए क्लिक करें|" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कंफ़ेद्दी" diff --git a/src/po/hr.po b/src/po/hr.po index 2111b85f6..86e3fb715 100644 --- a/src/po/hr.po +++ b/src/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-26 10:53+0100\n" "Last-Translator: Paulo Pavačić \n" "Language-Team: none\n" @@ -1819,6 +1819,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klikni i pomakni miš za crtanje zrake svijetlosti na tvojoj slici." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikni da zatamniš cijelu sliku." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/hu.po b/src/po/hu.po index 7c716234f..2d2d2bebc 100644 --- a/src/po/hu.po +++ b/src/po/hu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-28 12:48+0200\n" "Last-Translator: Dr. Nagy Elemér Károly \n" "Language-Team: Hungarian \n" @@ -1854,6 +1854,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kattints oda a rajzodon, ahova fénysugarat szeretnél rajzolni." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kattints az egész rajz sötétebbé tételéhez." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/hy.po b/src/po/hy.po index 8d96e73b7..0fb02edb9 100644 --- a/src/po/hy.po +++ b/src/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-03-22 11:39+0400\n" "Last-Translator: Aram Palyan \n" "Language-Team: Armenian \n" @@ -1849,6 +1849,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Սեղմիր և քաշիր` նկարումդ լույսի շող նկարելու համար:" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Սեղմիր, նկարդ ամբողջությամբ մթնեցնելու համար:" + # Գունավոր թղթերի փունջ #: ../../magic/src/confetti.c:102 msgid "Confetti" diff --git a/src/po/id.po b/src/po/id.po index 46bb0853e..25102645a 100644 --- a/src/po/id.po +++ b/src/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-09 04:22+0000\n" "Last-Translator: Teuku Surya \n" "Language-Team: LANGUAGE \n" @@ -1845,6 +1845,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kilik dan tarik untuk menggambar cahaya beam pada gambar anda." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik untuk menggelapkan seluruh gambar." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/is.po b/src/po/is.po index d2fd82a14..d33572d77 100644 --- a/src/po/is.po +++ b/src/po/is.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-06-28 15:44+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic\n" @@ -1794,6 +1794,22 @@ msgstr "" "Smelltu og dragðu músina til að aðskilja rauða og blágræna liti í myndinni " "þinni, svo þú getir skoðað hana með þrívíddargleraugum!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Smelltu og dragðu til að teikna ljósgeisla á myndina þína." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Smelltu til að gera alla myndina litmettaða." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Pappírsskraut" diff --git a/src/po/it.po b/src/po/it.po index 7b57f6528..5acf844e2 100644 --- a/src/po/it.po +++ b/src/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-18 09:15+0000\n" "Last-Translator: Flavio Pastore \n" "Language-Team: Italian\n" @@ -1877,6 +1877,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Fai clic e trascina per disegnare un fascio di luce nel tuo disegno." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Fai clic per scurire tutto il disegno." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Coriandoli" diff --git a/src/po/iu.po b/src/po/iu.po index 7bcf508ab..d76717778 100644 --- a/src/po/iu.po +++ b/src/po/iu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint Inuktitut\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-07-04 16:05-0500\n" "Last-Translator: Harvey Ginter \n" "Language-Team: LANGUAGE \n" @@ -1837,6 +1837,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᖃᐅᒪᑎᑕᐅᑎᑦᓯᓂᕐᒧᑦ ᐊᑦᔨᖑᐊᕐᓂ." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᓕᒫᖅ ᑖᕐᓯᑎᒋᐊᕐᓗᒍ." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ᑕᐅᑦᑐᓖᑦ ᓯᖃᓖᑦ ᐃᒋᑕᐅᓲᑦ" diff --git a/src/po/ja.po b/src/po/ja.po index 41c355f20..2d489f63d 100644 --- a/src/po/ja.po +++ b/src/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.29\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-06-15 21:26+0900\n" "Last-Translator: Shin-ichi TOYAMA \n" "Language-Team: japanese \n" @@ -1915,6 +1915,23 @@ msgstr "" "くりっくしてから みぎひだりに ドラッグして、いろを あかとあおに わけよう。あ" "かあおメガネで りったいてきに みえるよ!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"クリックしたまま マウスをうごかして かいちゅうでんとうの あかりで てらそう。" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "えを クリックして ぜんたいを あざやかな いろに しよう。" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "かみふぶき" diff --git a/src/po/ka.po b/src/po/ka.po index 6aa56215e..292244ded 100644 --- a/src/po/ka.po +++ b/src/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-04-01 20:01+0400\n" "Last-Translator: Giasher \n" "Language-Team: Gia Shervashidze \n" @@ -1871,6 +1871,22 @@ msgstr "" "დაწკაპეთ და გადაათრიეთ მარცხენა და მარჯვენა ნახატის წითელ-ციან ანაგლიფების " "შესაქმნელად 3D სათვალეებისთვის!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "დაწკაპეთ და გადაატარეთ ნახატს სინათლის სხივის ჩასამატებლად." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "დაწკაპეთ მთლიანი ნახატის ფერების გასაჯერებლად." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "კონფეტი" diff --git a/src/po/kab.po b/src/po/kab.po index ecf71e620..d66ee0c06 100644 --- a/src/po/kab.po +++ b/src/po/kab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kab\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-23 23:11+0100\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: \n" @@ -1840,6 +1840,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Ssed u selḥu taɣerdayt iwakken ad tsuneɣeḍ aẓenzar n tafat." + +# +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Ssed iwakken ad tibrik tugna merra." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Tubbiyin n lkaɣeḍ isebɣen" diff --git a/src/po/km.po b/src/po/km.po index e70b64f6d..896b9e08d 100644 --- a/src/po/km.po +++ b/src/po/km.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2008-05-30 15:41+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -1822,6 +1822,21 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ចុច ហើយ​អូស ដើម្បី​គូរ​​ភ្លើងហ្វា​នៅលើ​រូបភាព​របស់​អ្នក ។" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​ផ្លាស់ប្ដូរ​ពណ៌​រូបភាព ។" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/kn.po b/src/po/kn.po index 07465af01..c8f3a9822 100644 --- a/src/po/kn.po +++ b/src/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-08 23:43+0630\n" "Last-Translator: Savitha \n" "Language-Team: Kannada \n" @@ -1858,6 +1858,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ನಿಮ್ಮ ಚಿತ್ರದಲ್ಲಿ ಒಂದು ಬೆಳಕಿನ ಕಿರಣವನ್ನು ಚಿತ್ರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಎಳೆಯಿರಿ." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ಸಂಪೂರ್ಣ ಚಿತ್ರದ ಬಣ್ಣವನ್ನು ಗಾಢವಾಗಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ಬಣ್ಣದ ಕಾಗದಚೂರುಗಳು" diff --git a/src/po/ko.po b/src/po/ko.po index dfa6e4d9a..40b3a16ee 100644 --- a/src/po/ko.po +++ b/src/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2022-09-10 06:06-0400\n" "Last-Translator: Mark K. Kim \n" "Language-Team: N/A\n" @@ -1764,6 +1764,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "마우스를 누르고 끌면 그림을 밝게 만들 수 있어요." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "마우스를 누르면 그림의 전채가 어둡게 변화돼요." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "종이조각" diff --git a/src/po/kok.po b/src/po/kok.po index 6bf0d9189..307eb0f3c 100644 --- a/src/po/kok.po +++ b/src/po/kok.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: en_gb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-05-19 23:18+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1842,6 +1842,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "तुमच्या पिंतुराचेर उजवाडाचें कीर्ण पिंतरांवक, क्लिक करून ओडचें." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "तुमच्या पुराय पिंतुराचो रंग दाटावंक क्लिक करचें." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कॉन्फिटी" diff --git a/src/po/kok@roman.po b/src/po/kok@roman.po index b8796518c..73b3b2189 100644 --- a/src/po/kok@roman.po +++ b/src/po/kok@roman.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2012-05-11 18:00+0530\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -1848,6 +1848,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +" tujea pinturacher uzvaddchem kirnn pintranvk klik korun zageantor kor " + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr " tujem sogllem pintur datt korunk klik kor " + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr " konfitt'tti " diff --git a/src/po/ks.po b/src/po/ks.po index 2c97c0d70..5a734b98f 100644 --- a/src/po/ks.po +++ b/src/po/ks.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2012-01-02 11:36+0530\n" "Last-Translator: \n" "Language-Team: Kashmiri-PA\n" @@ -1844,6 +1844,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "کلِک تہٕ ڈریگ کٔریو تُہٕنٛزِ شکلہِ پد۪ٹھ اَکھ گاشہٕ زٕژ بناونہٕ خٲطرٕ" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "کلِک کٔریو تہٕ ڈٲلیو ماوس سارےٛ تصویٖرِ ہِنٛد رنٛگ تیکھ کَرنہٕ خٲطر" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "کَن فِٹی" diff --git a/src/po/ks@devanagari.po b/src/po/ks@devanagari.po index c3841eec4..aae81ee50 100644 --- a/src/po/ks@devanagari.po +++ b/src/po/ks@devanagari.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2012-12-21 11:04+0530\n" "Last-Translator: \n" "Language-Team: Kashmiri-DV\n" @@ -1848,6 +1848,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "कोलोक कॊरीव तॊ डरिग कॊरीव पननॊ तसविर पयॊठ अख गाछोच लय डरा करनो बापत." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "पनॊन तमाम तसविर डारीकबनावनो बापत कॊरीव कोलोक." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कनफिटो" diff --git a/src/po/ku.po b/src/po/ku.po index ccd726e35..5785f6101 100644 --- a/src/po/ku.po +++ b/src/po/ku.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2009-05-25 12:52+0300\n" "Last-Translator: \n" "Language-Team: en_US \n" @@ -1837,6 +1837,21 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Mişkî li dora reşahiya wêneyê bitikîne û rake." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Ji bo tarîkirina wêneyê têketiyêyî, bitikîne." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetî" diff --git a/src/po/lb.po b/src/po/lb.po index 4b33efe97..3795cbe38 100644 --- a/src/po/lb.po +++ b/src/po/lb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-02-16 21:10+0100\n" "Last-Translator: René Brandenburger \n" "Language-Team: LANGUAGE \n" @@ -1818,6 +1818,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klick a beweeg d'Maus fir a Luuchtestrahl op däi Bild ze molen." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klick fir d'ganz Bild donkel ze maachen." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/lg.po b/src/po/lg.po index 88c948d2a..8e3194fac 100644 --- a/src/po/lg.po +++ b/src/po/lg.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-09-21 09:37+0200\n" "Last-Translator: OLWENY San James \n" "Language-Team: LANGUAGE \n" @@ -1848,6 +1848,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Nyiga era walula okuteeka ekitangaala ku kifaananyi kyo" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Nyiga okukwaasa ekifaananyi kyo kyonna" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/lt.po b/src/po/lt.po index 2fdaac1ff..ec48cd0eb 100644 --- a/src/po/lt.po +++ b/src/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint 0.9.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2004-12-10 18:11+0200\n" "Last-Translator: Gintaras Goštautas \n" "Language-Team: Lithuanian \n" @@ -1838,6 +1838,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Spustelėkite ir pele pieškite šviesos spindulį." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Spustelėkite ir judindami pelę pakeisite piešinio spalvas." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/lv.po b/src/po/lv.po index 08bcdcb14..6903a563f 100644 --- a/src/po/lv.po +++ b/src/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-11 23:13-0000\n" "Last-Translator: Raivis Strogonovs \n" "Language-Team: Valoda \n" @@ -1853,6 +1853,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Nospied, pieturi peles pogu un velc peli, lai uzzīmētu gaismas staru." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Noklikšķini peli, lai visu bildi padarītu tumšāku." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/mai.po b/src/po/mai.po index 14e2d8bd9..139e0c62a 100644 --- a/src/po/mai.po +++ b/src/po/mai.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-02-18 09:21+0530\n" "Last-Translator: sk \n" "Language-Team: American English \n" @@ -1835,6 +1835,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "प्रकाशक एकगोट किरण बनाबैक लेल क्लिक करू आओर खींचू." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "पूरा तस्वीर केँ गहरा करबाक लेल क्लिक करू." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कॉन्फेटी" diff --git a/src/po/mk.po b/src/po/mk.po index 55be09451..ac02e60d8 100644 --- a/src/po/mk.po +++ b/src/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-06-17 23:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Macedonian \n" @@ -1830,6 +1830,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Кликнете и движете го глувчето наоколу за да ја замаглите сликата." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Кликнете на глувчето и влечете го наоколу за да ја промените бојата на " +"сликата." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/ml.po b/src/po/ml.po index c2d724aed..bac4f9aea 100644 --- a/src/po/ml.po +++ b/src/po/ml.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-08-03 16:29+0530\n" "Last-Translator: Akhil Krishnan S \n" "Language-Team: Malayalam\n" @@ -1846,6 +1846,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ചിത്രത്തില്‍ ഒരു പ്രകാശരശ്മി വരയ്ക്കാനായി മൗസ് അമര്‍ത്തിവലിക്കുക." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ചിത്രം മുഴുവന്‍ കടും നിറമാക്കാന്‍ അമര്‍ത്തുക." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "കോണ്‍ഫെറ്റി" diff --git a/src/po/mn.po b/src/po/mn.po index b39051927..ac1eee03d 100644 --- a/src/po/mn.po +++ b/src/po/mn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1697,6 +1697,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/mni.po b/src/po/mni.po index 519942877..7019412b0 100644 --- a/src/po/mni.po +++ b/src/po/mni.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n" "Last-Translator: Hidam Dolen \n" "Language-Team: LANGUAGE \n" @@ -1839,6 +1839,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "অদোমগী লাইদা মঙালগী মশেক য়েক্নবা ক্লিক তৌরো অদুগা চিংঙো." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "অদোমগী লাই অপুম্বদু মমশিলহন্নবা ক্লিক তৌরো." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "কনফেতি" diff --git a/src/po/mni@meiteimayek.po b/src/po/mni@meiteimayek.po index 0981cb061..2372731a8 100644 --- a/src/po/mni@meiteimayek.po +++ b/src/po/mni@meiteimayek.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n" "Last-Translator: Hidam Dolen \n" "Language-Team: LANGUAGE \n" @@ -1836,6 +1836,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏꯗ ꯃꯉꯥꯜꯒꯤ ꯃꯁꯦꯛ ꯌꯦꯛꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯆꯤꯡꯉꯣ." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏ ꯑꯄꯨꯝꯕꯗꯨ ꯃꯝꯁꯤꯜꯍꯟꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ꯀꯟꯐꯦꯇꯤ" diff --git a/src/po/mr.po b/src/po/mr.po index 69a901115..4931e264a 100644 --- a/src/po/mr.po +++ b/src/po/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.21c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-03-28 12:11+0530\n" "Last-Translator: Santosh Jankiram Kshetre \n" "Language-Team: Marathi\n" @@ -1858,6 +1858,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "प्रकाश की एक किरण बनाने के लिए क्लिक करें और खीचें|" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "पूर्ण चित्राला गड्द करण्यासाठी क्लिक करा." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कंफ़ेद्दी" diff --git a/src/po/ms.po b/src/po/ms.po index bce5ffbf1..82dcd728d 100644 --- a/src/po/ms.po +++ b/src/po/ms.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2015-03-07 23:30+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/" @@ -1831,6 +1831,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik dan seret untuk melukis sinaran cahaya di dalam gambar anda." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik untuk gelapkan keseluruhan gambar anda." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/nb.po b/src/po/nb.po index 5da31a6e6..de378e691 100644 --- a/src/po/nb.po +++ b/src/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2021-06-28 19:40+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Bokmål \n" @@ -1828,6 +1828,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Hold inne knappen og flytt rundt for å tegne lysstråler." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Hold inne knappen og flytt rundt for å gjøre hele tegningen mørkere." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/ne.po b/src/po/ne.po index e8b496696..870e8e682 100644 --- a/src/po/ne.po +++ b/src/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-09 08:08+0530\n" "Last-Translator: Khagen Sarma \n" "Language-Team: none\n" @@ -1843,6 +1843,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "तपाईँको चित्रमा प्रकाशको लहर बनाउन क्लिक अनि ड्र्याग गर्नुहोस्" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "तपाईँको पुरा चित्र उज्यालो पार्नका लागि क्लिक गर्नुहोस् ।" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कनफेट्टी" diff --git a/src/po/nl.po b/src/po/nl.po index 9e53f14ab..5088a2158 100644 --- a/src/po/nl.po +++ b/src/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-03-30 14:41+0200\n" "Last-Translator: Willem Heppe \n" "Language-Team: Dutch \n" @@ -1911,6 +1911,22 @@ msgstr "" "Klik en sleep links en rechts om rood en cyaan in je tekening te scheiden, " "om anaglyphs te maken die je kan bekijken met een 3D-bril!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik en teken met de muis een lichtbundel in je tekening." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik om de hele tekening te verzadigen." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/nn.po b/src/po/nn.po index d23f54e76..fc12bd517 100644 --- a/src/po/nn.po +++ b/src/po/nn.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-06-02 13:17+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -1909,6 +1909,22 @@ msgstr "" "Hald inne knappen og flytt til venstre og høgre for å skilja raud- og " "cyanfargane, for å laga ei 3D-teikning du kan sjå med 3D-briller!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Hald inne knappen og flytt rundt for å teikna lysstrålar." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Trykk for å gjera heile teikninga meir fargerik." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/nr.po b/src/po/nr.po index 6d917386f..4aa882b29 100644 --- a/src/po/nr.po +++ b/src/po/nr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-10-09 20:32+0200\n" "Last-Translator: Vincent Mahlangu \n" "Language-Team: LANGUAGE \n" @@ -1847,6 +1847,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Qhwarhaza bewudose njalo iKhondlwana ujikeleze ukuze ufiphaze isithombe." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Qhwarhaza udose njalo iKhondlwana uzungeleze ukuze utjhugulule umbala " +"weithombe. " + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/nso.po b/src/po/nso.po index 1e3eb54ce..e6a2ac7d5 100644 --- a/src/po/nso.po +++ b/src/po/nso.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-10-04 17:44+0200\n" "Last-Translator: Pheledi \n" "Language-Team: LANGUAGE \n" @@ -1861,6 +1861,23 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Kgotla gomme o goge gore o thale kganya ya seetša seswantšhong sa gago." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kgotla gore o fifatše seswantšho ka moka." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Khonfeti" diff --git a/src/po/oc.po b/src/po/oc.po index 78c0b4011..56561c703 100644 --- a/src/po/oc.po +++ b/src/po/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2021-06-06 18:54+0200\n" "Last-Translator: \n" "Language-Team: Occitan (post 1500) \n" @@ -1730,6 +1730,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/oj.po b/src/po/oj.po index 17475d438..a311ef74d 100644 --- a/src/po/oj.po +++ b/src/po/oj.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ojibwaytuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2007-10-08 18:19-0500\n" "Last-Translator: Ed Montgomery \n" "Language-Team: Ed \n" @@ -1763,6 +1763,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Waabizo" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Waabimoojichaagwaazo" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/or.po b/src/po/or.po index 78eb4e064..14257d873 100644 --- a/src/po/or.po +++ b/src/po/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2012-04-05 20:08+0530\n" "Last-Translator: Ekanta \n" "Language-Team: LANGUAGE \n" @@ -1840,6 +1840,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ଆପଣଙ୍କ ଚିତ୍ରରେ ଏକ ଆଲୋକ କିରଣପୁଞ୍ଜ ଅଙ୍କନ କରିବା ପାଇଁ ମାଉସକୁ କ୍ଲିକ କରି ଡ୍ରାଗ କରନ୍ତୁ ୤ " + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ଆପଣଙ୍କ ସମଗ୍ର ଚିତ୍ରକୁ ଗାଢ଼ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ ୤ " + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "କନଫେଟି" diff --git a/src/po/pa.po b/src/po/pa.po index a2ecfc45a..4dee2b3b6 100644 --- a/src/po/pa.po +++ b/src/po/pa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2022-10-13 16:28-0700\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -1783,6 +1783,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ਆਪਣੀ ਤਸਵੀਰ ਉੱਤੇ ਰੋਸ਼ਨੀ ਦੀ ਕਿਰਨ ਵਹਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰਕੇ ਖਿੱਚੋ।" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ਆਪਣਾ ਪੂਰੀ ਤਸਵੀਰ ਨੂੰ ਗੂੜ੍ਹਾ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ।" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ਕਨਫ਼ੈਟੀ" diff --git a/src/po/pl.po b/src/po/pl.po index 5ece92c73..e1a6f7ca0 100644 --- a/src/po/pl.po +++ b/src/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-30 18:21+0000\n" "Last-Translator: Chris \n" "Language-Team: none\n" @@ -1830,6 +1830,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kliknij i przesuń myszką, aby narysować promień światła." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kliknij, aby przyciemnić cały rysunek." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/pt.po b/src/po/pt.po index b5ff722ee..2311ca3a1 100644 --- a/src/po/pt.po +++ b/src/po/pt.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-05-30 20:21+0100\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" @@ -1949,6 +1949,22 @@ msgstr "" "Clique e arraste à esquerda e à direita para separar o vermelho e o ciano do " "teu desenho, para fazer anáglifos que pode ver com óculos 3D!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Clica e arrasta para desenhar um feixe de luz no desenho." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clica para saturar o desenho inteiro." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Serpentina" diff --git a/src/po/pt_BR.po b/src/po/pt_BR.po index 0634d6fac..10c0318c4 100644 --- a/src/po/pt_BR.po +++ b/src/po/pt_BR.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-06 13:01-0300\n" "Last-Translator: Fred Ulisses Maranhão \n" "Language-Team: none\n" @@ -1833,6 +1833,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Clique e arraste para desenhar um raio de luz na sua figura." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clique para escurecer a sua figura inteira." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confete" diff --git a/src/po/ro.po b/src/po/ro.po index 426d4a696..93358e007 100644 --- a/src/po/ro.po +++ b/src/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint 0.9.2pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2003-01-03 21:32-0500\n" "Language-Team: Romanian \n" "Language: ro\n" @@ -1873,6 +1873,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag the mouse to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Click şi trage mouse-ul pentru a trasa o rază de lumină pe pictura ta." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Click pentru a închide culoarea întregii picturi." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Confetti" diff --git a/src/po/ru.po b/src/po/ru.po index 775c10afc..cb9417eaa 100644 --- a/src/po/ru.po +++ b/src/po/ru.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-06-27 16:04+0300\n" "Last-Translator: Alevtina \n" "Language-Team: Basealt Translation Team\n" @@ -1988,6 +1988,22 @@ msgstr "" "Щёлкните и ведите мышью влево и вправо по картинке, чтобы разделить красный " "и синий и создать анаглифы, которые можно будет просматривать в 3D-очках!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Щёлкните и ведите мышью по картинке, чтобы нарисовать луч света." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Щёлкните, чтобы сделать насыщенной всю картинку." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Конфетти" diff --git a/src/po/rw.po b/src/po/rw.po index 5cc21a4e1..c1fe1936e 100644 --- a/src/po/rw.po +++ b/src/po/rw.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -1809,6 +1809,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Na Kwimura i Imbeba Kuri kinanutse i() y'Ishusho" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Na Kwimura i Imbeba Kuri Ubwoko i() y'Ishusho" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/sa.po b/src/po/sa.po index 4a2a911d7..97981fbd5 100644 --- a/src/po/sa.po +++ b/src/po/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-11-19 07:03+0530\n" "Last-Translator: Aarathi Bala\n" "Language-Team: \n" @@ -1835,6 +1835,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "तव चित्रे प्रकाशरेखाम् आलिखितुं क्लिक् कृत्वा कर्षय।" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "तव सम्पूर्णचित्रं गभीरीकर्तुं क्लिक् कुरु।" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "कन्फेटी" diff --git a/src/po/sat.po b/src/po/sat.po index 3225cf6b7..aa61d6818 100644 --- a/src/po/sat.po +++ b/src/po/sat.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-16 16:55+0530\n" "Last-Translator: Ganesh Murmu \n" "Language-Team: none\n" @@ -1846,6 +1846,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "आमाक् चिता़र रे आरसाल रेयाक् पा़ड़ गार तेयार ला़गित् ओर आर ओताय मे." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "आमाक् गोटा चिता़र गाड़हो ला़गित् ओताय मे." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "सिका़र" diff --git a/src/po/sat@olchiki.po b/src/po/sat@olchiki.po index 07aa3b7d5..fa5df42e8 100644 --- a/src/po/sat@olchiki.po +++ b/src/po/sat@olchiki.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2022-02-11 18:33+0530\n" "Last-Translator: Prasanta Hembram \n" "Language-Team: \n" @@ -1827,6 +1827,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ᱟᱢᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱨᱮ ᱟᱨᱥᱟᱞ ᱨᱮᱭᱟᱜ ᱯᱟᱹᱲ ᱜᱟᱨ ᱛᱮᱭᱟᱨ ᱞᱟᱹᱜᱤᱫ ᱚᱨ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ᱟᱢᱟᱜ ᱜᱚᱴᱟ ᱪᱤᱛᱟᱹᱨ ᱜᱟᱲᱦᱚ ᱞᱟᱹᱜᱤᱫ ᱚᱛᱟᱭ ᱢᱮ ᱾" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "ᱥᱤᱠᱟᱹᱨ" diff --git a/src/po/sc.po b/src/po/sc.po index 037a738d1..073a1b6b8 100644 --- a/src/po/sc.po +++ b/src/po/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: sc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2020-10-29 00:00+0000\n" "Last-Translator: Flavia Floris \n" "Language-Team: LANGUAGE \n" @@ -1826,6 +1826,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Incarca e traga pro disinnare unu bìculu de lughe in s'immàgine." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Incarca pro oscurare totu s'immàgine." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Coriàndulos" diff --git a/src/po/sd.po b/src/po/sd.po index 42345039c..241d698eb 100644 --- a/src/po/sd.po +++ b/src/po/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-01-09 14:39+0530\n" "Last-Translator: Chandrakant Dhutadmal\n" "Language-Team: Sindhi-PA\n" @@ -1842,6 +1842,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "پنهنجي تصوير تي روشنيءَ سان تروي جو نقش ڪڍڻ لاءِ ڪلڪ ڪريو ۽ گهليو۔" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "پنهنجي سموري تصوير اونداهي ڪرڻ لاءِ ڪلڪ ڪريو۔" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "رنگين پنن جون ٽڪريون" diff --git a/src/po/sd@devanagari.po b/src/po/sd@devanagari.po index bfe5b96a7..7aab3c47f 100644 --- a/src/po/sd@devanagari.po +++ b/src/po/sd@devanagari.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2013-01-19 23:29+0530\n" "Last-Translator: \n" "Language-Team: Sindhi-DV\n" @@ -1841,6 +1841,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "पंहिंजे तस्वीर ते रोशिनीअ सां तिरविरे जो नक़्शु कढण लाइ क्लिक करियो ऐं गिहिलियो." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "पंहिंजी समूरी तस्वीर ऊंदाही करण लाइ क्लिक करियो." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "रंगीनु पननि जूंटुकिरियूं" diff --git a/src/po/shs.po b/src/po/shs.po index 96d2cf05d..534a79dd6 100644 --- a/src/po/shs.po +++ b/src/po/shs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.17\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2008-10-20 09:16-0700\n" "Last-Translator: Neskie Manuel \n" "Language-Team: Ubuntu Secwepemc Translators \n" "Language-Team: none\n" @@ -1863,6 +1863,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "ඔබේ පින්තුරයේ ප්‍රකාශ ආලෝක දණ්ඩක් ඇදිමට තද කරගෙන එහා මෙහා ගෙනයන්න." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "ඔබේ පින්තූරයම අඳුරු කිරීමට මූසික ක්ලිකය කරන්න." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "මංගල මල්පෙති" diff --git a/src/po/sk.po b/src/po/sk.po index 2511a9088..736675f5b 100644 --- a/src/po/sk.po +++ b/src/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.28\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-04-10 13:48+0200\n" "Last-Translator: Jose Riha \n" "Language-Team: Slovak \n" @@ -1916,6 +1916,22 @@ msgstr "" "Kliknutím a ťahaním myši doľava a doprava oddeľte červenú a azúrovú farbu a " "vytvorte tak anaglyfy, ktoré si môžete prezerať pomocou 3D okuliarov!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Kliknutím a ťahaním myši nakreslíš na obrázok lúče svetla." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Kliknutím myši pridáš sýtosť celému obrázku." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfety" diff --git a/src/po/sl.po b/src/po/sl.po index 4cf38ed76..8b4d3e7a6 100644 --- a/src/po/sl.po +++ b/src/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-26 21:51+0100\n" "Last-Translator: Matej Urbančič \n" "Language-Team: Slovenian GNOME Translation Team \n" @@ -1828,6 +1828,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "S klikom in potegom je mogoče narisati žarek svetlobe na sliki." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "S klikom miške je mogoče potemniti celo sliko." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/son.po b/src/po/son.po index 91dfe92e8..ddc085af9 100644 --- a/src/po/son.po +++ b/src/po/son.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tuxpaint-Songhay\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-04-20 15:29+0200\n" "Last-Translator: Chris \n" "Language-Team: Songhay Localization Team\n" @@ -1879,6 +1879,22 @@ msgstr "" "Naagu nda nor kanbe wow nd'iguma ga ka ni biyoo ciraa nda bulaa fay, ka bii " "batananteyaŋ tee kaŋ n ga hin ka dii y'ey nda 3D dijey!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Naagu nda nor ka denji-ize zeeri ni biyoo ga." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Naagu ka ni bii timmantaa tiŋandi." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Kaddasu buuna!" diff --git a/src/po/sq.po b/src/po/sq.po index 799792051..060f3d07b 100644 --- a/src/po/sq.po +++ b/src/po/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-01-26 19:44+0200\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" @@ -1952,6 +1952,23 @@ msgstr "" "Klikojeni dhe tërhiqeni majtas dhe djathtas që të veçoni në figurën tuaj të " "kuqen nga ciani, për të krijuar relieve që mund t’i shihni me syza 3D!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Klikoni dhe tërhiqeni miun që të vizatohet një tufë drite në vizatimin tuaj." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikoni që të ngopet krejt figura juaj." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Bonbone" diff --git a/src/po/sr.po b/src/po/sr.po index 248b6968f..55936d6a4 100644 --- a/src/po/sr.po +++ b/src/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.15rc1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-12-12 00:00+0100\n" "Last-Translator: Ivana \n" "Language-Team: Serbian \n" @@ -1976,6 +1976,24 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +# +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Кликни и мрдај мишем да нацрташ зрак светлости на слици." + +# +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Кликни и померај миша да би се потамнила цела твоја слика." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Конфете" diff --git a/src/po/sr@latin.po b/src/po/sr@latin.po index b3bf5e80b..973265447 100644 --- a/src/po/sr@latin.po +++ b/src/po/sr@latin.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.15rc1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-12-12 00:00+0100\n" "Last-Translator: Ivana \n" "Language-Team: Serbian \n" @@ -1976,6 +1976,24 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +# +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klikni i mrdaj mišem da nacrtaš zrak svetlosti na slici." + +# +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klikni i pomeraj miša da bi se potamnila cela tvoja slika." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfete" diff --git a/src/po/su.po b/src/po/su.po index e35dd7850..75257a2b2 100644 --- a/src/po/su.po +++ b/src/po/su.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-05-27 06:24+0200\n" "Last-Translator: kumincir \n" "Language-Team: LANGUAGE \n" @@ -1786,6 +1786,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klik pikeun ngarobah warna dina sakabéh gambarna." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/sv.po b/src/po/sv.po index aedadaf1e..5fe06497d 100644 --- a/src/po/sv.po +++ b/src/po/sv.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2017-12-17 22:48+0100\n" "Last-Translator: Sebastian Rasmussen \n" "Language-Team: Svenska \n" @@ -1828,6 +1828,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Klicka och dra för att rita en ljusstråle på bilden." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Klicka för att göra hela din bild mörkare." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfetti" diff --git a/src/po/sw.po b/src/po/sw.po index 2fa9d9508..1ebd2ab1c 100644 --- a/src/po/sw.po +++ b/src/po/sw.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2010-11-04 23:59+0200\n" "Last-Translator: Emanuel Feruzi \n" "Language-Team: LANGUAGE \n" @@ -1837,6 +1837,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Bofya na kokote kipanya kuchora mwali wa mwanga kwenye picha yako." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Bofya na sogeza kipanya kukoleza rangi kwenye picha nzima." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/ta.po b/src/po/ta.po index 11f7043cb..7b58a73a0 100644 --- a/src/po/ta.po +++ b/src/po/ta.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2009-01-18 00:06+0530\n" "Last-Translator: ravishankar \n" "Language-Team: A. Ravishankar \n" @@ -1840,6 +1840,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "சொடுக்கி இழுத்தால், படத்தின் மேல் ஒளிக்கற்றை ஒன்றை வரையலாம்." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "சொடுக்கினால், முழுப்படத்திலும் கருமை கூடும்." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "வண்ணக் காகிதத் துண்டுகள்" diff --git a/src/po/te.po b/src/po/te.po index bc25198fe..64133f15f 100644 --- a/src/po/te.po +++ b/src/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-01-07 15:08+0530\n" "Last-Translator: saikumar \n" "Language-Team: Telugu \n" @@ -1836,6 +1836,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "చిత్రానికి కాంతి కిరణాలు అమద్చడానికి క్లిక్ చేసి లాగుము." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "చిత్రం మొత్తానికి ముదురు కాంతి అమద్చడానికి క్లిక్ చేయండి." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "కాగితపు ముక్కలు." diff --git a/src/po/th.po b/src/po/th.po index fd7916ea9..2fa21cc8a 100644 --- a/src/po/th.po +++ b/src/po/th.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2015-03-09 11:22+0000\n" "Last-Translator: Nudjaree \n" "Language-Team: Thai (http://www.transifex.com/projects/p/doudoulinux/" @@ -1820,6 +1820,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "คลิกและลากเพื่อวาดแสงบนภาพ" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "คลิ๊กส่วนที่มืดของรูปภาพ" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "เศษกระดาษสีที่ใช้โปรย" diff --git a/src/po/tl.po b/src/po/tl.po index 169782a0b..73b1fb17e 100644 --- a/src/po/tl.po +++ b/src/po/tl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n" "Last-Translator: none\n" "Language-Team: none\n" @@ -1741,6 +1741,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/tlh.po b/src/po/tlh.po index a34c7fe30..408b63416 100644 --- a/src/po/tlh.po +++ b/src/po/tlh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tux Paint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2004-08-16 23:14-0800\n" "Last-Translator: Bill Kendrick \n" "Language-Team: Bill Kendrick \n" @@ -1745,6 +1745,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/tr.po b/src/po/tr.po index 863f0763c..cbb8a09a2 100644 --- a/src/po/tr.po +++ b/src/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2012-01-02 22:41+0200\n" "Last-Translator: gvhı \n" "Language-Team: Turkish \n" @@ -1851,6 +1851,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Resminde ışık ışını çizmek istediğin yere fareyi tıklat ve sürükle." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Resmin tamamını koyulaştırmak için tıklayın." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Konfeti" diff --git a/src/po/tuxpaint.pot b/src/po/tuxpaint.pot index 88e0d37ce..4cb06e149 100644 --- a/src/po/tuxpaint.pot +++ b/src/po/tuxpaint.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1697,6 +1697,18 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" + +#: ../../magic/src/comicdot.c:152 +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/tw.po b/src/po/tw.po index d0cf9cfba..2dc04857e 100644 --- a/src/po/tw.po +++ b/src/po/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2007-04-26 15:45+0200\n" "Last-Translator: Joana Portia Antwi-Danso \n" "MIME-Version: 1.0\n" @@ -1824,6 +1824,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Mia so na fa akura no to mfoni no so ma no nyɛ wisiwisi." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Fa akura no fa mfoni no so na sesa n'ahosuo no." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/uk.po b/src/po/uk.po index e8bf45fda..914bac328 100644 --- a/src/po/uk.po +++ b/src/po/uk.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.23 uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-03-29 19:54+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -1956,6 +1956,22 @@ msgstr "" "кольори на вашому зображенні для створення анагліфів, які можна буде " "переглядати у 3D-окулярах!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Клацніть та поводіть пучком світла по Вашому малюнку." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Клацніть, щоб зробити насиченішими кольори усього малюнка." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Конфеті" diff --git a/src/po/ur.po b/src/po/ur.po index e525cf231..daf8ab8a1 100644 --- a/src/po/ur.po +++ b/src/po/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-10-30 15:34+0530\n" "Last-Translator: Chandrakant Dhutadmal\n" "Language-Team: Urdu\n" @@ -1851,6 +1851,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "آپ كی تصویر پر روشنی كی ایك كرن بنانے كے لئے ، كلك اور ڈریگ كریں۔" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "پوری تصویر كو گہرا كرنے كے لئے كلك كریں۔" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "كانفیٹی" diff --git a/src/po/ve.po b/src/po/ve.po index 8af7135a7..760c27b58 100644 --- a/src/po/ve.po +++ b/src/po/ve.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-09-21 20:04+0200\n" "Last-Translator: Shumani Mercy Ṋevhulaudzi \n" "Language-Team: LANGUAGE \n" @@ -1850,6 +1850,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Kiḽikani ni sudzuluse mausu u mona u ita uri tshifanyiso tshi si vhonale." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "" +"Kiḽikani ni sudzuluse mausu u mona u shandukisa muvhala wa tshifanyiso." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/vec.po b/src/po/vec.po index e04ed4ec6..624fb41a4 100644 --- a/src/po/vec.po +++ b/src/po/vec.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-18 07:59+0100\n" "Last-Translator: el Galepin \n" "Language-Team: none\n" @@ -1841,6 +1841,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Clica e strasina par far na coa de luxe so 'l to dixegno" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clica par scurir tuto el dixegno" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Coriàndoƚi" diff --git a/src/po/vi.po b/src/po/vi.po index 021142e76..8246c2e6d 100644 --- a/src/po/vi.po +++ b/src/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint-0.9.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2024-07-26 00:51-0700\n" "Last-Translator: Cas Pascal \n" "Language-Team: Vietnamese \n" @@ -1774,6 +1774,22 @@ msgstr "" "Nhấn và kéo chuột sang trái và phải để tách tranh thành phần xanh và đỏ, để " "em có thểxem bằng kính 3D!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Nhấn và kéo chuột để vẽ một tia ánh sáng trên tranh." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Nhấn để làm đậm toàn bộ tranh." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Hoa giấy" diff --git a/src/po/wa.po b/src/po/wa.po index 524bcedd5..4b4e92bb1 100644 --- a/src/po/wa.po +++ b/src/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint 0.9.17\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2007-08-30 18:24+0200\n" "Last-Translator: Pablo Saratxaga \n" "Language-Team: Walloon \n" @@ -1852,6 +1852,21 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "" +"Clitchîz et s' bodjîz l' sori po mete des bokets d' l' imådje pus féns." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Clitchîz et s' bodjîz l' sori po candjî les coleurs di l' imådje." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/wo.po b/src/po/wo.po index bcfb0a523..4cbd4cbd6 100644 --- a/src/po/wo.po +++ b/src/po/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-08-09 13:24-0000\n" "Last-Translator: Haby Diallo \n" "Language-Team: \n" @@ -1838,6 +1838,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Bëssël te nga diri ngir rëdë leer ci sa natal bi." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Bëssël ngir lëndëmël naatal bi yep." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Ay kulor" diff --git a/src/po/xh.po b/src/po/xh.po index 940b1804e..ee58f9a29 100644 --- a/src/po/xh.po +++ b/src/po/xh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.9.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2006-09-22 01:42+0200\n" "Last-Translator: Dwayne Bailey \n" "Language-Team: LANGUAGE \n" @@ -1839,6 +1839,20 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Nqomfa ushenxashenxise impuku ukuze udyobhe umfanekiso." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Nqomfa ushenxashenxise impuku ukuze uguqule umbala womfanekiso." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "" diff --git a/src/po/zam.po b/src/po/zam.po index 6b9cfe2ca..4da959da1 100644 --- a/src/po/zam.po +++ b/src/po/zam.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TuxPaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-08-08 12:35+0200\n" "Last-Translator: Rodrigo Perez \n" "Language-Team: \n" @@ -1831,6 +1831,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Gaás ha neér kuin naá paar toób luú diíf beél tií loó moón naá luú." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Gash mdin xha loo nit." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Yets bish" diff --git a/src/po/zh_CN.po b/src/po/zh_CN.po index 89ce75d45..61f9ae919 100644 --- a/src/po/zh_CN.po +++ b/src/po/zh_CN.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2023-04-07 09:13+0800\n" "Last-Translator: hackergene \n" "Language-Team: hackergene \n" @@ -1829,6 +1829,22 @@ msgstr "" "单击并向左和向右拖动以分离图片的红色和青色,从而制作可以使用3D眼镜观看的浮" "雕!" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "单击并拖动可以在图片上绘制一束光。" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to saturate your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "单击使图片整体变暗。" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "五彩纸屑" diff --git a/src/po/zh_TW.po b/src/po/zh_TW.po index 400a67ea7..93d8f29a4 100644 --- a/src/po/zh_TW.po +++ b/src/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxpaint\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2014-06-24 14:46+0800\n" "Last-Translator: Song Huang \n" "Language-Team: Chinese (traditional) \n" @@ -2031,6 +2031,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "按著並移動滑鼠畫一束光到你的圖上。" + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "按一下來使整張圖畫變暗。" + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "紙花" diff --git a/src/po/zu.po b/src/po/zu.po index 8eabdf84c..9e7ca7f24 100644 --- a/src/po/zu.po +++ b/src/po/zu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-16 20:52-0700\n" +"POT-Creation-Date: 2024-09-16 23:55-0700\n" "PO-Revision-Date: 2011-02-07 12:30+0200\n" "Last-Translator: sipho \n" "Language-Team: SIpho\n" @@ -1868,6 +1868,22 @@ msgid "" "make anaglyphs you can view with 3D glasses!" msgstr "" +#: ../../magic/src/comicdot.c:134 +msgid "Comic Dots" +msgstr "" + +#: ../../magic/src/comicdot.c:150 +#, fuzzy +#| msgid "Click and drag to draw a beam of light on your picture." +msgid "Click and drag to draw an a dot pattern on your picture" +msgstr "Chofoza udonse ukuze udwebe umsebe womkhanyo esithombeni sakho." + +#: ../../magic/src/comicdot.c:152 +#, fuzzy +#| msgid "Click to darken your entire picture." +msgid "Click to apply a dot pattern on your entire picture" +msgstr "Chofoza ukwenza kube mnyamana isithombe sakho sonke." + #: ../../magic/src/confetti.c:102 msgid "Confetti" msgstr "Ikhomfeti"