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:
parent
95755c7af5
commit
844db56ab9
132 changed files with 1052 additions and 270 deletions
|
|
@ -14,16 +14,26 @@ http://www.tuxpaint.org/
|
|||
an unexpected color to be chosen.
|
||||
h/t @kentonyanamin on Twitter for reporting.
|
||||
Closes https://sourceforge.net/p/tuxpaint/bugs/251/
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
* Line shape could report "360 degrees", which should be "0 degrees".
|
||||
h/t Karl Ove Hufthammer <karl@huftis.org> for the report
|
||||
Closes https://sourceforge.net/p/tuxpaint/bugs/255/
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
* Some Magic tools did not change descriptions when switching
|
||||
from paint to full-canvas mode.
|
||||
+ Emboss
|
||||
h/t Karl Ove Hufthammer <karl@huftis.org> for the report
|
||||
Closes https://sourceforge.net/p/tuxpaint/bugs/257/
|
||||
+ Drip
|
||||
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:
|
||||
-------------------
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
Last updated: November 8, 2021
|
||||
Last updated: July 3, 2022
|
||||
$Id$
|
||||
*/
|
||||
|
||||
|
|
@ -171,7 +171,14 @@ char *blocks_chalk_drip_get_description(magic_api * api ATTRIBUTE_UNUSED, int wh
|
|||
}
|
||||
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);
|
||||
|
|
@ -324,13 +331,25 @@ void blocks_chalk_drip_click(magic_api * api, int which, int mode,
|
|||
if (mode == MODE_PAINT) {
|
||||
blocks_chalk_drip_drag(api, which, canvas, last, x, y, x, y, update_rect);
|
||||
} else /* MODE_FULLSCREEN */ {
|
||||
for (y = 0; y < canvas->h; y += EFFECT_REZ) {
|
||||
if (y % 10 == 0) {
|
||||
api->update_progress_bar();
|
||||
if (which != TOOL_DRIP) {
|
||||
for (y = 0; y < canvas->h; y += EFFECT_REZ) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
for (x = 0; x < canvas->w; x += EFFECT_REZ) {
|
||||
blocks_chalk_drip_linecb(api, which, canvas, last, x, y);
|
||||
} else {
|
||||
/* Drip (works from bottom-to-top) */
|
||||
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;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: \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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Ma laribiribi."
|
||||
|
|
|
|||
10
src/po/af.po
10
src/po/af.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: af\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"
|
||||
"Last-Translator: OdettePretorius <odettepret@gmail.com>\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 ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Verwaas"
|
||||
|
|
|
|||
10
src/po/ak.po
10
src/po/ak.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\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"
|
||||
"Last-Translator: 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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Wesee"
|
||||
|
|
|
|||
10
src/po/am.po
10
src/po/am.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1401,12 +1401,18 @@ msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አ
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr " ስአሉን ወደ ጠመኔ አሳሳልነት ለመቀየር አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr " ደብዛዛ"
|
||||
|
|
|
|||
10
src/po/an.po
10
src/po/an.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
|
||||
"Language-Team: softaragonés\n"
|
||||
|
|
@ -1406,10 +1406,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Difuminar"
|
||||
|
|
|
|||
10
src/po/ar.po
10
src/po/ar.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1423,12 +1423,18 @@ msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى رسمة طبشورية."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "تمويه , شىء ضبابي"
|
||||
|
|
|
|||
10
src/po/as.po
10
src/po/as.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\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
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "অস্পষ্টটো"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: 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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Desenfocar"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: 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ə "
|
||||
"gətir."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Ləkə"
|
||||
|
|
|
|||
10
src/po/be.po
10
src/po/be.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1408,12 +1408,18 @@ msgstr "Націсніце і павадзіце па малюнку, каб р
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "Націсніце і павадзіце па малюнку, каб размаляваць яго мелам."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Размыццё"
|
||||
|
|
|
|||
10
src/po/bg.po
10
src/po/bg.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1411,12 +1411,18 @@ msgstr "Натиснете и движете мишката, за да прев
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "Натиснете и движете мишката, за да превърнете рисунката в тебеширена."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Размазване"
|
||||
|
|
|
|||
10
src/po/bm.po
10
src/po/bm.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1403,12 +1403,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"Kilike, i ka ɲinɛnin cɛɛnɛ ka ja yɛlɛma k’a 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
|
||||
#| msgid "Click and move 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 k’a kɛ I ko nɔgɔlan bɔnnen b’a 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
|
||||
msgid "Blur"
|
||||
msgstr "ɲɛ malasali"
|
||||
|
|
|
|||
10
src/po/bn.po
10
src/po/bn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \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"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: Bengali\n"
|
||||
|
|
@ -1402,12 +1402,18 @@ msgstr "ছবিটি একটি চক অঙ্কনে পরিণত
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "ছবিটি একটি চক অঙ্কনে পরিণত করতে মাউস ক্লিক করুন এবং ঘোরান."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "অস্পষ্ট"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\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"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1340,10 +1340,14 @@ msgstr ""
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:180
|
||||
msgid "Click to make the entire picture drip."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blur.c:81
|
||||
msgid "Blur"
|
||||
msgstr "gsl.l.m.gsl."
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1406,12 +1406,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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ñ."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Luziañ"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bodo\n"
|
||||
|
|
@ -1404,12 +1404,18 @@ msgstr "सावगारिखौ सक आखिनायाव सोला
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "सावगारिखौ सक आखिनायाव सोलायहोनो माउसखौ क्लिक खालाम आरो लोरिहो।"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "नुसारै"
|
||||
|
|
|
|||
11
src/po/bs.po
11
src/po/bs.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Samir Ribić <Unknown>\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."
|
||||
|
||||
#
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
|
|
|
|||
10
src/po/ca.po
10
src/po/ca.po
|
|
@ -17,7 +17,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint cvs 2009-06-21\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"
|
||||
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Difumina"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\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 "
|
||||
"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."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Blur"
|
||||
msgstr "Difumina"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1409,12 +1409,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"Imata kandi oyetoroze mawusi okuhindura ekishushani kyawe okuba nkeinoni."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Okutarebekagye"
|
||||
|
|
|
|||
10
src/po/cs.po
10
src/po/cs.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Rozostřit"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: cy\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"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1402,12 +1402,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Pylu"
|
||||
|
|
|
|||
10
src/po/da.po
10
src/po/da.po
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\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"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.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 ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Sløre"
|
||||
|
|
|
|||
10
src/po/de.po
10
src/po/de.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: de\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"
|
||||
"Last-Translator: Holger Wansing <hwansing@mailbox.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 ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Unscharf"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: <b>\n"
|
||||
"Language-Team: Dogri\n"
|
||||
|
|
@ -1403,12 +1403,18 @@ msgstr "तस्वीरा गी चाकी ड्राइङ बना
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "तस्वीरा गी चाकी ड्राइङ बनाने आस्तै क्लिक करो ते माउस गी फेरो."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ब्लर करो"
|
||||
|
|
|
|||
10
src/po/el.po
10
src/po/el.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: kiolalis <kiolalis@gmail.com>\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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Θόλωμα"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: ilox <ilox11@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1407,12 +1407,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Blur"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1405,12 +1405,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Blur"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1400,10 +1400,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Blur"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.9.16\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"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\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 ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Blur"
|
||||
|
|
|
|||
10
src/po/eo.po
10
src/po/eo.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Ŝmiri"
|
||||
|
|
|
|||
10
src/po/es.po
10
src/po/es.po
|
|
@ -29,7 +29,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1424,10 +1424,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Difuminar"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.2\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"
|
||||
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\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 "
|
||||
"de tiza."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Desenfocar"
|
||||
|
|
|
|||
10
src/po/et.po
10
src/po/et.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\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"
|
||||
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
|
||||
"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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Hägu"
|
||||
|
|
|
|||
10
src/po/eu.po
10
src/po/eu.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: eu\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"
|
||||
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
|
||||
"Language-Team: librezale@librezale.org\n"
|
||||
|
|
@ -1407,10 +1407,16 @@ msgstr ""
|
|||
"Klik egin eta mugi ezazu sagua irudia klarionez eginda balego bezala "
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Desenfokatu"
|
||||
|
|
|
|||
10
src/po/fa.po
10
src/po/fa.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: snima <unix.nima@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."
|
||||
msgstr ".برای سفید کردن تصویر با گچ کلیک کن و موس را حرکت بده "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "محو کردن"
|
||||
|
|
|
|||
10
src/po/ff.po
10
src/po/ff.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Iirɗol"
|
||||
|
|
|
|||
10
src/po/fi.po
10
src/po/fi.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: inactive\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."
|
||||
msgstr "Muuta piirros liitupiirrokseksi painamalla hiiren painiketta."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Sumenna"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint 0.9.18\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"
|
||||
"Last-Translator: Lis Gøthe í Jákupsstovu <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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Kámt"
|
||||
|
|
|
|||
11
src/po/fr.po
11
src/po/fr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: fr\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"
|
||||
"Last-Translator: Chion Jacques <jacques.chion@orange.fr>\n"
|
||||
"Language-Team: <fr@li.org>\n"
|
||||
|
|
@ -1388,10 +1388,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Flou"
|
||||
|
|
|
|||
10
src/po/ga.po
10
src/po/ga.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\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 ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Geamhaigh"
|
||||
|
|
|
|||
10
src/po/gd.po
10
src/po/gd.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\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 "
|
||||
"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."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Blur"
|
||||
msgstr "Sgleò"
|
||||
|
|
|
|||
10
src/po/gl.po
10
src/po/gl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\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"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\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 "
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Esvaer"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\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"
|
||||
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1399,12 +1399,17 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Dook"
|
||||
|
|
|
|||
10
src/po/gu.po
10
src/po/gu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
|
||||
"Language-Team: Gujarati <team@utkarsh.org>\n"
|
||||
|
|
@ -1391,10 +1391,16 @@ msgstr "ચિત્રને ચોક ચિત્રમાં ફેરવવ
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ઝાંખુ"
|
||||
|
|
|
|||
10
src/po/he.po
10
src/po/he.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: he\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"
|
||||
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\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."
|
||||
msgstr "לחצי והזיזי את העכבר להפיכת התמונה לציור גיר."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "טשטוש"
|
||||
|
|
|
|||
10
src/po/hi.po
10
src/po/hi.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
|
||||
"Language-Team: Hindi\n"
|
||||
|
|
@ -1404,12 +1404,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"चित्र को chalk drawing के रूप मे करने के लिए उसपर क्लिक करें और माउस को चारों ओर घुमाये"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture 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
|
||||
msgid "Blur"
|
||||
msgstr "धुंध्ला"
|
||||
|
|
|
|||
10
src/po/hr.po
10
src/po/hr.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Zamućeno"
|
||||
|
|
|
|||
10
src/po/hu.po
10
src/po/hu.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Maszat"
|
||||
|
|
|
|||
10
src/po/hy.po
10
src/po/hy.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 1.8\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"
|
||||
"Last-Translator: Aram Palyan <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."
|
||||
msgstr "Սեղմիր և շարժիր մկնիկը, պատկերը կավիճով նկարածի տեսք տալու համար:"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Մշուշ"
|
||||
|
|
|
|||
10
src/po/id.po
10
src/po/id.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1410,10 +1410,16 @@ msgstr ""
|
|||
"Klik dan pindahkan mouse ke sekitar untuk merubah gambar menjadi gambar "
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Blur"
|
||||
|
|
|
|||
10
src/po/is.po
10
src/po/is.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Móða"
|
||||
|
|
|
|||
10
src/po/it.po
10
src/po/it.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.23\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
|
@ -1448,10 +1448,16 @@ msgstr ""
|
|||
"Fai clic e trascina il mouse per trasformare il disegno in uno fatto a "
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Sfoca"
|
||||
|
|
|
|||
10
src/po/iu.po
10
src/po/iu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint Inuktitut\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"
|
||||
"Last-Translator: Harvey Ginter <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."
|
||||
msgstr "ᓇᕐᓂᓗᒍ ᐊᐅᓚᓗᒍᓗ ᐊᐅᓚᑦᓯᒍᑎᖓ ᐊᑦᔨᖑᐊᖅ ᐊᓪᓚᖑᐊᕐᓯᒪᔪᖕᖑᑎᓗᒍ ᐊᓪᓚᕕᐊᓗᒻᒥ ᐊᓪᓚᐅᑎᒧᑦ."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ᑕᑉᐲᑐᖅ"
|
||||
|
|
|
|||
11
src/po/ja.po
11
src/po/ja.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.23\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"
|
||||
"Last-Translator: Shin-ichi TOYAMA <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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ぼかす"
|
||||
|
|
|
|||
10
src/po/ka.po
10
src/po/ka.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\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"
|
||||
"Last-Translator: Giasher <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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "გადღაბნა"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kab\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"
|
||||
"Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Sluɣ"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Khoem Sokhem <khoemsokhem@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."
|
||||
msgstr "ចុច ហើយផ្លាស់ទីកណ្ដុរ ដើម្បីធ្វើរូបភាពឲ្យទៅជាគំនូរដីស ។"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
msgstr "ចុច ហើយផ្លាស់ទីកណ្ដុរ ដើម្បីធ្វើឲ្យរូបភាពដូចមានដំណក់ស្រក់ ។"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:180
|
||||
#, fuzzy
|
||||
msgid "Click to make the entire picture drip."
|
||||
msgstr "ចុច ដើម្បីចាំងឆ្លុះរូបភាព ។"
|
||||
|
||||
#: ../../magic/src/blur.c:81
|
||||
msgid "Blur"
|
||||
msgstr "ព្រិល"
|
||||
|
|
|
|||
10
src/po/kn.po
10
src/po/kn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Savitha <savithasprasad@yahoo.com>\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
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ಮಬ್ಬು"
|
||||
|
|
|
|||
10
src/po/ko.po
10
src/po/ko.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Mark K. Kim <mkkim214@gmail.com>\n"
|
||||
"Language-Team: N/A\n"
|
||||
|
|
@ -1379,10 +1379,16 @@ msgstr "마우스를 누르고 끌면 그림이 분필로 만든 것 같이 되
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "흐리게"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: en_gb\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1404,12 +1404,18 @@ msgstr "खडू पिंतरावणेंत पिंतुर बदल
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "खडू पिंतरावणेंत पिंतुर बदलूंक, मावस क्लिक करून भोंवतणी व्हरचो."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "अस्पश्ट"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1408,12 +1408,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
" khaddu pintravnnent bodlunk, maus klik korun bhonvtonni zongeantor kor "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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 "
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr " ospoxtt "
|
||||
|
|
|
|||
10
src/po/ks.po
10
src/po/ks.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-PA\n"
|
||||
|
|
@ -1406,12 +1406,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"کلِک کٔریو تہٕ أند۪ی أند۪ی ڈٲلیو ماوس تصویر چاک ڈرائنگ منٛز تبدیل کرنہٕ خٲطرٕ۔"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "بلر"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-DV\n"
|
||||
|
|
@ -1408,12 +1408,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"तसविर एिकोस चाक डरायींग मंज़ तबदिल करनॊ बापत कॊरीव कोलोक तॊ पकनॊयीव मावुस ऊर यूर."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "गॊट कॊरीव"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ku\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"
|
||||
"Last-Translator: \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 "
|
||||
"dorê bigerîne bigerîne."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "ne zelal"
|
||||
|
|
|
|||
10
src/po/lb.po
10
src/po/lb.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: lb\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"
|
||||
"Last-Translator: René Brandenburger <rene@brandenburger.lu>\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."
|
||||
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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Onschaarf"
|
||||
|
|
|
|||
10
src/po/lg.po
10
src/po/lg.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\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."
|
||||
msgstr "Nyiga era tambuza mawusi okukyusa ekifaananyi ng'ekyennoni"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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"
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Buzaabuza"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.9\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"
|
||||
"Last-Translator: Gintaras Goštautas <gintaras@nes.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."
|
||||
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
|
||||
#| msgid "Click and move 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ų."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Sulieti"
|
||||
|
|
|
|||
10
src/po/lv.po
10
src/po/lv.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Raivis Strogonovs <raivis.strogonovs@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 "
|
||||
"zīmētu"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Migla"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: sk <sk>\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."
|
||||
msgstr "चाक ड्राइंग केँ ब्लाक टाइप बनाबै क' लेल माउसक गिर्द क्लिक करू आओर घसकाउ."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "धुंधला करू"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
msgstr "Кликнете на глувчето и влечете го наоколу за боите да протечат."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:180
|
||||
#, fuzzy
|
||||
msgid "Click to make the entire picture drip."
|
||||
msgstr "Кликнете за да направите огледална слика."
|
||||
|
||||
#: ../../magic/src/blur.c:81
|
||||
msgid "Blur"
|
||||
msgstr "Замати"
|
||||
|
|
|
|||
10
src/po/ml.po
10
src/po/ml.po
|
|
@ -18,7 +18,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n"
|
||||
"Language-Team: Malayalam\n"
|
||||
|
|
@ -1410,13 +1410,19 @@ msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക്
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "ചിത്രത്തെ വെണ്മയുള്ളതാക്കാന് മൗസ് ബട്ടണ് അമര്ത്തിപ്പിടിച്ച് കൊണ്ട് ചലിപ്പിച്ചാല് മതി."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "മങ്ങുക"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1316,10 +1316,14 @@ msgstr ""
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:180
|
||||
msgid "Click to make the entire picture drip."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blur.c:81
|
||||
msgid "Blur"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1402,12 +1402,18 @@ msgstr "লাই অদু চোক দ্রোইং অমদা ওন্
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "লাই অদু চোক দ্রোইং অমদা ওন্থোক্নবা মাউস ক্লিক তৌরো অদুগা কোয়না চৎলো."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ময়েক শেংদবা"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1400,12 +1400,18 @@ msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊ
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "ꯂꯥꯏ ꯑꯗꯨ ꯆꯣꯛ ꯗ꯭ꯔꯣꯏꯡ ꯑꯃꯗ ꯑꯣꯟꯊꯣꯛꯅꯕ ꯃꯥꯎꯁ ꯀ꯭ꯂꯤꯛ ꯇꯧꯔꯣ ꯑꯗꯨꯒ ꯀꯣꯌꯅ ꯆꯠꯂꯣ."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ꯃꯌꯦꯛ ꯁꯦꯡꯗꯕ"
|
||||
|
|
|
|||
10
src/po/mr.po
10
src/po/mr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.21c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\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
|
||||
#| msgid "Click and move 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
|
||||
msgid "Blur"
|
||||
msgstr "अधुक "
|
||||
|
|
|
|||
10
src/po/ms.po
10
src/po/ms.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: abuyop <abuyop@gmail.com>\n"
|
||||
"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."
|
||||
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
|
||||
#| msgid "Click and move 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 "
|
||||
"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
|
||||
msgid "Blur"
|
||||
msgstr "Kabur"
|
||||
|
|
|
|||
10
src/po/nb.po
10
src/po/nb.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nb\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"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@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 ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Uklar"
|
||||
|
|
|
|||
10
src/po/ne.po
10
src/po/ne.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1402,12 +1402,18 @@ msgstr "चित्रलाई चक ड्रइङ बनाउनका
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "चित्रलाई चक ड्रइङ बनाउनका लागि क्लिक गर्नुहोस् अनि माउस घुमाउनुहोस्।"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "धमिलो पार्नु"
|
||||
|
|
|
|||
10
src/po/nl.po
10
src/po/nl.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Willem Heppe <heppew@yahoo.com>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
|
@ -1403,10 +1403,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Vervagen"
|
||||
|
|
|
|||
10
src/po/nn.po
10
src/po/nn.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nn\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"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Uskarp"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1417,13 +1417,18 @@ msgstr ""
|
|||
"Qhwarhaza udose njalo iKhondlwna uzungeleze ukuze uphendulele isithombe "
|
||||
"ukuba mudwebo wetjhogo."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Blur"
|
||||
msgstr "Fipheleko"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\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 "
|
||||
"tšhoko."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Blur"
|
||||
msgstr "Galoša"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: \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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:180
|
||||
msgid "Click to make the entire picture drip."
|
||||
msgstr ""
|
||||
|
||||
#: ../../magic/src/blur.c:81
|
||||
msgid "Blur"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ojibwaytuxpaint\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"
|
||||
"Last-Translator: Ed Montgomery <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."
|
||||
msgstr "Waabizo"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Biigizawinam"
|
||||
|
|
|
|||
10
src/po/or.po
10
src/po/or.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Ekanta <ekanta@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1403,12 +1403,18 @@ msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "ଚିତ୍ରକୁ ଚକ ଡ୍ରଇଂରେ ପରିବର୍ତ୍ତନ କରିବା ପାଇଁ କ୍ଲିକ କରି ମାଉସକୁ ଚାରିପଟେ ବୁଲାନ୍ତୁ "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ଅସ୍ପଷ୍ଟ"
|
||||
|
|
|
|||
10
src/po/pa.po
10
src/po/pa.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Arshpreet singh <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: none>\n"
|
||||
|
|
@ -1393,12 +1393,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
" ਕਲਿਕ ਕਰੋ ਅਤੇ ਮਾਓਸ ਦੀ ਮਦਦ ਨਾਲ ਆਪਣੀ ਤਸਵੀਰ ਨੂੰ ਸਲੇਟੀ ਨਾਲ ਬਣਾਈ ਹੋਈ ਪੇਂਟਿੰਗ ਵਿਚ ਬਦਲੋ "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ਧੁੰਦਲੀ "
|
||||
|
|
|
|||
10
src/po/pl.po
10
src/po/pl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1405,10 +1405,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Rozmaż"
|
||||
|
|
|
|||
10
src/po/pt.po
10
src/po/pt.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Borrar"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\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."
|
||||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Borrão"
|
||||
|
|
|
|||
10
src/po/ro.po
10
src/po/ro.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.2pre\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"Language-Team: Romanian <ro@li.org>\n"
|
||||
"Language: ro\n"
|
||||
|
|
@ -1433,12 +1433,18 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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
|
||||
#| msgid "Click and move 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."
|
||||
|
||||
#: ../../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
|
||||
msgid "Blur"
|
||||
msgstr "Estompare"
|
||||
|
|
|
|||
10
src/po/ru.po
10
src/po/ru.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\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"
|
||||
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Размытие"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\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"
|
||||
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\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."
|
||||
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
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr ""
|
||||
|
|
|
|||
10
src/po/sa.po
10
src/po/sa.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \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"
|
||||
"Last-Translator: Aarathi Bala\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1400,12 +1400,18 @@ msgstr "सुधाखण्डालेख इव चित्रं परि
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "सुधाखण्डालेख इव चित्रं परिणमितुं मौस् क्लिक् कृत्वा परितः चेष्टय।"
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "अस्पष्टता"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\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"
|
||||
"Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -1407,12 +1407,18 @@ msgstr "चोक खुड़ी गार तेयार रे चिता
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "चोक खुड़ी गार तेयार रे चितार आ़चुर ला़गित माउस गोटा सेत् लाड़ाव आर ओताय मे."
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "धुंध"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \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"
|
||||
"Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1393,10 +1393,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ᱫᱷᱩᱸᱫᱷ"
|
||||
|
|
|
|||
10
src/po/sc.po
10
src/po/sc.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -1394,10 +1394,16 @@ msgid "Click to turn the entire picture into a chalk drawing."
|
|||
msgstr ""
|
||||
"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."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "Isfoca"
|
||||
|
|
|
|||
10
src/po/sd.po
10
src/po/sd.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: Chandrakant Dhutadmal\n"
|
||||
"Language-Team: Sindhi-PA\n"
|
||||
|
|
@ -1404,12 +1404,18 @@ msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪر
|
|||
msgid "Click to turn the entire picture into a chalk drawing."
|
||||
msgstr "ليڪن واري نقش ۾ تصوير بدلائڻ لاءِ ڪلڪ ڪريو ۽ اين جي چوطرف مائوس هلايو "
|
||||
|
||||
#: ../../magic/src/blocks_chalk_drip.c:174
|
||||
#: ../../magic/src/blocks_chalk_drip.c:176
|
||||
#, fuzzy
|
||||
#| msgid "Click and move the mouse around to make the picture drip."
|
||||
msgid "Click and drag the mouse around to make the picture drip."
|
||||
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
|
||||
msgid "Blur"
|
||||
msgstr "ڌنڌلو"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue