Drip - Better full-canvas effect; proper description

h/t Karl, code by Pere (w/ some clean-up by me)

Closes https://sourceforge.net/p/tuxpaint/bugs/256/
This commit is contained in:
Bill Kendrick 2022-07-03 16:39:50 -07:00
parent 95755c7af5
commit 844db56ab9
132 changed files with 1052 additions and 270 deletions

View file

@ -14,16 +14,26 @@ http://www.tuxpaint.org/
an unexpected color to be chosen. an unexpected color to be chosen.
h/t @kentonyanamin on Twitter for reporting. h/t @kentonyanamin on Twitter for reporting.
Closes https://sourceforge.net/p/tuxpaint/bugs/251/ Closes https://sourceforge.net/p/tuxpaint/bugs/251/
Bill Kendrick <bill@newbreedsoftware.com>
* Line shape could report "360 degrees", which should be "0 degrees". * Line shape could report "360 degrees", which should be "0 degrees".
h/t Karl Ove Hufthammer <karl@huftis.org> for the report h/t Karl Ove Hufthammer <karl@huftis.org> for the report
Closes https://sourceforge.net/p/tuxpaint/bugs/255/ Closes https://sourceforge.net/p/tuxpaint/bugs/255/
Bill Kendrick <bill@newbreedsoftware.com>
* Some Magic tools did not change descriptions when switching * Some Magic tools did not change descriptions when switching
from paint to full-canvas mode. from paint to full-canvas mode.
+ Emboss + Emboss
h/t Karl Ove Hufthammer <karl@huftis.org> for the report + Drip
Closes https://sourceforge.net/p/tuxpaint/bugs/257/ h/t Karl Ove Hufthammer <karl@huftis.org> for the reports
(https://sourceforge.net/p/tuxpaint/bugs/256/
https://sourceforge.net/p/tuxpaint/bugs/257/)
Pere Pujal i Carabantes <perepujal@gmail.com>
& Bill Kendrick <bill@newbreedsoftware.com>
* Full-screen Drip magic effect didn't work well
Pere Pujal i Carabantes <perepujal@gmail.com>
Closes https://sourceforge.net/p/tuxpaint/bugs/256/
* Other Improvements: * Other Improvements:
------------------- -------------------

View file

@ -23,7 +23,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
Last updated: November 8, 2021 Last updated: July 3, 2022
$Id$ $Id$
*/ */
@ -171,7 +171,14 @@ char *blocks_chalk_drip_get_description(magic_api * api ATTRIBUTE_UNUSED, int wh
} }
else if (which == TOOL_DRIP) else if (which == TOOL_DRIP)
{ {
return (strdup(gettext_noop("Click and drag the mouse around to make the picture drip."))); if (mode == MODE_PAINT)
{
return (strdup(gettext_noop("Click and drag the mouse around to make the picture drip.")));
}
else
{
return (strdup(gettext_noop("Click to make the entire picture drip.")));
}
} }
return (NULL); return (NULL);
@ -324,13 +331,25 @@ void blocks_chalk_drip_click(magic_api * api, int which, int mode,
if (mode == MODE_PAINT) { if (mode == MODE_PAINT) {
blocks_chalk_drip_drag(api, which, canvas, last, x, y, x, y, update_rect); blocks_chalk_drip_drag(api, which, canvas, last, x, y, x, y, update_rect);
} else /* MODE_FULLSCREEN */ { } else /* MODE_FULLSCREEN */ {
for (y = 0; y < canvas->h; y += EFFECT_REZ) { if (which != TOOL_DRIP) {
if (y % 10 == 0) { for (y = 0; y < canvas->h; y += EFFECT_REZ) {
api->update_progress_bar(); if (y % 10 == 0) {
api->update_progress_bar();
}
for (x = 0; x < canvas->w; x += EFFECT_REZ) {
blocks_chalk_drip_linecb(api, which, canvas, last, x, y);
}
} }
} else {
for (x = 0; x < canvas->w; x += EFFECT_REZ) { /* Drip (works from bottom-to-top) */
blocks_chalk_drip_linecb(api, which, canvas, last, x, y); int p = (canvas->h -1) % 10;
for (y = canvas->h -1; y >= 0; y -= EFFECT_REZ) {
if ((y + p) % 10 == 0) {
api->update_progress_bar();
}
for (x = 0; x < canvas->w; x += EFFECT_REZ) {
blocks_chalk_drip_linecb(api, which, canvas, last, x, y);
}
} }
} }
update_rect->x = 0; update_rect->x = 0;

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-12-09 09:00+0200\n" "PO-Revision-Date: 2010-12-09 09:00+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -1403,12 +1403,18 @@ msgstr "Dii ci iywa ladic iyi akina ne wek ilok cal kun dwoko ne igoc ma coka."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Dii ci iywa ladic iyi akina ne wek ilok cal kun dwoko ne igoc ma coka." msgstr "Dii ci iywa ladic iyi akina ne wek ilok cal kun dwoko ne igoc ma coka."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Dii ci iywa ladic iyi akina ne wek omi ton pa cal." msgstr "Dii ci iywa ladic iyi akina ne wek omi ton pa cal."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Dii wek ipak cal mamegi weng."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Ma laribiribi." msgstr "Ma laribiribi."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: af\n" "Project-Id-Version: af\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-19 06:38+0000\n" "PO-Revision-Date: 2017-12-19 06:38+0000\n"
"Last-Translator: OdettePretorius <odettepret@gmail.com>\n" "Last-Translator: OdettePretorius <odettepret@gmail.com>\n"
"Language-Team: translate-discuss-af@lists.sourceforge.net\n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n"
@ -1402,10 +1402,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klik en beweeg die muis om die prent na 'n bordkryt-tekening te verander." "Klik en beweeg die muis om die prent na 'n bordkryt-tekening te verander."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik en beweeg die muis om die prent te laat afdrup." msgstr "Klik en beweeg die muis om die prent te laat afdrup."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klik om die hele prent skerper te maak."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Verwaas" msgstr "Verwaas"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-10-27 10:16-0000\n" "PO-Revision-Date: 2010-10-27 10:16-0000\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1400,12 +1400,18 @@ msgstr "Kleeke na twe mauso no dane nfonyin no ɛnyɛ sɛ kyɔɔkɔ drɔɔe."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Kleeke na twe mauso no dane nfonyin no ɛnyɛ sɛ kyɔɔkɔ drɔɔe." msgstr "Kleeke na twe mauso no dane nfonyin no ɛnyɛ sɛ kyɔɔkɔ drɔɔe."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Kleeke na twe mauso no ma nfonyin no dreepe." msgstr "Kleeke na twe mauso no ma nfonyin no dreepe."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Cleeke na nfonyin no ani nnahɔ."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Wesee" msgstr "Wesee"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-10 11:45+0100\n" "PO-Revision-Date: 2014-06-10 11:45+0100\n"
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n" "Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1401,12 +1401,18 @@ msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። " msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "የነጠብጣብ ስአል ለማድረግ አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። " msgstr "የነጠብጣብ ስአል ለማድረግ አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "አጠቃላይ ስዕሉን ለመቅረጽ ጠቅ አድርግ። "
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr " ደብዛዛ" msgstr " ደብዛዛ"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-29 10:04+0100\n" "PO-Revision-Date: 2017-12-29 10:04+0100\n"
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n" "Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
"Language-Team: softaragonés\n" "Language-Team: softaragonés\n"
@ -1406,10 +1406,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Fe clic y arrociega lo ratet pa que lo dibuixo pareixca feito con clarión." "Fe clic y arrociega lo ratet pa que lo dibuixo pareixca feito con clarión."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Fe clic y arrociega lo ratet pa fer gotiar lo dibuixo." msgstr "Fe clic y arrociega lo ratet pa fer gotiar lo dibuixo."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Fe clic pa enfocar tot lo dibuixo."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Difuminar" msgstr "Difuminar"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2008-10-07 14:54+0200\n" "PO-Revision-Date: 2008-10-07 14:54+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1423,12 +1423,18 @@ msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى رسمة طبشورية." msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى رسمة طبشورية."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى قطرات." msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى قطرات."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "انقر الفأره لجعل صورتك اكثر حده و وضوحا"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "تمويه , شىء ضبابي" msgstr "تمويه , شىء ضبابي"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-16 23:33-0800\n" "PO-Revision-Date: 2014-06-16 23:33-0800\n"
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n" "Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1409,12 +1409,18 @@ msgstr ""
"ছবিটো এটা চক-পেঞ্চিল ড্ৰয়িং লৈ পৰিৱৰ্তন কৰিবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে " "ছবিটো এটা চক-পেঞ্চিল ড্ৰয়িং লৈ পৰিৱৰ্তন কৰিবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে "
"ঘূৰাওক. " "ঘূৰাওক. "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ছবিটো টোপালৰ দৰে সজাবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে ঘূৰাওক. " msgstr "ছবিটো টোপালৰ দৰে সজাবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে ঘূৰাওক. "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "আপোনাৰ সম্পূৰ্ণ ছবিটোত তীক্ষ্ণ কৰিবলৈ ক্লিক কৰক."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "অস্পষ্টটো" msgstr "অস্পষ্টটো"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-02-16 18:38+0200\n" "PO-Revision-Date: 2011-02-16 18:38+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1404,12 +1404,18 @@ msgstr "Calca y arrastra'l mur pa que la imaxe paeza fecha con tiza."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Calca y arrastra'l mur pa que la imaxe paeza fecha con tiza." msgstr "Calca y arrastra'l mur pa que la imaxe paeza fecha con tiza."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Calca y arrastra'l mur pa que la imaxe gotee." msgstr "Calca y arrastra'l mur pa que la imaxe gotee."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Calca p'afilar tola imaxe."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Desenfocar" msgstr "Desenfocar"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2008-02-10 19:28+0400\n" "PO-Revision-Date: 2008-02-10 19:28+0400\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1413,12 +1413,17 @@ msgstr ""
"Şəkili tabaşir ilə çəkmək üçün mausun sol düyməsini bas və mausu hərəkətə " "Şəkili tabaşir ilə çəkmək üçün mausun sol düyməsini bas və mausu hərəkətə "
"gətir." "gətir."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Şəkili sızmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir." msgstr "Şəkili sızmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Şəkili güzgüdəki kimi görmək üçün mausun sol düyməsini bas."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Ləkə" msgstr "Ləkə"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-10 23:09+0300\n" "PO-Revision-Date: 2014-06-10 23:09+0300\n"
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1408,12 +1408,18 @@ msgstr "Націсніце і павадзіце па малюнку, каб р
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Націсніце і павадзіце па малюнку, каб размаляваць яго мелам." msgstr "Націсніце і павадзіце па малюнку, каб размаляваць яго мелам."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Націсніце і павадзіце па малюнку, каб накапаць на яго." msgstr "Націсніце і павадзіце па малюнку, каб накапаць на яго."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Націсніце, каб павялічыць рэзкасць малюнку."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Размыццё" msgstr "Размыццё"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-11-28 22:18+0100\n" "PO-Revision-Date: 2011-11-28 22:18+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -1411,12 +1411,18 @@ msgstr "Натиснете и движете мишката, за да прев
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Натиснете и движете мишката, за да превърнете рисунката в тебеширена." msgstr "Натиснете и движете мишката, за да превърнете рисунката в тебеширена."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Натиснете и движете мишката, за да направите рисунката да капе." msgstr "Натиснете и движете мишката, за да направите рисунката да капе."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Натиснете, за да изострите цялата рисунка."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Размазване" msgstr "Размазване"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-09-04 17:25+0200\n" "PO-Revision-Date: 2010-09-04 17:25+0200\n"
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n" "Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1403,12 +1403,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Kilike, i ka ɲinɛnin cɛɛnɛ ka ja yɛlɛma ka kɛ i ko a ɲɛgɛnna ni lakɛrɛ ye." "Kilike, i ka ɲinɛnin cɛɛnɛ ka ja yɛlɛma ka kɛ i ko a ɲɛgɛnna ni lakɛrɛ ye."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Kilike, i ka ja yɛlɛma ka kɛ I ko nɔgɔlan bɔnnen ba kan." msgstr "Kilike, i ka ja yɛlɛma ka kɛ I ko nɔgɔlan bɔnnen ba kan."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Kilike, i ka ɲinɛnin cɛɛnɛ ka ja fan bɛɛ misɛnya."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ɲɛ malasali" msgstr "ɲɛ malasali"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-30 18:24+0000\n" "PO-Revision-Date: 2017-12-30 18:24+0000\n"
"Last-Translator: Chris <cjl@sugarlabs.org>\n" "Last-Translator: Chris <cjl@sugarlabs.org>\n"
"Language-Team: Bengali\n" "Language-Team: Bengali\n"
@ -1402,12 +1402,18 @@ msgstr "ছবিটি একটি চক অঙ্কনে পরিণত
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ছবিটি একটি চক অঙ্কনে পরিণত করতে মাউস ক্লিক করুন এবং ঘোরান." msgstr "ছবিটি একটি চক অঙ্কনে পরিণত করতে মাউস ক্লিক করুন এবং ঘোরান."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ছবিটি ঝরানো করতে মাউস ক্লিক করুন ও চারপাশে ঘোরান." msgstr "ছবিটি ঝরানো করতে মাউস ক্লিক করুন ও চারপাশে ঘোরান."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "সমগ্র ছবিটি ধারালো করতে ক্লিক করুন."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "অস্পষ্ট" msgstr "অস্পষ্ট"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2006-01-01 17:43+0900\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1340,10 +1340,14 @@ msgstr ""
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:180
msgid "Click to make the entire picture drip."
msgstr ""
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "gsl.l.m.gsl." msgstr "gsl.l.m.gsl."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2005-01-09 14:49+0100\n" "PO-Revision-Date: 2005-01-09 14:49+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1406,12 +1406,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klik ha fiñv al logodenn evit cheñch ar skeudenn en un dresadenn gleiz." "Klik ha fiñv al logodenn evit cheñch ar skeudenn en un dresadenn gleiz."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik ha fiñv al logodenn evit lakaat ar skeudenn da c'hlebiañ." msgstr "Klik ha fiñv al logodenn evit lakaat ar skeudenn da c'hlebiañ."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Klik evit kaout ar skeudenn en ur melezour."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Luziañ" msgstr "Luziañ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-09-14 13:51+0530\n" "PO-Revision-Date: 2011-09-14 13:51+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bodo\n" "Language-Team: Bodo\n"
@ -1404,12 +1404,18 @@ msgstr "सावगारिखौ सक आखिनायाव सोला
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "सावगारिखौ सक आखिनायाव सोलायहोनो माउसखौ क्लिक खालाम आरो लोरिहो।" msgstr "सावगारिखौ सक आखिनायाव सोलायहोनो माउसखौ क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "सावगारि ड्रिप बानायनो माउसखौ क्लिक खालाम आरो लोरिहो।" msgstr "सावगारि ड्रिप बानायनो माउसखौ क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "आबुं सावगारिखौ गोफार खालामनो क्लिक खालाम।"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "नुसारै" msgstr "नुसारै"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-11-05 04:24+0000\n" "PO-Revision-Date: 2010-11-05 04:24+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n" "Last-Translator: Samir Ribić <Unknown>\n"
"Language-Team: Bosnian <bs@li.org>\n" "Language-Team: Bosnian <bs@li.org>\n"
@ -1503,12 +1503,19 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež kredom." msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež kredom."
# #
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klikni i pomjeraj miš da bi boje na slici procurile." msgstr "Klikni i pomjeraj miš da bi boje na slici procurile."
#
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click and move the mouse around to make the picture blocky."
msgid "Click to make the entire picture drip."
msgstr "Klikni i pomjeraj mišem da bi ogrubio sliku."
# #
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"

View file

@ -17,7 +17,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint cvs 2009-06-21\n" "Project-Id-Version: Tuxpaint cvs 2009-06-21\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-06-04 10:02+0200\n" "PO-Revision-Date: 2022-06-04 10:02+0200\n"
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n" "Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n"
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\n" "Language-Team: Català <linux-ca@chanae.alphanet.ch>\n"
@ -1408,10 +1408,16 @@ msgstr ""
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Feu clic per convertir la imatge en un dibuix fet amb guix." msgstr "Feu clic per convertir la imatge en un dibuix fet amb guix."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Feu clic i arrossegueu el ratolí per fer gotejar la imatge." msgstr "Feu clic i arrossegueu el ratolí per fer gotejar la imatge."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make the entire picture blocky."
msgid "Click to make the entire picture drip."
msgstr "Feu clic per fer-ne quadrets del dibuix."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Difumina" msgstr "Difumina"

View file

@ -4,7 +4,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2020-03-29 23:40+0200\n" "PO-Revision-Date: 2020-03-29 23:40+0200\n"
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n" "Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n"
"Language-Team: LliureX\n" "Language-Team: LliureX\n"
@ -1408,11 +1408,17 @@ msgstr ""
"Feu clic i arrossegueu el ratolí per la zona per a convertir la imatge en un " "Feu clic i arrossegueu el ratolí per la zona per a convertir la imatge en un "
"dibuix fet amb guix." "dibuix fet amb guix."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Feu clic i arrossegueu el ratolí per la zona per a fer que la imatge gotege." "Feu clic i arrossegueu el ratolí per la zona per a fer que la imatge gotege."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Feu clic per a afinar tota la imatge."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Difumina" msgstr "Difumina"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-09-17 16:19+0200fu\n" "PO-Revision-Date: 2010-09-17 16:19+0200fu\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1409,12 +1409,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Imata kandi oyetoroze mawusi okuhindura ekishushani kyawe okuba nkeinoni." "Imata kandi oyetoroze mawusi okuhindura ekishushani kyawe okuba nkeinoni."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Imata kandi oyetoroze mawusi okuhindura ekishushani kyawe okutonyooka." msgstr "Imata kandi oyetoroze mawusi okuhindura ekishushani kyawe okutonyooka."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Imata kushongora ekishushani kyona."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Okutarebekagye" msgstr "Okutarebekagye"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-07-08 13:33+0100\n" "PO-Revision-Date: 2010-07-08 13:33+0100\n"
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n" "Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n"
"Language-Team: Czech <cs@li.org>\n" "Language-Team: Czech <cs@li.org>\n"
@ -1409,12 +1409,18 @@ msgstr "Pohybem myši po čáře získáš vzhled čáry od křídy."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Pohybem myši po čáře získáš vzhled čáry od křídy." msgstr "Pohybem myši po čáře získáš vzhled čáry od křídy."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klepni nebo pohybuj myší a obrázek se rozteče." msgstr "Klepni nebo pohybuj myší a obrázek se rozteče."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klikni pro zvýraznění (zaostření) okrajů celého obrázku."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Rozostřit" msgstr "Rozostřit"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: cy\n" "Project-Id-Version: cy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2004-09-21 14:29+0100\n" "PO-Revision-Date: 2004-09-21 14:29+0100\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1402,12 +1402,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Clicia a symuda'r llygoden o gwmpas i dro'i llun i mewn i ddarlun sialc." "Clicia a symuda'r llygoden o gwmpas i dro'i llun i mewn i ddarlun sialc."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Clicia a symuda'r llygoden o gwmpas i wneud i'r llun ddiferu." msgstr "Clicia a symuda'r llygoden o gwmpas i wneud i'r llun ddiferu."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Clicia i adlewyrchu'r llun."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Pylu" msgstr "Pylu"

View file

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-05 12:38+0100\n" "PO-Revision-Date: 2017-12-05 12:38+0100\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -1409,10 +1409,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klik og bevæg musen rundt for at få billedet til at ligne en kridt tegning." "Klik og bevæg musen rundt for at få billedet til at ligne en kridt tegning."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik og bevæg musen rundt for at få farverne til at løbe/dryppe." msgstr "Klik og bevæg musen rundt for at få farverne til at løbe/dryppe."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klik for at skærpe hele billedet."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sløre" msgstr "Sløre"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: de\n" "Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-25 21:13+0200\n" "PO-Revision-Date: 2017-12-25 21:13+0200\n"
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n" "Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
@ -1411,10 +1411,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klicke und ziehe die Maus, um dein Bild in ein Kreidebild zu verwandeln." "Klicke und ziehe die Maus, um dein Bild in ein Kreidebild zu verwandeln."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klicke und ziehe die Maus, um das Bild tröpfelig zu machen." msgstr "Klicke und ziehe die Maus, um das Bild tröpfelig zu machen."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klicke, um das gesamte Bild schärfer zu machen."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Unscharf" msgstr "Unscharf"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-09-04 10:23+0530\n" "PO-Revision-Date: 2013-09-04 10:23+0530\n"
"Last-Translator: <b>\n" "Last-Translator: <b>\n"
"Language-Team: Dogri\n" "Language-Team: Dogri\n"
@ -1403,12 +1403,18 @@ msgstr "तस्वीरा गी चाकी ड्राइङ बना
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "तस्वीरा गी चाकी ड्राइङ बनाने आस्तै क्लिक करो ते माउस गी फेरो." msgstr "तस्वीरा गी चाकी ड्राइङ बनाने आस्तै क्लिक करो ते माउस गी फेरो."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "तस्वीरा गी टपकदी बनाने आस्तै क्लिक करियै माउस गी आलै-दोआलै फेरो." msgstr "तस्वीरा गी टपकदी बनाने आस्तै क्लिक करियै माउस गी आलै-दोआलै फेरो."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "सबूरी तस्वीरा गी त्रिक्खा करने आस्तै क्लिक करो."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ब्लर करो" msgstr "ब्लर करो"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-09-02 07:45+0000\n" "PO-Revision-Date: 2021-09-02 07:45+0000\n"
"Last-Translator: kiolalis <kiolalis@gmail.com>\n" "Last-Translator: kiolalis <kiolalis@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1416,11 +1416,17 @@ msgstr ""
"Κάνε κλικ και κίνησε το ποντίκι για να μετατρέψεις τη ζωγραφιά σε σχέδιο με " "Κάνε κλικ και κίνησε το ποντίκι για να μετατρέψεις τη ζωγραφιά σε σχέδιο με "
"κιμωλία." "κιμωλία."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Κάνε κλικ και κίνησε το ποντίκι γύρω για να κάνεις τη ζωγραφιά να στάζει." "Κάνε κλικ και κίνησε το ποντίκι γύρω για να κάνεις τη ζωγραφιά να στάζει."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Κάνε κλικ για να οξύνεις ολόκληρη τη ζωγραφιά σου."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Θόλωμα" msgstr "Θόλωμα"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-29 23:36+0930\n" "PO-Revision-Date: 2014-06-29 23:36+0930\n"
"Last-Translator: ilox <ilox11@gmail.com>\n" "Last-Translator: ilox <ilox11@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1407,12 +1407,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Click and move the mouse around to turn the picture into a chalk drawing." "Click and move the mouse around to turn the picture into a chalk drawing."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Click and move the mouse around to make the picture drip." msgstr "Click and move the mouse around to make the picture drip."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Click to sharpen the entire picture."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Blur" msgstr "Blur"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-07-07 12:22+0100\n" "PO-Revision-Date: 2014-07-07 12:22+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1405,12 +1405,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Click and move the mouse around to turn the picture into a chalk drawing." "Click and move the mouse around to turn the picture into a chalk drawing."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Click and move the mouse around to make the picture drip." msgstr "Click and move the mouse around to make the picture drip."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Click to sharpen the entire picture."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Blur" msgstr "Blur"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-30 21:17+0000\n" "PO-Revision-Date: 2017-12-30 21:17+0000\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1400,10 +1400,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Click and move the mouse around to turn the picture into a chalk drawing." "Click and move the mouse around to turn the picture into a chalk drawing."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Click and move the mouse around to make the picture drip." msgstr "Click and move the mouse around to make the picture drip."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Click to sharpen the entire picture."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Blur" msgstr "Blur"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.16\n" "Project-Id-Version: 0.9.16\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2009-09-06 15:46+0100\n" "PO-Revision-Date: 2009-09-06 15:46+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: English (South African) <en_za@li.org>\n" "Language-Team: English (South African) <en_za@li.org>\n"
@ -1408,12 +1408,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Click and move the mouse around to turn the picture into a chalk drawing." "Click and move the mouse around to turn the picture into a chalk drawing."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Click and move the mouse around to make the picture drip." msgstr "Click and move the mouse around to make the picture drip."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Click to make a mirror image."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Blur" msgstr "Blur"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-16 16:00+0000\n" "PO-Revision-Date: 2014-06-16 16:00+0000\n"
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n" "Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n" "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@ -1397,12 +1397,18 @@ msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon en kretodesegnaĵon."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon en kretodesegnaĵon." msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon en kretodesegnaĵon."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Alklaku kaj movu la muson por gutigi la bildon." msgstr "Alklaku kaj movu la muson por gutigi la bildon."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Alklaku la muson por akrigi la tutan bildon."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Ŝmiri" msgstr "Ŝmiri"

View file

@ -29,7 +29,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-18 20:31-0300\n" "PO-Revision-Date: 2017-12-18 20:31-0300\n"
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n" "Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1424,10 +1424,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Haz click y arrastra el ratón para que el dibujo parezca hecho con tiza." "Haz click y arrastra el ratón para que el dibujo parezca hecho con tiza."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Haz click y arrastra el ratón para hacer gotear el dibujo." msgstr "Haz click y arrastra el ratón para hacer gotear el dibujo."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Haz click para enfocar todo el dibujo."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Difuminar" msgstr "Difuminar"

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.2\n" "Project-Id-Version: TuxPaint 0.9.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2007-08-05 19:22-0400\n" "PO-Revision-Date: 2007-08-05 19:22-0400\n"
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\n" "Last-Translator: Ignacio Tike <itike17@yahoo.com>\n"
"Language-Team: Español <ggabriel@internet.com.uy>\n" "Language-Team: Español <ggabriel@internet.com.uy>\n"
@ -1407,12 +1407,17 @@ msgstr ""
"Haz clic y mueve el ratón alrededor para convertir la pintura en un dibujo " "Haz clic y mueve el ratón alrededor para convertir la pintura en un dibujo "
"de tiza." "de tiza."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Haz clic y arrastra el ratón para hacer que la imagen gotee." msgstr "Haz clic y arrastra el ratón para hacer que la imagen gotee."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Haz clic para hacer una imagen espejo."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Desenfocar" msgstr "Desenfocar"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2015-03-07 13:09+0000\n" "PO-Revision-Date: 2015-03-07 13:09+0000\n"
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n" "Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/" "Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/"
@ -1397,12 +1397,18 @@ msgstr "Tee klõps ja liiguta hiirt, et muuta pilt kriidijoonistuse sarnaseks."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Tee klõps ja liiguta hiirt, et muuta pilt kriidijoonistuse sarnaseks." msgstr "Tee klõps ja liiguta hiirt, et muuta pilt kriidijoonistuse sarnaseks."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Tee klõps ja liiguta hiirt, et panna pilt tilkuma." msgstr "Tee klõps ja liiguta hiirt, et panna pilt tilkuma."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Tee klõps, et teha terve pilt teravamaks."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Hägu" msgstr "Hägu"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2020-07-30 16:43+0200\n" "PO-Revision-Date: 2020-07-30 16:43+0200\n"
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n" "Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
"Language-Team: librezale@librezale.org\n" "Language-Team: librezale@librezale.org\n"
@ -1407,10 +1407,16 @@ msgstr ""
"Klik egin eta mugi ezazu sagua irudia klarionez eginda balego bezala " "Klik egin eta mugi ezazu sagua irudia klarionez eginda balego bezala "
"marrazteko." "marrazteko."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik egin eta mugi ezazu sagua irudiari busti itxura emateko." msgstr "Klik egin eta mugi ezazu sagua irudiari busti itxura emateko."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Egin klik irudi osoa zorrozteko."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Desenfokatu" msgstr "Desenfokatu"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-11-09 21:17+0330\n" "PO-Revision-Date: 2014-11-09 21:17+0330\n"
"Last-Translator: snima <unix.nima@gmail.com>\n" "Last-Translator: snima <unix.nima@gmail.com>\n"
"Language-Team: farsi <farinaz.hedayat@gmail.com>\n" "Language-Team: farsi <farinaz.hedayat@gmail.com>\n"
@ -1415,12 +1415,18 @@ msgstr ".برای سفید کردن تصویر با گچ کلیک کن و موس
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr ".برای سفید کردن تصویر با گچ کلیک کن و موس را حرکت بده " msgstr ".برای سفید کردن تصویر با گچ کلیک کن و موس را حرکت بده "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "برای ایجاد چکه در عکس کلیک کن و موشی را به اطراف حرکت بده." msgstr "برای ایجاد چکه در عکس کلیک کن و موشی را به اطراف حرکت بده."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make ripples appear over your picture."
msgid "Click to make the entire picture drip."
msgstr "کلیک کن تا روی تصویرت موج ایجاد شود."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "محو کردن" msgstr "محو کردن"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-03 10:35+0200\n" "PO-Revision-Date: 2017-12-03 10:35+0200\n"
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n" "Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
"Language-Team: FULAH LOCALIZATION\n" "Language-Team: FULAH LOCALIZATION\n"
@ -1392,10 +1392,16 @@ msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno kereewo."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno kereewo." msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno kereewo."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno baade." msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal natgno baade."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Dobo ngam seeɓnude natal ngal fof."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Iirɗol" msgstr "Iirɗol"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2015-10-09 18:00+0200\n" "PO-Revision-Date: 2015-10-09 18:00+0200\n"
"Last-Translator: inactive\n" "Last-Translator: inactive\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@ -1420,12 +1420,18 @@ msgstr "Muuta piirros liitupiirrokseksi painamalla hiiren painiketta."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Muuta piirros liitupiirrokseksi painamalla hiiren painiketta." msgstr "Muuta piirros liitupiirrokseksi painamalla hiiren painiketta."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Valuta värejä maalaukseen painamalla hiiren painiketta." msgstr "Valuta värejä maalaukseen painamalla hiiren painiketta."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Terävöitä koko maalaus painamalla hiiren painiketta."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sumenna" msgstr "Sumenna"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint 0.9.18\n" "Project-Id-Version: Tux Paint 0.9.18\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2008-01-18 12:40-0000\n" "PO-Revision-Date: 2008-01-18 12:40-0000\n"
"Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n" "Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n"
"Language-Team: Faroese <morshus@morshus.com>\n" "Language-Team: Faroese <morshus@morshus.com>\n"
@ -1401,12 +1401,17 @@ msgstr "Klikkja og drag músina til at umgera myndina til eina kritmynd."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Klikkja og drag músina til at umgera myndina til eina kritmynd." msgstr "Klikkja og drag músina til at umgera myndina til eina kritmynd."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klikkja og drag músina til at fáa myndina at dryppa." msgstr "Klikkja og drag músina til at fáa myndina at dryppa."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Klikkja til at gera eina spegilsmynd."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Kámt" msgstr "Kámt"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: fr\n" "Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-09-23 11:33+0200\n" "PO-Revision-Date: 2021-09-23 11:33+0200\n"
"Last-Translator: Chion Jacques <jacques.chion@orange.fr>\n" "Last-Translator: Chion Jacques <jacques.chion@orange.fr>\n"
"Language-Team: <fr@li.org>\n" "Language-Team: <fr@li.org>\n"
@ -1388,10 +1388,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Clique et déplace la souris pour transformer l'image en dessin à la craie." "Clique et déplace la souris pour transformer l'image en dessin à la craie."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Clique et déplace la souris pour rendre l'image dégoulinante." msgstr "Clique et déplace la souris pour rendre l'image dégoulinante."
#
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Clique pour affiner tout le dessin."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Flou" msgstr "Flou"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2015-10-09 17:38+0500\n" "PO-Revision-Date: 2015-10-09 17:38+0500\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n" "Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -1403,10 +1403,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Cliceáil agus tarraing an luch chun líníocht chailce a dhéanamh ón phictiúr." "Cliceáil agus tarraing an luch chun líníocht chailce a dhéanamh ón phictiúr."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Cliceáil agus tarraing an luch le haghaidh maisíochta silte." msgstr "Cliceáil agus tarraing an luch le haghaidh maisíochta silte."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Cliceáil chun an pictiúr iomlán a ghéarú."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Geamhaigh" msgstr "Geamhaigh"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-09-02 12:18-0700\n" "PO-Revision-Date: 2021-09-02 12:18-0700\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n" "Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Fòram na Gàidhlig\n" "Language-Team: Fòram na Gàidhlig\n"
@ -1403,11 +1403,17 @@ msgstr ""
"Briog is slaod an luchag mu thimcheall gus an tèid an dealbh na dhealbh " "Briog is slaod an luchag mu thimcheall gus an tèid an dealbh na dhealbh "
"cailce." "cailce."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Briog is slaod an luchag mu thimcheall gus sileadh a thoirt air an dealbh." "Briog is slaod an luchag mu thimcheall gus sileadh a thoirt air an dealbh."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Briog is slaod gus an dealbh gu lèir a gheurachadh."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sgleò" msgstr "Sgleò"

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-03-03 10:01+0100\n" "PO-Revision-Date: 2021-03-03 10:01+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\n" "Language-Team: Proxecto Trasno <proxecto@trasno.net>\n"
@ -1393,10 +1393,16 @@ msgstr ""
"Preme e arrastra o rato arredor para para converter o debuxo nun debuxo " "Preme e arrastra o rato arredor para para converter o debuxo nun debuxo "
"feito con xiz." "feito con xiz."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Preme e arrastra o rato o rato arredor para facer que o debuxo pingue." msgstr "Preme e arrastra o rato o rato arredor para facer que o debuxo pingue."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Preme para reforzar todo o debuxo."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Esvaer" msgstr "Esvaer"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2005-07-26 01:30-0800\n" "PO-Revision-Date: 2005-07-26 01:30-0800\n"
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n" "Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1399,12 +1399,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klik en beweeg de moes rond um dien tijken in n kriettijken umme te teuvern." "Klik en beweeg de moes rond um dien tijken in n kriettijken umme te teuvern."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik en beweeg de moes rond um dien tijken druppen te loaten." msgstr "Klik en beweeg de moes rond um dien tijken druppen te loaten."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Klik um n spijgelbeeld te moaken."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Dook" msgstr "Dook"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-31 11:57+0530\n" "PO-Revision-Date: 2017-12-31 11:57+0530\n"
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n" "Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
"Language-Team: Gujarati <team@utkarsh.org>\n" "Language-Team: Gujarati <team@utkarsh.org>\n"
@ -1391,10 +1391,16 @@ msgstr "ચિત્રને ચોક ચિત્રમાં ફેરવવ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ચિત્રને ચોક ચિત્રમાં ફેરવવા માઉસ ક્લિક કરો અને ખેંચો." msgstr "ચિત્રને ચોક ચિત્રમાં ફેરવવા માઉસ ક્લિક કરો અને ખેંચો."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ચિત્રમાં ટીપાં બનાવવા માટે માઉસ ક્લિક કરો અને ખેંચો." msgstr "ચિત્રમાં ટીપાં બનાવવા માટે માઉસ ક્લિક કરો અને ખેંચો."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "આખાં ચિત્રને તીક્ષ્ણ બનાવવા ક્લિક કરો."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ઝાંખુ" msgstr "ઝાંખુ"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: he\n" "Project-Id-Version: he\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2009-05-10 21:45+0200\n" "PO-Revision-Date: 2009-05-10 21:45+0200\n"
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\n" "Last-Translator: Jorge Mariano <jmariano@ymail.com>\n"
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n" "Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
@ -1406,12 +1406,18 @@ msgstr "לחצי והזיזי את העכבר להפיכת התמונה לציו
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "לחצי והזיזי את העכבר להפיכת התמונה לציור גיר." msgstr "לחצי והזיזי את העכבר להפיכת התמונה לציור גיר."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "לחצי והזיזי את העכבר כדי לגרום לתמונה לטפטף." msgstr "לחצי והזיזי את העכבר כדי לגרום לתמונה לטפטף."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "לחצי לחידוד התמונה כולה."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "טשטוש" msgstr "טשטוש"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-08-09 02:17+1000\n" "PO-Revision-Date: 2014-08-09 02:17+1000\n"
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n" "Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
"Language-Team: Hindi\n" "Language-Team: Hindi\n"
@ -1404,12 +1404,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"चित्र को chalk drawing के रूप मे करने के लिए उसपर क्लिक करें और माउस को चारों ओर घुमाये" "चित्र को chalk drawing के रूप मे करने के लिए उसपर क्लिक करें और माउस को चारों ओर घुमाये"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "चित्र को drip के रूप मे करने के लिए उसपर क्लिक करें और माउस को चारों ओर घुमाये" msgstr "चित्र को drip के रूप मे करने के लिए उसपर क्लिक करें और माउस को चारों ओर घुमाये"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "पूरे चित्र में पैनापन लाने के लिए क्लिक करें|"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "धुंध्ला" msgstr "धुंध्ला"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-26 10:53+0100\n" "PO-Revision-Date: 2017-12-26 10:53+0100\n"
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n" "Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1395,10 +1395,16 @@ msgstr "Klikni i pomakni miš. Na crtežu će se izmješati boje."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Klikni i pomakni miš. Na crtežu će se izmješati boje." msgstr "Klikni i pomakni miš. Na crtežu će se izmješati boje."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klikni i pomakni miš. Na crtežu će se razlijati boje." msgstr "Klikni i pomakni miš. Na crtežu će se razlijati boje."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klikni da izoštriš cijelu sliku."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Zamućeno" msgstr "Zamućeno"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-28 12:48+0200\n" "PO-Revision-Date: 2014-06-28 12:48+0200\n"
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n" "Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n" "Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
@ -1414,12 +1414,18 @@ msgstr "Kattints oda a rajzodon, ahol krétával szeretnél rajzolni."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Kattints oda a rajzodon, ahol krétával szeretnél rajzolni." msgstr "Kattints oda a rajzodon, ahol krétával szeretnél rajzolni."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Kattints oda a rajzodon, ahova festéket szeretnél csepegtetni." msgstr "Kattints oda a rajzodon, ahova festéket szeretnél csepegtetni."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Kattints az egész kép élesítéséhez."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Maszat" msgstr "Maszat"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.8\n" "Project-Id-Version: 1.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-03-22 11:39+0400\n" "PO-Revision-Date: 2014-03-22 11:39+0400\n"
"Last-Translator: Aram Palyan <ararat.info@gmail.com>\n" "Last-Translator: Aram Palyan <ararat.info@gmail.com>\n"
"Language-Team: Armenian <ararat.info@gmail.com>\n" "Language-Team: Armenian <ararat.info@gmail.com>\n"
@ -1411,13 +1411,19 @@ msgstr "Սեղմիր և շարժիր մկնիկը, պատկերը կավիճով
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Սեղմիր և շարժիր մկնիկը, պատկերը կավիճով նկարածի տեսք տալու համար:" msgstr "Սեղմիր և շարժիր մկնիկը, պատկերը կավիճով նկարածի տեսք տալու համար:"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Սեղմիր և շարժիր մկնիկը շուրջ բոլորը նկարին թրջած տեսք հաղորդելու համար:" "Սեղմիր և շարժիր մկնիկը շուրջ բոլորը նկարին թրջած տեսք հաղորդելու համար:"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Սեղմիր` ամբողջ նկարդ բարելավելու համար"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Մշուշ" msgstr "Մշուշ"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-09 04:22+0000\n" "PO-Revision-Date: 2017-12-09 04:22+0000\n"
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n" "Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1410,10 +1410,16 @@ msgstr ""
"Klik dan pindahkan mouse ke sekitar untuk merubah gambar menjadi gambar " "Klik dan pindahkan mouse ke sekitar untuk merubah gambar menjadi gambar "
"dengan kapur." "dengan kapur."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik dan pindahkan mouse ke sekitar untuk membuat gambar drip." msgstr "Klik dan pindahkan mouse ke sekitar untuk membuat gambar drip."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klik untuk mempertajam seluruh gambar."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Blur" msgstr "Blur"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-02-14 13:56+0000\n" "PO-Revision-Date: 2022-02-14 13:56+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n" "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic\n" "Language-Team: Icelandic\n"
@ -1361,10 +1361,16 @@ msgstr "Smelltu og dragðu músina til að breyta myndinni í krítarmynd!"
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Smelltu til að breyta myndinni í krítarmynd." msgstr "Smelltu til að breyta myndinni í krítarmynd."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Smelltu og dragðu músina til að láta myndina leka." msgstr "Smelltu og dragðu músina til að láta myndina leka."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make the entire picture blocky."
msgid "Click to make the entire picture drip."
msgstr "Smelltu til að gera myndina alla í blokkum."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Móða" msgstr "Móða"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.23\n" "Project-Id-Version: TuxPaint 0.9.23\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-18 09:15+0000\n" "PO-Revision-Date: 2017-12-18 09:15+0000\n"
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n" "Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
@ -1448,10 +1448,16 @@ msgstr ""
"Fai clic e trascina il mouse per trasformare il disegno in uno fatto a " "Fai clic e trascina il mouse per trasformare il disegno in uno fatto a "
"gessetto." "gessetto."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Fai clic e trascina il mouse per far gocciolare il disegno." msgstr "Fai clic e trascina il mouse per far gocciolare il disegno."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Fai clic per far risaltare tutto il disegno."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sfoca" msgstr "Sfoca"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint Inuktitut\n" "Project-Id-Version: Tuxpaint Inuktitut\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-07-04 16:05-0500\n" "PO-Revision-Date: 2013-07-04 16:05-0500\n"
"Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n" "Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n"
"Language-Team: LANGUAGE <harveyginter@gmail.com>\n" "Language-Team: LANGUAGE <harveyginter@gmail.com>\n"
@ -1401,12 +1401,18 @@ msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑᐊᖅ ᐊᓪᓚᖑᐊᕐᓯᒪᔪᖕᖑᑎᓗᒍ ᐊᓪᓚᕕᐊᓗᒻᒥ ᐊᓪᓚᐅᑎᒧᑦ." msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑᐊᖅ ᐊᓪᓚᖑᐊᕐᓯᒪᔪᖕᖑᑎᓗᒍ ᐊᓪᓚᕕᐊᓗᒻᒥ ᐊᓪᓚᐅᑎᒧᑦ."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑᐊᕐᒥᒃ ᑯᓯᕐᑐᖑᐊᖑᑎᑦᓯᓂᕐᒧᑦ." msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑᐊᕐᒥᒃ ᑯᓯᕐᑐᖑᐊᖑᑎᑦᓯᓂᕐᒧᑦ."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ᓇᕐᓂᓗᒍ ᐊᑦᔨᖑᐊᓕᒫᕐᒥᒃ ᑕᑉᐱᑐᖕᖑᑎᑦᓯᒋᐊᕐᓂᒧᑦ."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ᑕᑉᐲᑐᖅ" msgstr "ᑕᑉᐲᑐᖅ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.23\n" "Project-Id-Version: tuxpaint 0.9.23\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-06-03 14:09+0900\n" "PO-Revision-Date: 2022-06-03 14:09+0900\n"
"Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n" "Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n"
"Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n" "Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n"
@ -1374,10 +1374,17 @@ msgstr ""
"クリックしたままマウスをうごかして えの ぜんたいを チョークでかいたみたいに " "クリックしたままマウスをうごかして えの ぜんたいを チョークでかいたみたいに "
"しよう。" "しよう。"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "クリックしたまま マウスをうごかして えを ぬらしたように しよう。" msgstr "クリックしたまま マウスをうごかして えを ぬらしたように しよう。"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make the entire picture blocky."
msgid "Click to make the entire picture drip."
msgstr ""
"クリックして えの ぜんたいを ちいさな しかくでできた ギザギザの えに しよう。"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ぼかす" msgstr "ぼかす"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint\n" "Project-Id-Version: TuxPaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-20 13:24+0400\n" "PO-Revision-Date: 2017-12-20 13:24+0400\n"
"Last-Translator: Giasher <giasher@gmail.com>\n" "Last-Translator: Giasher <giasher@gmail.com>\n"
"Language-Team: Gia Shervashidze <giasher@gmail.com>\n" "Language-Team: Gia Shervashidze <giasher@gmail.com>\n"
@ -1394,10 +1394,16 @@ msgstr "დაწკაპეთ და გადაატარეთ ცარ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "დაწკაპეთ და გადაატარეთ ცარცით დახატვის ეფექტის მისაცემად." msgstr "დაწკაპეთ და გადაატარეთ ცარცით დახატვის ეფექტის მისაცემად."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "დაწკაპეთ და გადაატარეთ ნახატის ჩამოსაღვენთად." msgstr "დაწკაპეთ და გადაატარეთ ნახატის ჩამოსაღვენთად."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "დაწკაპეთ თქვენი მთლიანი ნახატის გასამკვეთრებლად."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "გადღაბნა" msgstr "გადღაბნა"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: kab\n" "Project-Id-Version: kab\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-23 23:11+0100\n" "PO-Revision-Date: 2017-12-23 23:11+0100\n"
"Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n" "Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1405,10 +1405,17 @@ msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna d unuɣ s unegmirs."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna d unuɣ s unegmirs." msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna d unuɣ s unegmirs."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna tettuddum." msgstr "Ssed u selḥu taɣerdayt iwakken ad terreḍ tugna tettuddum."
#
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Ssed iwakken ad d-tban tugna merra."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sluɣ" msgstr "Sluɣ"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2008-05-30 15:41+0700\n" "PO-Revision-Date: 2008-05-30 15:41+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n"
@ -1402,12 +1402,17 @@ msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​​ធ្វើ​រូបភាព​ឲ្យ​ទៅ​ជា​គំនូរ​ដីស ។" msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​​ធ្វើ​រូបភាព​ឲ្យ​ទៅ​ជា​គំនូរ​ដីស ។"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​ធ្វើ​ឲ្យ​រូបភាព​ដូច​មាន​ដំណក់​ស្រក់ ។" msgstr "ចុច ហើយ​ផ្លាស់ទី​កណ្ដុរ ដើម្បី​ធ្វើ​ឲ្យ​រូបភាព​ដូច​មាន​ដំណក់​ស្រក់ ។"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "ចុច ដើម្បី​ចាំង​ឆ្លុះ​រូបភាព ។"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ព្រិល" msgstr "ព្រិល"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-08 23:43+0630\n" "PO-Revision-Date: 2014-06-08 23:43+0630\n"
"Last-Translator: Savitha <savithasprasad@yahoo.com>\n" "Last-Translator: Savitha <savithasprasad@yahoo.com>\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n" "Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@ -1415,12 +1415,18 @@ msgstr ""
"ನಿಮ್ಮ ಚಿತ್ರವನ್ನು ಸೀಮೆಸುಣ್ಣದಲ್ಲಿ ರಚಿಸಲಾಗಿರುವಂತೆ ಬದಲಾಯಿಸಲು ಮೌಸ್‌ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು " "ನಿಮ್ಮ ಚಿತ್ರವನ್ನು ಸೀಮೆಸುಣ್ಣದಲ್ಲಿ ರಚಿಸಲಾಗಿರುವಂತೆ ಬದಲಾಯಿಸಲು ಮೌಸ್‌ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು "
"ಸುತ್ತಲೂ ಜರುಗಿಸಿ." "ಸುತ್ತಲೂ ಜರುಗಿಸಿ."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ನಿಮ್ಮ ಚಿತ್ರವು ತೊಟ್ಟಿಕ್ಕುವಂತೆ ಮಾಡಲು ಮೌಸ್‌ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಸುತ್ತಲೂ ಜರುಗಿಸಿ." msgstr "ನಿಮ್ಮ ಚಿತ್ರವು ತೊಟ್ಟಿಕ್ಕುವಂತೆ ಮಾಡಲು ಮೌಸ್‌ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ ಹಾಗು ಸುತ್ತಲೂ ಜರುಗಿಸಿ."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ಸಂಪೂರ್ಣ ಚಿತ್ರವನ್ನು ಮೊನಚುಗೊಳಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ಮಬ್ಬು" msgstr "ಮಬ್ಬು"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2015-10-09 20:33-0400\n" "PO-Revision-Date: 2015-10-09 20:33-0400\n"
"Last-Translator: Mark K. Kim <mkkim214@gmail.com>\n" "Last-Translator: Mark K. Kim <mkkim214@gmail.com>\n"
"Language-Team: N/A\n" "Language-Team: N/A\n"
@ -1379,10 +1379,16 @@ msgstr "마우스를 누르고 끌면 그림이 분필로 만든 것 같이 되
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "마우스를 누르고 끌면 그림이 분필로 만든 것 같이 되어요." msgstr "마우스를 누르고 끌면 그림이 분필로 만든 것 같이 되어요."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "마우스를 누르고 끌면 그림이 흐르는 것 같이 되어요." msgstr "마우스를 누르고 끌면 그림이 흐르는 것 같이 되어요."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "마우스를 누르면 그림이 전채가 진해져요."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "흐리게" msgstr "흐리게"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: en_gb\n" "Project-Id-Version: en_gb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-05-19 23:18+0200\n" "PO-Revision-Date: 2014-05-19 23:18+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -1404,12 +1404,18 @@ msgstr "खडू पिंतरावणेंत पिंतुर बदल
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "खडू पिंतरावणेंत पिंतुर बदलूंक, मावस क्लिक करून भोंवतणी व्हरचो." msgstr "खडू पिंतरावणेंत पिंतुर बदलूंक, मावस क्लिक करून भोंवतणी व्हरचो."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "पिंतुराची थेंबकणी करूंक मावस क्लिक करून भोंवतणी व्हरचो." msgstr "पिंतुराची थेंबकणी करूंक मावस क्लिक करून भोंवतणी व्हरचो."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "तुमच्या पुराय पिंतुराक धार काडूंक क्लिक करचें."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "अस्पश्ट" msgstr "अस्पश्ट"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2012-05-11 18:00+0530\n" "PO-Revision-Date: 2012-05-11 18:00+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1408,12 +1408,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
" khaddu pintravnnent bodlunk, maus klik korun bhonvtonni zongeantor kor " " khaddu pintravnnent bodlunk, maus klik korun bhonvtonni zongeantor kor "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr " pinturachi gollovnni korunk maus clk korun zongeantor kor " msgstr " pinturachi gollovnni korunk maus clk korun zongeantor kor "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr " sogllea pinturachi dhar kaddunk klik kor "
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr " ospoxtt " msgstr " ospoxtt "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2012-01-02 11:36+0530\n" "PO-Revision-Date: 2012-01-02 11:36+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Kashmiri-PA\n" "Language-Team: Kashmiri-PA\n"
@ -1406,12 +1406,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس تصویر چاک ڈرائنگ منٛز تبدیل کرنہٕ خٲطرٕ۔" "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس تصویر چاک ڈرائنگ منٛز تبدیل کرنہٕ خٲطرٕ۔"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس ڈرِپ تصویر بناونہٕ خٲطرٕ۔" msgstr "کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس ڈرِپ تصویر بناونہٕ خٲطرٕ۔"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "کلِک کٔریو پَنٕنہِ سٲری تصویر تیز کرنہٕ خٲطرٕ۔"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "بلر" msgstr "بلر"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2012-12-21 11:04+0530\n" "PO-Revision-Date: 2012-12-21 11:04+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Kashmiri-DV\n" "Language-Team: Kashmiri-DV\n"
@ -1408,12 +1408,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"तसविर एिकोस चाक डरायींग मंज़ तबदिल करनॊ बापत कॊरीव कोलोक तॊ पकनॊयीव मावुस ऊर यूर." "तसविर एिकोस चाक डरायींग मंज़ तबदिल करनॊ बापत कॊरीव कोलोक तॊ पकनॊयीव मावुस ऊर यूर."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "तसविर डरोप बनावनॊ बापत कॊरीव कोलोक तॊ पकनॊयीव मावुस ऊर यूर." msgstr "तसविर डरोप बनावनॊ बापत कॊरीव कोलोक तॊ पकनॊयीव मावुस ऊर यूर."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "तमाम तसविर तिज़ बनावनो बापत कॊरोव कोलोक."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "गॊट कॊरीव" msgstr "गॊट कॊरीव"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ku\n" "Project-Id-Version: ku\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2009-05-25 12:52+0300\n" "PO-Revision-Date: 2009-05-25 12:52+0300\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: en_US <kde-i18n-doc@kde.org>\n" "Language-Team: en_US <kde-i18n-doc@kde.org>\n"
@ -1412,12 +1412,17 @@ msgstr ""
"Ji bo ku wêne wekî xêzkirineke bi tebeşîrê xuya bibe, bitikîne û mi,şkî li " "Ji bo ku wêne wekî xêzkirineke bi tebeşîrê xuya bibe, bitikîne û mi,şkî li "
"dorê bigerîne bigerîne." "dorê bigerîne bigerîne."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Ji bo ku wêneyê bidilop bikî bi tikîne û mişkî li dorê bigerîne." msgstr "Ji bo ku wêneyê bidilop bikî bi tikîne û mişkî li dorê bigerîne."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Ji bo çêkirina îmaja neynikê bitikîne."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ne zelal" msgstr "ne zelal"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lb\n" "Project-Id-Version: lb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-02-16 21:10+0100\n" "PO-Revision-Date: 2010-02-16 21:10+0100\n"
"Last-Translator: René Brandenburger <rene@brandenburger.lu>\n" "Last-Translator: René Brandenburger <rene@brandenburger.lu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1394,12 +1394,18 @@ msgstr "Klick a beweeg d'Maus fir d'Bild an eng Kräidzeechnung ze verwandelen."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Klick a beweeg d'Maus fir d'Bild an eng Kräidzeechnung ze verwandelen." msgstr "Klick a beweeg d'Maus fir d'Bild an eng Kräidzeechnung ze verwandelen."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klick a beweeg d'Maus fir Drëpsen op d'Bild ze maachen." msgstr "Klick a beweeg d'Maus fir Drëpsen op d'Bild ze maachen."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klick fir d'ganz Bild méi schaarf ze maachen."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Onschaarf" msgstr "Onschaarf"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-09-21 09:37+0200\n" "PO-Revision-Date: 2010-09-21 09:37+0200\n"
"Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n" "Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1411,12 +1411,18 @@ msgstr "Nyiga era tambuza mawusi okukyusa ekifaananyi ng'ekyennoni"
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Nyiga era tambuza mawusi okukyusa ekifaananyi ng'ekyennoni" msgstr "Nyiga era tambuza mawusi okukyusa ekifaananyi ng'ekyennoni"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Nyiga era tambuza ekifaananyi okifuule ekitonnya" msgstr "Nyiga era tambuza ekifaananyi okifuule ekitonnya"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Nyiga okwogiya ekifaananyi kyonna"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Buzaabuza" msgstr "Buzaabuza"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint 0.9.9\n" "Project-Id-Version: Tuxpaint 0.9.9\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2004-12-10 18:11+0200\n" "PO-Revision-Date: 2004-12-10 18:11+0200\n"
"Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n" "Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n"
"Language-Team: Lithuanian <komp_lt@konf.lt>\n" "Language-Team: Lithuanian <komp_lt@konf.lt>\n"
@ -1414,12 +1414,17 @@ msgstr "Spustelėkite ir judinkite pelę ir piešinys taps panašus į kreida"
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Spustelėkite ir judinkite pelę ir piešinys taps panašus į kreida" msgstr "Spustelėkite ir judinkite pelę ir piešinys taps panašus į kreida"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Spustelėkite ir pele žymėkite aplink, kad piešinys nuvarvėtų." msgstr "Spustelėkite ir pele žymėkite aplink, kad piešinys nuvarvėtų."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Spustelėkite ir gausite veidrodinį atspindį."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Sulieti" msgstr "Sulieti"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-11 23:13-0000\n" "PO-Revision-Date: 2014-06-11 23:13-0000\n"
"Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n" "Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n"
"Language-Team: Valoda <raivucis@gmail.com>\n" "Language-Team: Valoda <raivucis@gmail.com>\n"
@ -1409,12 +1409,18 @@ msgstr ""
"Nospied, pieturi peles pogu un velc peli lai zīmējums izskatītos kā ar krītu " "Nospied, pieturi peles pogu un velc peli lai zīmējums izskatītos kā ar krītu "
"zīmētu" "zīmētu"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Nospied, pieturi peles pogu un velc peli lai zīmējums notecētu." msgstr "Nospied, pieturi peles pogu un velc peli lai zīmējums notecētu."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Noklikšķini, lai saasinātu visu bildi."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Migla" msgstr "Migla"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-02-18 09:21+0530\n" "PO-Revision-Date: 2013-02-18 09:21+0530\n"
"Last-Translator: sk <sk>\n" "Last-Translator: sk <sk>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n" "Language-Team: American English <kde-i18n-doc@kde.org>\n"
@ -1401,12 +1401,18 @@ msgstr "चाक ड्राइंग केँ ब्लाक टाइप
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "चाक ड्राइंग केँ ब्लाक टाइप बनाबै क' लेल माउसक गिर्द क्लिक करू आओर घसकाउ." msgstr "चाक ड्राइंग केँ ब्लाक टाइप बनाबै क' लेल माउसक गिर्द क्लिक करू आओर घसकाउ."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "चित्र ड्रिप केँ ब्लाक टाइप बनाबै क' लेल माउसक गिर्द क्लिक करू आओर घसकाउ." msgstr "चित्र ड्रिप केँ ब्लाक टाइप बनाबै क' लेल माउसक गिर्द क्लिक करू आओर घसकाउ."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "पूरे चित्र मे पैनापन लाबै क' लेल क्लिक करू."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "धुंधला करू" msgstr "धुंधला करू"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2006-06-17 23:07+0000\n" "PO-Revision-Date: 2006-06-17 23:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Macedonian <mk@li.org>\n" "Language-Team: Macedonian <mk@li.org>\n"
@ -1407,12 +1407,17 @@ msgstr ""
"Кликнете и движете го глувчето наоколу за да ја претворите сликата во цртеж " "Кликнете и движете го глувчето наоколу за да ја претворите сликата во цртеж "
"со креда." "со креда."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Кликнете на глувчето и влечете го наоколу за боите да протечат." msgstr "Кликнете на глувчето и влечете го наоколу за боите да протечат."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Кликнете за да направите огледална слика."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Замати" msgstr "Замати"

View file

@ -18,7 +18,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-08-03 16:29+0530\n" "PO-Revision-Date: 2014-08-03 16:29+0530\n"
"Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n" "Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n"
"Language-Team: Malayalam\n" "Language-Team: Malayalam\n"
@ -1410,13 +1410,19 @@ msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക്
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക്കാന്‍ മൗസ് ബട്ടണ്‍ അമര്‍ത്തിപ്പിടിച്ച് കൊണ്ട് ചലിപ്പിച്ചാല്‍ മതി." msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക്കാന്‍ മൗസ് ബട്ടണ്‍ അമര്‍ത്തിപ്പിടിച്ച് കൊണ്ട് ചലിപ്പിച്ചാല്‍ മതി."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"മൗസ് ബട്ടണ്‍ അമര്‍ത്തിപ്പിടിച്ച് കൊണ്ട് ചലിപ്പിച്ചാല്‍ ചിത്രത്തെ ഇറ്റിറ്റു വീഴുന്ന രീതിയിലാക്കാനാവും." "മൗസ് ബട്ടണ്‍ അമര്‍ത്തിപ്പിടിച്ച് കൊണ്ട് ചലിപ്പിച്ചാല്‍ ചിത്രത്തെ ഇറ്റിറ്റു വീഴുന്ന രീതിയിലാക്കാനാവും."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ചിത്രം മുഴുവന്‍ കൃത്യതയുള്ളതാക്കാന്‍ അമര്‍ത്തുക"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "മങ്ങുക" msgstr "മങ്ങുക"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1316,10 +1316,14 @@ msgstr ""
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:180
msgid "Click to make the entire picture drip."
msgstr ""
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-10-07 15:05+0530\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n"
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n" "Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1402,12 +1402,18 @@ msgstr "লাই অদু চোক দ্রোইং অমদা ওন্
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "লাই অদু চোক দ্রোইং অমদা ওন্থোক্নবা মাউস ক্লিক তৌরো অদুগা কোয়না চৎলো." msgstr "লাই অদু চোক দ্রোইং অমদা ওন্থোক্নবা মাউস ক্লিক তৌরো অদুগা কোয়না চৎলো."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "পিকচর দ্রিপ ওইহন্নবা মাউস ক্লিক তৌরো অদুগা কোয়না চৎলো." msgstr "পিকচর দ্রিপ ওইহন্নবা মাউস ক্লিক তৌরো অদুগা কোয়না চৎলো."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "অদোমগী লাই অপুম্বদু হেন্না ময়েক শেংহন্নবা ক্লিক তৌরো."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ময়েক শেংদবা" msgstr "ময়েক শেংদবা"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-10-07 15:05+0530\n" "PO-Revision-Date: 2011-10-07 15:05+0530\n"
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n" "Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1400,12 +1400,18 @@ msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊꯣꯛꯅꯕ ꯃꯥꯎꯁ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯀꯣꯌꯅ ꯆꯠꯂꯣ." msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊꯣꯛꯅꯕ ꯃꯥꯎꯁ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯀꯣꯌꯅ ꯆꯠꯂꯣ."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ꯄꯤꯛꯆꯔ ꯗ꯭ꯔꯤꯞ ꯑꯣꯏꯍꯟꯅꯕ ꯃꯥꯎꯁ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯀꯣꯌꯅ ꯆꯠꯂꯣ." msgstr "ꯄꯤꯛꯆꯔ ꯗ꯭ꯔꯤꯞ ꯑꯣꯏꯍꯟꯅꯕ ꯃꯥꯎꯁ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯀꯣꯌꯅ ꯆꯠꯂꯣ."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ꯑꯗꯣꯝꯒꯤ ꯂꯥꯏ ꯑꯄꯨꯝꯕꯗꯨ ꯍꯦꯟꯅ ꯃꯌꯦꯛ ꯁꯦꯡꯍꯟꯅꯕ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ꯃꯌꯦꯛ ꯁꯦꯡꯗꯕ" msgstr "ꯃꯌꯦꯛ ꯁꯦꯡꯗꯕ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.21c\n" "Project-Id-Version: tuxpaint 0.9.21c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-03-28 12:11+0530\n" "PO-Revision-Date: 2013-03-28 12:11+0530\n"
"Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n" "Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n"
"Language-Team: Marathi\n" "Language-Team: Marathi\n"
@ -1415,7 +1415,7 @@ msgstr ""
"चित्राच्या ज्या भागावर खडुने काढले आहे असे दाखवचे असेल त्याचित्राच्या भागावर माऊस क्लिक " "चित्राच्या ज्या भागावर खडुने काढले आहे असे दाखवचे असेल त्याचित्राच्या भागावर माऊस क्लिक "
"करा." "करा."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
@ -1423,6 +1423,12 @@ msgstr ""
"चित्राच्या ज्या भागावर पाण्याचा थेंब पड्ला आहे असे दाखवचे त्या त्या भागावर माऊस क्लिक " "चित्राच्या ज्या भागावर पाण्याचा थेंब पड्ला आहे असे दाखवचे त्या त्या भागावर माऊस क्लिक "
"करा. " "करा. "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "पूरे चित्र में पैनापन लाने के लिए क्लिक करें|"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "अधुक " msgstr "अधुक "

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2015-03-07 23:30+0000\n" "PO-Revision-Date: 2015-03-07 23:30+0000\n"
"Last-Translator: abuyop <abuyop@gmail.com>\n" "Last-Translator: abuyop <abuyop@gmail.com>\n"
"Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/" "Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/"
@ -1399,7 +1399,7 @@ msgstr "Klik dan alihkan tetikus di sekeliling untuk membuat lukisan kapur."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Klik dan alihkan tetikus di sekeliling untuk membuat lukisan kapur." msgstr "Klik dan alihkan tetikus di sekeliling untuk membuat lukisan kapur."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
@ -1407,6 +1407,12 @@ msgstr ""
"Klik dan gerakkan tetikus di sekeliling untuk menjadikan gambar berbentuk " "Klik dan gerakkan tetikus di sekeliling untuk menjadikan gambar berbentuk "
"titisan." "titisan."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klik untuk jelaskan keseluruhan gambar anda."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Kabur" msgstr "Kabur"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nb\n" "Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-06-28 19:40+0200\n" "PO-Revision-Date: 2021-06-28 19:40+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n" "Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
@ -1387,10 +1387,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Hold inne knappen og flytt rundt for å gjøre tegningen om til en krittegning." "Hold inne knappen og flytt rundt for å gjøre tegningen om til en krittegning."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Hold inne knappen og flytt rundt for å gjøre tegningen dryppende." msgstr "Hold inne knappen og flytt rundt for å gjøre tegningen dryppende."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Trykk for å gjøre hele tegningen skarpere."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Uklar" msgstr "Uklar"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-09 08:08+0530\n" "PO-Revision-Date: 2014-06-09 08:08+0530\n"
"Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n" "Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1402,12 +1402,18 @@ msgstr "चित्रलाई चक ड्रइङ बनाउनका
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "चित्रलाई चक ड्रइङ बनाउनका लागि क्लिक गर्नुहोस् अनि माउस घुमाउनुहोस्।" msgstr "चित्रलाई चक ड्रइङ बनाउनका लागि क्लिक गर्नुहोस् अनि माउस घुमाउनुहोस्।"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "चित्र ड्रिप बनाउनका लागि क्लिक गर्नुहस् अनि माउस घुमाउनुहोस्" msgstr "चित्र ड्रिप बनाउनका लागि क्लिक गर्नुहस् अनि माउस घुमाउनुहोस्"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "पाईँको पूरा चित्र तिख्याउनुको लागि क्लिक गर्नुहोस्"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "धमिलो पार्नु" msgstr "धमिलो पार्नु"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-10-15 11:04+0200\n" "PO-Revision-Date: 2017-10-15 11:04+0200\n"
"Last-Translator: Willem Heppe <heppew@yahoo.com>\n" "Last-Translator: Willem Heppe <heppew@yahoo.com>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@ -1403,10 +1403,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Klik en sleep de muis om de tekening te veranderen in een krijttekening!" "Klik en sleep de muis om de tekening te veranderen in een krijttekening!"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Klik en sleep de muis om daar de tekening te laten druipen!" msgstr "Klik en sleep de muis om daar de tekening te laten druipen!"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Klik om overgangen in je hele tekening te verscherpen."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Vervagen" msgstr "Vervagen"

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nn\n" "Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-07-03 13:23+0200\n" "PO-Revision-Date: 2022-07-03 13:23+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n" "Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
@ -1456,10 +1456,16 @@ msgstr ""
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Trykk for å gjera heile teikninga om til ei kritteikning." msgstr "Trykk for å gjera heile teikninga om til ei kritteikning."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Hald inne knappen og flytt rundt for å gjera teikninga drypande." msgstr "Hald inne knappen og flytt rundt for å gjera teikninga drypande."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make the entire picture blocky."
msgid "Click to make the entire picture drip."
msgstr "Trykk for å gjera heile teikninga «blokkete»."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Uskarp" msgstr "Uskarp"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2006-10-09 20:32+0200\n" "PO-Revision-Date: 2006-10-09 20:32+0200\n"
"Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n" "Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1417,13 +1417,18 @@ msgstr ""
"Qhwarhaza udose njalo iKhondlwna uzungeleze ukuze uphendulele isithombe " "Qhwarhaza udose njalo iKhondlwna uzungeleze ukuze uphendulele isithombe "
"ukuba mudwebo wetjhogo." "ukuba mudwebo wetjhogo."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Qhwarhaza udose njalo iKhondlwana uzungeleze ukuze uthontisele isithombe." "Qhwarhaza udose njalo iKhondlwana uzungeleze ukuze uthontisele isithombe."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Qhwarhaza wenze umfanekiso osasiboniboni."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Fipheleko" msgstr "Fipheleko"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2010-10-04 17:44+0200\n" "PO-Revision-Date: 2010-10-04 17:44+0200\n"
"Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n" "Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1416,13 +1416,19 @@ msgstr ""
"Kgotla gomme o sepediše mause go fetoša seswantšho gore se be sethalwa sa " "Kgotla gomme o sepediše mause go fetoša seswantšho gore se be sethalwa sa "
"tšhoko." "tšhoko."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
"Kgotla gomme o sepediše mause go dira gore seswantšho se be le go rotha." "Kgotla gomme o sepediše mause go dira gore seswantšho se be le go rotha."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Kgotla gore o loutše seswantšho ka moka."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Galoša" msgstr "Galoša"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2021-06-06 18:54+0200\n" "PO-Revision-Date: 2021-06-06 18:54+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Occitan (post 1500) <oc@li.org>\n" "Language-Team: Occitan (post 1500) <oc@li.org>\n"
@ -1343,10 +1343,14 @@ msgstr ""
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "" msgstr ""
#: ../../magic/src/blocks_chalk_drip.c:180
msgid "Click to make the entire picture drip."
msgstr ""
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "" msgstr ""

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ojibwaytuxpaint\n" "Project-Id-Version: ojibwaytuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2007-10-08 18:19-0500\n" "PO-Revision-Date: 2007-10-08 18:19-0500\n"
"Last-Translator: Ed Montgomery <edm@rocketmail.com>\n" "Last-Translator: Ed Montgomery <edm@rocketmail.com>\n"
"Language-Team: Ed <edm@rocketmail.com>\n" "Language-Team: Ed <edm@rocketmail.com>\n"
@ -1360,11 +1360,16 @@ msgstr "Waabizo"
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Waabizo" msgstr "Waabizo"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Waabizo" msgstr "Waabizo"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Waabimoojichaagwaazo"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Biigizawinam" msgstr "Biigizawinam"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2012-04-05 20:08+0530\n" "PO-Revision-Date: 2012-04-05 20:08+0530\n"
"Last-Translator: Ekanta <ekanta@gmail.com>\n" "Last-Translator: Ekanta <ekanta@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1403,12 +1403,18 @@ msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ୍ତନ କରିବା ପାଇଁ କ୍ଲିକ କରି ମାଉସକୁ ଚାରିପଟେ ବୁଲାନ୍ତୁ ୤ " msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ୍ତନ କରିବା ପାଇଁ କ୍ଲିକ କରି ମାଉସକୁ ଚାରିପଟେ ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ଚିତ୍ରକୁ ବୁନ୍ଦା ବୁନ୍ଦା କରିବା ପାଇଁ କ୍ଲିକ କରି ମାଉସକୁ ଚାରିପଟେ ବୁଲାନ୍ତୁ ୤ " msgstr "ଚିତ୍ରକୁ ବୁନ୍ଦା ବୁନ୍ଦା କରିବା ପାଇଁ କ୍ଲିକ କରି ମାଉସକୁ ଚାରିପଟେ ବୁଲାନ୍ତୁ ୤ "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ସମଗ୍ର ଚିତ୍ରକୁ ତୀକ୍ଷଣ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ ୤ "
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ଅସ୍ପଷ୍ଟ" msgstr "ଅସ୍ପଷ୍ଟ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-02-04 21:03+0200\n" "PO-Revision-Date: 2013-02-04 21:03+0200\n"
"Last-Translator: Arshpreet singh <EMAIL@ADDRESS>\n" "Last-Translator: Arshpreet singh <EMAIL@ADDRESS>\n"
"Language-Team: none>\n" "Language-Team: none>\n"
@ -1393,12 +1393,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
" ਕਲਿਕ ਕਰੋ ਅਤੇ ਮਾਓਸ ਦੀ ਮਦਦ ਨਾਲ ਆਪਣੀ ਤਸਵੀਰ ਨੂੰ ਸਲੇਟੀ ਨਾਲ ਬਣਾਈ ਹੋਈ ਪੇਂਟਿੰਗ ਵਿਚ ਬਦਲੋ " " ਕਲਿਕ ਕਰੋ ਅਤੇ ਮਾਓਸ ਦੀ ਮਦਦ ਨਾਲ ਆਪਣੀ ਤਸਵੀਰ ਨੂੰ ਸਲੇਟੀ ਨਾਲ ਬਣਾਈ ਹੋਈ ਪੇਂਟਿੰਗ ਵਿਚ ਬਦਲੋ "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ਕਲਿਕ ਕਰੋ ਅਤੇ ਮਾਓਸ ਦੀ ਮਦਦ ਨਾਲ ਆਪਣੀ ਤਸਵੀਰ ਨੂੰ ਬੂੰਦਾਂ ਵਿਚ ਬਦਲੋ " msgstr "ਕਲਿਕ ਕਰੋ ਅਤੇ ਮਾਓਸ ਦੀ ਮਦਦ ਨਾਲ ਆਪਣੀ ਤਸਵੀਰ ਨੂੰ ਬੂੰਦਾਂ ਵਿਚ ਬਦਲੋ "
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ਮਾਓਸ ਕਲਿਕ ਦੀ ਮਦਦ ਨਾਲ ਪੂਰੀ ਤਸਵੀਰ ਨੂ ਤਿਖਾ ਕਰੋ "
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ਧੁੰਦਲੀ " msgstr "ਧੁੰਦਲੀ "

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-30 18:21+0000\n" "PO-Revision-Date: 2017-12-30 18:21+0000\n"
"Last-Translator: Chris <cjl@sugarlabs.org>\n" "Last-Translator: Chris <cjl@sugarlabs.org>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1405,10 +1405,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Kliknij i przesuń myszką dookoła, aby zamienić obrazek w rysunek kredą." "Kliknij i przesuń myszką dookoła, aby zamienić obrazek w rysunek kredą."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Kliknij i przesuń myszką dookoła, aby obraz zaczął ociekać kroplami." msgstr "Kliknij i przesuń myszką dookoła, aby obraz zaczął ociekać kroplami."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Kliknij, aby wyostrzyć cały rysunek."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Rozmaż" msgstr "Rozmaż"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-05-17 13:51+0100\n" "PO-Revision-Date: 2022-05-17 13:51+0100\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n" "Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
@ -1379,10 +1379,16 @@ msgstr "Clica e arrasta o rato para converter em desenho de giz."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Clica para transformar a imagem inteira num desenho a giz." msgstr "Clica para transformar a imagem inteira num desenho a giz."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Clica e arrasta o rato para criar gotas no desenho." msgstr "Clica e arrasta o rato para criar gotas no desenho."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to make the entire picture blocky."
msgid "Click to make the entire picture drip."
msgstr "Clica para tornar a imagem inteira em blocos."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Borrar" msgstr "Borrar"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-06 13:01-0300\n" "PO-Revision-Date: 2017-12-06 13:01-0300\n"
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n" "Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1406,10 +1406,16 @@ msgstr "Clique e arraste para transformar a figura em um desenho de giz."
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Clique e arraste para transformar a figura em um desenho de giz." msgstr "Clique e arraste para transformar a figura em um desenho de giz."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Clique e arraste para a figura ficar escorrida." msgstr "Clique e arraste para a figura ficar escorrida."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Clique para deixar toda a figura mais nítida."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Borrão" msgstr "Borrão"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint 0.9.2pre\n" "Project-Id-Version: Tuxpaint 0.9.2pre\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2003-01-03 21:32-0500\n" "PO-Revision-Date: 2003-01-03 21:32-0500\n"
"Language-Team: Romanian <ro@li.org>\n" "Language-Team: Romanian <ro@li.org>\n"
"Language: ro\n" "Language: ro\n"
@ -1433,12 +1433,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Click şi mişcă maus-ul pentru a schimba pictura într-un desen din cretă." "Click şi mişcă maus-ul pentru a schimba pictura într-un desen din cretă."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Click şi mişcă mouse-ul pentru a face desenul curgător." msgstr "Click şi mişcă mouse-ul pentru a face desenul curgător."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Click pentru a ascuţi întreaga pictură."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Estompare" msgstr "Estompare"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint\n" "Project-Id-Version: TuxPaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2017-12-23 10:13+0300\n" "PO-Revision-Date: 2017-12-23 10:13+0300\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@ -1439,10 +1439,16 @@ msgstr ""
"Щёлкните и ведите мышью по картинке, чтобы превратить её часть в рисунок " "Щёлкните и ведите мышью по картинке, чтобы превратить её часть в рисунок "
"мелом." "мелом."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Щёлкните и ведите мышью по картинке, чтобы заставьте её капать." msgstr "Щёлкните и ведите мышью по картинке, чтобы заставьте её капать."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Щёлкните, чтобы увеличить резкость картинки."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Размытие" msgstr "Размытие"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n" "Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@ -1407,11 +1407,16 @@ msgstr "Na Kwimura i Imbeba Kuri i() y'Ishusho a Igishushanyo"
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "Na Kwimura i Imbeba Kuri i() y'Ishusho a Igishushanyo" msgstr "Na Kwimura i Imbeba Kuri i() y'Ishusho a Igishushanyo"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Na Kwimura i Imbeba Kuri Ubwoko i() y'Ishusho" msgstr "Na Kwimura i Imbeba Kuri Ubwoko i() y'Ishusho"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
msgid "Click to make the entire picture drip."
msgstr "Kuri Ubwoko a Ishusho"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2011-11-19 07:03+0530\n" "PO-Revision-Date: 2011-11-19 07:03+0530\n"
"Last-Translator: Aarathi Bala\n" "Last-Translator: Aarathi Bala\n"
"Language-Team: \n" "Language-Team: \n"
@ -1400,12 +1400,18 @@ msgstr "सुधाखण्डालेख इव चित्रं परि
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "सुधाखण्डालेख इव चित्रं परिणमितुं मौस् क्लिक् कृत्वा परितः चेष्टय।" msgstr "सुधाखण्डालेख इव चित्रं परिणमितुं मौस् क्लिक् कृत्वा परितः चेष्टय।"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "चित्रं स्रावयितुं मौस् क्लिक् कृत्वा परितः चेष्टय।" msgstr "चित्रं स्रावयितुं मौस् क्लिक् कृत्वा परितः चेष्टय।"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "सम्पूर्मचित्रं तीव्रीकर्तुं क्लिक् कुरु।"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "अस्पष्टता" msgstr "अस्पष्टता"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2014-06-16 16:55+0530\n" "PO-Revision-Date: 2014-06-16 16:55+0530\n"
"Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n" "Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -1407,12 +1407,18 @@ msgstr "चोक खुड़ी गार तेयार रे चिता
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "चोक खुड़ी गार तेयार रे चितार आ़चुर ला़गित माउस गोटा सेत् लाड़ाव आर ओताय मे." msgstr "चोक खुड़ी गार तेयार रे चितार आ़चुर ला़गित माउस गोटा सेत् लाड़ाव आर ओताय मे."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "चिता़र टोपोक् तेयार ला़गित् माउस गोटा सेत् आ़चुर आर ओताय मे." msgstr "चिता़र टोपोक् तेयार ला़गित् माउस गोटा सेत् आ़चुर आर ओताय मे."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "गोटा चिता़र लासेर ला़गित् ओताय मे."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "धुंध" msgstr "धुंध"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2022-02-11 18:33+0530\n" "PO-Revision-Date: 2022-02-11 18:33+0530\n"
"Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n" "Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1393,10 +1393,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"ᱪᱚᱠ ᱠᱷᱩᱲᱤ ᱜᱟᱨ ᱛᱮᱭᱟᱨ ᱨᱮ ᱪᱤᱛᱟᱨ ᱟᱹᱪᱩᱨ ᱞᱟᱹᱜᱤᱫ ᱢᱟᱩᱥ ᱜᱚᱴᱟ ᱚᱨ ᱨᱟᱠᱟᱵᱽ ᱢᱮ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" "ᱪᱚᱠ ᱠᱷᱩᱲᱤ ᱜᱟᱨ ᱛᱮᱭᱟᱨ ᱨᱮ ᱪᱤᱛᱟᱨ ᱟᱹᱪᱩᱨ ᱞᱟᱹᱜᱤᱫ ᱢᱟᱩᱥ ᱜᱚᱴᱟ ᱚᱨ ᱨᱟᱠᱟᱵᱽ ᱢᱮ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "ᱪᱤᱛᱟᱹᱨ ᱴᱚᱯᱚᱜ ᱛᱮᱭᱟᱨ ᱞᱟᱹᱜᱤᱫ ᱢᱟᱩᱥ ᱜᱚᱴᱟ ᱥᱮᱫ ᱚᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱹᱪᱩᱨ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾" msgstr "ᱪᱤᱛᱟᱹᱨ ᱴᱚᱯᱚᱜ ᱛᱮᱭᱟᱨ ᱞᱟᱹᱜᱤᱫ ᱢᱟᱩᱥ ᱜᱚᱴᱟ ᱥᱮᱫ ᱚᱨ ᱨᱟᱠᱟᱵᱽ ᱟᱹᱪᱩᱨ ᱟᱨ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "ᱜᱚᱴᱟ ᱪᱤᱛᱟᱹᱨ ᱞᱟᱥᱮᱨ ᱞᱟᱹᱜᱤᱫ ᱚᱛᱟᱭ ᱢᱮ ᱾"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ᱫᱷᱩᱸᱫᱷ" msgstr "ᱫᱷᱩᱸᱫᱷ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1394,10 +1394,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
msgstr "" msgstr ""
"Incarca e traga su cursore pro furriare s'immàgine in disinnu de ghisu." "Incarca e traga su cursore pro furriare s'immàgine in disinnu de ghisu."
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "Incarca e traga su cursore in tundu pro fàghere s'immàgine a gùtios." msgstr "Incarca e traga su cursore in tundu pro fàghere s'immàgine a gùtios."
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "Incarca pro fàghere prus nìdida totu s'immàgine."
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "Isfoca" msgstr "Isfoca"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 16:31-0700\n" "POT-Creation-Date: 2022-07-03 16:39-0700\n"
"PO-Revision-Date: 2013-01-09 14:39+0530\n" "PO-Revision-Date: 2013-01-09 14:39+0530\n"
"Last-Translator: Chandrakant Dhutadmal\n" "Last-Translator: Chandrakant Dhutadmal\n"
"Language-Team: Sindhi-PA\n" "Language-Team: Sindhi-PA\n"
@ -1404,12 +1404,18 @@ msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪر
msgid "Click to turn the entire picture into a chalk drawing." msgid "Click to turn the entire picture into a chalk drawing."
msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪريو ۽ اين جي چوطرف مائوس هلايو " msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪريو ۽ اين جي چوطرف مائوس هلايو "
#: ../../magic/src/blocks_chalk_drip.c:174 #: ../../magic/src/blocks_chalk_drip.c:176
#, fuzzy #, fuzzy
#| msgid "Click and move the mouse around to make the picture drip." #| msgid "Click and move the mouse around to make the picture drip."
msgid "Click and drag the mouse around to make the picture drip." msgid "Click and drag the mouse around to make the picture drip."
msgstr "تصوير بوند رچڻ لاءِ ڪلڪ ڪريو ۽ اُن جي چوطرف مائوس هلايو۔" msgstr "تصوير بوند رچڻ لاءِ ڪلڪ ڪريو ۽ اُن جي چوطرف مائوس هلايو۔"
#: ../../magic/src/blocks_chalk_drip.c:180
#, fuzzy
#| msgid "Click to sharpen the entire picture."
msgid "Click to make the entire picture drip."
msgstr "پنهنجي سموري تصوير تکي ڪرڻ لاءِ ڪلڪ ڪريو۔"
#: ../../magic/src/blur.c:81 #: ../../magic/src/blur.c:81
msgid "Blur" msgid "Blur"
msgstr "ڌنڌلو" msgstr "ڌنڌلو"

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