Merge branch 'master' into sdl2.0. Updating with latest changes and improvements, clone, fill,...

This commit is contained in:
Pere Pujal i Carabantes 2021-02-25 00:48:38 +01:00
commit 00b4aa126f
180 changed files with 15268 additions and 8028 deletions

View file

@ -1,10 +1,10 @@
# Tux Paint - A simple drawing program for children. # Tux Paint - A simple drawing program for children.
# Copyright (c) 2002-2020 # Copyright (c) 2002-2021
# Various contributors (see AUTHORS.txt) # Various contributors (see AUTHORS.txt)
# http://www.tuxpaint.org/ # http://www.tuxpaint.org/
# June 14, 2002 - December 27, 2020 # June 14, 2002 - February 20, 2021
# The version number, for release: # The version number, for release:
@ -15,7 +15,7 @@ ifdef SOURCE_DATE_EPOCH
else else
VER_DATE=$(shell date "+%Y-%m-%d") VER_DATE=$(shell date "+%Y-%m-%d")
endif endif
MAGIC_API_VERSION:=0x00000003 MAGIC_API_VERSION:=0x00000004
# Need to know the OS # Need to know the OS
@ -1064,7 +1064,8 @@ tuxpaint: obj/tuxpaint.o obj/i18n.o obj/im.o obj/cursor.o obj/pixels.o \
obj/tuxpaint.o: src/tuxpaint.c \ obj/tuxpaint.o: src/tuxpaint.c \
src/i18n.h src/im.h src/cursor.h src/pixels.h \ src/i18n.h src/im.h src/cursor.h src/pixels.h \
src/rgblinear.h src/playsound.h src/fonts.h src/fill.h \ src/rgblinear.h src/playsound.h src/fonts.h \
src/fill.h src/fill_tools.h \
src/progressbar.h src/dirwalk.h src/get_fname.h \ src/progressbar.h src/dirwalk.h src/get_fname.h \
src/compiler.h src/debug.h \ src/compiler.h src/debug.h \
src/tools.h src/titles.h src/colors.h src/shapes.h \ src/tools.h src/titles.h src/colors.h src/shapes.h \

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
data/images/fills/solid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -7,7 +7,7 @@ Various contributors (see below, and CHANGES.txt)
http://www.tuxpaint.org/ http://www.tuxpaint.org/
June 17, 2002 - February 10, 2021 June 17, 2002 - February 15, 2021
$Id$ $Id$
@ -358,6 +358,11 @@ $Id$
* Cartoon * Cartoon
* "cartoon6.wav" from http://www.grsites.com/ * "cartoon6.wav" from http://www.grsites.com/
* Checkerboard
* Horse gallop from
https://bigsoundbank.com/detail-0611-horse-gallop.html
Creative Commons CC0 1.0 Universal
* Clone * Clone
* https://commons.wikimedia.org/wiki/File:Sheep_bleating.ogg * https://commons.wikimedia.org/wiki/File:Sheep_bleating.ogg
Public domain Public domain

View file

@ -8,25 +8,37 @@ http://www.tuxpaint.org/
$Id$ $Id$
2021.February.10 (0.9.26) 2021.February.20 (0.9.26)
* New Features * New Features
------------ ------------
* [WIP] Larger UI buttons * Larger UI buttons
Pere Pujal i Carabantes <pere@fornol.no-ip.org> Pere Pujal i Carabantes <pere@fornol.no-ip.org>
* It's now possible to increase how many rows of buttons are shown * It's now possible to increase how many rows of buttons are shown
for the color palette at the bottom of the screen. for the color palette at the bottom of the screen.
(Use the "colorsrows" option.) (Use the "colorsrows" option.)
Pere Pujal i Carabantes <pere@fornol.no-ip.org> Pere Pujal i Carabantes <pere@fornol.no-ip.org>
* Adding sub-tools to the Fill tool:
+ Solid -- The classic fill tool; click to fill
+ Linear -- A linear gradient; click and drag to adjust,
release mouse to finish
+ Radial -- A radial gradient; click to fill
(The gradients transition from the current color to the
background that's being filled.)
* New Magic Tools: * New Magic Tools:
---------------- ----------------
* Pixels * Checkerboard
Draws large squares, for classic computer 'pixel art' style drawings. Cover the entire canvas with a checkboard pattern using the
current color. Drag to change the size of the squares.
* Clone * Clone
Clones (copies, via painting) part of a drawing to another position. Clones (copies, via painting) part of a drawing to another position.
* Pixels
Draws large squares, for classic computer 'pixel art' style drawings.
* Documentation updates * Documentation updates
--------------------- ---------------------
* Documentation is now maintained in a separate source repository, * Documentation is now maintained in a separate source repository,
@ -36,6 +48,9 @@ $Id$
few which had previously only been available as plain TXT are now few which had previously only been available as plain TXT are now
available as HTML). available as HTML).
+ French translation
Jacques Chion <jacques.chion@orange.fr>
+ Galician + Galician
Miguel Anxo Bouzada <mbouzada@gmail.com> Miguel Anxo Bouzada <mbouzada@gmail.com>
@ -66,6 +81,15 @@ $Id$
* Galician translation * Galician translation
Miguel Bouzada <mbouzada@gmail.com> Miguel Bouzada <mbouzada@gmail.com>
* Magic Tool Improvememnts:
-------------------------
* A new "xorpixel()" function has been added to the Magic Tools API.
* Bug Fixes:
----------
* Halftone magic tool wasn't loading due to a problem
with its sound effect file.
2020.December.27 (0.9.25) 2020.December.27 (0.9.25)
* New Features * New Features
------------ ------------

View file

@ -6,7 +6,7 @@
Copyright © 2002-2021 by various contributors; see AUTHORS. Copyright © 2002-2021 by various contributors; see AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/
2 February 2021 20 February 2021
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -419,10 +419,19 @@ Available Tools
"Fill" Tool "Fill" Tool
The 'Fill' tool 'flood-fills' a contiguous area of your The 'Fill' tool 'flood-fills' a contiguous area of your
drawing with a solid color of your choice. drawing with a color of your choice. Three fill options are
offered:
* Solid — click once to fill an area with a solid color.
* Linear — click and then drag to fill the area with
color that fades away (a gradient) towards where you
drag the mouse.
* Radial — click once to fill an area with a color that
fades away (a gradient) radially, centered on where you
clicked.
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see
below). below). Note: Prior to Tux Paint 0.9.26, this tool only
offered the 'Solid' method of filling.
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -874,7 +883,7 @@ Using the import script, "tuxpaint-import"
Example: Example:
$ tuxpaint-import grandma.jpg $ tuxpaint-import grandma.jpg
grandma.jpg -> /home/username/.tuxpaint/saved/20210212093342.png grandma.jpg -> /home/username/.tuxpaint/saved/20210220203651.png
jpegtopnm: WRITING A PPM FILE jpegtopnm: WRITING A PPM FILE
The first line ("tuxpaint-import grandma.jpg") is the command to run. The first line ("tuxpaint-import grandma.jpg") is the command to run.
@ -916,7 +925,7 @@ Importing Pictures Manually
* mm = Minute (two digits, "00"-"59") * mm = Minute (two digits, "00"-"59")
* ss = Seconds (two digits, "00"-"59") * ss = Seconds (two digits, "00"-"59")
Example: "20210212093342.png", for 12 February 2021 at 09:33:42. Example: "20210220203651.png", for 20 February 2021 at 20:36:51.
Place this PNG file in your Tux Paint "saved" directory/folder. (See Place this PNG file in your Tux Paint "saved" directory/folder. (See
above.) above.)

View file

@ -28,7 +28,7 @@
</p> </p>
<p> <p>
2 February 2021 </p> 20 February 2021 </p>
</center> </center>
<hr size="2" <hr size="2"
@ -687,10 +687,15 @@
alt="" alt=""
align="right"> align="right">
<p> <p>
The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a solid color of your choice. </p> The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a color of your choice. Three fill options are offered: <ul>
<li><strong>Solid</strong> &mdash; click once to fill an area with a solid color.</li>
<li><strong>Linear</strong> &mdash; click and then drag to fill the area with color that fades away (a gradient) towards where you drag the mouse.</li>
<li><strong>Radial</strong> &mdash; click once to fill an area with a color that fades away (a gradient) radially, centered on where you clicked.</li>
</ul>
</p>
<p> <p>
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). </p> Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). Note: Prior to Tux Paint 0.9.26, this tool only offered the 'Solid' method of filling. </p>
<hr size="1"> <hr size="1">
</dd> </dd>
@ -1303,7 +1308,7 @@
<blockquote> <blockquote>
<code>$ <strong>tuxpaint-import grandma.jpg</strong><br> <code>$ <strong>tuxpaint-import grandma.jpg</strong><br>
grandma.jpg -&gt; grandma.jpg -&gt;
/home/username/.tuxpaint/saved/20210212093342.png<br> /home/username/.tuxpaint/saved/20210220203651.png<br>
jpegtopnm: WRITING A PPM FILE</code> jpegtopnm: WRITING A PPM FILE</code>
</blockquote> </blockquote>
@ -1351,7 +1356,7 @@
</ul> </ul>
<p> <p>
Example: "<code>20210212093342</code>.png", for 12 February 2021 at 09:33:42. </p> Example: "<code>20210220203651</code>.png", for 20 February 2021 at 20:36:51. </p>
<p> <p>
Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p> Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p>

View file

@ -6,7 +6,7 @@
Copyright © 2002-2021 by various contributors; see AUTHORS. Copyright © 2002-2021 by various contributors; see AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/
2 febrero 2021 20 febrero 2021
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -419,10 +419,19 @@ Available Tools
"Fill" Tool "Fill" Tool
The 'Fill' tool 'flood-fills' a contiguous area of your The 'Fill' tool 'flood-fills' a contiguous area of your
drawing with a solid color of your choice. drawing with a color of your choice. Three fill options are
offered:
* Solid — click once to fill an area with a solid color.
* Linear — click and then drag to fill the area with
color that fades away (a gradient) towards where you
drag the mouse.
* Radial — click once to fill an area with a color that
fades away (a gradient) radially, centered on where you
clicked.
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see
below). below). Note: Prior to Tux Paint 0.9.26, this tool only
offered the 'Solid' method of filling.
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -874,7 +883,7 @@ Using the import script, "tuxpaint-import"
Example: Example:
$ tuxpaint-import grandma.jpg $ tuxpaint-import grandma.jpg
grandma.jpg -> /home/username/.tuxpaint/saved/20210205180425.png grandma.jpg -> /home/username/.tuxpaint/saved/20210220203557.png
jpegtopnm: WRITING A PPM FILE jpegtopnm: WRITING A PPM FILE
The first line ("tuxpaint-import grandma.jpg") is the command to run. The first line ("tuxpaint-import grandma.jpg") is the command to run.
@ -916,7 +925,7 @@ Importing Pictures Manually
* mm = Minute (two digits, "00"-"59") * mm = Minute (two digits, "00"-"59")
* ss = Seconds (two digits, "00"-"59") * ss = Seconds (two digits, "00"-"59")
Example: "20210205180425.png", for 5 febrero 2021 at 18:04:25. Example: "20210220203557.png", for 20 febrero 2021 at 20:35:57.
Place this PNG file in your Tux Paint "saved" directory/folder. (See Place this PNG file in your Tux Paint "saved" directory/folder. (See
above.) above.)

View file

@ -28,7 +28,7 @@
</p> </p>
<p> <p>
2 febrero 2021 </p> 20 febrero 2021 </p>
</center> </center>
<hr size="2" <hr size="2"
@ -687,10 +687,15 @@
alt="" alt=""
align="right"> align="right">
<p> <p>
The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a solid color of your choice. </p> The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a color of your choice. Three fill options are offered: <ul>
<li><strong>Solid</strong> &mdash; click once to fill an area with a solid color.</li>
<li><strong>Linear</strong> &mdash; click and then drag to fill the area with color that fades away (a gradient) towards where you drag the mouse.</li>
<li><strong>Radial</strong> &mdash; click once to fill an area with a color that fades away (a gradient) radially, centered on where you clicked.</li>
</ul>
</p>
<p> <p>
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). </p> Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). Note: Prior to Tux Paint 0.9.26, this tool only offered the 'Solid' method of filling. </p>
<hr size="1"> <hr size="1">
</dd> </dd>
@ -1303,7 +1308,7 @@
<blockquote> <blockquote>
<code>$ <strong>tuxpaint-import grandma.jpg</strong><br> <code>$ <strong>tuxpaint-import grandma.jpg</strong><br>
grandma.jpg -&gt; grandma.jpg -&gt;
/home/username/.tuxpaint/saved/20210205180425.png<br> /home/username/.tuxpaint/saved/20210220203557.png<br>
jpegtopnm: WRITING A PPM FILE</code> jpegtopnm: WRITING A PPM FILE</code>
</blockquote> </blockquote>
@ -1351,7 +1356,7 @@
</ul> </ul>
<p> <p>
Example: "<code>20210205180425</code>.png", for 5 febrero 2021 at 18:04:25. </p> Example: "<code>20210220203557</code>.png", for 20 febrero 2021 at 20:35:57. </p>
<p> <p>
Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p> Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p>

View file

@ -20,28 +20,30 @@
Le choix de l'image est crucial Le choix de l'image est crucial
License Licence
If you wish to submit artwork to the Tux Paint developers for Si vous voulez présenter une oeuvre d'art aux développeurs de Tux
consideration for inclusion in the official project, or if you wish to Paint pour être incluse dans le projet officiel, ou si vous voulez
release your own copy of Tux Paint, bundled with your own graphics, faire une version de Tux Paint pour votre seul usage avec vos propre
you need an image that is compatible with the GNU General Public graphiques, vous devez avoir une image compatible avec la Licence
License used by Tux Paint. Publique Générale GNU utilisée par Tux Paint.
Images produced by the US government are Public Domain, but be aware Les images produites par le gouvernement US sont dans le domaine
that the US government sometimes uses other images on the web. Google public, mais faites attention car le gouvernement US utilise parfois
image queries including either site:gov or site:mil will supply many des images provenant du web. Une demande incluant soit site:gov soit
suitable images. (Note: the *.mil sites include non-military content, site:mil sur Google image vous donnera beaucoup d'images qui
too!) conviendront. Note : les sites *.mil peuvent avoir des contenus
non-militaires, également !)
Your own images can be placed in the Public Domain or a suitable Vos propres images peuvent être placées dans le domaine public, ou
license, such as the Creative Commons CC0 by declaring it so. (Hire a sous une licence adéquate, telle que Google image en y faisant
lawyer if you feel the need for legal advice.) référence. (Demandez à un avocat si vous pensez que vous avez besoin
d'un avis faisant autorité).
For personal use, any image you can legitimately modify and use for Pour un usage personnel, toute image que vous pouvez légalement
your own personal use should be fine. modifier et utiliser pour vous-même, devrait convenir.
Image Size and Orientation Taille de l'image et orientation
You need an image that has a useful orientation. Perspective is an You need an image that has a useful orientation. Perspective is an
enemy. Images that show an object from the corner are difficult to fit enemy. Images that show an object from the corner are difficult to fit
@ -60,13 +62,15 @@ Le choix de l'image est crucial
work with. Choose an image with an object that is over 1000 pixels work with. Choose an image with an object that is over 1000 pixels
across if you can. You can shrink this later to hide your mistakes. across if you can. You can shrink this later to hide your mistakes.
Be sure that the image is not too grainy, dim, or washed out. Vérifiez bien que l'image ne soit pas trop granuleuse, pâle ou
délavée.
Pay attention to feet and wheels. If they are buried in something, you Faites attention aux pieds et aux roues. Si elles sont camouflées par
will need to draw new ones. If only one is buried, you might be able quelque chose, vous devrez en dessiner de nouvelles. Si une seule est
to copy the other one as a replacement. camouflée, vous devriez pouvoir effectuer un copié-collé pour le
remplacement.
Prepare the image Préparez l'image
First of all, be sure to avoid re-saving the image as a JPEG. This First of all, be sure to avoid re-saving the image as a JPEG. This
causes quality loss. There is a special tool called jpegtran that lets causes quality loss. There is a special tool called jpegtran that lets

View file

@ -484,7 +484,7 @@ Fullscreen Mode Problems
Other Probelms Other Probelms
Tux Paint won't run Tux Paint ne veut pas fonctionner
If Tux Paint aborts with the message: "You're already running a If Tux Paint aborts with the message: "You're already running a
copy of Tux Paint!", this means it has been launched in the last copy of Tux Paint!", this means it has been launched in the last

View file

@ -1,6 +1,6 @@
Tux Paint Tux Paint
version 0.9.26 version 0.9.26
Installation Documentation Documentation sur l'installation
Copyright © 2002-2021 by various contributors; cf AUTHORS. Copyright © 2002-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/
@ -134,7 +134,7 @@ Compiling and Installation:
the dependencies, use these commands, in MSYS, to build, install and the dependencies, use these commands, in MSYS, to build, install and
run: run:
Prior to version 0.9.20: Avant la version 0.9.20
$ make win32 $ make win32
$ make install-win32 $ make install-win32

View file

@ -1,7 +1,7 @@
Tux Paint Tux Paint
version 0.9.26 version 0.9.26
Options Documentation Documentation sur les options
Copyright © 2002-2021 by various contributors; cf AUTHORS. Copyright © 2002-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/

View file

@ -1,6 +1,6 @@
Tux Paint Tux Paint
version 0.9.26 version 0.9.26
PNG Documentation Documentation sur PNG pour Tux Paint
Copyright © 2007-2021 by various contributors; cf AUTHORS. Copyright © 2007-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/

View file

@ -6,7 +6,7 @@
Copyright © 2002-2021 by various contributors; cf AUTHORS. Copyright © 2002-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/
2 février 2021 20 février 2021
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -39,7 +39,7 @@ What Is "Tux Paint"?
they use the program. It provides a blank canvas and a variety of they use the program. It provides a blank canvas and a variety of
drawing tools to help your child be creative. drawing tools to help your child be creative.
License: Licence :
Tux Paint is an Open Source project, Free Software released under the Tux Paint is an Open Source project, Free Software released under the
GNU General Public License (GPL). It is free, and the 'source code' GNU General Public License (GPL). It is free, and the 'source code'
@ -103,8 +103,8 @@ Launching Tux Paint
Windows Users Windows Users
[Tux Paint Icon] [Icône pour Tux Paint]
Tux Paint Tux Paint
If you installed Tux Paint on your computer using the 'Tux Paint If you installed Tux Paint on your computer using the 'Tux Paint
Installer,' it will have asked you whether you wanted a 'Start' menu Installer,' it will have asked you whether you wanted a 'Start' menu
@ -419,10 +419,19 @@ Available Tools
"Fill" Tool "Fill" Tool
The 'Fill' tool 'flood-fills' a contiguous area of your The 'Fill' tool 'flood-fills' a contiguous area of your
drawing with a solid color of your choice. drawing with a color of your choice. Three fill options are
offered:
* Solid — click once to fill an area with a solid color.
* Linear — click and then drag to fill the area with
color that fades away (a gradient) towards where you
drag the mouse.
* Radial — click once to fill an area with a color that
fades away (a gradient) radially, centered on where you
clicked.
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see
below). below). Note: Prior to Tux Paint 0.9.26, this tool only
offered the 'Solid' method of filling.
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -874,7 +883,7 @@ Using the import script, "tuxpaint-import"
Example: Example:
$ tuxpaint-import grandma.jpg $ tuxpaint-import grandma.jpg
grandma.jpg -> /home/username/.tuxpaint/saved/20210212093342.png grandma.jpg -> /home/username/.tuxpaint/saved/20210220203557.png
jpegtopnm: WRITING A PPM FILE jpegtopnm: WRITING A PPM FILE
The first line ("tuxpaint-import grandma.jpg") is the command to run. The first line ("tuxpaint-import grandma.jpg") is the command to run.
@ -916,7 +925,7 @@ Importing Pictures Manually
* mm = Minute (two digits, "00"-"59") * mm = Minute (two digits, "00"-"59")
* ss = Seconds (two digits, "00"-"59") * ss = Seconds (two digits, "00"-"59")
Example: "20210212093342.png", for 12 février 2021 at 09:33:42. Example: "20210220203557.png", for 20 février 2021 at 20:35:57.
Place this PNG file in your Tux Paint "saved" directory/folder. (See Place this PNG file in your Tux Paint "saved" directory/folder. (See
above.) above.)
@ -935,7 +944,7 @@ Importing Pictures Manually
Other documentation included with Tux Paint (found in the "docs" Other documentation included with Tux Paint (found in the "docs"
folder/directory) includes: folder/directory) includes:
* 'Magic' Tool Documentation ("magic-docs") * Documentation sur l'outil 'Magie' ("magic-docs")
Documentation for each of the currently-installed 'Magic' tools. Documentation for each of the currently-installed 'Magic' tools.
* AUTHORS.txt * AUTHORS.txt
List of authors and contributors. List of authors and contributors.

View file

@ -1,6 +1,6 @@
Tux Paint Tux Paint
version 0.9.26 version 0.9.26
Signals Documentation Documentation sur les signaux
Copyright © 2019-2021 by various contributors; cf AUTHORS. Copyright © 2019-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/

View file

@ -1,6 +1,6 @@
Tux Paint Tux Paint
version 0.9.26 version 0.9.26
SVG Documentation Documentation sur SVG
Copyright © 2007-2021 by various contributors; cf AUTHORS. Copyright © 2007-2021 by various contributors; cf AUTHORS.
http://www.tuxpaint.org/ http://www.tuxpaint.org/

View file

@ -41,24 +41,24 @@
<blockquote> <blockquote>
<h3> <h3>
License </h3> Licence </h3>
<blockquote> <blockquote>
<p> <p>
If you wish to submit artwork to the Tux Paint developers for consideration for inclusion in the official project, or if you wish to release your own copy of Tux Paint, bundled with your own graphics, you need an image that is compatible with the GNU General Public License used by Tux Paint. </p> Si vous voulez présenter une oeuvre d'art aux développeurs de Tux Paint pour être incluse dans le projet officiel, ou si vous voulez faire une version de Tux Paint pour votre seul usage avec vos propre graphiques, vous devez avoir une image compatible avec la Licence Publique Générale GNU utilisée par Tux Paint. </p>
<p> <p>
Images produced by the US government are Public Domain, but be aware that the US government sometimes uses other images on the web. <a href="http://images.google.com/">Google image</a> queries including either <code>site:gov</code> or <code>site:mil</code> will supply many suitable images. (Note: the *.mil sites include non-military content, too!) </p> Les images produites par le gouvernement US sont dans le domaine public, mais faites attention car le gouvernement US utilise parfois des images provenant du web. Une demande incluant soit <code>site:gov</code> soit <code>site:mil</code> sur <a href="http://images.google.com/">Google image</a> vous donnera beaucoup d'images qui conviendront. Note : les sites *.mil peuvent avoir des contenus non-militaires, également !) </p>
<p> <p>
Your own images can be placed in the Public Domain or a suitable license, such as the <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons CC0</a> by declaring it so. (Hire a lawyer if you feel the need for legal advice.) </p> Vos propres images peuvent être placées dans le domaine public, ou sous une licence adéquate, telle que <a href="http://images.google.com/">Google image</a> en y faisant référence. (Demandez à un avocat si vous pensez que vous avez besoin d'un avis faisant autorité). </p>
<p> <p>
For personal use, any image you can legitimately modify and use for your own personal use should be fine. </p> Pour un usage personnel, toute image que vous pouvez légalement modifier et utiliser pour vous-même, devrait convenir. </p>
</blockquote> </blockquote>
<h3> <h3>
Image Size and Orientation </h3> Taille de l'image et orientation </h3>
<blockquote> <blockquote>
<p> <p>
@ -71,15 +71,15 @@
Very large images are more forgiving of mistakes, and thus easier to work with. Choose an image with an object that is over 1000 pixels across if you can. You can shrink this later to hide your mistakes. </p> Very large images are more forgiving of mistakes, and thus easier to work with. Choose an image with an object that is over 1000 pixels across if you can. You can shrink this later to hide your mistakes. </p>
<p> <p>
Be sure that the image is not too grainy, dim, or washed out. </p> Vérifiez bien que l'image ne soit pas trop granuleuse, pâle ou délavée. </p>
<p> <p>
Pay attention to feet and wheels. If they are buried in something, you will need to draw new ones. If only one is buried, you might be able to copy the other one as a replacement. </p> Faites attention aux pieds et aux roues. Si elles sont camouflées par quelque chose, vous devrez en dessiner de nouvelles. Si une seule est camouflée, vous devriez pouvoir effectuer un copié-collé pour le remplacement. </p>
</blockquote> </blockquote>
</blockquote> </blockquote>
<h2> <h2>
Prepare the image </h2> Préparez l'image </h2>
<blockquote> <blockquote>
<p> <p>

View file

@ -586,7 +586,7 @@
<dl> <dl>
<dt> <dt>
Tux Paint won't run </dt> Tux Paint ne veut pas fonctionner </dt>
<dd> <dd>
<p> <p>

View file

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title> <title>
Tux Paint Installation Documentation </title> Documentation sur l'installation de Tux Paint </title>
<meta http-equiv="Content-Type" <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> content="text/html; charset=utf-8">
</head> </head>
@ -18,7 +18,7 @@
height="210" height="210"
alt="Tux Paint"><br> alt="Tux Paint"><br>
version 0.9.26<br/> version 0.9.26<br/>
Installation Documentation </h1> Documentation sur l'installation </h1>
<p> <p>
Copyright &copy; 2002-2021 by various contributors; cf AUTHORS.<br> Copyright &copy; 2002-2021 by various contributors; cf AUTHORS.<br>
@ -170,7 +170,7 @@
<p> <p>
After configuring the environment and building and installing all the dependencies, use these commands, in MSYS, to build, install and run: </p> After configuring the environment and building and installing all the dependencies, use these commands, in MSYS, to build, install and run: </p>
<h5>Prior to version 0.9.20:</h5> <h5>Avant la version 0.9.20</h5>
<blockquote> <blockquote>
<code> <code>
$ make win32<br/> $ make win32<br/>

View file

@ -17,7 +17,7 @@
version 0.9.26 </h1> version 0.9.26 </h1>
<h2> <h2>
Options Documentation </h2> Documentation sur les options </h2>
<p> <p>
Copyright &copy; 2002-2021 by various contributors; cf AUTHORS.<br> Copyright &copy; 2002-2021 by various contributors; cf AUTHORS.<br>

View file

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title> <title>
Tux Paint PNG Documentation </title> Documentation sur PNG pour Tux Paint </title>
<meta http-equiv="Content-Type" <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> content="text/html; charset=utf-8">
</head> </head>
@ -18,7 +18,7 @@
height="210" height="210"
alt="Tux Paint"><br> alt="Tux Paint"><br>
version 0.9.26<br/> version 0.9.26<br/>
PNG Documentation </h1> Documentation sur PNG pour Tux Paint </h1>
<p> <p>
Copyright &copy; 2007-2021 by various contributors; cf AUTHORS.<br> Copyright &copy; 2007-2021 by various contributors; cf AUTHORS.<br>

View file

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title> <title>
Tux Paint Documentation ("README") </title> Documentation sur Tux Paint ("README") </title>
<meta http-equiv="Content-Type" <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> content="text/html; charset=utf-8">
</head> </head>
@ -28,7 +28,7 @@
</p> </p>
<p> <p>
2 février 2021 </p> 20 février 2021 </p>
</center> </center>
<hr size="2" <hr size="2"
@ -118,7 +118,7 @@
</blockquote> </blockquote>
<h2> <h2>
License: </h2> Licence : </h2>
<blockquote> <blockquote>
<p> <p>
@ -215,7 +215,7 @@
<img src="../../html/images/icon-win32.png" <img src="../../html/images/icon-win32.png"
width="32" width="32"
height="32" height="32"
alt="[Tux Paint Icon]"><br> alt="[Icône pour Tux Paint]"><br>
Tux Paint Tux Paint
</td> </td>
</tr> </tr>
@ -687,10 +687,15 @@
alt="" alt=""
align="right"> align="right">
<p> <p>
The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a solid color of your choice. </p> The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a color of your choice. Three fill options are offered: <ul>
<li><strong>Solid</strong> &mdash; click once to fill an area with a solid color.</li>
<li><strong>Linear</strong> &mdash; click and then drag to fill the area with color that fades away (a gradient) towards where you drag the mouse.</li>
<li><strong>Radial</strong> &mdash; click once to fill an area with a color that fades away (a gradient) radially, centered on where you clicked.</li>
</ul>
</p>
<p> <p>
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). </p> Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). Note: Prior to Tux Paint 0.9.26, this tool only offered the 'Solid' method of filling. </p>
<hr size="1"> <hr size="1">
</dd> </dd>
@ -1303,7 +1308,7 @@
<blockquote> <blockquote>
<code>$ <strong>tuxpaint-import grandma.jpg</strong><br> <code>$ <strong>tuxpaint-import grandma.jpg</strong><br>
grandma.jpg -&gt; grandma.jpg -&gt;
/home/username/.tuxpaint/saved/20210212093342.png<br> /home/username/.tuxpaint/saved/20210220203557.png<br>
jpegtopnm: WRITING A PPM FILE</code> jpegtopnm: WRITING A PPM FILE</code>
</blockquote> </blockquote>
@ -1351,7 +1356,7 @@
</ul> </ul>
<p> <p>
Example: "<code>20210212093342</code>.png", for 12 février 2021 at 09:33:42. </p> Example: "<code>20210220203557</code>.png", for 20 février 2021 at 20:35:57. </p>
<p> <p>
Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p> Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p>
@ -1377,7 +1382,7 @@
<blockquote> <blockquote>
Other documentation included with Tux Paint (found in the "<code>docs</code>" folder/directory) includes: <ul> Other documentation included with Tux Paint (found in the "<code>docs</code>" folder/directory) includes: <ul>
<li> <li>
<a href="../magic-docs/html/index.html">'Magic' Tool Documentation ("<code>magic-docs</code>")</a><br> <a href="../magic-docs/html/index.html">Documentation sur l'outil 'Magie' ("<code>magic-docs</code>")</a><br>
Documentation for each of the currently-installed 'Magic' tools. </li> Documentation for each of the currently-installed 'Magic' tools. </li>
<li> <li>

View file

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title> <title>
Tux Paint Signals Documentation </title> Documentation sur les signaux pour Tux Paint </title>
<meta http-equiv="Content-Type" <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> content="text/html; charset=utf-8">
</head> </head>
@ -18,7 +18,7 @@
height="210" height="210"
alt="Tux Paint"><br> alt="Tux Paint"><br>
version 0.9.26<br/> version 0.9.26<br/>
Signals Documentation </h1> Documentation sur les signaux </h1>
<p> <p>
Copyright &copy; 2019-2021 by various contributors; cf AUTHORS.<br> Copyright &copy; 2019-2021 by various contributors; cf AUTHORS.<br>

View file

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title> <title>
Tux Paint SVG Documentation </title> Documentation sur SVG pour Tux Paint </title>
<meta http-equiv="Content-Type" <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> content="text/html; charset=utf-8">
</head> </head>
@ -18,7 +18,7 @@
height="210" height="210"
alt="Tux Paint"><br> alt="Tux Paint"><br>
version 0.9.26<br/> version 0.9.26<br/>
SVG Documentation </h1> Documentation sur SVG </h1>
<p> <p>
Copyright &copy; 2007-2021 by various contributors; cf AUTHORS.<br> Copyright &copy; 2007-2021 by various contributors; cf AUTHORS.<br>

View file

@ -6,7 +6,7 @@
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES). Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
http://www.tuxpaint.org/ http://www.tuxpaint.org/
2 Febreiro 2021 20 Febreiro 2021
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -420,10 +420,19 @@ Ferramentas dispoñíbeis
Ferramenta «Encher» Ferramenta «Encher»
The 'Fill' tool 'flood-fills' a contiguous area of your The 'Fill' tool 'flood-fills' a contiguous area of your
drawing with a solid color of your choice. drawing with a color of your choice. Three fill options are
offered:
* Solid — click once to fill an area with a solid color.
* Linear — click and then drag to fill the area with
color that fades away (a gradient) towards where you
drag the mouse.
* Radial — click once to fill an area with a color that
fades away (a gradient) radially, centered on where you
clicked.
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see
below). below). Note: Prior to Tux Paint 0.9.26, this tool only
offered the 'Solid' method of filling.
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -877,7 +886,7 @@ Using the import script, "tuxpaint-import"
Exemplo: Exemplo:
$ tuxpaint-import avoa.jpg $ tuxpaint-import avoa.jpg
avoa.jpg -> /home/username/.tuxpaint/saved/20210210232156.png avoa.jpg -> /home/username/.tuxpaint/saved/20210220203557.png
jpegtopnm: WRITING A PPM FILE jpegtopnm: WRITING A PPM FILE
The first line ("tuxpaint-import avoa.jpg") is the command to run. The The first line ("tuxpaint-import avoa.jpg") is the command to run. The
@ -918,7 +927,7 @@ Importing Pictures Manually
* mm = Minuto (dous díxitos, «00»-«59») * mm = Minuto (dous díxitos, «00»-«59»)
* ss = Segundo (dous díxitos, «00»-«59») * ss = Segundo (dous díxitos, «00»-«59»)
Example: "20210210232156.png", for 10 Febreiro 2021 at 23:21:56. Example: "20210220203557.png", for 20 Febreiro 2021 at 20:35:57.
Place this PNG file in your Tux Paint "saved" directory/folder. (See Place this PNG file in your Tux Paint "saved" directory/folder. (See
above.) above.)

View file

@ -28,7 +28,7 @@
</p> </p>
<p> <p>
2 Febreiro 2021 </p> 20 Febreiro 2021 </p>
</center> </center>
<hr size="2" <hr size="2"
@ -687,10 +687,15 @@
alt="" alt=""
align="right"> align="right">
<p> <p>
The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a solid color of your choice. </p> The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a color of your choice. Three fill options are offered: <ul>
<li><strong>Solid</strong> &mdash; click once to fill an area with a solid color.</li>
<li><strong>Linear</strong> &mdash; click and then drag to fill the area with color that fades away (a gradient) towards where you drag the mouse.</li>
<li><strong>Radial</strong> &mdash; click once to fill an area with a color that fades away (a gradient) radially, centered on where you clicked.</li>
</ul>
</p>
<p> <p>
Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). </p> Note: Prior to Tux Paint 0.9.24, this was a Magic tool (see below). Note: Prior to Tux Paint 0.9.26, this tool only offered the 'Solid' method of filling. </p>
<hr size="1"> <hr size="1">
</dd> </dd>
@ -1303,7 +1308,7 @@
<blockquote> <blockquote>
<code>$ <strong>tuxpaint-import avoa.jpg</strong><br> <code>$ <strong>tuxpaint-import avoa.jpg</strong><br>
avoa.jpg -&gt; avoa.jpg -&gt;
/home/username/.tuxpaint/saved/20210210232156.png<br> /home/username/.tuxpaint/saved/20210220203557.png<br>
jpegtopnm: WRITING A PPM FILE</code> jpegtopnm: WRITING A PPM FILE</code>
</blockquote> </blockquote>
@ -1351,7 +1356,7 @@
</ul> </ul>
<p> <p>
Example: "<code>20210210232156</code>.png", for 10 Febreiro 2021 at 23:21:56. </p> Example: "<code>20210220203557</code>.png", for 20 Febreiro 2021 at 20:35:57. </p>
<p> <p>
Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p> Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p>

View file

@ -3,7 +3,7 @@
Copyright 2007-2018 by various contributors; see AUTHORS.txt Copyright 2007-2018 by various contributors; see AUTHORS.txt
http://www.tuxpaint.org/ http://www.tuxpaint.org/
July 5, 2007 - August 30, 2018 July 5, 2007 - February 20, 2021
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -392,6 +392,13 @@ Interfaces
RGB values to a Uint32 'pixel' value appropriate to the RGB values to a Uint32 'pixel' value appropriate to the
destination surface.) destination surface.)
* Uint32 xorpixel(SDL_Surface * surf, int x, int y)
Applies an XOR (exclusive-or) operation to the pixel at
coordinates (x,y) of the SDL_Surface. Applying an XOR again at
the same position will return the pixel to the original value.
Useful for displaying temporary 'rubberband' lines, outlines,
and crosshairs, while utilizing a Magic Tool.
* SDL_Surface * scale(SDL_Surface * surf, int w, int h, * SDL_Surface * scale(SDL_Surface * surf, int w, int h,
int keep_aspect) int keep_aspect)
This accepts an existing SDL surface and creates a new one This accepts an existing SDL surface and creates a new one
@ -648,12 +655,12 @@ Compiling
A snippet from a Makefile to compile a Tux Paint "Magic" tool plugin A snippet from a Makefile to compile a Tux Paint "Magic" tool plugin
might look like this: might look like this:
+----------------------------------------------------------------+ +------------------------------------------------------+
| CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags) | | CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags) |
| | | |
| my_plugin.so: my_plugin.c | | my_plugin.so: my_plugin.c |
| gcc -shared $(CFLAGS) -o my_plugin.so my_plugin.c | | gcc -shared $(CFLAGS) -o my_plugin.so my_plugin.c |
+----------------------------------------------------------------+ +------------------------------------------------------+
The first line sets up Makefile variable ("CFLAGS") that contains The first line sets up Makefile variable ("CFLAGS") that contains
flags for the compiler. "-Wall" asks for all compiler warnings to be flags for the compiler. "-Wall" asks for all compiler warnings to be
@ -683,15 +690,15 @@ Compiling
An even more generalized Makefile might look like this: An even more generalized Makefile might look like this:
+----------------------------------------------------------------+ +----------------------------------------------------+
| CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags) | | CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags) |
| | | |
| my_plugin_1.so: my_plugin_1.c | | my_plugin_1.so: my_plugin_1.c |
| $(CC) -shared $(CFLAGS) -o $@ $< | | $(CC) -shared $(CFLAGS) -o $@ $< |
| | | |
| my_plugin_2.so: my_plugin_2.c | | my_plugin_2.so: my_plugin_2.c |
| $(CC) -shared $(CFLAGS) -o $@ $< | | $(CC) -shared $(CFLAGS) -o $@ $< |
+----------------------------------------------------------------+ +----------------------------------------------------+
As before, there are lines that define the command "make" should run As before, there are lines that define the command "make" should run
when it determines that it needs to (re)compile the ".so" file(s). when it determines that it needs to (re)compile the ".so" file(s).
@ -799,35 +806,35 @@ Installing
A snippet from a more generalized Makefile might look like this: A snippet from a more generalized Makefile might look like this:
+----------------------------------------------------------------+ +------------------------------------------------------------+
| PLUGINPREFIX=$(shell tp-magic-config --pluginprefix) | | PLUGINPREFIX=$(shell tp-magic-config --pluginprefix) |
| PLUGINDOCPREFIX=$(shell tp-magic-config --plugindocprefix) | | PLUGINDOCPREFIX=$(shell tp-magic-config --plugindocprefix) |
| DATAPREFIX=$(shell tp-magic-config --dataprefix) | | DATAPREFIX=$(shell tp-magic-config --dataprefix) |
| | | |
| install: | | install: |
| # | | # |
| # Install plugin | | # Install plugin |
| mkdir -p $(PLUGINPREFIX) | | mkdir -p $(PLUGINPREFIX) |
| cp *.so $(PLUGINPREFIX)/ | | cp *.so $(PLUGINPREFIX)/ |
| chmod 644 $(PLUGINPREFIX)/*.so | | chmod 644 $(PLUGINPREFIX)/*.so |
| # | | # |
| # Install icons | | # Install icons |
| mkdir -p $(DATAPREFIX)/images/magic | | mkdir -p $(DATAPREFIX)/images/magic |
| cp icons/*.png $(DATAPREFIX)/images/magic/ | | cp icons/*.png $(DATAPREFIX)/images/magic/ |
| chmod 644 $(DATAPREFIX)/images/magic/*.png | | chmod 644 $(DATAPREFIX)/images/magic/*.png |
| # | | # |
| # Install sound effects | | # Install sound effects |
| mkdir -p $(DATAPREFIX)/sounds/magic | | mkdir -p $(DATAPREFIX)/sounds/magic |
| cp sounds/*.ogg $(DATAPREFIX)/sounds/magic/ | | cp sounds/*.ogg $(DATAPREFIX)/sounds/magic/ |
| chmod 644 $(DATAPREFIX)/sounds/magic/*.ogg | | chmod 644 $(DATAPREFIX)/sounds/magic/*.ogg |
| # | | # |
| # Install docs | | # Install docs |
| mkdir -p $(PLUGINDOCPREFIX)/html | | mkdir -p $(PLUGINDOCPREFIX)/html |
| cp docs/*.html $(PLUGINDOCPREFIX)/html/ | | cp docs/*.html $(PLUGINDOCPREFIX)/html/ |
| cp docs/*.txt $(PLUGINDOCPREFIX)/ | | cp docs/*.txt $(PLUGINDOCPREFIX)/ |
| chmod 644 $(PLUGINDOCPREFIX)/html/*.html | | chmod 644 $(PLUGINDOCPREFIX)/html/*.html |
| chmod 644 $(PLUGINDOCPREFIX)/*.txt | | chmod 644 $(PLUGINDOCPREFIX)/*.txt |
+----------------------------------------------------------------+ +------------------------------------------------------------+
The first three lines set up Makefile variables that contain the The first three lines set up Makefile variables that contain the
paths returned by the "tp-magic-config" command-line tool. (The paths returned by the "tp-magic-config" command-line tool. (The

View file

@ -12,7 +12,7 @@ alink="#FF00FF">
<p>Copyright 2007-2018 by various contributors; see AUTHORS.txt<br/> <p>Copyright 2007-2018 by various contributors; see AUTHORS.txt<br/>
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p> <a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
<p>July 5, 2007 - August 30, 2018</p> <p>July 5, 2007 - February 20, 2021</p>
</center> </center>
<hr size=2 noshade> <hr size=2 noshade>
@ -497,6 +497,15 @@ plugin's functions.
surface.)<br> surface.)<br>
<br> <br>
<li><code><b>Uint32 xorpixel(SDL_Surface&nbsp;*&nbsp;surf,
int&nbsp;x, int&nbsp;y)</b></code><br>
Applies an XOR (exclusive-or) operation to the pixel at coordinates
(x,y) of the SDL_Surface. Applying an XOR again at the same position
will return the pixel to the original value. Useful for displaying
temporary 'rubberband' lines, outlines, and crosshairs, while
utilizing a Magic Tool.<br>
<br>
<li><code><b>SDL_Surface * scale(SDL_Surface&nbsp;*&nbsp;surf, <li><code><b>SDL_Surface * scale(SDL_Surface&nbsp;*&nbsp;surf,
int&nbsp;w, int&nbsp;h, int&nbsp;keep_aspect)</b></code><br> int&nbsp;w, int&nbsp;h, int&nbsp;keep_aspect)</b></code><br>
This accepts an existing SDL surface and creates a new one scaled to an This accepts an existing SDL surface and creates a new one scaled to an

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,6 @@
Tux Paint "Magic" Tool: Checkerboard
By Bill Kendrick <bill@newbreedsoftware.com>
This covers the entire canvas with a checkboard pattern using the current
color. Drag to change the size of the squares.

View file

@ -0,0 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Tux Paint "Magic" Tool: Checkerboard</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Tux Paint "Magic" Tool: Checkerboard</h1>
<h2 align="center">By Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h2>
<p>This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.</p>
</body></html>

View file

@ -11,6 +11,7 @@
<li><a href="calligraphy.html">Calligraphy</a></li> <li><a href="calligraphy.html">Calligraphy</a></li>
<li><a href="cartoon.html">Cartoon</a></li> <li><a href="cartoon.html">Cartoon</a></li>
<li><a href="chalk.html">Chalk</a></li> <li><a href="chalk.html">Chalk</a></li>
<li><a href="checkerboard.html">Checkerboard</a></li>
<li><a href="clone.html">Clone</a></li> <li><a href="clone.html">Clone</a></li>
<li><a href="color_and_white.html">Color and White</a></li> <li><a href="color_and_white.html">Color and White</a></li>
<li><a href="color_shift.html">Color Shift</a></li> <li><a href="color_shift.html">Color Shift</a></li>

View file

@ -7,6 +7,7 @@
* Calligraphy * Calligraphy
* Cartoon * Cartoon
* Chalk * Chalk
* Checkerboard
* Clone * Clone
* Color and White * Color and White
* Color Shift * Color Shift

View file

@ -5,7 +5,7 @@ individual HTML files for each of them, and an index.html that links to
them all. */ them all. */
/* Bill Kendrick <bill@newbreedsoftware.com> */ /* Bill Kendrick <bill@newbreedsoftware.com> */
/* Oct. 8, 2009 - January 10, 2020 */ /* Oct. 8, 2009 - February 15, 2020 */
/* Authors of the Magic tools: */ /* Authors of the Magic tools: */
@ -80,6 +80,10 @@ $tools = array(
'desc'=>'This makes parts of the picture (where you move the mouse) look like a chalk drawing.', 'desc'=>'This makes parts of the picture (where you move the mouse) look like a chalk drawing.',
'author'=>$AUTHOR_KENDRICK), 'author'=>$AUTHOR_KENDRICK),
array('name'=>'Checkerboard',
'desc'=>'This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.',
'author'=>$AUTHOR_KENDRICK),
array('name'=>'Clone', array('name'=>'Clone',
'desc'=>'Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.', 'desc'=>'Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.',
'author'=>$AUTHOR_KENDRICK), 'author'=>$AUTHOR_KENDRICK),

Binary file not shown.

BIN
magic/sounds/halftone.ogg Normal file

Binary file not shown.

Binary file not shown.

View file

@ -1,13 +1,12 @@
/* /*
blind.c blind.c
//
BLIND Magic Tools Plugin BLIND Magic Tools Plugin
Tux Paint - A simple drawing program for children. Tux Paint - A simple drawing program for children.
By Pere Pujal Carabantes By Pere Pujal Carabantes
Copyright (c) 2002-2009 by Bill Kendrick and others; see AUTHORS.txt Copyright (c) 2009-2021
bill@newbreedsoftware.com
http://www.tuxpaint.org/ http://www.tuxpaint.org/
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
@ -275,20 +274,20 @@ void blind_click(magic_api * api, int which, int mode ATTRIBUTE_UNUSED,
{ {
if (x < y) if (x < y)
blind_side = 1; /* left */ blind_side = BLIND_SIDE_LEFT;
else if (canvas->w - x < y) else if (canvas->w - x < y)
blind_side = 3; /* right */ blind_side = BLIND_SIDE_RIGHT;
else else
blind_side = 0; /* top */ blind_side = BLIND_SIDE_TOP;
} }
else else
{ {
if (x < canvas->h - y) if (x < canvas->h - y)
blind_side = 1; /* left */ blind_side = BLIND_SIDE_LEFT;
else if (canvas->w - x < canvas->h - y) else if (canvas->w - x < canvas->h - y)
blind_side = 3; /* right */ blind_side = BLIND_SIDE_RIGHT;
else else
blind_side = 2; /* bottom */ blind_side = BLIND_SIDE_BOTTOM;
} }
blind_drag(api, which, canvas, last, x, y, x, y, update_rect); blind_drag(api, which, canvas, last, x, y, x, y, update_rect);

245
magic/src/checkerboard.c Normal file
View file

@ -0,0 +1,245 @@
/*
checkeroard.c
"Checkerboard" Magic Tools Plugin
Tux Paint - A simple drawing program for children.
By Bill Kendrick
Based on `blind.c` by Pere Pujal Carabantes
Copyright (c) 2021
http://www.tuxpaint.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt)
*/
#include "tp_magic_api.h"
#include "SDL_image.h"
#include "SDL_mixer.h"
static Uint8 checkerboard_r, checkerboard_g, checkerboard_b;
int checkerboard_start_x, checkerboard_start_y;
Mix_Chunk *checkerboard_snd;
// Prototypes
Uint32 checkerboard_api_version(void);
void checkerboard_set_color(magic_api * api, Uint8 r, Uint8 g, Uint8 b);
int checkerboard_init(magic_api * api);
int checkerboard_get_tool_count(magic_api * api);
SDL_Surface *checkerboard_get_icon(magic_api * api, int which);
char *checkerboard_get_name(magic_api * api, int which);
char *checkerboard_get_description(magic_api * api, int which, int mode);
int checkerboard_requires_colors(magic_api * api, int which);
void checkerboard_release(magic_api * api, int which,
SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y, SDL_Rect * update_rect);
void checkerboard_shutdown(magic_api * api);
void checkerboard_paint_checkerboard(void *ptr_to_api, int which_tool, SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y);
void checkerboard_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int ox, int oy, int x, int y, SDL_Rect * update_rect);
void checkerboard_click(magic_api * api, int which, int mode,
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect);
void checkerboard_switchin(magic_api * api, int which, int mode, SDL_Surface * canvas);
void checkerboard_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas);
int checkerboard_modes(magic_api * api, int which);
// Housekeeping functions
Uint32 checkerboard_api_version(void)
{
return (TP_MAGIC_API_VERSION);
}
void checkerboard_set_color(magic_api * api ATTRIBUTE_UNUSED, Uint8 r, Uint8 g, Uint8 b) //get the colors from API and store it in structure
{
checkerboard_r = r;
checkerboard_g = g;
checkerboard_b = b;
}
int checkerboard_init(magic_api * api)
{
char fname[1024];
snprintf(fname, sizeof(fname), "%s/sounds/magic/checkerboard.ogg", api->data_directory);
checkerboard_snd = Mix_LoadWAV(fname);
return (1);
}
int checkerboard_get_tool_count(magic_api * api ATTRIBUTE_UNUSED)
{
return 1;
}
SDL_Surface *checkerboard_get_icon(magic_api * api, int which ATTRIBUTE_UNUSED)
{
char fname[1024];
snprintf(fname, sizeof(fname), "%s/images/magic/checkerboard.png", api->data_directory);
return (IMG_Load(fname));
}
char *checkerboard_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
{
return strdup(gettext_noop("Checkerboard"));
}
char *checkerboard_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
{
return
strdup(gettext_noop
("Click and drag to fill the canvas with a checkerboard pattern."));
}
int checkerboard_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
{
return 1;
}
void checkerboard_release(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED,
SDL_Surface * canvas ATTRIBUTE_UNUSED, SDL_Surface * snapshot ATTRIBUTE_UNUSED,
int x ATTRIBUTE_UNUSED, int y ATTRIBUTE_UNUSED, SDL_Rect * update_rect ATTRIBUTE_UNUSED)
{
}
void checkerboard_shutdown(magic_api * api ATTRIBUTE_UNUSED)
{
Mix_FreeChunk(checkerboard_snd);
}
// Interactivity functions
void checkerboard_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * snapshot,
int ox ATTRIBUTE_UNUSED, int oy ATTRIBUTE_UNUSED,
int x, int y, SDL_Rect * update_rect)
{
int sz, xx, yy;
Uint8 draw_start, draw_row, draw_cell;
Uint32 colr;
SDL_Rect dest;
SDL_BlitSurface(snapshot, NULL, canvas, NULL);
sz = max(10, max(abs(x - checkerboard_start_x), abs(y - checkerboard_start_y)));
colr = SDL_MapRGB(canvas->format, checkerboard_r, checkerboard_g, checkerboard_b);
draw_start = 1;
if (x < checkerboard_start_x)
draw_start = !draw_start;
if (y < checkerboard_start_y)
draw_start = !draw_start;
/* From the mouse Y position down... */
draw_row = draw_start;
for (yy = checkerboard_start_y; yy <= canvas->h; yy += sz) {
/* From the mouse X position right... */
draw_cell = draw_row;
for (xx = checkerboard_start_x; xx <= canvas->w; xx += sz) {
if (draw_cell) {
dest.x = xx;
dest.y = yy;
dest.w = sz;
dest.h = sz;
SDL_FillRect(canvas, &dest, colr);
}
draw_cell = !draw_cell;
}
/* From the mouse X position left... */
draw_cell = !draw_row;
for (xx = checkerboard_start_x - sz; xx > -sz; xx -= sz) {
if (draw_cell) {
dest.x = xx;
dest.y = yy;
dest.w = sz;
dest.h = sz;
SDL_FillRect(canvas, &dest, colr);
}
draw_cell = !draw_cell;
}
draw_row = !draw_row;
}
/* From the mouse Y position up... */
draw_row = !draw_start;
for (yy = checkerboard_start_y - sz; yy > -sz; yy -= sz) {
/* From the mouse X position right... */
draw_cell = draw_row;
for (xx = checkerboard_start_x; xx <= canvas->w; xx += sz) {
if (draw_cell) {
dest.x = xx;
dest.y = yy;
dest.w = sz;
dest.h = sz;
SDL_FillRect(canvas, &dest, colr);
}
draw_cell = !draw_cell;
}
/* From the mouse X position left... */
draw_cell = !draw_row;
for (xx = checkerboard_start_x - sz; xx > -sz; xx -= sz) {
if (draw_cell) {
dest.x = xx;
dest.y = yy;
dest.w = sz;
dest.h = sz;
SDL_FillRect(canvas, &dest, colr);
}
draw_cell = !draw_cell;
}
draw_row = !draw_row;
}
/* Always applies to the whole screen! */
update_rect->x = 0;
update_rect->y = 0;
update_rect->w = canvas->w;
update_rect->h = canvas->h;
api->playsound(checkerboard_snd, 128, 255);
}
void checkerboard_click(magic_api * api, int which, int mode,
SDL_Surface * canvas, SDL_Surface * last,
int x, int y,
SDL_Rect * update_rect)
{
checkerboard_start_x = x;
checkerboard_start_y = y;
checkerboard_drag(api, which, canvas, last, x, y, x, y, update_rect);
}
void checkerboard_switchin(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED,
SDL_Surface * canvas ATTRIBUTE_UNUSED)
{
}
void checkerboard_switchout(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED,
SDL_Surface * canvas ATTRIBUTE_UNUSED)
{
}
int checkerboard_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
{
return (MODE_PAINT);
}

View file

@ -23,7 +23,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
Last updated: February 10, 2021 Last updated: February 20, 2021
$Id$ $Id$
*/ */
@ -59,6 +59,8 @@ static Mix_Chunk *clone_start_snd, *clone_snd;
int clone_state; int clone_state;
int clone_src_x, clone_src_y; int clone_src_x, clone_src_y;
int clone_drag_start_x, clone_drag_start_y; int clone_drag_start_x, clone_drag_start_y;
SDL_Surface * clone_last;
int clone_crosshair_visible;
/* Local function prototype: */ /* Local function prototype: */
@ -71,6 +73,9 @@ char *clone_get_name(magic_api * api, int which);
char *clone_get_description(magic_api * api, int which, int mode); char *clone_get_description(magic_api * api, int which, int mode);
void clone_drag(magic_api * api, int which, SDL_Surface * canvas, void clone_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect); SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect);
void clone_doit(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect,
int crosshairs);
void clone_click(magic_api * api, int which, int mode, void clone_click(magic_api * api, int which, int mode,
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect); SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect);
void clone_release(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect); void clone_release(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect);
@ -80,6 +85,8 @@ int clone_requires_colors(magic_api * api, int which);
void clone_switchin(magic_api * api, int which, int mode, SDL_Surface * canvas); void clone_switchin(magic_api * api, int which, int mode, SDL_Surface * canvas);
void clone_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas); void clone_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas);
int clone_modes(magic_api * api, int which); int clone_modes(magic_api * api, int which);
void clone_crosshairs(magic_api * api, SDL_Surface * canvas, int x, int y);
void done_cloning(magic_api * api, SDL_Surface * canvas, SDL_Rect * update_rect);
// No setup required: // No setup required:
int clone_init(magic_api * api) int clone_init(magic_api * api)
@ -93,6 +100,7 @@ int clone_init(magic_api * api)
clone_snd = Mix_LoadWAV(fname); clone_snd = Mix_LoadWAV(fname);
clone_state = CLONE_READY_TO_START; clone_state = CLONE_READY_TO_START;
clone_crosshair_visible = 0;
return (1); return (1);
} }
@ -145,15 +153,18 @@ static void do_clone(void *ptr, int which ATTRIBUTE_UNUSED, SDL_Surface * canvas
srcx = clone_src_x + (x - clone_drag_start_x); srcx = clone_src_x + (x - clone_drag_start_x);
srcy = clone_src_y + (y - clone_drag_start_y); srcy = clone_src_y + (y - clone_drag_start_y);
for (yy = -16; yy < 16; yy++) if (!api->touched(x, y))
{ {
for (xx = -16; xx < 16; xx++) for (yy = -16; yy < 16; yy++)
{ {
if (api->in_circle(xx, yy, 16)) for (xx = -16; xx < 16; xx++)
{ {
SDL_GetRGB(api->getpixel(last, srcx + xx, srcy + yy), last->format, &r, &g, &b); if (api->in_circle(xx, yy, 16))
pixel = SDL_MapRGB(canvas->format, r, g, b); {
api->putpixel(canvas, x + xx, y + yy, pixel); SDL_GetRGB(api->getpixel(last, srcx + xx, srcy + yy), last->format, &r, &g, &b);
pixel = SDL_MapRGB(canvas->format, r, g, b);
api->putpixel(canvas, x + xx, y + yy, pixel);
}
} }
} }
} }
@ -161,7 +172,21 @@ static void do_clone(void *ptr, int which ATTRIBUTE_UNUSED, SDL_Surface * canvas
// Affect the canvas on drag: // Affect the canvas on drag:
void clone_drag(magic_api * api, int which, SDL_Surface * canvas, void clone_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect) SDL_Surface * last ATTRIBUTE_UNUSED, int ox, int oy, int x, int y, SDL_Rect * update_rect)
{
/* Step 3 - Actively cloning (moving the mouse) */
/* Erase crosshairs at old source position */
clone_crosshairs(api, canvas, clone_src_x, clone_src_y);
clone_crosshair_visible = 0;
/* Do the cloning (and draw crosshairs at new source position) */
clone_doit(api, which, canvas, clone_last, ox, oy, x, y, update_rect, 1);
}
void clone_doit(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * last, int ox, int oy, int x, int y, SDL_Rect * update_rect,
int crosshairs)
{ {
if (clone_state != CLONE_CLONING) if (clone_state != CLONE_CLONING)
return; return;
@ -170,8 +195,8 @@ void clone_drag(magic_api * api, int which, SDL_Surface * canvas,
clone_drag_start_y = oy; clone_drag_start_y = oy;
api->line((void *)api, which, canvas, last, ox, oy, x, y, 1, do_clone); api->line((void *)api, which, canvas, last, ox, oy, x, y, 1, do_clone);
// do_clone((void *)api, which, canvas, last, x, y);
/* Move source position relative to mouse motion */
clone_src_x += (x - ox); clone_src_x += (x - ox);
clone_src_y += (y - oy); clone_src_y += (y - oy);
@ -190,10 +215,20 @@ void clone_drag(magic_api * api, int which, SDL_Surface * canvas,
y = tmp; y = tmp;
} }
update_rect->x = x - 64; if (crosshairs) {
update_rect->y = y - 64; clone_crosshairs(api, canvas, clone_src_x, clone_src_y);
update_rect->w = (ox + 128) - update_rect->x; /* FIXME be more clever */
update_rect->h = (oy + 128) - update_rect->h; update_rect->x = 0;
update_rect->y = 0;
update_rect->w = canvas->w;
update_rect->h = canvas->h;
clone_crosshair_visible = 1;
} else {
update_rect->x = x - 64;
update_rect->y = y - 64;
update_rect->w = (ox + 128) - update_rect->x;
update_rect->h = (oy + 128) - update_rect->h;
}
api->playsound(clone_snd, (x * 255) / canvas->w, 255); api->playsound(clone_snd, (x * 255) / canvas->w, 255);
} }
@ -203,28 +238,67 @@ void clone_click(magic_api * api, int which, int mode ATTRIBUTE_UNUSED,
SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect) SDL_Surface * canvas, SDL_Surface * last, int x, int y, SDL_Rect * update_rect)
{ {
if (clone_state == CLONE_READY_TO_START) { if (clone_state == CLONE_READY_TO_START) {
/* Step 1 - Picking a source for the clone */
clone_src_x = x; clone_src_x = x;
clone_src_y = y; clone_src_y = y;
clone_state = CLONE_STARTING; clone_state = CLONE_STARTING;
api->playsound(clone_start_snd, (x * 255) / canvas->w, 255); api->playsound(clone_start_snd, (x * 255) / canvas->w, 255);
SDL_BlitSurface(last, NULL, clone_last, NULL);
/* Draw crosshairs at starting source position */
clone_crosshairs(api, canvas, clone_src_x, clone_src_y);
clone_crosshair_visible = 1;
update_rect->x = x - 15;
update_rect->y = y - 15;
update_rect->w = 32;
update_rect->h = 32;
} else if (clone_state == CLONE_CLONING) { } else if (clone_state == CLONE_CLONING) {
clone_drag(api, which, canvas, last, x, y, x, y, update_rect); /* Step 2 - Starting a clone (hopefully holding mouse down here) */
clone_doit(api, which, canvas, clone_last, x, y, x, y, update_rect, 0);
} }
} }
void clone_release(magic_api * api, int which ATTRIBUTE_UNUSED, void clone_release(magic_api * api, int which ATTRIBUTE_UNUSED,
SDL_Surface * canvas ATTRIBUTE_UNUSED, SDL_Surface * last ATTRIBUTE_UNUSED, SDL_Surface * canvas, SDL_Surface * last ATTRIBUTE_UNUSED,
int x ATTRIBUTE_UNUSED, int y ATTRIBUTE_UNUSED, SDL_Rect * update_rect ATTRIBUTE_UNUSED) int x ATTRIBUTE_UNUSED, int y ATTRIBUTE_UNUSED, SDL_Rect * update_rect)
{ {
if (clone_state == CLONE_STARTING) { if (clone_state == CLONE_STARTING) {
/* Release of the initial click (to pick initial source position);
now ready for second click (to begin cloning) */
clone_state = CLONE_CLONING; clone_state = CLONE_CLONING;
} else { } else {
clone_state = CLONE_READY_TO_START; done_cloning(api, canvas, update_rect);
api->stopsound(); }
}
void done_cloning(magic_api * api, SDL_Surface * canvas, SDL_Rect * update_rect) {
/* Done cloning! */
/* Erase crosshairs from source position, now that we're all done */
if (clone_crosshair_visible)
{
clone_crosshairs(api, canvas, clone_src_x, clone_src_y);
update_rect->x = clone_src_x - 15;
update_rect->y = clone_src_y - 15;
update_rect->w = 32;
update_rect->h = 32;
clone_crosshair_visible = 0;
}
clone_state = CLONE_READY_TO_START;
api->stopsound();
}
void clone_crosshairs(magic_api * api, SDL_Surface * canvas, int x, int y) {
int i;
for (i = -15; i < 16; i++) {
api->xorpixel(canvas, x + i, y);
api->xorpixel(canvas, x, y + i);
} }
} }
// No setup happened:
void clone_shutdown(magic_api * api ATTRIBUTE_UNUSED) void clone_shutdown(magic_api * api ATTRIBUTE_UNUSED)
{ {
if (clone_snd != NULL) if (clone_snd != NULL)
@ -233,12 +307,10 @@ void clone_shutdown(magic_api * api ATTRIBUTE_UNUSED)
Mix_FreeChunk(clone_start_snd); Mix_FreeChunk(clone_start_snd);
} }
// Record the color from Tux Paint:
void clone_set_color(magic_api * api ATTRIBUTE_UNUSED, Uint8 ATTRIBUTE_UNUSED r, Uint8 ATTRIBUTE_UNUSED g, Uint8 ATTRIBUTE_UNUSED b) void clone_set_color(magic_api * api ATTRIBUTE_UNUSED, Uint8 ATTRIBUTE_UNUSED r, Uint8 ATTRIBUTE_UNUSED g, Uint8 ATTRIBUTE_UNUSED b)
{ {
} }
// Use colors:
int clone_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) int clone_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
{ {
return 0; return 0;
@ -247,13 +319,22 @@ int clone_requires_colors(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_
void clone_switchin(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, void clone_switchin(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED,
int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED) int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED)
{ {
clone_last = SDL_CreateRGBSurface(SDL_ANYFORMAT, canvas->w, canvas->h, canvas->format->BitsPerPixel,
canvas->format->Rmask, canvas->format->Gmask, canvas->format->Bmask,
canvas->format->Amask);
clone_state = CLONE_READY_TO_START; clone_state = CLONE_READY_TO_START;
} }
void clone_switchout(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, void clone_switchout(magic_api * api, int which ATTRIBUTE_UNUSED,
int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas ATTRIBUTE_UNUSED) int mode ATTRIBUTE_UNUSED, SDL_Surface * canvas)
{ {
clone_state = CLONE_READY_TO_START; SDL_Rect update_rect; /* Needed to satisfy done_cloning() :-( */
done_cloning(api, canvas, &update_rect);
if (clone_last != NULL)
SDL_FreeSurface(clone_last);
} }
int clone_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) int clone_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)

View file

@ -1,6 +1,6 @@
/* halftone.c /* halftone.c
Last modified: 2011.07.17 Last modified: 2021.02.20
*/ */
@ -24,7 +24,7 @@ enum
const char *snd_filenames[NUM_TOOLS] = { const char *snd_filenames[NUM_TOOLS] = {
"halftone.wav", "halftone.ogg",
}; };
const char *icon_filenames[NUM_TOOLS] = { const char *icon_filenames[NUM_TOOLS] = {
@ -84,12 +84,14 @@ int halftone_init(magic_api * api)
snprintf(fname, sizeof(fname), "%ssounds/magic/%s", api->data_directory, snd_filenames[i]); snprintf(fname, sizeof(fname), "%ssounds/magic/%s", api->data_directory, snd_filenames[i]);
snd_effect[i] = Mix_LoadWAV(fname); snd_effect[i] = Mix_LoadWAV(fname);
/*
if (snd_effect[i] == NULL) if (snd_effect[i] == NULL)
{ {
SDL_FreeSurface(canvas_backup); SDL_FreeSurface(canvas_backup);
SDL_FreeSurface(square); SDL_FreeSurface(square);
return (0); return (0);
} }
*/
} }
@ -146,8 +148,11 @@ void halftone_shutdown(magic_api * api ATTRIBUTE_UNUSED)
{ {
int i; int i;
for (i = 0; i < NUM_TOOLS; i++) for (i = 0; i < NUM_TOOLS; i++) {
Mix_FreeChunk(snd_effect[i]); if (snd_effect[i] != NULL) {
Mix_FreeChunk(snd_effect[i]);
}
}
SDL_FreeSurface(canvas_backup); SDL_FreeSurface(canvas_backup);
SDL_FreeSurface(square); SDL_FreeSurface(square);

View file

@ -33,6 +33,12 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
/* math.h makes y1 an obscure function! */
#define y1 evil_y1
#include <math.h>
#undef y1
#include "fill.h" #include "fill.h"
#include "rgblinear.h" #include "rgblinear.h"
#include "playsound.h" #include "playsound.h"
@ -89,6 +95,12 @@ int would_flood_fill(SDL_Surface * canvas, Uint32 cur_colr, Uint32 old_colr)
} }
void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2) void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2)
{
simulate_flood_fill(canvas, x, y, cur_colr, old_colr, x1, y1, x2, y2, NULL);
}
void simulate_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2, Uint8 * touched)
{ {
int fillL, fillR, i, in_line; int fillL, fillR, i, in_line;
static unsigned char prog_anim; static unsigned char prog_anim;
@ -124,6 +136,10 @@ void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 o
while (in_line) while (in_line)
{ {
if (touched != NULL) {
touched[(y * canvas->w) + fillL] = 1;
}
putpixels[canvas->format->BytesPerPixel] (canvas, fillL, y, cur_colr); putpixels[canvas->format->BytesPerPixel] (canvas, fillL, y, cur_colr);
fillL--; fillL--;
@ -142,6 +158,9 @@ void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 o
in_line = 1; in_line = 1;
while (in_line) while (in_line)
{ {
if (touched != NULL) {
touched[(y * canvas->w) + fillR] = 1;
}
putpixels[canvas->format->BytesPerPixel] (canvas, fillR, y, cur_colr); putpixels[canvas->format->BytesPerPixel] (canvas, fillR, y, cur_colr);
fillR++; fillR++;
@ -161,10 +180,109 @@ void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 o
for (i = fillL; i <= fillR; i++) for (i = fillL; i <= fillR; i++)
{ {
if (y > 0 && colors_close(canvas, getpixels[canvas->format->BytesPerPixel] (canvas, i, y - 1), old_colr)) if (y > 0 && colors_close(canvas, getpixels[canvas->format->BytesPerPixel] (canvas, i, y - 1), old_colr))
do_flood_fill(canvas, i, y - 1, cur_colr, old_colr, x1, y1, x2, y2); simulate_flood_fill(canvas, i, y - 1, cur_colr, old_colr, x1, y1, x2, y2, touched);
if (y < canvas->h && colors_close(canvas, getpixels[canvas->format->BytesPerPixel] (canvas, i, y + 1), old_colr)) if (y < canvas->h && colors_close(canvas, getpixels[canvas->format->BytesPerPixel] (canvas, i, y + 1), old_colr))
do_flood_fill(canvas, i, y + 1, cur_colr, old_colr, x1, y1, x2, y2); simulate_flood_fill(canvas, i, y + 1, cur_colr, old_colr, x1, y1, x2, y2, touched);
} }
} }
void draw_linear_gradient(SDL_Surface * canvas, SDL_Surface * last,
int x_left, int y_top, int x_right, int y_bottom,
int x1, int y1, int x2, int y2, Uint32 draw_color, Uint8 * touched
) {
Uint32 old_colr, new_colr;
int xx, yy;
float xd, yd;
Uint8 draw_r, draw_g, draw_b, old_r, old_g, old_b, new_r, new_g, new_b;
float A, B, C, C1, C2, ratio;
/* Get our target color */
SDL_GetRGB(draw_color, canvas->format, &draw_r, &draw_g, &draw_b);
A = (x2 - x1);
B = (y2 - y1);
C1 = (A * x1) + (B * y1);
C2 = (A * x2) + (B * y2);
/* FIXME: C2 should be larger than C1? */
for (yy = y_top; yy <= y_bottom; yy++) {
for (xx = x_left; xx <= x_right; xx++) {
if (touched[(yy * canvas->w) + xx]) {
/* Get the old color, and blend it (with a distance-based ratio) with the target color */
old_colr = getpixels[last->format->BytesPerPixel] (last, xx, yy);
SDL_GetRGB(old_colr, last->format, &old_r, &old_g, &old_b);
/* (h/t David Z on StackOverflow for how to quickly compute this:
https://stackoverflow.com/questions/521493/creating-a-linear-gradient-in-2d-array) */
C = (A * xx) + (B * yy);
if (C < C1) {
/* At/beyond the click spot (opposite direction of mouse); solid color */
putpixels[canvas->format->BytesPerPixel] (canvas, xx, yy, draw_color);
} else if (C >= C2) {
/* At/beyond the mouse; completely faded out */
putpixels[canvas->format->BytesPerPixel] (canvas, xx, yy, old_colr);
} else {
/* The actual gradient... */
ratio = (C - C1) / (C2 - C1);
new_r = (Uint8) (((float) old_r) * ratio + ((float) draw_r * (1.00 - ratio)));
new_g = (Uint8) (((float) old_g) * ratio + ((float) draw_g * (1.00 - ratio)));
new_b = (Uint8) (((float) old_b) * ratio + ((float) draw_b * (1.00 - ratio)));
new_colr = SDL_MapRGB(canvas->format, new_r, new_g, new_b);
putpixels[canvas->format->BytesPerPixel] (canvas, xx, yy, new_colr);
}
}
}
}
}
void draw_radial_gradient(SDL_Surface * canvas, int x_left, int y_top, int x_right, int y_bottom,
int x, int y, Uint32 draw_color, Uint8 * touched
) {
Uint32 old_colr, new_colr;
int xx, yy;
float xd, yd, dist, rad, ratio;
Uint8 draw_r, draw_g, draw_b, old_r, old_g, old_b, new_r, new_g, new_b;
/* Calculate the max radius of the filled area */
xd = (x_right - x_left + 1);
yd = (y_bottom - y_top + 1);
rad = sqrt(xd * xd + yd * yd);
if (rad == 0) {
return;
}
/* Get our target color */
SDL_GetRGB(draw_color, canvas->format, &draw_r, &draw_g, &draw_b);
/* Traverse the flood-filled zone */
for (yy = y_top; yy <= y_bottom; yy++) {
for (xx = x_left; xx <= x_right; xx++) {
/* Only alter the pixels within the flood itself */
if (touched[(yy * canvas->w) + xx]) {
/* Determine the distance from the click point */
xd = (float) abs(xx - x);
yd = (float) abs(yy - y);
dist = sqrt(xd * xd + yd * yd);
ratio = (dist / rad);
/* Get the old color, and blend it (with a distance-based ratio) with the target color */
old_colr = getpixels[canvas->format->BytesPerPixel] (canvas, xx, yy);
SDL_GetRGB(old_colr, canvas->format, &old_r, &old_g, &old_b);
new_r = (Uint8) (((float) old_r) * ratio + ((float) draw_r * (1.00 - ratio)));
new_g = (Uint8) (((float) old_g) * ratio + ((float) draw_g * (1.00 - ratio)));
new_b = (Uint8) (((float) old_b) * ratio + ((float) draw_b * (1.00 - ratio)));
new_colr = SDL_MapRGB(canvas->format, new_r, new_g, new_b);
putpixels[canvas->format->BytesPerPixel] (canvas, xx, yy, new_colr);
}
}
}
}

View file

@ -27,12 +27,23 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
Last updated: September 14, 2019 Last updated: February 20, 2021
$Id$ $Id$
*/ */
#ifndef FILL_H
#define FILL_H
#include "SDL.h" #include "SDL.h"
int would_flood_fill(SDL_Surface * canvas, Uint32 cur_colr, Uint32 old_colr); int would_flood_fill(SDL_Surface * canvas, Uint32 cur_colr, Uint32 old_colr);
void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2); void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2);
void simulate_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2, Uint8 * touched);
void draw_linear_gradient(SDL_Surface * canvas, SDL_Surface * last,
int x_left, int y_top, int x_right, int y_bottom,
int x1, int y1, int x2, int y2, Uint32 draw_color, Uint8 * touched);
void draw_radial_gradient(SDL_Surface * canvas, int x_left, int y_top, int x_right, int y_bottom,
int x, int y, Uint32 draw_color, Uint8 * touched);
#endif

67
src/fill_tools.h Normal file
View file

@ -0,0 +1,67 @@
/*
fill_tools.h
Fill tool -- tool variations (for selector)
Tux Paint - A simple drawing program for children.
Copyright (c) 2002-2019 by Bill Kendrick and others; see AUTHORS.txt
bill@newbreedsoftware.com
http://www.tuxpaint.org/
Flood fill code based on Wikipedia example:
http://www.wikipedia.org/wiki/Flood_fill/C_example
by Damian Yerrick - http://www.wikipedia.org/wiki/Damian_Yerrick
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt)
Last updated: February 20, 2021
$Id$
*/
#ifndef FILL_TOOLS_H
#define FILL_TOOLS_H
#ifndef gettext_noop
#define gettext_noop(String) String
#endif
enum {
FILL_FLOOD,
FILL_GRADIENT_LINEAR,
FILL_GRADIENT_RADIAL,
NUM_FILLS
};
const char *const fill_names[NUM_FILLS] = {
gettext_noop("Solid"),
gettext_noop("Linear"),
gettext_noop("Radial")
};
const char *const fill_tips[NUM_FILLS] = {
gettext_noop("Click to fill an area with a solid color."),
gettext_noop("Click and drag to fill an area with a linear gradient (from the chosen color to transparent)."),
gettext_noop("Click to fill an area with a radial gradient (from the chosen color to transparent).")
};
const char *const fill_img_fnames[NUM_FILLS] = {
DATA_PREFIX "images/fills/solid.png",
DATA_PREFIX "images/fills/gradient_linear.png",
DATA_PREFIX "images/fills/gradient_radial.png"
};
#endif

View file

@ -1,6 +1,7 @@
[encoding: UTF-8] [encoding: UTF-8]
colors.h colors.h
dirwalk.c dirwalk.c
fill_tools.h
fonts.c fonts.c
great.h great.h
im.c im.c

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-12-09 09:00+0200\n" "PO-Revision-Date: 2010-12-09 09:00+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -183,6 +183,38 @@ msgstr "<9>cipea-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>cipea-9b" msgstr "<9>cipea-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Rek"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Dii yi cal meno wek gupik ka ma orumu en ki rangi."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Jami tic" msgstr "Jami tic"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Rangi" msgstr "Rangi"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Lajwac" msgstr "Lajwac"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Laduny" msgstr "Laduny"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Ladong alama" msgstr "Ladong alama"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Kite" msgstr "Kite"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Nukuta" msgstr "Nukuta"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Tangu" msgstr "Tangu"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Pik"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "Nyen" msgstr "Nyen"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Yabi" msgstr "Yabi"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Kakare...Wamede ki goyo cal eni ni!" msgstr "Kakare...Wamede ki goyo cal eni ni!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Adaa imito aao?" msgstr "Adaa imito aao?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Eyo,dong atyeko oo!" msgstr "Eyo,dong atyeko oo!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ku, dwoka dok cen!" msgstr "Ku, dwoka dok cen!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ka i aao, ibino rwenyo cal mamegi woko! Imito gwoko ne?" msgstr "Ka i aao, ibino rwenyo cal mamegi woko! Imito gwoko ne?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Eyo, gwoki!" msgstr "Eyo, gwoki!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ku, pe iyele me gwoko ne!" msgstr "Ku, pe iyele me gwoko ne!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Kong ki gwok cali maenini?" msgstr "Kong ki gwok cali maenini?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Yabo cal eno ni oloya woko!" msgstr "Yabo cal eno ni oloya woko!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Aya do." msgstr "Aya do."
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Pe tye fayil mo keken ma onongo kigwoko." msgstr "Pe tye fayil mo keken ma onongo kigwoko."
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Ki go cal mamegi ni dong ikaratac?" msgstr "Ki go cal mamegi ni dong ikaratac?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Eyo, go ne!" msgstr "Eyo, go ne!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Kityeko dong goyo cal mamegi woko! " msgstr "Kityeko dong goyo cal mamegi woko! "
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Tim wa kica! Pe wa goyo cal mamegi!" msgstr "Tim wa kica! Pe wa goyo cal mamegi!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Pwod pe iromo goyo cal mamegi" msgstr "Pwod pe iromo goyo cal mamegi"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Duny cal eni woko?" msgstr "Duny cal eni woko?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Eyo,duny oo!" msgstr "Eyo,duny oo!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ku, pe iduny!" msgstr "Ku, pe iduny!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Po me tic ki mapeca tung acam me oyo/ladic!" msgstr "Po me tic ki mapeca tung acam me oyo/ladic!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Kityeko dong goyo cal mamegi woko! " msgstr "Kityeko dong goyo cal mamegi woko! "
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Kityeko dong goyo cal mamegi woko! " msgstr "Kityeko dong goyo cal mamegi woko! "
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Tim wa kica! Pe wa goyo cal mamegi!" msgstr "Tim wa kica! Pe wa goyo cal mamegi!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Tim wa kica! Pe wa goyo cal mamegi!" msgstr "Tim wa kica! Pe wa goyo cal mamegi!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Yer cal ma imito, ci idi \"Tuki\"." msgstr "Yer cal ma imito, ci idi \"Tuki\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Dwon kineko oo weng." msgstr "Dwon kineko oo weng."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Dwon kiyabu." msgstr "Dwon kiyabu."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Tim ber ikur..." msgstr "Tim ber ikur..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Duny" msgstr "Duny"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "cale macer malube aluba " msgstr "cale macer malube aluba "
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Cen" msgstr "Cen"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Tuki" msgstr "Tuki"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Mede anyim" msgstr "Mede anyim"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Eyo" msgstr "Eyo"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ku" msgstr "Ku"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Kilok cal malube ki alokaloka itici manyeni?" msgstr "Kilok cal malube ki alokaloka itici manyeni?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Eyo,lok kun ileyo maconi oo!" msgstr "Eyo,lok kun ileyo maconi oo!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ku, gwok fayil manyen!" msgstr "Ku, gwok fayil manyen!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Yer cal ma imito, ci idi \"Yabi\"" msgstr "Yer cal ma imito, ci idi \"Yabi\""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Kwany rangi." msgstr "Kwany rangi."
@ -831,11 +870,11 @@ msgstr "Dii ci iywa ladic ne wek olok rangi idul kom cal mamegi."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Dii wek olok rangi ikom cal mamegi weng." msgstr "Dii wek olok rangi ikom cal mamegi weng."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Too wang" msgstr "Too wang"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -926,11 +965,21 @@ msgstr "Katuun"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Dii ci idir iyi akina ne wek owir cal dwok tung kum katuun." msgstr "Dii ci idir iyi akina ne wek owir cal dwok tung kum katuun."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Dii ki iywa wek igoo latero ma gitiyo ki cale me toltol."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: af\n" "Project-Id-Version: af\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-19 06:38+0000\n" "PO-Revision-Date: 2017-12-19 06:38+0000\n"
"Last-Translator: OdettePretorius <odettepret@gmail.com>\n" "Last-Translator: OdettePretorius <odettepret@gmail.com>\n"
"Language-Team: translate-discuss-af@lists.sourceforge.net\n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n"
@ -182,6 +182,38 @@ msgstr "<9>spaar-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spaar-9b" msgstr "<9>spaar-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lyne"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik in die prent om daardie area met kleur te vul."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -344,47 +376,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Gereedskap" msgstr "Gereedskap"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Kleure" msgstr "Kleure"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Kwasse" msgstr "Kwasse"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Uitveërs" msgstr "Uitveërs"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempels" msgstr "Stempels"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Vorms" msgstr "Vorms"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Towerkuns" msgstr "Towerkuns"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Opvul"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -436,9 +475,9 @@ msgid "New"
msgstr "Nuwe" msgstr "Nuwe"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Maak oop" msgstr "Maak oop"
@ -576,227 +615,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK... Kom ons teken verder op hierdie een!" msgstr "OK... Kom ons teken verder op hierdie een!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Wil jy werklik afsluit?" msgstr "Wil jy werklik afsluit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ja, ek is klaar!" msgstr "Ja, ek is klaar!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nee, vat my terug!" msgstr "Nee, vat my terug!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "As jy ophou, sal jy die prent verloor. Wil jy dit eers bêre?" msgstr "As jy ophou, sal jy die prent verloor. Wil jy dit eers bêre?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ja, stoor dit!" msgstr "Ja, stoor dit!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Nee, moenie stoor nie!" msgstr "Nee, moenie stoor nie!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Wil jy eers die prent stoor?" msgstr "Wil jy eers die prent stoor?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Kan nie daardie prent oopmaak nie!" msgstr "Kan nie daardie prent oopmaak nie!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Goedso" msgstr "Goedso"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Daar is geen gestoorde lêers nie!" msgstr "Daar is geen gestoorde lêers nie!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Wil jy nou die prent laat druk?" msgstr "Wil jy nou die prent laat druk?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ja, laat dit druk!" msgstr "Ja, laat dit druk!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Die prent is gedruk!" msgstr "Die prent is gedruk!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Jammer, die prent kon nie gedruk word nie!" msgstr "Jammer, die prent kon nie gedruk word nie!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Jy kan nog nie druk nie!" msgstr "Jy kan nog nie druk nie!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Vee hierdie prent uit?" msgstr "Vee hierdie prent uit?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ja, vee dit uit!" msgstr "Ja, vee dit uit!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Nee, moenie dit uitvee nie!" msgstr "Nee, moenie dit uitvee nie!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Onthou om die linker-muisknoppie te gebruik!" msgstr "Onthou om die linker-muisknoppie te gebruik!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Die prent is gedruk!" msgstr "Die prent is gedruk!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Die prent is gedruk!" msgstr "Die prent is gedruk!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Jammer, die prent kon nie gedruk word nie!" msgstr "Jammer, die prent kon nie gedruk word nie!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Jammer, die prent kon nie gedruk word nie!" msgstr "Jammer, die prent kon nie gedruk word nie!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Kies die prente wat jy wil hê en klik “Maak oop”." msgstr "Kies die prente wat jy wil hê en klik “Maak oop”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Klank af." msgstr "Klank af."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Klank aan." msgstr "Klank aan."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Wag asseblief…" msgstr "Wag asseblief…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Vee uit" msgstr "Vee uit"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Skyfies" msgstr "Skyfies"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Terug" msgstr "Terug"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Speel" msgstr "Speel"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Volgende" msgstr "Volgende"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nee" msgstr "Nee"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Vervang die prent met jou veranderinge?" msgstr "Vervang die prent met jou veranderinge?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ja, vervang die ou een!" msgstr "Ja, vervang die ou een!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nee, stoor 'n nuwe lêer!" msgstr "Nee, stoor 'n nuwe lêer!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Kies die prent wat jy wil hê en klik “Maak oop”." msgstr "Kies die prent wat jy wil hê en klik “Maak oop”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Kies 'n kleur van jou prentjie af." msgstr "Kies 'n kleur van jou prentjie af."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Kies 'n kleur." msgstr "Kies 'n kleur."
@ -826,11 +865,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik om kleure in die hele prent te verander." msgstr "Klik om kleure in die hele prent te verander."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blinding" msgstr "Blinding"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -905,11 +944,21 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klik en beweeg die muis om die prent na 'n spotprent te verander." msgstr "Klik en beweeg die muis om die prent na 'n spotprent te verander."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik en sleep om herhalende patrone te teken. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-10-27 10:16-0000\n" "PO-Revision-Date: 2010-10-27 10:16-0000\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -183,6 +183,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Nsinsan"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Kleeke nfonyin no mu na fa ahosu kata hɔ."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Adwinnade" msgstr "Adwinnade"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Ahosu" msgstr "Ahosu"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "abrɔɔse" msgstr "abrɔɔse"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Apepadeɛ!" msgstr "Apepadeɛ!"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Astampo" msgstr "Astampo"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "hyepo" msgstr "hyepo"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Krataa" msgstr "Krataa"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Hyɛ no ma"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "Foforo" msgstr "Foforo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Bue" msgstr "Bue"
@ -579,227 +618,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Afei deɛ...Yɛn nkoso dorɔɔ baako yi!" msgstr "Afei deɛ...Yɛn nkoso dorɔɔ baako yi!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Nti wo pɛsɛ wo pɔn?" msgstr "Nti wo pɛsɛ wo pɔn?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Aane, mawee!" msgstr "Aane, mawee!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Daabi, famekɔ mahyi!" msgstr "Daabi, famekɔ mahyi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Sɛ wo pɔn a, wo bɛ hwere wo nfonyin no! Korano?" msgstr "Sɛ wo pɔn a, wo bɛ hwere wo nfonyin no! Korano?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Aane, sie!" msgstr "Aane, sie!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Daabi, nhawoho nsie!" msgstr "Daabi, nhawoho nsie!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Sie wo nfonyin no kane!" msgstr "Sie wo nfonyin no kane!"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Nfonyin no ntome mmue!" msgstr "Nfonyin no ntome mmue!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Yoo" msgstr "Yoo"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Biribiara nnihɔ a woasie!" msgstr "Biribiara nnihɔ a woasie!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Prente wo nfonyin no seseaa?" msgstr "Prente wo nfonyin no seseaa?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Aane, prente!" msgstr "Aane, prente!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Wo nfonyin no a prente!" msgstr "Wo nfonyin no a prente!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Kafra! Wo nfonyin no antumi amprente!" msgstr "Kafra! Wo nfonyin no antumi amprente!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Wo ntomi mprente sesei!" msgstr "Wo ntomi mprente sesei!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Pepa nfonyin wei?" msgstr "Pepa nfonyin wei?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Aane, pepa!" msgstr "Aane, pepa!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Daabi npepa!" msgstr "Daabi npepa!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Kae sɛ wo bɛ pagya mouso no nsa benkum no!" msgstr "Kae sɛ wo bɛ pagya mouso no nsa benkum no!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Wo nfonyin no a prente!" msgstr "Wo nfonyin no a prente!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Wo nfonyin no a prente!" msgstr "Wo nfonyin no a prente!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Kafra! Wo nfonyin no antumi amprente!" msgstr "Kafra! Wo nfonyin no antumi amprente!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Kafra! Wo nfonyin no antumi amprente!" msgstr "Kafra! Wo nfonyin no antumi amprente!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Yi mfonyin a wopɛ, na cleeke \"Bɔ\"." msgstr "Yi mfonyin a wopɛ, na cleeke \"Bɔ\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Dede no adum." msgstr "Dede no adum."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Dede no asan aba." msgstr "Dede no asan aba."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Mesrɛwo twɛn..." msgstr "Mesrɛwo twɛn..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Pepa" msgstr "Pepa"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slides" msgstr "Slides"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Kane" msgstr "Kane"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Agoro" msgstr "Agoro"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Dea ɛdi so" msgstr "Dea ɛdi so"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Aane" msgstr "Aane"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Daabi" msgstr "Daabi"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Sesa nfonyin no ne wodiɛ no?" msgstr "Sesa nfonyin no ne wodiɛ no?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Aane, sesa dada no!" msgstr "Aane, sesa dada no!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Daabi, sie foforɔ no!" msgstr "Daabi, sie foforɔ no!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Yi mfonyin a wopɛ, na cleeke \"Bue\"." msgstr "Yi mfonyin a wopɛ, na cleeke \"Bue\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Fa Ahosu." msgstr "Fa Ahosu."
@ -830,11 +869,11 @@ msgstr "Kleeke na twe mauso sesa nfonyin no fa ahosu."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Kleeke na sesa nfonyin no nyinaa ahosu." msgstr "Kleeke na sesa nfonyin no nyinaa ahosu."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Bɔ prɛ" msgstr "Bɔ prɛ"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -923,11 +962,21 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Kleeke na twe mauso no dane nfonyin nyɛ kaatun." msgstr "Kleeke na twe mauso no dane nfonyin nyɛ kaatun."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Cleeke na twe na ɛndrɔɔ agyan ano a wɔ de nhoma ayɛ."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-10 11:45+0100\n" "PO-Revision-Date: 2014-06-10 11:45+0100\n"
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n" "Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -183,6 +183,38 @@ msgstr "<9>ቅጥያ-9 "
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>ቅጥያ-9ለ " msgstr "<9>ቅጥያ-9ለ "
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "መስመሮች "
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "ያንን ቦታ በቀለም ለመሙላት ስዕሉ ላይ ጠቅ አድርግ። "
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "መሳሪያዎች " msgstr "መሳሪያዎች "
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "ቀለሞች " msgstr "ቀለሞች "
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ብሩሾች " msgstr "ብሩሾች "
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "ማጥፊያዎች " msgstr "ማጥፊያዎች "
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "ማህተሞች " msgstr "ማህተሞች "
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "ቅርጾች " msgstr "ቅርጾች "
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "ፊደሎች " msgstr "ፊደሎች "
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "ማጂክ " msgstr "ማጂክ "
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "መሙላት "
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "አዲስ " msgstr "አዲስ "
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "ክፈት " msgstr "ክፈት "
@ -579,227 +618,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "እሺ አሁን... ይህንን መሳል እንቀጥል! " msgstr "እሺ አሁን... ይህንን መሳል እንቀጥል! "
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "ጨርሶ ለማቆም በርግጠኝነት ፈልገሃል? " msgstr "ጨርሶ ለማቆም በርግጠኝነት ፈልገሃል? "
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "አዎ ጨርሻለሁ!" msgstr "አዎ ጨርሻለሁ!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "አይ እንደገና መልሰኝ! " msgstr "አይ እንደገና መልሰኝ! "
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "ጨርስህ ከወጣህ ስዕልህን ታጣለህ! ይቀመጥ? " msgstr "ጨርስህ ከወጣህ ስዕልህን ታጣለህ! ይቀመጥ? "
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "አዎ አስቀምጠው! " msgstr "አዎ አስቀምጠው! "
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "አይ ለማስቀመጥ አትጨነቅ! " msgstr "አይ ለማስቀመጥ አትጨነቅ! "
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "መጀመሪያ ስዕልህን አሰቀምጥ? " msgstr "መጀመሪያ ስዕልህን አሰቀምጥ? "
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "ያንን ስዕል መክፈት አይቻልም! " msgstr "ያንን ስዕል መክፈት አይቻልም! "
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "እሺ " msgstr "እሺ "
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "የተቀመጡ ስዕሎች የሉም! " msgstr "የተቀመጡ ስዕሎች የሉም! "
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "ስዕልህ አሁን ይታተም? " msgstr "ስዕልህ አሁን ይታተም? "
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "አዎ ይታተም! " msgstr "አዎ ይታተም! "
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "ስዕልህ ታትሞዋል! " msgstr "ስዕልህ ታትሞዋል! "
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! " msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! "
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "አሁንም ማተም አትችልም! " msgstr "አሁንም ማተም አትችልም! "
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "ይህ ስዕል ይጥፋ? " msgstr "ይህ ስዕል ይጥፋ? "
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "አዎ አጥፋው! " msgstr "አዎ አጥፋው! "
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "አይ አታጥፋው! " msgstr "አይ አታጥፋው! "
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "የግራ መዳፊት አዝራር መጠቀም አስታውስ!" msgstr "የግራ መዳፊት አዝራር መጠቀም አስታውስ!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "ስዕልህ ታትሞዋል! " msgstr "ስዕልህ ታትሞዋል! "
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "ስዕልህ ታትሞዋል! " msgstr "ስዕልህ ታትሞዋል! "
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! " msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! "
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! " msgstr "እናዝናለን ስዕልህ ሊታተም አልቻለም! "
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "የምትፈልገውን ስዕል ምረጥና “ማጫወት” የሚለውን ጠቅ አድርግ። " msgstr "የምትፈልገውን ስዕል ምረጥና “ማጫወት” የሚለውን ጠቅ አድርግ። "
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "ድምጹ የጠፋ። " msgstr "ድምጹ የጠፋ። "
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "ድምጹ የሚሰማ። " msgstr "ድምጹ የሚሰማ። "
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "እባክዎ ይጠብቁ... " msgstr "እባክዎ ይጠብቁ... "
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "ማጥፉት " msgstr "ማጥፉት "
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "ስላይዶች " msgstr "ስላይዶች "
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "ወደኋላ " msgstr "ወደኋላ "
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "ማጫወት " msgstr "ማጫወት "
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "ቀጥል " msgstr "ቀጥል "
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "አዎ " msgstr "አዎ "
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "አይደለም " msgstr "አይደለም "
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "ከለውጥህ ጋር ስዕሉ ይተካ? " msgstr "ከለውጥህ ጋር ስዕሉ ይተካ? "
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "አዎ የድሮውን ተካ!" msgstr "አዎ የድሮውን ተካ!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "አይ አዲስ ፋይል አስቀምጥ! " msgstr "አይ አዲስ ፋይል አስቀምጥ! "
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "የምትፈልገውን ስዕል ምረጥና “መክፈት” የሚለውን ጠቅ አድርግ። " msgstr "የምትፈልገውን ስዕል ምረጥና “መክፈት” የሚለውን ጠቅ አድርግ። "
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "ቀለም ምረጥ " msgstr "ቀለም ምረጥ "
@ -830,11 +869,11 @@ msgstr "የስዕልህን ክፍሎች ቀለም ለመቀያየር አዝራ
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "የስዕልህን ሁሉንም ክፍል ቀለም ለመቀየር ጠቅ አድርግ። " msgstr "የስዕልህን ሁሉንም ክፍል ቀለም ለመቀየር ጠቅ አድርግ። "
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "ስውር " msgstr "ስውር "
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -924,11 +963,21 @@ msgstr "ካርቱን "
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "ስዕሉን ወደ ካርቱን ለመቀየር አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። " msgstr "ስዕሉን ወደ ካርቱን ለመቀየር አዝራሩን ጠቅ አድርገውና በዙሪያው አንቀሳቅስ። "
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "ተደጋጋሚ ስርአተ ጥለት ለመሳል አዝራሩን ጠቅ አድርግ እና ጎትት።"
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-29 10:04+0100\n" "PO-Revision-Date: 2017-12-29 10:04+0100\n"
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n" "Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
"Language-Team: softaragonés\n" "Language-Team: softaragonés\n"
@ -182,6 +182,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linias"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Fe clic en o dibuixo pa replenar un aria de color."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -346,47 +378,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Ferramientas" msgstr "Ferramientas"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colors" msgstr "Colors"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pincels" msgstr "Pincels"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomas" msgstr "Gomas"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Siellos" msgstr "Siellos"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formas" msgstr "Formas"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letras" msgstr "Letras"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Machia" msgstr "Machia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Replenar"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Nuevo" msgstr "Nuevo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Ubrir" msgstr "Ubrir"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Muit bien... A seguir dibuixando!" msgstr "Muit bien... A seguir dibuixando!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "De verdat que quiers ir-te-ne?" msgstr "De verdat que quiers ir-te-ne?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Sí, ya ye prou por agora!" msgstr "Sí, ya ye prou por agora!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, quiero tornar!" msgstr "No, quiero tornar!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Si te'n vas, perderás o tuyo dibuixo. Lo quiers alzar?" msgstr "Si te'n vas, perderás o tuyo dibuixo. Lo quiers alzar?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sí, alza-lo!" msgstr "Sí, alza-lo!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, m'importa igual!" msgstr "No, m'importa igual!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Quiers alzar antes lo tuyo dibuixo?" msgstr "Quiers alzar antes lo tuyo dibuixo?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "No puetz ubrir ixe dibuixo!" msgstr "No puetz ubrir ixe dibuixo!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Acceptar" msgstr "Acceptar"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "No i hai garra documento alzau!" msgstr "No i hai garra documento alzau!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Quiers imprentar agora lo tuyo dibuixo?" msgstr "Quiers imprentar agora lo tuyo dibuixo?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Sí, imprenta-lo!" msgstr "Sí, imprenta-lo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "O tuyo dibuixo s'ha imprentau." msgstr "O tuyo dibuixo s'ha imprentau."
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo." msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo."
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "No puetz imprentar encara!" msgstr "No puetz imprentar encara!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Quiers borrar iste dibuixo?" msgstr "Quiers borrar iste dibuixo?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Sí, borra-lo!" msgstr "Sí, borra-lo!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, no lo borres!" msgstr "No, no lo borres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Fe servir lo botón zurdo d'o ratet!" msgstr "Fe servir lo botón zurdo d'o ratet!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "O tuyo dibuixo s'ha imprentau." msgstr "O tuyo dibuixo s'ha imprentau."
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "O tuyo dibuixo s'ha imprentau." msgstr "O tuyo dibuixo s'ha imprentau."
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo." msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo."
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo." msgstr "Vai, ya lo siento! No s'ha puesto imprentar lo tuyo dibuixo."
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Triga lo dibuixo que quieras y dimpués fe clic en \"Reproducir\"." msgstr "Triga lo dibuixo que quieras y dimpués fe clic en \"Reproducir\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Lo son ye desactivau." msgstr "Lo son ye desactivau."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Lo son ye activau." msgstr "Lo son ye activau."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Aguarda un poquet…" msgstr "Aguarda un poquet…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Borrar" msgstr "Borrar"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositivas" msgstr "Diapositivas"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Anterior" msgstr "Anterior"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproducir" msgstr "Reproducir"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Siguient" msgstr "Siguient"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Quiers reemplazar o dibuixo con os tuyos cambios?" msgstr "Quiers reemplazar o dibuixo con os tuyos cambios?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Sí, substituye-lo!" msgstr "Sí, substituye-lo!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, alza un documento nuevo!" msgstr "No, alza un documento nuevo!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Triga lo dibuixo que quieras y dimpués fe clic en \"Ubrir\"." msgstr "Triga lo dibuixo que quieras y dimpués fe clic en \"Ubrir\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Triga una color d'o tuyo dibuixo." msgstr "Triga una color d'o tuyo dibuixo."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Triga una color." msgstr "Triga una color."
@ -830,11 +869,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Fe clic pa cambiar las colors de tot o dibuixo." msgstr "Fe clic pa cambiar las colors de tot o dibuixo."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persianas" msgstr "Persianas"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -909,11 +948,21 @@ msgstr "Comic"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Fe clic y arrociega lo ratet pa que lo tuyo dibuixo pareixca un comic." msgstr "Fe clic y arrociega lo ratet pa que lo tuyo dibuixo pareixca un comic."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Fe clic y arrociega pa dibuixar patrons repetitivos. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2008-10-07 14:54+0200\n" "PO-Revision-Date: 2008-10-07 14:54+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -194,6 +194,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "خطوط"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "انقر على الصورةِ لمَلْئ تلك المنطقةِ باللونِ."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -354,47 +386,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "أدوات" msgstr "أدوات"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "ألوان" msgstr "ألوان"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "فرشاة" msgstr "فرشاة"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "مِمْحايات" msgstr "مِمْحايات"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "أختام" msgstr "أختام"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "أشكال" msgstr "أشكال"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "حروف" msgstr "حروف"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "سحر" msgstr "سحر"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "املأ"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -447,9 +486,9 @@ msgstr "جديد"
# أزرار لأوامر فتح الملف # أزرار لأوامر فتح الملف
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "افتح" msgstr "افتح"
@ -587,235 +626,235 @@ msgstr "إذن … دعنا نَستمرُّ برسَم هذا الشكل"
# FIXME: تحرّكُ الي مكان آخر! ! ! # FIXME: تحرّكُ الي مكان آخر! ! !
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "أتُريدُ حقاً الخروج؟" msgstr "أتُريدُ حقاً الخروج؟"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "نعم، لقد انتهيت" msgstr "نعم، لقد انتهيت"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "لا، عُد بي ثانية" msgstr "لا، عُد بي ثانية"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "إذا خرجت الآن، ستفقد صورتك أتريد حفظها؟" msgstr "إذا خرجت الآن، ستفقد صورتك أتريد حفظها؟"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "نعم، احفظها الآن" msgstr "نعم، احفظها الآن"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "لا، لا تهتم بحفظها" msgstr "لا، لا تهتم بحفظها"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "أأحفظ صورتك أولاً؟" msgstr "أأحفظ صورتك أولاً؟"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "لايمكن فتح هذه الصورة" msgstr "لايمكن فتح هذه الصورة"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "موافق" msgstr "موافق"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "لايوجد أي ملف محفوظ" msgstr "لايوجد أي ملف محفوظ"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "أأطبع صورتك الآن؟" msgstr "أأطبع صورتك الآن؟"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "نعم، اطبع الصورة" msgstr "نعم، اطبع الصورة"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "لا يمكنك الطبع الآن" msgstr "لا يمكنك الطبع الآن"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "أتريد مسح هذه الصورة؟" msgstr "أتريد مسح هذه الصورة؟"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "نعم، امسحه" msgstr "نعم، امسحه"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "لا، لاتمسحه" msgstr "لا، لاتمسحه"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "تذكر استخدام زر الفأرة الأيسر" msgstr "تذكر استخدام زر الفأرة الأيسر"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "لقد طُبِعت صورتك" msgstr "لقد طُبِعت صورتك"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "اختر الصورة التي تريد، ثم انقر ”شغّل“." msgstr "اختر الصورة التي تريد، ثم انقر ”شغّل“."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "بلا صوت" msgstr "بلا صوت"
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "شغل الصوت" msgstr "شغل الصوت"
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "من فضلك انتظر..." msgstr "من فضلك انتظر..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "امسح" msgstr "امسح"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "شرائح" msgstr "شرائح"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "الخلف" msgstr "الخلف"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "شغّل" msgstr "شغّل"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "التالي" msgstr "التالي"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "انتبه" msgstr "انتبه"
# FIXME: Move elsewhere! Or not?! # FIXME: Move elsewhere! Or not?!
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "نعم" msgstr "نعم"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "لا" msgstr "لا"
# #define PROMPT_SAVE_OVER_TXT gettext_noop("Save over the older version of this picture?") # #define PROMPT_SAVE_OVER_TXT gettext_noop("Save over the older version of this picture?")
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "أأستبدل الصورة بتعديلاتك؟" msgstr "أأستبدل الصورة بتعديلاتك؟"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "نعم، استبدل الملف القديم" msgstr "نعم، استبدل الملف القديم"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "لا، احفظ باسم جديد" msgstr "لا، احفظ باسم جديد"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "اختر الصورة التي تريد، ثم انقر على ”فتح“." msgstr "اختر الصورة التي تريد، ثم انقر على ”فتح“."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "اختر لون" msgstr "اختر لون"
@ -851,13 +890,13 @@ msgstr "انقر وحرك الفأره لتغيير لون أجزاء من صو
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "انقر لتغير لون كل الصوره" msgstr "انقر لتغير لون كل الصوره"
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
#, fuzzy #, fuzzy
#| msgid "Alien" #| msgid "Alien"
msgid "Blind" msgid "Blind"
msgstr "مخالف, دخيل" msgstr "مخالف, دخيل"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -946,11 +985,21 @@ msgstr "كرتون , كاريكاتور"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى رسمة كرتونية." msgstr "انقر وحرّكُ الفأرة على الصورة لتحويلها إلى رسمة كرتونية."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw train track rails on your picture."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "انقر واسحب لوضع مسار من قضبان القطار علي صورتك"
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-16 23:33-0800\n" "PO-Revision-Date: 2014-06-16 23:33-0800\n"
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n" "Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -182,6 +182,38 @@ msgstr "<9>অতিৰিক্ত-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>অতিৰিক্ত-9b" msgstr "<9>অতিৰিক্ত-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "ৰেখাবোৰ"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "উক্ত ক্ষেত্ৰখন ৰঙৰে পূৰ্ণ কৰিবলৈ ছবিটোত ক্লিক কৰক."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "টুলবোৰ" msgstr "টুলবোৰ"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "ৰংবোৰ" msgstr "ৰংবোৰ"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ব্ৰাছবোৰ" msgstr "ব্ৰাছবোৰ"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "মচাবোৰ" msgstr "মচাবোৰ"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "ষ্টেম্পবোৰ" msgstr "ষ্টেম্পবোৰ"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "আকৃতিবোৰ" msgstr "আকৃতিবোৰ"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "আখৰবোৰ" msgstr "আখৰবোৰ"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "মেজিক" msgstr "মেজিক"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "পূৰ্ণ কৰক"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "নতুন" msgstr "নতুন"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "খোলক" msgstr "খোলক"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "তেতিয়া হলে OK … এতিয়া এইটো ড্ৰয়িং কৰি থাকক!" msgstr "তেতিয়া হলে OK … এতিয়া এইটো ড্ৰয়িং কৰি থাকক!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "আপুনি সচাকৈয়ে এইটো ত্যাগ কৰিব বিচাৰে নেকি?" msgstr "আপুনি সচাকৈয়ে এইটো ত্যাগ কৰিব বিচাৰে নেকি?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "হয়, মই কৰিলো!" msgstr "হয়, মই কৰিলো!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "নহয়, মোক ওভতাই লওক!" msgstr "নহয়, মোক ওভতাই লওক!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "যদি আপুনি ত্যাগ কৰে, আপুনি আপোনাৰ ছবিটো হেৰুৱাব! এইটো ছেভ কৰে নে?" msgstr "যদি আপুনি ত্যাগ কৰে, আপুনি আপোনাৰ ছবিটো হেৰুৱাব! এইটো ছেভ কৰে নে?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "হয়, এইটো ছেভ কৰক!" msgstr "হয়, এইটো ছেভ কৰক!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "নহয়, ছেভ কৰোতে চিন্তা নকৰিব!" msgstr "নহয়, ছেভ কৰোতে চিন্তা নকৰিব!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "প্ৰথমে আপোনাৰ ছবিটো ছেভ কৰে নে?" msgstr "প্ৰথমে আপোনাৰ ছবিটো ছেভ কৰে নে?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "সেই ছবিটো খুলিব নোৱাৰি!" msgstr "সেই ছবিটো খুলিব নোৱাৰি!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "কোনো ছেভ কৰা ফাইল নাই!" msgstr "কোনো ছেভ কৰা ফাইল নাই!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "আপোনাৰ ছবিটো এতিয়া ছপা কৰে নে?" msgstr "আপোনাৰ ছবিটো এতিয়া ছপা কৰে নে?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "হয়, এইটো ছপা কৰক!" msgstr "হয়, এইটো ছপা কৰক!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!" msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!" msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "আপুনি এতিয়াই ছপা কৰিব নোৱাৰে!" msgstr "আপুনি এতিয়াই ছপা কৰিব নোৱাৰে!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "এই ছবিটো মোচে নে?" msgstr "এই ছবিটো মোচে নে?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "হয়, এইটো মোচক!" msgstr "হয়, এইটো মোচক!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "নহয়, এইটো মোচি নিদিব!" msgstr "নহয়, এইটো মোচি নিদিব!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "বাওফালৰ মাউছ বাটনটো ব্যৱহাৰ কৰিবলৈ মনত পেলাওক!" msgstr "বাওফালৰ মাউছ বাটনটো ব্যৱহাৰ কৰিবলৈ মনত পেলাওক!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!" msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!" msgstr "আপোনাৰ ছবিটো ছপা কৰা হৈছে!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!" msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!" msgstr "দুখিত! আপোনাৰ ছবিটো ছপা কৰিব পৰা নগল!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "আপুনি বিচৰা ছবিবোৰ নিৰ্বাচন কৰক, তেতিয়া “খেলা” টোত ক্লিক কৰক." msgstr "আপুনি বিচৰা ছবিবোৰ নিৰ্বাচন কৰক, তেতিয়া “খেলা” টোত ক্লিক কৰক."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "শব্দটো শব্দহীন কৰা হ'ল." msgstr "শব্দটো শব্দহীন কৰা হ'ল."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "শব্দটোৰ শব্দহীনটো বাতিল কৰা হ'ল." msgstr "শব্দটোৰ শব্দহীনটো বাতিল কৰা হ'ল."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "অনুগ্ৰহ কৰি অপেক্ষা কৰক…" msgstr "অনুগ্ৰহ কৰি অপেক্ষা কৰক…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "মোচক" msgstr "মোচক"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "পিছলাই নিয়ক" msgstr "পিছলাই নিয়ক"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "ঘূৰি যাওক" msgstr "ঘূৰি যাওক"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "খেলক" msgstr "খেলক"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "পৰৱৰ্তী" msgstr "পৰৱৰ্তী"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "হয়" msgstr "হয়"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "নহয়" msgstr "নহয়"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "আপোনাৰ সলনিবোৰৰ সৈতে ছবিটো প্ৰতিস্থাপিত কৰে নে?" msgstr "আপোনাৰ সলনিবোৰৰ সৈতে ছবিটো প্ৰতিস্থাপিত কৰে নে?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "হয়, পুৰণি এটা প্ৰতিস্থাপিত কৰক!" msgstr "হয়, পুৰণি এটা প্ৰতিস্থাপিত কৰক!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "নহয়, এটা নতুন ছেভ কৰক!" msgstr "নহয়, এটা নতুন ছেভ কৰক!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "আপুনি বিচৰা ছবিটো নিৰ্বাচন কৰক, তেতিয়া “খোলক” টোত ক্লিক কৰক." msgstr "আপুনি বিচৰা ছবিটো নিৰ্বাচন কৰক, তেতিয়া “খোলক” টোত ক্লিক কৰক."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "ৰং এটা লওক." msgstr "ৰং এটা লওক."
@ -832,11 +871,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "আপোনাৰ সম্পূৰ্ণ ছবিটোত ৰংবোৰ সলনি কৰিবলৈ ক্লিক কৰক." msgstr "আপোনাৰ সম্পূৰ্ণ ছবিটোত ৰংবোৰ সলনি কৰিবলৈ ক্লিক কৰক."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "পৰ্দাখন" msgstr "পৰ্দাখন"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -929,11 +968,21 @@ msgstr "কাৰ্টুন"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "ছবিটো কাৰ্টুন এটালৈ ৰূপান্তৰ কৰিবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে ঘূৰাওক." msgstr "ছবিটো কাৰ্টুন এটালৈ ৰূপান্তৰ কৰিবলৈ মাউছটোত ক্লিক কৰক আৰু চাৰিওফালে ঘূৰাওক."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "পুণৰাবৃত্ত আৰ্হি অংকন কৰিবলৈ ক্লিক কৰক আৰু টানক."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2011-02-16 18:38+0200\n" "PO-Revision-Date: 2011-02-16 18:38+0200\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -183,6 +183,38 @@ msgstr "<9>repuestu-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>repuestu-9b" msgstr "<9>repuestu-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Llínies"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Calca na imaxe pa estrar esi área con color."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -345,47 +377,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Ferramientes" msgstr "Ferramientes"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Collores" msgstr "Collores"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinceles" msgstr "Pinceles"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomes" msgstr "Gomes"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Cuños" msgstr "Cuños"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Figures" msgstr "Figures"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lletres" msgstr "Lletres"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Máxiques" msgstr "Máxiques"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Rellenar"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -437,9 +476,9 @@ msgid "New"
msgstr "Nuevu" msgstr "Nuevu"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -581,227 +620,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Ta bien... ¡Vamos siguir dibuxando nesta imaxe!" msgstr "Ta bien... ¡Vamos siguir dibuxando nesta imaxe!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "¿De xuru quies colar?" msgstr "¿De xuru quies colar?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "¡Sí, llistu!" msgstr "¡Sí, llistu!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "¡Non, quiero volver!" msgstr "¡Non, quiero volver!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "¡Si coles vas perder la imaxe! ¿Quies guardala?" msgstr "¡Si coles vas perder la imaxe! ¿Quies guardala?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "¡Sí, guárdala!" msgstr "¡Sí, guárdala!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "¡Non, nun quiero guardala!" msgstr "¡Non, nun quiero guardala!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "¿Vas guardar la imaxe enantes?" msgstr "¿Vas guardar la imaxe enantes?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "¡Nun se pue abrir esa imaxe!" msgstr "¡Nun se pue abrir esa imaxe!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Aceutar" msgstr "Aceutar"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "¡Nun hai ficheros guardaos!" msgstr "¡Nun hai ficheros guardaos!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "¿Imprentar la to imaxe agora?" msgstr "¿Imprentar la to imaxe agora?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "¡Sí, impréntala!" msgstr "¡Sí, impréntala!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "¡Imprentóse la imaxe!" msgstr "¡Imprentóse la imaxe!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!" msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "¡Entá nun pues imprentar!" msgstr "¡Entá nun pues imprentar!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "¿Esborrar esta imaxe?" msgstr "¿Esborrar esta imaxe?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "¡Sí, esbórrala!" msgstr "¡Sí, esbórrala!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "¡Non, nun la esborres!" msgstr "¡Non, nun la esborres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "¡Remembra emplegar el botón izquierdu del mur!" msgstr "¡Remembra emplegar el botón izquierdu del mur!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "¡Imprentóse la imaxe!" msgstr "¡Imprentóse la imaxe!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "¡Imprentóse la imaxe!" msgstr "¡Imprentóse la imaxe!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!" msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!" msgstr "¡Llaméntolo, pero la to imaxe nun s'imprentó!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Escueyi les imáxenes que quieras, llueu calca en “Reproducir”." msgstr "Escueyi les imáxenes que quieras, llueu calca en “Reproducir”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Soníu silenciáu." msgstr "Soníu silenciáu."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Soníu activu." msgstr "Soníu activu."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Espera, por favor..." msgstr "Espera, por favor..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Borrar" msgstr "Borrar"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositives" msgstr "Diapositives"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Tornar" msgstr "Tornar"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproducir" msgstr "Reproducir"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "¿Sobroescribir la imaxe pola nueva?" msgstr "¿Sobroescribir la imaxe pola nueva?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "¡Sí, guárdala!" msgstr "¡Sí, guárdala!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "¡Non, guardar nun ficheru nuevu!" msgstr "¡Non, guardar nun ficheru nuevu!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Escueyi la imaxe que quieras, llueu calca en “Abrir”." msgstr "Escueyi la imaxe que quieras, llueu calca en “Abrir”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Escueyi un color." msgstr "Escueyi un color."
@ -832,11 +871,11 @@ msgstr "Calca y arrastra'l mur pa camudar los collores en partes de la imaxe."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Calca pa camudar los collores de tola imaxe." msgstr "Calca pa camudar los collores de tola imaxe."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persiana" msgstr "Persiana"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -927,11 +966,21 @@ msgstr "Caricatura"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Calca y arrastra'l mur pa que la imaxe se vea como una caricatura." msgstr "Calca y arrastra'l mur pa que la imaxe se vea como una caricatura."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Calca y arrastra pa dibuxar fleches feches de filos artísticos."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2008-02-10 19:28+0400\n" "PO-Revision-Date: 2008-02-10 19:28+0400\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -179,6 +179,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Xəttlər"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "İstədiyin sahəni doldurmaq üçün mausun düyməsini bas."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -339,47 +371,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Alətlər" msgstr "Alətlər"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Rənglər" msgstr "Rənglər"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Fırça" msgstr "Fırça"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Pozanlar" msgstr "Pozanlar"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Möhürlər" msgstr "Möhürlər"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Fiqurlar" msgstr "Fiqurlar"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Hərflər" msgstr "Hərflər"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Möcüzə" msgstr "Möcüzə"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Doldurmaq"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -431,9 +470,9 @@ msgid "New"
msgstr "Yeni" msgstr "Yeni"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Açmaq" msgstr "Açmaq"
@ -577,235 +616,235 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Yaxşı... Onda bu şəkil ilə davam edək!" msgstr "Yaxşı... Onda bu şəkil ilə davam edək!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Sən doğrudan da çıxmaq istəyirsən?" msgstr "Sən doğrudan da çıxmaq istəyirsən?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
#, fuzzy #, fuzzy
#| msgid "Yes, I'm done!" #| msgid "Yes, I'm done!"
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Bəli, çıxmaq istəyirəm!" msgstr "Bəli, çıxmaq istəyirəm!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Yox, məni geriyə qaytar!" msgstr "Yox, məni geriyə qaytar!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Əqər çıxsan şəkil yaddaşa salınmayacaq! Mən onu yaddaşa salım?" msgstr "Əqər çıxsan şəkil yaddaşa salınmayacaq! Mən onu yaddaşa salım?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Bəli, yaddaşa sal!" msgstr "Bəli, yaddaşa sal!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Yox!" msgstr "Yox!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Şəkili yaddaşa salım?" msgstr "Şəkili yaddaşa salım?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Bu şəkili aça bilmirəm!" msgstr "Bu şəkili aça bilmirəm!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Burada yaddaşda olan heç bir şəkil yoxdur!" msgstr "Burada yaddaşda olan heç bir şəkil yoxdur!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Sənin səkilini indi çap edim?" msgstr "Sənin səkilini indi çap edim?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Bəli, çap et!" msgstr "Bəli, çap et!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Çap edə bilmirəm!" msgstr "Çap edə bilmirəm!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Şəkili pozum?" msgstr "Şəkili pozum?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Bəli, poz!" msgstr "Bəli, poz!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Yox, pozma" msgstr "Yox, pozma"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Mausun sol düyməsindən istifadə et!" msgstr "Mausun sol düyməsindən istifadə et!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Şəkilin çap edilib!" msgstr "Şəkilin çap edilib!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "İstədiyin şəkilləri şeç və \"Oyna\" düyməsini bas." msgstr "İstədiyin şəkilləri şeç və \"Oyna\" düyməsini bas."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Səs söndürülüb." msgstr "Səs söndürülüb."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Səs icazə olunub." msgstr "Səs icazə olunub."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Bir az gözlə..." msgstr "Bir az gözlə..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Poz" msgstr "Poz"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Cizgi filmi" msgstr "Cizgi filmi"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Geri" msgstr "Geri"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Oyna" msgstr "Oyna"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "İrəli" msgstr "İrəli"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Bəli" msgstr "Bəli"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Yox" msgstr "Yox"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Əvvəlki şəkili əvəz edim?" msgstr "Əvvəlki şəkili əvəz edim?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Bəli, əvəz et!" msgstr "Bəli, əvəz et!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Yox, yeni şəkil kimi yaddaşa sal!" msgstr "Yox, yeni şəkil kimi yaddaşa sal!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "İstədiyin şəkili şeç və \"Aç\" düyməsini bas." msgstr "İstədiyin şəkili şeç və \"Aç\" düyməsini bas."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Rəngi seç." msgstr "Rəngi seç."
@ -839,11 +878,11 @@ msgid "Click to change the colors in your entire picture."
msgstr "" msgstr ""
"Şəkili ləkələmək üçün mausun sol düyməsini bas və mausu hərəkətə gətir." "Şəkili ləkələmək üçün mausun sol düyməsini bas və mausu hərəkətə gətir."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -942,11 +981,21 @@ msgstr ""
"Şəkili cizgi filminə çevirmək üçün mausun sol düyməsini bas və mausu " "Şəkili cizgi filminə çevirmək üçün mausun sol düyməsini bas və mausu "
"hərəkətə gətir." "hərəkətə gətir."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr ""
"Şəkili işıqlandırmaq üçün mausun sol düyməsini bas və mausu hərəkətə gətir."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-10 23:09+0300\n" "PO-Revision-Date: 2014-06-10 23:09+0300\n"
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -185,6 +185,38 @@ msgstr "<9>дадатковая-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>дадатковая-9b" msgstr "<9>дадатковая-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Лініі"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Націсніце, каб запоўніць гэту вобласць колерам."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -348,47 +380,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Інструменты" msgstr "Інструменты"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Колеры" msgstr "Колеры"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Пэндзалі" msgstr "Пэндзалі"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Гумкі" msgstr "Гумкі"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Штампы" msgstr "Штампы"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Фігуры" msgstr "Фігуры"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Літары" msgstr "Літары"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Магія" msgstr "Магія"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Запоўніць"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -440,9 +479,9 @@ msgid "New"
msgstr "Новы" msgstr "Новы"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Адчыніць" msgstr "Адчыніць"
@ -585,227 +624,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Добра, працягваем маляваць!" msgstr "Добра, працягваем маляваць!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Вы сапраўды жадаеце выйсці?" msgstr "Вы сапраўды жадаеце выйсці?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Так, я скончыў!" msgstr "Так, я скончыў!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Не, хачу назад!" msgstr "Не, хачу назад!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Калі вы выйдзеце, вы страціце ваш малюнак! Захаваць?" msgstr "Калі вы выйдзеце, вы страціце ваш малюнак! Захаваць?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Так, захаваць!" msgstr "Так, захаваць!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Не, не трэба захоўваць!" msgstr "Не, не трэба захоўваць!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Захаваць адразу ваш малюнак?" msgstr "Захаваць адразу ваш малюнак?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Немагчыма адчыніць гэты малюнак!" msgstr "Немагчыма адчыніць гэты малюнак!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Добра" msgstr "Добра"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Няма захаваных малюнкаў!" msgstr "Няма захаваных малюнкаў!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Надрукаваць ваш малюнак зараз?" msgstr "Надрукаваць ваш малюнак зараз?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Так, надрукаваць!" msgstr "Так, надрукаваць!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Ваш малюнак быў надрукаваны!" msgstr "Ваш малюнак быў надрукаваны!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!" msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Вы яшчэ не можаце друкаваць!" msgstr "Вы яшчэ не можаце друкаваць!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Выдаліць гэты малюнак?" msgstr "Выдаліць гэты малюнак?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Так, выдаліць!" msgstr "Так, выдаліць!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Не, не выдаляць!" msgstr "Не, не выдаляць!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Выкарыстоўвайце толькі левую кнопку мышы!" msgstr "Выкарыстоўвайце толькі левую кнопку мышы!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Ваш малюнак быў надрукаваны!" msgstr "Ваш малюнак быў надрукаваны!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Ваш малюнак быў надрукаваны!" msgstr "Ваш малюнак быў надрукаваны!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!" msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!" msgstr "Прабачце! Ваш малюнак не можа быць надрукаваны!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Выберыце малюнкі, а потым націсніце \"Запуск\"." msgstr "Выберыце малюнкі, а потым націсніце \"Запуск\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Гукі адключаны." msgstr "Гукі адключаны."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Гукі ўключаны." msgstr "Гукі ўключаны."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Калі ласка, пачакайце..." msgstr "Калі ласка, пачакайце..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Выдаліць" msgstr "Выдаліць"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Слайды" msgstr "Слайды"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Назад" msgstr "Назад"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Запуск" msgstr "Запуск"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Далей" msgstr "Далей"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Аа" msgstr "Аа"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Так" msgstr "Так"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Не" msgstr "Не"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Замяніць стары малюнак?" msgstr "Замяніць стары малюнак?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Так, замяніць стары малюнак!" msgstr "Так, замяніць стары малюнак!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Не, захаваць у новы файл!" msgstr "Не, захаваць у новы файл!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Выберыце малюнак, а потым націсніце \"Адчыніць\"." msgstr "Выберыце малюнак, а потым націсніце \"Адчыніць\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Выберыце колер." msgstr "Выберыце колер."
@ -836,11 +875,11 @@ msgstr "Націсніце і павадзіце па малюнку, каб з
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Націсніце, каб змяніць колеры малюнку." msgstr "Націсніце, каб змяніць колеры малюнку."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Шторы" msgstr "Шторы"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -932,11 +971,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Націсніце і павадзіце па малюнку, каб пераўтварыць яго частку ў мультфільм." "Націсніце і павадзіце па малюнку, каб пераўтварыць яго частку ў мультфільм."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Націсніце і пацягніце, каб намаляваць узор, які паўтараецца."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2011-11-28 22:18+0100\n" "PO-Revision-Date: 2011-11-28 22:18+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -184,6 +184,39 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Линии"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr ""
"Натиснете по рисунката, за да се запълни съответната област с избрания цвят."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -344,47 +377,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Инструменти" msgstr "Инструменти"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Цветове" msgstr "Цветове"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Четки" msgstr "Четки"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Гуми" msgstr "Гуми"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Печати" msgstr "Печати"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Форми" msgstr "Форми"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Букви" msgstr "Букви"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Магии" msgstr "Магии"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Запълване"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -436,9 +476,9 @@ msgid "New"
msgstr "Нова" msgstr "Нова"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Отваряне" msgstr "Отваряне"
@ -584,227 +624,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Добре тогава... Да продължим да рисуваме тази!" msgstr "Добре тогава... Да продължим да рисуваме тази!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Наистина ли искате да спрете програмата?" msgstr "Наистина ли искате да спрете програмата?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Приключих!" msgstr "Приключих!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Не, върнете ме обратно!" msgstr "Не, върнете ме обратно!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ако спрете програмата, ще загубите рисунката! Да се запази ли?" msgstr "Ако спрете програмата, ще загубите рисунката! Да се запази ли?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Да, запазете я!" msgstr "Да, запазете я!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Не, не си правете труда да я запазвате!" msgstr "Не, не си правете труда да я запазвате!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Да се запази ли рисунката?" msgstr "Да се запази ли рисунката?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Тази рисунка не може да бъде отворена!" msgstr "Тази рисунка не може да бъде отворена!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Да" msgstr "Да"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Няма запазени файлове!" msgstr "Няма запазени файлове!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Да се разпечата ли рисунката?" msgstr "Да се разпечата ли рисунката?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Да, разпечатайте я!" msgstr "Да, разпечатайте я!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Рисунката е разпечатана!" msgstr "Рисунката е разпечатана!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Извинете! Рисунката не може да бъде разпечатана!" msgstr "Извинете! Рисунката не може да бъде разпечатана!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Все още не може да разпечатвате!" msgstr "Все още не може да разпечатвате!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Да се изтрие ли рисунката?" msgstr "Да се изтрие ли рисунката?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Да, изтрийте я!" msgstr "Да, изтрийте я!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Не я изтривайте!" msgstr "Не я изтривайте!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Не забравяйте да използвате левия бутон на мишката!" msgstr "Не забравяйте да използвате левия бутон на мишката!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Рисунката е разпечатана!" msgstr "Рисунката е разпечатана!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Рисунката е разпечатана!" msgstr "Рисунката е разпечатана!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Извинете! Рисунката не може да бъде разпечатана!" msgstr "Извинете! Рисунката не може да бъде разпечатана!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Извинете! Рисунката не може да бъде разпечатана!" msgstr "Извинете! Рисунката не може да бъде разпечатана!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Изберете желаните рисунки, след това натиснете „Прожекция“." msgstr "Изберете желаните рисунки, след това натиснете „Прожекция“."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Спиране на звука." msgstr "Спиране на звука."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Пускане на звука." msgstr "Пускане на звука."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Изчакайте..." msgstr "Изчакайте..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Изтриване" msgstr "Изтриване"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Кадри" msgstr "Кадри"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Назад" msgstr "Назад"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Прожекция" msgstr "Прожекция"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Следваща" msgstr "Следваща"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Аа" msgstr "Аа"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Не" msgstr "Не"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Замяна на рисунката с вашите промени?" msgstr "Замяна на рисунката с вашите промени?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Да, заменете старата!" msgstr "Да, заменете старата!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Не, да се запази като нов файл!" msgstr "Не, да се запази като нов файл!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Изберете рисунка, след това натиснете „Отваряне“." msgstr "Изберете рисунка, след това натиснете „Отваряне“."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Избери цвят." msgstr "Избери цвят."
@ -837,11 +877,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Натиснете за да смените цветовете в цялта рисунката." msgstr "Натиснете за да смените цветовете в цялта рисунката."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Маска" msgstr "Маска"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -933,11 +973,20 @@ msgstr "Карикатура"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Натиснете и движете мишката, за да превърнете рисунката в карикатура." msgstr "Натиснете и движете мишката, за да превърнете рисунката в карикатура."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Натиснете и движете мишката, за да размажете рисунката."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-09-04 17:25+0200\n" "PO-Revision-Date: 2010-09-04 17:25+0200\n"
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n" "Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -181,6 +181,38 @@ msgstr "<9>kunfalen-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>kunfalen-9b" msgstr "<9>kunfalen-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Cisiraw"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Kilike ja kan, i k'i ka yɔrɔ sugantilen lafa ni ɲɛ dɔ ye. "
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Minɛnw" msgstr "Minɛnw"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr " ɲɛw " msgstr " ɲɛw "
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "bɔrɔsiw " msgstr "bɔrɔsiw "
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Jɔsililan" msgstr "Jɔsililan"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Tanpɔnw" msgstr "Tanpɔnw"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Cogoyaw" msgstr "Cogoyaw"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Siginidenw" msgstr "Siginidenw"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Kabako" msgstr "Kabako"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Lafali"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "Kura" msgstr "Kura"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "A dayɛlɛ" msgstr "A dayɛlɛ"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "A ɲɛna! An ka taa nin ɲɛgɛn in fɛ!" msgstr "A ɲɛna! An ka taa nin ɲɛgɛn in fɛ!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "I bɛ fɛ ka bɔ tiɲɛ yɛrɛ la?" msgstr "I bɛ fɛ ka bɔ tiɲɛ yɛrɛ la?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ɔwɔ, n tilala!" msgstr "Ɔwɔ, n tilala!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ayi, n lasgin kɔfɛ!" msgstr "Ayi, n lasgin kɔfɛ!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "N'i bɔra, i ka ja bɛ tunun. K'a mara?" msgstr "N'i bɔra, i ka ja bɛ tunun. K'a mara?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ɔwɔ, a mara!" msgstr "Ɔwɔ, a mara!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ayi, kan'a mara!" msgstr "Ayi, kan'a mara!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "K'ia ka ja mara fɔlɔ?" msgstr "K'ia ka ja mara fɔlɔ?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "N ma se ka nin ja in dayɛlɛ!" msgstr "N ma se ka nin ja in dayɛlɛ!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "N sɔnna" msgstr "N sɔnna"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Fisiye foyi maralen tɛ yan!" msgstr "Fisiye foyi maralen tɛ yan!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "K'i ka ja papiyema bɔ sisan?" msgstr "K'i ka ja papiyema bɔ sisan?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ɔwɔ, a papiyema bɔ!" msgstr "Ɔwɔ, a papiyema bɔ!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "I ka ja papiyema bɔra!" msgstr "I ka ja papiyema bɔra!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!" msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "I tɛ se ka ja papiyema bɔ fɔlɔ!" msgstr "I tɛ se ka ja papiyema bɔ fɔlɔ!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Ka nin ja in jɔsi?" msgstr "Ka nin ja in jɔsi?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ɔwɔ, a jɔsi!" msgstr "Ɔwɔ, a jɔsi!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ayi, kan'a jɔsi!" msgstr "Ayi, kan'a jɔsi!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Kana ɲinɛ ka baara kɛ nin ɲinɛnin numanyanfanfɛ kɛrɛ ye!" msgstr "Kana ɲinɛ ka baara kɛ nin ɲinɛnin numanyanfanfɛ kɛrɛ ye!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "I ka ja papiyema bɔra!" msgstr "I ka ja papiyema bɔra!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "I ka ja papiyema bɔra!" msgstr "I ka ja papiyema bɔra!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!" msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!" msgstr "Hakɛto! I ka ja papiyema ma se ka bɔ!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "I sagola jaw suganti, kilike i k'a bil'a la. " msgstr "I sagola jaw suganti, kilike i k'a bil'a la. "
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Mankan datugura." msgstr "Mankan datugura."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Mankan dayɛlɛla." msgstr "Mankan dayɛlɛla."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Hakɛto i k'a kɔnɔ..." msgstr "Hakɛto i k'a kɔnɔ..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "A jɔsi" msgstr "A jɔsi"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Jaw tɛmɛ tɛmɛ ɲɔgɔn kɔ" msgstr "Jaw tɛmɛ tɛmɛ ɲɔgɔn kɔ"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Seginkɔ" msgstr "Seginkɔ"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "A bil'a la" msgstr "A bil'a la"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "ɲɛfɛta" msgstr "ɲɛfɛta"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ɔwɔ" msgstr "Ɔwɔ"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ayi" msgstr "Ayi"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Ka ja mara n'i ka yɛlɛmaw tali ye ba la wa?" msgstr "Ka ja mara n'i ka yɛlɛmaw tali ye ba la wa?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ɔwɔ, kɔrɔlen yɛlɛma!" msgstr "Ɔwɔ, kɔrɔlen yɛlɛma!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ayi, kura mara!" msgstr "Ayi, kura mara!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "I sagolaja suganti, ka kilike \"a dayɛlɛ\" kan." msgstr "I sagolaja suganti, ka kilike \"a dayɛlɛ\" kan."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "ɲɛ dɔ suganti." msgstr "ɲɛ dɔ suganti."
@ -831,11 +870,11 @@ msgstr "Kilike i ka ɲinɛnin cɛɛnɛ walasa ka ja fan dɔw ɲɛ yɛlɛma."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Kilike walasa ka ja fan bɛɛ ɲɛ yɛlɛma." msgstr "Kilike walasa ka ja fan bɛɛ ɲɛ yɛlɛma."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Kɛnɛ lankolon" msgstr "Kɛnɛ lankolon"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -926,11 +965,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Kilike, i ka ɲinɛnin munumunu walasa i ka ja ka yɛlɛma ka kɛ wɔkulɔnin ye." "Kilike, i ka ɲinɛnin munumunu walasa i ka ja ka yɛlɛma ka kɛ wɔkulɔnin ye."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Kilike, i ka ɲinɛnin layaala ya ka dogodogonin tilennenw ci."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-30 18:24+0000\n" "PO-Revision-Date: 2017-12-30 18:24+0000\n"
"Last-Translator: Chris <cjl@sugarlabs.org>\n" "Last-Translator: Chris <cjl@sugarlabs.org>\n"
"Language-Team: Bengali\n" "Language-Team: Bengali\n"
@ -182,6 +182,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "লাইন"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "ছবির ঐ অঞ্চলটি রঙ দিয়ে ভরতে ক্লিক করুন."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "টুল" msgstr "টুল"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "রঙ" msgstr "রঙ"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ব্রাশ" msgstr "ব্রাশ"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "রবার" msgstr "রবার"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "স্ট্যাম্প" msgstr "স্ট্যাম্প"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "আকার" msgstr "আকার"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "অক্ষর" msgstr "অক্ষর"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "জাদু" msgstr "জাদু"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "ভরুন"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "নতুন" msgstr "নতুন"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "খুলুন" msgstr "খুলুন"
@ -573,227 +612,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "ঠিক আছে… চলুন এটি আঁকা চালু রাখুন!" msgstr "ঠিক আছে… চলুন এটি আঁকা চালু রাখুন!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "আপনি কি সত্যিই ত্যাগ করতে চান?" msgstr "আপনি কি সত্যিই ত্যাগ করতে চান?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "হ্যাঁ, আমি করেছি!" msgstr "হ্যাঁ, আমি করেছি!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "না, আমাকে ফিরিয়ে নিয়ে যান!" msgstr "না, আমাকে ফিরিয়ে নিয়ে যান!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "ত্যাগ করলে, আপনার ছবিটি হারিয়ে যাবে! বাঁচাবেন কি?" msgstr "ত্যাগ করলে, আপনার ছবিটি হারিয়ে যাবে! বাঁচাবেন কি?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "হ্যাঁ, এটি বাঁচান!" msgstr "হ্যাঁ, এটি বাঁচান!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "না, বাঁচাতে কষ্ট করবেন না!" msgstr "না, বাঁচাতে কষ্ট করবেন না!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "প্রথমে আপনার ছবি বাঁচাবেন?" msgstr "প্রথমে আপনার ছবি বাঁচাবেন?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "ছবিটি খুলতে পারে না!" msgstr "ছবিটি খুলতে পারে না!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "এখানে বাঁচানো কোনো ফাইল নেই!" msgstr "এখানে বাঁচানো কোনো ফাইল নেই!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "এখন আপনার ছবি প্রিন্ট করবেন?" msgstr "এখন আপনার ছবি প্রিন্ট করবেন?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "হ্যাঁ, এটি প্রিন্ট করুন!" msgstr "হ্যাঁ, এটি প্রিন্ট করুন!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "আপনার ছবি প্রিন্ট হয়েছে!" msgstr "আপনার ছবি প্রিন্ট হয়েছে!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!" msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "আপনি এখন পর্যন্ত প্রিন্ট করতে পারেন না!" msgstr "আপনি এখন পর্যন্ত প্রিন্ট করতে পারেন না!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "এই ছবিটি মুছবেন কি?" msgstr "এই ছবিটি মুছবেন কি?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "হ্যাঁ, এটি মুছুন!" msgstr "হ্যাঁ, এটি মুছুন!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "না, এটি মুছবেন না!" msgstr "না, এটি মুছবেন না!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "মাউসের বাঁদিকের বোতাম ব্যবহার করতে মনে রাখুন!" msgstr "মাউসের বাঁদিকের বোতাম ব্যবহার করতে মনে রাখুন!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "আপনার ছবি প্রিন্ট হয়েছে!" msgstr "আপনার ছবি প্রিন্ট হয়েছে!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "আপনার ছবি প্রিন্ট হয়েছে!" msgstr "আপনার ছবি প্রিন্ট হয়েছে!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!" msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!" msgstr "দুঃখিত! আপনার ছবি প্রিন্ট করা গেল না!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "আপনি যে ছবিটি চান বাছাই করুন, পরে “বাজান”-এ ক্লিক করুন." msgstr "আপনি যে ছবিটি চান বাছাই করুন, পরে “বাজান”-এ ক্লিক করুন."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "শব্দ বন্ধ করা." msgstr "শব্দ বন্ধ করা."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "শব্দ চালু করা." msgstr "শব্দ চালু করা."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "অপেক্ষা করুন…" msgstr "অপেক্ষা করুন…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "মুছুন" msgstr "মুছুন"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "স্লাইড" msgstr "স্লাইড"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "পিছনে" msgstr "পিছনে"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "চালান" msgstr "চালান"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "পরে" msgstr "পরে"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "আ" msgstr "আ"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "হ্যাঁ" msgstr "হ্যাঁ"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "না" msgstr "না"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "আপনার বদলগুলির সঙ্গে ছবি প্রতিস্থাপন করুন?" msgstr "আপনার বদলগুলির সঙ্গে ছবি প্রতিস্থাপন করুন?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "হ্যাঁ, পুরোনোটি প্রতিস্থাপন করুন!" msgstr "হ্যাঁ, পুরোনোটি প্রতিস্থাপন করুন!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "না, একটি নতুন ফাইল বাঁচান!" msgstr "না, একটি নতুন ফাইল বাঁচান!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "আপনি যে ছবিটি চান বাছাই করুন, পরে “খুলুন”-এ ক্লিক করুন." msgstr "আপনি যে ছবিটি চান বাছাই করুন, পরে “খুলুন”-এ ক্লিক করুন."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "একটি রঙ তুলুন." msgstr "একটি রঙ তুলুন."
@ -824,11 +863,11 @@ msgstr "আপনার ছবির কিছু অংশে রঙ পরি
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "আপনার সমগ্র ছবিতে রঙ পরিবর্তন করতে ক্লিক করুন." msgstr "আপনার সমগ্র ছবিতে রঙ পরিবর্তন করতে ক্লিক করুন."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "ব্লাইন্ড" msgstr "ব্লাইন্ড"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -919,11 +958,21 @@ msgstr "কার্টুন"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "ছবিটি একটি কার্টুনে পরিণত করতে মাউস ক্লিক করুন এবং চারপাশে ঘোরান." msgstr "ছবিটি একটি কার্টুনে পরিণত করতে মাউস ক্লিক করুন এবং চারপাশে ঘোরান."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "স্ট্রিং আর্টের তৈরি তীর আঁকতে ক্লিক করুন ও টানুন."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2006-01-01 17:43+0900\n" "PO-Revision-Date: 2006-01-01 17:43+0900\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -183,6 +183,36 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "[ig."
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
msgid "Click to fill an area with a solid color."
msgstr ""
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -344,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "lg.]." msgstr "lg.]."
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "]xn.q+." msgstr "]xn.q+."
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "" msgstr ""
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "bsub.bYeed." msgstr "bsub.bYeed."
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "[m.k." msgstr "[m.k."
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "bzo.lT." msgstr "bzo.lT."
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "" msgstr ""
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "mig.a\\+ul." msgstr "mig.a\\+ul."
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "dgv.b."
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -436,9 +473,9 @@ msgid "New"
msgstr "gsr.p." msgstr "gsr.p."
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "q.\\Yed.p." msgstr "q.\\Yed.p."
@ -565,220 +602,220 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "" msgstr ""
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "" msgstr ""
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "" msgstr ""
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "" msgstr ""
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "" msgstr ""
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "" msgstr ""
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "" msgstr ""
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "" msgstr ""
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "" msgstr ""
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "" msgstr ""
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "" msgstr ""
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "" msgstr ""
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "" msgstr ""
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "" msgstr ""
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "" msgstr ""
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "" msgstr ""
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "" msgstr ""
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "" msgstr ""
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "" msgstr ""
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "" msgstr ""
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "" msgstr ""
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "" msgstr ""
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "" msgstr ""
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "" msgstr ""
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "" msgstr ""
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
#, fuzzy #, fuzzy
msgid "Next" msgid "Next"
msgstr "dpe.]." msgstr "dpe.]."
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "" msgstr ""
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "" msgstr ""
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "" msgstr ""
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "" msgstr ""
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "" msgstr ""
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "" msgstr ""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "" msgstr ""
@ -806,11 +843,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "" msgstr ""
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -882,11 +919,19 @@ msgstr "ri.mo."
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr ""
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2005-01-09 14:49+0100\n" "PO-Revision-Date: 2005-01-09 14:49+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: none\n" "Language-Team: none\n"
@ -182,6 +182,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linennoù"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik war ar skeudenn evit leuniañ al leur-se gant ul liv."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -346,47 +378,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Binvioù" msgstr "Binvioù"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Livioù" msgstr "Livioù"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Barroù-livañ" msgstr "Barroù-livañ"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomennoù" msgstr "Gomennoù"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Dielloù" msgstr "Dielloù"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Stummoù" msgstr "Stummoù"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lizherennoù" msgstr "Lizherennoù"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Strobinellus" msgstr "Strobinellus"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Leuniañ"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Nevez" msgstr "Nevez"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Digeriñ" msgstr "Digeriñ"
@ -581,232 +620,232 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Mat ! neuze kendalc'homp gant an dresadenn !" msgstr "Mat ! neuze kendalc'homp gant an dresadenn !"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Fellout a ra dit mont kuit ?" msgstr "Fellout a ra dit mont kuit ?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "" msgstr ""
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "" msgstr ""
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Kollet e vo da skeudenn mar kuitez ! Gwarediñ a rez ?" msgstr "Kollet e vo da skeudenn mar kuitez ! Gwarediñ a rez ?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "" msgstr ""
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Gwarediñ ar skeudenn e gentañ ?" msgstr "Gwarediñ ar skeudenn e gentañ ?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "N'haller digeriñ ar skeudenn-se !" msgstr "N'haller digeriñ ar skeudenn-se !"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Mat eo !" msgstr "Mat eo !"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Restr ebet gwaredet !" msgstr "Restr ebet gwaredet !"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Moullañ ar skeudenn diouzhtu ?" msgstr "Moullañ ar skeudenn diouzhtu ?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "N'hallan ket moullañ atav !" msgstr "N'hallan ket moullañ atav !"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Diverkañ an dresadenn-se ?" msgstr "Diverkañ an dresadenn-se ?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "" msgstr ""
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Moullet eo bet da skeudenn !" msgstr "Moullet eo bet da skeudenn !"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
#, fuzzy #, fuzzy
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Diuz ur skeudenn ha klik war 'digeriñ' neuze." msgstr "Diuz ur skeudenn ha klik war 'digeriñ' neuze."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "" msgstr ""
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "" msgstr ""
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "" msgstr ""
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Diverkañ" msgstr "Diverkañ"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "" msgstr ""
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Distro" msgstr "Distro"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
#, fuzzy #, fuzzy
msgid "Next" msgid "Next"
msgstr "Testenn" msgstr "Testenn"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "As" msgstr "As"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ya" msgstr "Ya"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ne ra ket" msgstr "Ne ra ket"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "" msgstr ""
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "" msgstr ""
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
#, fuzzy #, fuzzy
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ket, gwarediñ dindan un anv nevez" msgstr "Ket, gwarediñ dindan un anv nevez"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Diuz ur skeudenn ha klik war 'digeriñ' neuze." msgstr "Diuz ur skeudenn ha klik war 'digeriñ' neuze."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "" msgstr ""
@ -836,11 +875,11 @@ msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn." msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -929,11 +968,20 @@ msgstr "Tresadenn-vev"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klik ha fiñv al logodenn evit cheñch ar skeudenn en un dresadenn-vev." msgstr "Klik ha fiñv al logodenn evit cheñch ar skeudenn en un dresadenn-vev."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik ha fiñv al logodenn evit displanaat ar skeudenn."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2011-09-14 13:51+0530\n" "PO-Revision-Date: 2011-09-14 13:51+0530\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bodo\n" "Language-Team: Bodo\n"
@ -182,6 +182,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "सारिफोर"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "बै हालामसाखौ गाबजों आबुं खालामनो सावगारिआव क्लिक खालाम।"
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "टुलफोर" msgstr "टुलफोर"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "गाब" msgstr "गाब"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ब्रासफोर" msgstr "ब्रासफोर"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "फुगारग्राफोर" msgstr "फुगारग्राफोर"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "स्टेम्पफोर" msgstr "स्टेम्पफोर"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "दाथायफोर" msgstr "दाथायफोर"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "हांखोफोर" msgstr "हांखोफोर"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "जादु" msgstr "जादु"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "आबुं"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "गोदान" msgstr "गोदान"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "खेव" msgstr "खेव"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "जागोन अब्ला... बेखौ आखिबाय थानि!" msgstr "जागोन अब्ला... बेखौ आखिबाय थानि!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "नोंथाङा थारैनो नागारनो लुबैयो नामा?" msgstr "नोंथाङा थारैनो नागारनो लुबैयो नामा?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "नंगौ, आं मावखांबाय!" msgstr "नंगौ, आं मावखांबाय!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "नङा, आंखौ लाफिन!" msgstr "नङा, आंखौ लाफिन!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "नोंथाङा नागारोब्ला नोंथांनि सावगारिआ गोमागोन! बेखौ थिना दोन?" msgstr "नोंथाङा नागारोब्ला नोंथांनि सावगारिआ गोमागोन! बेखौ थिना दोन?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "नंगौ, बेखौ थिना दोन!" msgstr "नंगौ, बेखौ थिना दोन!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "नङा, थिना दोननो जिंगा सिनाङा!" msgstr "नङा, थिना दोननो जिंगा सिनाङा!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "सिगाङाव नोंथांनि सावगारिखौ थिना दोन?" msgstr "सिगाङाव नोंथांनि सावगारिखौ थिना दोन?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "बै सावगारिखौ खेवनो हाया!" msgstr "बै सावगारिखौ खेवनो हाया!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "थिना दोनखानाय फाइल गैया!" msgstr "थिना दोनखानाय फाइल गैया!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "नोंथांनि सावगारिखौ दानो साफाय?" msgstr "नोंथांनि सावगारिखौ दानो साफाय?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "नंगौ, बेखौ साफाय!" msgstr "नंगौ, बेखौ साफाय!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!" msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!" msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "नोंथाङा थेवबो साफायनो हाया!" msgstr "नोंथाङा थेवबो साफायनो हाया!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "बे सावगारिखौ फुगार?" msgstr "बे सावगारिखौ फुगार?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "नंगौ, बेखौ फुगार!" msgstr "नंगौ, बेखौ फुगार!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "नङा, बेखौ फुगारनो नाङा!" msgstr "नङा, बेखौ फुगारनो नाङा!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "आगसि माउस बुथामखौ बाहायनो गोसोखां!" msgstr "आगसि माउस बुथामखौ बाहायनो गोसोखां!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!" msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!" msgstr "नोंथांनि सावगारिखौ साफायनाय जाबाय!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!" msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!" msgstr "निमाहा हो! नोंथांनि सावगारिखौ साफायनो हायाखै!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "नोंथाङा लुबैनाय सावगारिखौ बासिख, बेनि उनाव “दाम” खौ क्लिक खालाम" msgstr "नोंथाङा लुबैनाय सावगारिखौ बासिख, बेनि उनाव “दाम” खौ क्लिक खालाम"
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "आवाजगैयै खालामदों" msgstr "आवाजगैयै खालामदों"
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "आवाजगोनां खालामदों" msgstr "आवाजगोनां खालामदों"
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "अननानै नेथ'..." msgstr "अननानै नेथ'..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "फुगार" msgstr "फुगार"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "स्लाइडफोर" msgstr "स्लाइडफोर"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "उनथिं" msgstr "उनथिं"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "दाम" msgstr "दाम"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "उननि" msgstr "उननि"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "औ" msgstr "औ"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "नंगौ" msgstr "नंगौ"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "नङा" msgstr "नङा"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "सावगारिखौ नोंथांनि सोलायनायफोरजों सोलायना फजफिन?" msgstr "सावगारिखौ नोंथांनि सोलायनायफोरजों सोलायना फजफिन?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "नगौ, गोजामखौ सोलायना फजफिन!" msgstr "नगौ, गोजामखौ सोलायना फजफिन!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "नङै, गोदान फाइलखौ थिना दोन!" msgstr "नङै, गोदान फाइलखौ थिना दोन!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "नोंथाङा लुबैनाय सावगारिखौ बासिख, बेनि उनाव “खेव” खौ क्लिक खालाम" msgstr "नोंथाङा लुबैनाय सावगारिखौ बासिख, बेनि उनाव “खेव” खौ क्लिक खालाम"
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "मोनसे गाब ला।" msgstr "मोनसे गाब ला।"
@ -832,11 +871,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "नोंथांनि आबुं सावगारिआव गाबखौ सोलायहोनो क्लिक खालाम।" msgstr "नोंथांनि आबुं सावगारिआव गाबखौ सोलायहोनो क्लिक खालाम।"
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "ब्लाइन्द" msgstr "ब्लाइन्द"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -927,11 +966,21 @@ msgstr "कार्टुन"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "सावगारिखौ फेसला सावगारिआव सोलायहोनो माउसखौ क्लिक खालाम आरो लोरिहो।" msgstr "सावगारिखौ फेसला सावगारिआव सोलायहोनो माउसखौ क्लिक खालाम आरो लोरिहो।"
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "स्ट्रिं आरिमुजों बानायजानाय थिरफोरखौ आखिनो क्लिक खालाम आरो बोबो।"
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-11-05 04:24+0000\n" "PO-Revision-Date: 2010-11-05 04:24+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n" "Last-Translator: Samir Ribić <Unknown>\n"
"Language-Team: Bosnian <bs@li.org>\n" "Language-Team: Bosnian <bs@li.org>\n"
@ -191,6 +191,40 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linije"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klikni na sliku da bi popunio tu oblast bojom."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
# #
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
@ -365,54 +399,62 @@ msgstr ""
# #
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Alati" msgstr "Alati"
# #
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Boje" msgstr "Boje"
# #
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Četke" msgstr "Četke"
# #
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Brisači" msgstr "Brisači"
# #
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Pečati" msgstr "Pečati"
# #
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Oblici" msgstr "Oblici"
# #
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Slova" msgstr "Slova"
# #
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magija" msgstr "Magija"
#
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Puniti"
# #
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
@ -474,9 +516,9 @@ msgstr "Novi"
# #
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Otvori" msgstr "Otvori"
@ -636,115 +678,115 @@ msgstr "Dobro onda… Hajde da nastavimo sa crtanjem!"
# #
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Stvarno želiš da završiš?" msgstr "Stvarno želiš da završiš?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "" msgstr ""
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ne, vrati me nazad!" msgstr "Ne, vrati me nazad!"
# #
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Izgubit ćeš sliku ako završiš! Da se sačuva?" msgstr "Izgubit ćeš sliku ako završiš! Da se sačuva?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Da, sačuvaj!" msgstr "Da, sačuvaj!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "" msgstr ""
# #
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Prvo da sačuvaš svoju sliku?" msgstr "Prvo da sačuvaš svoju sliku?"
# #
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ne mogu da otvorim tu sliku!" msgstr "Ne mogu da otvorim tu sliku!"
# #
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
# #
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Nema sačuvanih datoteka!" msgstr "Nema sačuvanih datoteka!"
# #
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Sada štampaš svoju sliku?" msgstr "Sada štampaš svoju sliku?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Da, printaj!" msgstr "Da, printaj!"
# #
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Tvoje slika je odštampana!" msgstr "Tvoje slika je odštampana!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "" msgstr ""
# #
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ne možeš još da štampaš!" msgstr "Ne možeš još da štampaš!"
# #
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Obrisati ovu sliku?" msgstr "Obrisati ovu sliku?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Izbriši" msgstr "Izbriši"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "" msgstr ""
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Zapamti da koristiš lijevo dugme miša!" msgstr "Zapamti da koristiš lijevo dugme miša!"
# #
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Tvoje slika je odštampana!" msgstr "Tvoje slika je odštampana!"
# #
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
@ -752,129 +794,129 @@ msgstr "Tvoje slika je odštampana!"
# #
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Tvoje slika je odštampana!" msgstr "Tvoje slika je odštampana!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "" msgstr ""
# #
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Izaberi slike koje želite, zatim klikni „Otvori“." msgstr "Izaberi slike koje želite, zatim klikni „Otvori“."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "" msgstr ""
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "" msgstr ""
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "" msgstr ""
# #
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Briši" msgstr "Briši"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slajd" msgstr "Slajd"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
# #
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Nazad" msgstr "Nazad"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Igrati" msgstr "Igrati"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
# #
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Slijedeći" msgstr "Slijedeći"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
# #
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Da" msgstr "Da"
# #
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Zamjeni sliku" msgstr "Zamjeni sliku"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Da, zamijeni staru" msgstr "Da, zamijeni staru"
# #
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ne, sačuvaj u novu datoteku!" msgstr "Ne, sačuvaj u novu datoteku!"
# #
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Izaberi sliku koju želiš, zatim klikni „Otvori“." msgstr "Izaberi sliku koju želiš, zatim klikni „Otvori“."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "" msgstr ""
@ -906,11 +948,11 @@ msgstr "Klikni i pomjeraj mišem da bi zatamnio sliku."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "" msgstr ""
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -1012,11 +1054,22 @@ msgstr "Crtež"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež." msgstr "Klikni i pomjeraj mišem da bi pretvorio sliku u crtež."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and move to draw sparkles."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klikni i pomjeraj da bi crtao iskrice."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -17,7 +17,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tuxpaint cvs 2009-06-21\n" "Project-Id-Version: Tuxpaint cvs 2009-06-21\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2020-08-17 22:43+0200\n" "PO-Revision-Date: 2020-08-17 22:43+0200\n"
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n" "Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n"
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\n" "Language-Team: Català <linux-ca@chanae.alphanet.ch>\n"
@ -220,6 +220,38 @@ msgstr "eèéëcç"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "EÉÈËCÇ" msgstr "EÉÈËCÇ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Línies"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Feu clic en la imatge per omplir de color una àrea."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -382,47 +414,54 @@ msgid "Draw shapes from a corner."
msgstr "Dibuixa formes des d'una cantonada." msgstr "Dibuixa formes des d'una cantonada."
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Eines" msgstr "Eines"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colors" msgstr "Colors"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinzells" msgstr "Pinzells"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomes" msgstr "Gomes"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Segells" msgstr "Segells"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formes" msgstr "Formes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lletres" msgstr "Lletres"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Màgic" msgstr "Màgic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Emplena"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -474,9 +513,9 @@ msgid "New"
msgstr "Nou" msgstr "Nou"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Obre" msgstr "Obre"
@ -611,219 +650,219 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "D'acord, llavors… Seguirem dibuixant en aquest!" msgstr "D'acord, llavors… Seguirem dibuixant en aquest!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "De veres voleu sortir?" msgstr "De veres voleu sortir?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Sí, ja he acabat!" msgstr "Sí, ja he acabat!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, tornem-hi!" msgstr "No, tornem-hi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Si sortiu, perdreu el vostre dibuix! El voleu desar?" msgstr "Si sortiu, perdreu el vostre dibuix! El voleu desar?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sí, desa'l!" msgstr "Sí, desa'l!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, no cal que el desis!" msgstr "No, no cal que el desis!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Deso el vostre dibuix abans?" msgstr "Deso el vostre dibuix abans?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "No puc obrir aquest dibuix!" msgstr "No puc obrir aquest dibuix!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "D'acord" msgstr "D'acord"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "No hi ha fitxers desats!" msgstr "No hi ha fitxers desats!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Imprimeixo ara el vostre dibuix?" msgstr "Imprimeixo ara el vostre dibuix?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Sí, imprimeix-lo!" msgstr "Sí, imprimeix-lo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "El vostre dibuix s'ha imprès!" msgstr "El vostre dibuix s'ha imprès!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "El vostre dibuix no s'ha pogut imprimir!" msgstr "El vostre dibuix no s'ha pogut imprimir!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Encara no podeu imprimir!" msgstr "Encara no podeu imprimir!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Esborro aquest dibuix?" msgstr "Esborro aquest dibuix?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Sí, esborra'l!" msgstr "Sí, esborra'l!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, no l'esborris!" msgstr "No, no l'esborris!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Recordeu de fer servir el botó esquerre!" msgstr "Recordeu de fer servir el botó esquerre!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "S'ha exportat el vostre dibuix!" msgstr "S'ha exportat el vostre dibuix!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "S'ha exportat la vostra animació en un fitxer GIF!" msgstr "S'ha exportat la vostra animació en un fitxer GIF!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "El vostre dibuix no s'ha pogut exportar!" msgstr "El vostre dibuix no s'ha pogut exportar!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "La vostra animació no s'ha pogut exportar!" msgstr "La vostra animació no s'ha pogut exportar!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Trieu els dibuixos que voleu, llavors feu clic a «Reproduir»." msgstr "Trieu els dibuixos que voleu, llavors feu clic a «Reproduir»."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "S'ha desactivat el so." msgstr "S'ha desactivat el so."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "S'ha activat el so." msgstr "S'ha activat el so."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Espereu, si us plau…" msgstr "Espereu, si us plau…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Esborra" msgstr "Esborra"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositives" msgstr "Diapositives"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "Exporta" msgstr "Exporta"
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Endarrere" msgstr "Endarrere"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reprodueix" msgstr "Reprodueix"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "Exporta a GIF" msgstr "Exporta a GIF"
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Següent" msgstr "Següent"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aà" msgstr "Aà"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Substitueixo el dibuix amb els vostres canvis?" msgstr "Substitueixo el dibuix amb els vostres canvis?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Sí, substitueix l'antic!" msgstr "Sí, substitueix l'antic!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, desa en un fitxer nou!" msgstr "No, desa en un fitxer nou!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Trieu el dibuix que voleu, llavors feu clic en Obre." msgstr "Trieu el dibuix que voleu, llavors feu clic en Obre."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "Seleccioneu 2 o més dibuixos per exportar-los a GIF." msgstr "Seleccioneu 2 o més dibuixos per exportar-los a GIF."
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Seleccioneu un color del vostre dibuix." msgstr "Seleccioneu un color del vostre dibuix."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Trieu un color." msgstr "Trieu un color."
@ -852,11 +891,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Feu clic per alterar el color del dibuix." msgstr "Feu clic per alterar el color del dibuix."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persiana" msgstr "Persiana"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -933,11 +972,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Feu clic i arrossegueu el ratolí per convertir la imatge a colors sòlids." "Feu clic i arrossegueu el ratolí per convertir la imatge a colors sòlids."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Feu clic i arrossegueu per dibuixar una sanefa."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -4,7 +4,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2020-03-29 23:40+0200\n" "PO-Revision-Date: 2020-03-29 23:40+0200\n"
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n" "Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n"
"Language-Team: LliureX\n" "Language-Team: LliureX\n"
@ -179,6 +179,38 @@ msgstr "eèéëcÇ"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "EÉÈËCÇ" msgstr "EÉÈËCÇ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Línies"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Feu clic en la imatge per a omplir l'àrea amb color."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Ferramentes" msgstr "Ferramentes"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colors" msgstr "Colors"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinzells" msgstr "Pinzells"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomes" msgstr "Gomes"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Estampes" msgstr "Estampes"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formes" msgstr "Formes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lletres" msgstr "Lletres"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Màgia" msgstr "Màgia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Ompli"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "Nou" msgstr "Nou"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Obri" msgstr "Obri"
@ -576,227 +615,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "D'acord… Continuem dibuixant esta figura!" msgstr "D'acord… Continuem dibuixant esta figura!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Esteu segur que voleu eixir?" msgstr "Esteu segur que voleu eixir?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Sí, ja he acabat!" msgstr "Sí, ja he acabat!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, tornem-hi!" msgstr "No, tornem-hi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Si eixiu, perdreu el vostre dibuix! El voleu guardar?" msgstr "Si eixiu, perdreu el vostre dibuix! El voleu guardar?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sí, guarda'l!" msgstr "Sí, guarda'l!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, no cal que el guardes!" msgstr "No, no cal que el guardes!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Voleu guardar primer el vostre dibuix?" msgstr "Voleu guardar primer el vostre dibuix?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "No es pot obrir esta imatge!" msgstr "No es pot obrir esta imatge!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "D'acord" msgstr "D'acord"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "No hi ha fitxers guardats!" msgstr "No hi ha fitxers guardats!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Voleu imprimir el dibuix?" msgstr "Voleu imprimir el dibuix?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Sí, imprimix-lo!" msgstr "Sí, imprimix-lo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "La imatge s'ha imprés!" msgstr "La imatge s'ha imprés!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "La imatge no s'ha pogut imprimir!" msgstr "La imatge no s'ha pogut imprimir!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Encara no podeu imprimir!" msgstr "Encara no podeu imprimir!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Voleu esborrar este dibuix?" msgstr "Voleu esborrar este dibuix?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Sí, esborra'l!" msgstr "Sí, esborra'l!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, no l'esborres!" msgstr "No, no l'esborres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Recordeu de fer servir el botó esquerre!" msgstr "Recordeu de fer servir el botó esquerre!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "La imatge s'ha imprés!" msgstr "La imatge s'ha imprés!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "La imatge s'ha imprés!" msgstr "La imatge s'ha imprés!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "La imatge no s'ha pogut imprimir!" msgstr "La imatge no s'ha pogut imprimir!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "La imatge no s'ha pogut imprimir!" msgstr "La imatge no s'ha pogut imprimir!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Trieu els dibuixos que voleu, llavors feu clic en «Reproduïx»." msgstr "Trieu els dibuixos que voleu, llavors feu clic en «Reproduïx»."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "S'ha desactivat el so." msgstr "S'ha desactivat el so."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "S'ha activat el so." msgstr "S'ha activat el so."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Espereu, per favor..." msgstr "Espereu, per favor..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Esborra" msgstr "Esborra"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositives" msgstr "Diapositives"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Arrere" msgstr "Arrere"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproduïx" msgstr "Reproduïx"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Següent" msgstr "Següent"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Voleu reemplaçar el dibuix amb els vostres canvis?" msgstr "Voleu reemplaçar el dibuix amb els vostres canvis?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Sí, reemplaça l'antic!" msgstr "Sí, reemplaça l'antic!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, guarda un fitxer nou" msgstr "No, guarda un fitxer nou"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Trieu la imatge que voleu i després feu clic en «Obri»." msgstr "Trieu la imatge que voleu i després feu clic en «Obri»."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Trieu un color del vostre dibuix." msgstr "Trieu un color del vostre dibuix."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Trieu un color." msgstr "Trieu un color."
@ -826,11 +865,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Feu clic per a canviar els colors de tot el dibuix." msgstr "Feu clic per a canviar els colors de tot el dibuix."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persiana" msgstr "Persiana"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -913,11 +952,21 @@ msgstr ""
"Feu clic i arrossegueu el ratolí per la zona per a convertir la imatge en " "Feu clic i arrossegueu el ratolí per la zona per a convertir la imatge en "
"una vinyeta." "una vinyeta."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Feu clic i arrossegueu per a dibuixar una sanefa."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-09-17 16:19+0200fu\n" "PO-Revision-Date: 2010-09-17 16:19+0200fu\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -182,6 +182,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Enyiriri"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Imata omukishushani okwijuza omumwanya ogwo erangi"
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Ebikozeso" msgstr "Ebikozeso"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Erangi" msgstr "Erangi"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Zaaburashi" msgstr "Zaaburashi"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Ebisanguzo" msgstr "Ebisanguzo"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Ebinkumi" msgstr "Ebinkumi"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Endebeka" msgstr "Endebeka"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Omukono" msgstr "Omukono"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Ebyamahano" msgstr "Ebyamahano"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Ijuza"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "Ekisya" msgstr "Ekisya"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Iguraho" msgstr "Iguraho"
@ -577,227 +616,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Kale mbwenu... Reka tugumizemu okuteera ekyi!" msgstr "Kale mbwenu... Reka tugumizemu okuteera ekyi!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Namazima nooyenda okuhinguka?" msgstr "Namazima nooyenda okuhinguka?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Yeego, na'amara!" msgstr "Yeego, na'amara!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ingaha, ongaruzeyo!" msgstr "Ingaha, ongaruzeyo!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ku orarugeho nooza kufeerwa ekishushani kyawe. Tukibiike?" msgstr "Ku orarugeho nooza kufeerwa ekishushani kyawe. Tukibiike?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Yeego, kibiike!" msgstr "Yeego, kibiike!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ingaha, otakibiika!" msgstr "Ingaha, otakibiika!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Ekishushani kyawe kiibanze kiibiikwe?" msgstr "Ekishushani kyawe kiibanze kiibiikwe?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ekishushani ekyo tikya baasa kwigurwa!" msgstr "Ekishushani ekyo tikya baasa kwigurwa!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Kale" msgstr "Kale"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Tihariho ebihandiko ebibibikirwe!" msgstr "Tihariho ebihandiko ebibibikirwe!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Oshohoze ekishushani kywawe ahampapura?" msgstr "Oshohoze ekishushani kywawe ahampapura?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Yeego, kishohoze!" msgstr "Yeego, kishohoze!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Ekishushani kyawe kyateerwa!" msgstr "Ekishushani kyawe kyateerwa!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Bambe! Ekishushani kyawe tikyateerwa!" msgstr "Bambe! Ekishushani kyawe tikyateerwa!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Tokabaasa kushohoza ahampapura hati!" msgstr "Tokabaasa kushohoza ahampapura hati!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Sangura ekishushani ekyi?" msgstr "Sangura ekishushani ekyi?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Yeego, kisangure!" msgstr "Yeego, kisangure!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ingaha, otakisangura!" msgstr "Ingaha, otakisangura!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Ijuka kunyiga mawusi ahabukono bwabumosho!" msgstr "Ijuka kunyiga mawusi ahabukono bwabumosho!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Ekishushani kyawe kyateerwa!" msgstr "Ekishushani kyawe kyateerwa!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Ekishushani kyawe kyateerwa!" msgstr "Ekishushani kyawe kyateerwa!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Bambe! Ekishushani kyawe tikyateerwa!" msgstr "Bambe! Ekishushani kyawe tikyateerwa!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Bambe! Ekishushani kyawe tikyateerwa!" msgstr "Bambe! Ekishushani kyawe tikyateerwa!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Torana ebishushani ebyorikwenda reero onyige \"Zaana\"." msgstr "Torana ebishushani ebyorikwenda reero onyige \"Zaana\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Eiraka ryeihwamu." msgstr "Eiraka ryeihwamu."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Eiraka tiryeihwamu." msgstr "Eiraka tiryeihwamu."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Orikazaara we, rindaho..." msgstr "Orikazaara we, rindaho..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Sangura" msgstr "Sangura"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Filiimu" msgstr "Filiimu"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Enyima" msgstr "Enyima"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Zaana" msgstr "Zaana"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Ekindi" msgstr "Ekindi"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Yeego" msgstr "Yeego"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Apana" msgstr "Apana"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Omumwanya gwekishushani tamu ebiwahindura?" msgstr "Omumwanya gwekishushani tamu ebiwahindura?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Yeego, chusa ekikuru!" msgstr "Yeego, chusa ekikuru!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Apaana, biika fayiro ensya!" msgstr "Apaana, biika fayiro ensya!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Torana ekishushani kyorikwenda reero onyige \"Iguraho\"." msgstr "Torana ekishushani kyorikwenda reero onyige \"Iguraho\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Ihamu erangi." msgstr "Ihamu erangi."
@ -829,11 +868,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Imata kuhindura erangi omukishushani kyona." msgstr "Imata kuhindura erangi omukishushani kyona."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Mpumi" msgstr "Mpumi"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -928,11 +967,21 @@ msgstr "Katuuni"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Imata kandi oyetoroze mawusi okuhindura ekishushani omu katuuni" msgstr "Imata kandi oyetoroze mawusi okuhindura ekishushani omu katuuni"
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Imata kandi okurure oteere enyambi eyemikono."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2010-07-08 13:33+0100\n" "PO-Revision-Date: 2010-07-08 13:33+0100\n"
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n" "Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n"
"Language-Team: Czech <cs@li.org>\n" "Language-Team: Czech <cs@li.org>\n"
@ -183,6 +183,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Úsečky"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klikni do obrázku a oblast se vyplní barvou."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -349,47 +381,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Nástroje" msgstr "Nástroje"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Barvy" msgstr "Barvy"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Štětce" msgstr "Štětce"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gumy" msgstr "Gumy"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Razítka" msgstr "Razítka"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Tvary" msgstr "Tvary"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Písmena" msgstr "Písmena"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magie" msgstr "Magie"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Výplň"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -441,9 +480,9 @@ msgid "New"
msgstr "Nový" msgstr "Nový"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Otevřít" msgstr "Otevřít"
@ -585,227 +624,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Dobrá... A teď můžeme pokračovat dál!" msgstr "Dobrá... A teď můžeme pokračovat dál!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Opravdu chceš malování ukončit?" msgstr "Opravdu chceš malování ukončit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ano, jsem hotov!" msgstr "Ano, jsem hotov!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nechci, ještě budu kreslit!" msgstr "Nechci, ještě budu kreslit!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Pokud skončíš, ztratíš svůj obrázek. Chceš ho uložit?" msgstr "Pokud skončíš, ztratíš svůj obrázek. Chceš ho uložit?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ano, uložit!" msgstr "Ano, uložit!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ne, nebudeme ho ukládat!" msgstr "Ne, nebudeme ho ukládat!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Chceš nejdřív uložit svůj obrázek?" msgstr "Chceš nejdřív uložit svůj obrázek?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Tento obrázek nelze otevřít!" msgstr "Tento obrázek nelze otevřít!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Nejsou zde žádné uložené soubory!" msgstr "Nejsou zde žádné uložené soubory!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Chceš obrázek vytisknout?" msgstr "Chceš obrázek vytisknout?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ano, vytisknout!" msgstr "Ano, vytisknout!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Obrázek byl vytištěn!" msgstr "Obrázek byl vytištěn!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!" msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Zatím nelze tisknout!" msgstr "Zatím nelze tisknout!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Smazat tento obrázek?" msgstr "Smazat tento obrázek?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ano smazat!" msgstr "Ano smazat!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ne, nemazat!" msgstr "Ne, nemazat!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Nezapomeň používat levé tlačítko myši!" msgstr "Nezapomeň používat levé tlačítko myši!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Obrázek byl vytištěn!" msgstr "Obrázek byl vytištěn!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Obrázek byl vytištěn!" msgstr "Obrázek byl vytištěn!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!" msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!" msgstr "Omlouváme se! Tvůj obraz nemohl být vytištěn!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Vyber si obrázek a klikni na \"Přehrát\"." msgstr "Vyber si obrázek a klikni na \"Přehrát\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Ztlumit zvuk." msgstr "Ztlumit zvuk."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Zapnout zvuk." msgstr "Zapnout zvuk."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Prosím počkej…" msgstr "Prosím počkej…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Smazat" msgstr "Smazat"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Prezentace" msgstr "Prezentace"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Zpět" msgstr "Zpět"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Přehrát" msgstr "Přehrát"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Další" msgstr "Další"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ano" msgstr "Ano"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Nahradit starý obrázek změněným obrázkem?" msgstr "Nahradit starý obrázek změněným obrázkem?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ano, nahradit starý obrázek!" msgstr "Ano, nahradit starý obrázek!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ne, ulož jako nový obrázek!" msgstr "Ne, ulož jako nový obrázek!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Vyber si obrázek a klepni na \"Otevřít\"." msgstr "Vyber si obrázek a klepni na \"Otevřít\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Vyber si barvu." msgstr "Vyber si barvu."
@ -836,11 +875,11 @@ msgstr "Klepnutím, nebo pohybem myši, změníš barvy v obrázku."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klikni pro změnu barvy celého obrázku." msgstr "Klikni pro změnu barvy celého obrázku."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Roleta" msgstr "Roleta"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -934,11 +973,20 @@ msgstr "Komiks"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Stiskem a pohybem myši získáš komiksový vzhled obrázku." msgstr "Stiskem a pohybem myši získáš komiksový vzhled obrázku."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klepni a pohybuj myší - rozostříš obrázek."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: cy\n" "Project-Id-Version: cy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2004-09-21 14:29+0100\n" "PO-Revision-Date: 2004-09-21 14:29+0100\n"
"Last-Translator: none\n" "Last-Translator: none\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -182,6 +182,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Llinellau"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Clicia yn y llun i lenwi'r ardal yno efo lliw."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -347,48 +379,55 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Offer" msgstr "Offer"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Lliwiau" msgstr "Lliwiau"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Brwsiau" msgstr "Brwsiau"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
#, fuzzy #, fuzzy
msgid "Erasers" msgid "Erasers"
msgstr "Rwbiwr" msgstr "Rwbiwr"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stampiau" msgstr "Stampiau"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Siapau" msgstr "Siapau"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Llythrennau" msgstr "Llythrennau"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Hud" msgstr "Hud"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Llenwi"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -440,9 +479,9 @@ msgid "New"
msgstr "Newydd" msgstr "Newydd"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Agor" msgstr "Agor"
@ -580,232 +619,232 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Iawn... Gawn ni ddal i dynnu'r un yma!" msgstr "Iawn... Gawn ni ddal i dynnu'r un yma!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Wyt ti wir eisiau terfynu?" msgstr "Wyt ti wir eisiau terfynu?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "" msgstr ""
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "" msgstr ""
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Os wyt am derfynu, mi fyddi di'n colli dy lun! Wyt eisiau ei gadw?" msgstr "Os wyt am derfynu, mi fyddi di'n colli dy lun! Wyt eisiau ei gadw?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "" msgstr ""
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Cadw dy lun yn gyntaf?" msgstr "Cadw dy lun yn gyntaf?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Methu agor y llun yna!" msgstr "Methu agor y llun yna!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Iawn" msgstr "Iawn"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Nid oes ffeiliau wedi'u cadw!" msgstr "Nid oes ffeiliau wedi'u cadw!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Argraffu dy lun rwan?" msgstr "Argraffu dy lun rwan?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Rwyt yn methu argraffu eto!" msgstr "Rwyt yn methu argraffu eto!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Dileu'r llun yma?" msgstr "Dileu'r llun yma?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "" msgstr ""
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Mae dy lun wedi cael ei argraffu!" msgstr "Mae dy lun wedi cael ei argraffu!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
#, fuzzy #, fuzzy
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Dewisa'r llun yr wyt eisiau, ac wedyn clicia 'Agor'." msgstr "Dewisa'r llun yr wyt eisiau, ac wedyn clicia 'Agor'."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "" msgstr ""
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "" msgstr ""
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "" msgstr ""
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Dileu" msgstr "Dileu"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "" msgstr ""
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Yn ôl" msgstr "Yn ôl"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
#, fuzzy #, fuzzy
msgid "Next" msgid "Next"
msgstr "Testun" msgstr "Testun"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "" msgstr ""
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ydw" msgstr "Ydw"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nac ydw" msgstr "Nac ydw"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "" msgstr ""
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "" msgstr ""
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
#, fuzzy #, fuzzy
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nage, cadw ffeil newydd" msgstr "Nage, cadw ffeil newydd"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Dewisa'r llun yr wyt eisiau, ac wedyn clicia 'Agor'." msgstr "Dewisa'r llun yr wyt eisiau, ac wedyn clicia 'Agor'."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "" msgstr ""
@ -835,11 +874,11 @@ msgstr "Clicia a symuda'r llygoden o gwmpas i bylu'r llun."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Clicia a symuda'r llygoden o gwmpas i bylu'r llun." msgstr "Clicia a symuda'r llygoden o gwmpas i bylu'r llun."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -927,11 +966,20 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Clicia a symuda'r llygoden o gwmpas i dro'i llun i mewn i ddarlun sialc." "Clicia a symuda'r llygoden o gwmpas i dro'i llun i mewn i ddarlun sialc."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Clicia a symuda'r llygoden i deneuo'r llun."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-05 12:38+0100\n" "PO-Revision-Date: 2017-12-05 12:38+0100\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -187,6 +187,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linjer"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik i billedet for at fylde området med en farve."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -347,47 +379,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Værktøj" msgstr "Værktøj"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Farver" msgstr "Farver"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Børster" msgstr "Børster"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Viskelædere" msgstr "Viskelædere"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempler" msgstr "Stempler"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Figurer" msgstr "Figurer"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Bogstaver" msgstr "Bogstaver"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magi" msgstr "Magi"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fyld"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -439,9 +478,9 @@ msgid "New"
msgstr "Ny" msgstr "Ny"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Åbn" msgstr "Åbn"
@ -581,227 +620,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "O.k. så… lad os fortsætte med denne tegning!" msgstr "O.k. så… lad os fortsætte med denne tegning!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Vil du virkelig slutte nu?" msgstr "Vil du virkelig slutte nu?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ja, jeg er færdig!" msgstr "Ja, jeg er færdig!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nej, vend tilbage!" msgstr "Nej, vend tilbage!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Hvis du afslutter nu, mister du din tegning! Vil du gemme den?" msgstr "Hvis du afslutter nu, mister du din tegning! Vil du gemme den?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ja, gem det!" msgstr "Ja, gem det!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Nej, glem det!" msgstr "Nej, glem det!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Vil du gemme billedet først?" msgstr "Vil du gemme billedet først?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Billedet kan ikke åbnes!" msgstr "Billedet kan ikke åbnes!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "O.k." msgstr "O.k."
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Der er ingen gemte billeder!" msgstr "Der er ingen gemte billeder!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Vil du udskrive billedet nu?" msgstr "Vil du udskrive billedet nu?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ja, udskriv det!" msgstr "Ja, udskriv det!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Billedet er udskrevet!" msgstr "Billedet er udskrevet!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Beklager! Dit billede kunne ikke udskrives!" msgstr "Beklager! Dit billede kunne ikke udskrives!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Du kan ikke udskrive endnu!" msgstr "Du kan ikke udskrive endnu!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Skal billedet slettes?" msgstr "Skal billedet slettes?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Nej, slet det!" msgstr "Nej, slet det!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Nej, slet det ikke!" msgstr "Nej, slet det ikke!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Husk at bruge venstre musetaste!" msgstr "Husk at bruge venstre musetaste!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Billedet er udskrevet!" msgstr "Billedet er udskrevet!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Billedet er udskrevet!" msgstr "Billedet er udskrevet!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Beklager! Dit billede kunne ikke udskrives!" msgstr "Beklager! Dit billede kunne ikke udskrives!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Beklager! Dit billede kunne ikke udskrives!" msgstr "Beklager! Dit billede kunne ikke udskrives!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Vælg de ønskede billeder og tryk på »Afspil«." msgstr "Vælg de ønskede billeder og tryk på »Afspil«."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Lyd slukket." msgstr "Lyd slukket."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Lyd tændt." msgstr "Lyd tændt."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Vent venligst…" msgstr "Vent venligst…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Slet" msgstr "Slet"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Dias" msgstr "Dias"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Tilbage" msgstr "Tilbage"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Afspil" msgstr "Afspil"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Næste" msgstr "Næste"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nej" msgstr "Nej"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Erstat billedet med dine ændringer?" msgstr "Erstat billedet med dine ændringer?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ja, erstat det eksisterende!" msgstr "Ja, erstat det eksisterende!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nej, gem som et nyt billede!" msgstr "Nej, gem som et nyt billede!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Vælg et billede og tryk på »Åbn«." msgstr "Vælg et billede og tryk på »Åbn«."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Vælg en farve fra din tegning·" msgstr "Vælg en farve fra din tegning·"
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Vælg en farve." msgstr "Vælg en farve."
@ -830,11 +869,11 @@ msgstr "Klik og bevæg musen rundt for at ændre farverne i dele af dit billede.
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik for at ændre farverne i hele dit billede." msgstr "Klik for at ændre farverne i hele dit billede."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Rullegardin" msgstr "Rullegardin"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -909,11 +948,21 @@ msgstr "Karikatur"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klik og bevæg musen rundt for at karikere billedet." msgstr "Klik og bevæg musen rundt for at karikere billedet."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik og bevæg for at tegne gentagende mønstre."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: de\n" "Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-25 21:13+0200\n" "PO-Revision-Date: 2017-12-25 21:13+0200\n"
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n" "Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
@ -184,6 +184,38 @@ msgstr "äüöß"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "ÄÜÖ" msgstr "ÄÜÖ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linien"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klicke in das Bild, um einen Bereich mit Farbe zu füllen."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -348,47 +380,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Werkzeuge" msgstr "Werkzeuge"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Farben" msgstr "Farben"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinsel" msgstr "Pinsel"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Radiergummies" msgstr "Radiergummies"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempel" msgstr "Stempel"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formen" msgstr "Formen"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Buchstaben" msgstr "Buchstaben"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magie" msgstr "Magie"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Füllen"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -440,9 +479,9 @@ msgid "New"
msgstr "Neu" msgstr "Neu"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Öffnen" msgstr "Öffnen"
@ -581,229 +620,229 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK, dann lass uns dieses Bild weitermalen!" msgstr "OK, dann lass uns dieses Bild weitermalen!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Möchtest du wirklich aufhören?" msgstr "Möchtest du wirklich aufhören?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ja, ich bin fertig!" msgstr "Ja, ich bin fertig!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nein, ich möchte weitermachen!" msgstr "Nein, ich möchte weitermachen!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "" msgstr ""
"Wenn du aufhörst, geht dein Bild verloren! Möchtest du es vorher noch " "Wenn du aufhörst, geht dein Bild verloren! Möchtest du es vorher noch "
"speichern?" "speichern?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ja, speichern!" msgstr "Ja, speichern!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Nein, nicht speichern!" msgstr "Nein, nicht speichern!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Möchtest du dein Bild zuerst noch speichern?" msgstr "Möchtest du dein Bild zuerst noch speichern?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Dieses Bild kann nicht geöffnet werden!" msgstr "Dieses Bild kann nicht geöffnet werden!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Es gibt noch keine gespeicherten Bilder!" msgstr "Es gibt noch keine gespeicherten Bilder!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Möchtest du dein Bild jetzt ausdrucken?" msgstr "Möchtest du dein Bild jetzt ausdrucken?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ja, jetzt drucken!" msgstr "Ja, jetzt drucken!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Dein Bild wird gedruckt!" msgstr "Dein Bild wird gedruckt!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!" msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Du kannst noch nicht drucken!" msgstr "Du kannst noch nicht drucken!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Möchtest du dieses Bild löschen?" msgstr "Möchtest du dieses Bild löschen?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ja, das Bild löschen!" msgstr "Ja, das Bild löschen!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Nein, nicht löschen!" msgstr "Nein, nicht löschen!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Denke daran, die linke Maustaste zu benutzen!" msgstr "Denke daran, die linke Maustaste zu benutzen!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Dein Bild wird gedruckt!" msgstr "Dein Bild wird gedruckt!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Dein Bild wird gedruckt!" msgstr "Dein Bild wird gedruckt!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!" msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!" msgstr "Es tut mir Leid! Dein Bild konnte nicht gedruckt werden!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Wähle ein Bild und klicke auf »Öffnen«." msgstr "Wähle ein Bild und klicke auf »Öffnen«."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sound ausgeschaltet." msgstr "Sound ausgeschaltet."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sound eingeschaltet." msgstr "Sound eingeschaltet."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Bitte warten …" msgstr "Bitte warten …"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Löschen" msgstr "Löschen"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diashow" msgstr "Diashow"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Zurück" msgstr "Zurück"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Öffnen" msgstr "Öffnen"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Weiter" msgstr "Weiter"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nein" msgstr "Nein"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Möchtest du das Bild mit deinen Änderungen überschreiben?" msgstr "Möchtest du das Bild mit deinen Änderungen überschreiben?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ja, das alte Bild überschreiben!" msgstr "Ja, das alte Bild überschreiben!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nein, in eine neue Datei speichern!" msgstr "Nein, in eine neue Datei speichern!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Wähle ein Bild, dass du öffnen möchtest und klicke auf »Öffnen«." msgstr "Wähle ein Bild, dass du öffnen möchtest und klicke auf »Öffnen«."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Wähle eine Farbe zum Zeichnen." msgstr "Wähle eine Farbe zum Zeichnen."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Wähle eine Farbe." msgstr "Wähle eine Farbe."
@ -832,11 +871,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klicke, um die Farbe im ganzen Bild zu verändern." msgstr "Klicke, um die Farbe im ganzen Bild zu verändern."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Jalousie" msgstr "Jalousie"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -913,11 +952,21 @@ msgstr "Comic"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klicke und ziehe die Maus, um dein Bild in einen Comic zu verwandeln." msgstr "Klicke und ziehe die Maus, um dein Bild in einen Comic zu verwandeln."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klicke und ziehe die Maus, um sich wiederholende Muster zu malen."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2013-09-04 10:23+0530\n" "PO-Revision-Date: 2013-09-04 10:23+0530\n"
"Last-Translator: <b>\n" "Last-Translator: <b>\n"
"Language-Team: Dogri\n" "Language-Team: Dogri\n"
@ -182,6 +182,38 @@ msgstr "<9>स्पेअर-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>स्पेअर-9b" msgstr "<9>स्पेअर-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "लाइनां"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "उस खित्ते च रंग भरने आस्तै तस्वीरा च क्लिक करो."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "उपकरण" msgstr "उपकरण"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "रंग" msgstr "रंग"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ब्रुश" msgstr "ब्रुश"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "पूंझक" msgstr "पूंझक"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "स्टैंपां" msgstr "स्टैंपां"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "आकार" msgstr "आकार"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "अक्खर" msgstr "अक्खर"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "जादू" msgstr "जादू"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "भराई करो"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "नमां" msgstr "नमां"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "खोह्‌ल्लो" msgstr "खोह्‌ल्लो"
@ -580,227 +619,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK फ्ही...चलो एह्‌कड़े दी चित्रकारी करना जारी रखचै." msgstr "OK फ्ही...चलो एह्‌कड़े दी चित्रकारी करना जारी रखचै."
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "क्या तुस सच्चें गै छोड़ना चांह्‌दे ओ?" msgstr "क्या तुस सच्चें गै छोड़ना चांह्‌दे ओ?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "हां, में करी बैठां!" msgstr "हां, में करी बैठां!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "नेईं, मिगी पिच्छें लेई जाओ." msgstr "नेईं, मिगी पिच्छें लेई जाओ."
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "जेकर तुस छोड़दे ओ, तां तुंʼदी तस्वीर नश्ट होई जाह्‌ग! इस्सी बचाइयै रक्खेआ जाऽ?" msgstr "जेकर तुस छोड़दे ओ, तां तुंʼदी तस्वीर नश्ट होई जाह्‌ग! इस्सी बचाइयै रक्खेआ जाऽ?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "हां, इस्सी बचाइयै रक्खेआ जाऽ !" msgstr "हां, इस्सी बचाइयै रक्खेआ जाऽ !"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "नेईं, बचाइयै रक्खने दी लोड़ नेईं." msgstr "नेईं, बचाइयै रक्खने दी लोड़ नेईं."
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "तुंʼदी तस्वीर गी पैह्‌लें बचाइयै रक्खेआ जाऽ ?" msgstr "तुंʼदी तस्वीर गी पैह्‌लें बचाइयै रक्खेआ जाऽ ?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "उस तस्वीर गी खोह्‌ल्ली नेईं सकदे !" msgstr "उस तस्वीर गी खोह्‌ल्ली नेईं सकदे !"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "बचाइयै रक्खी दियां कोई फाइलां नेईं हैन !" msgstr "बचाइयै रक्खी दियां कोई फाइलां नेईं हैन !"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "तुंʼदी तस्वीर गी हून प्रिंट कीता जाऽ ?" msgstr "तुंʼदी तस्वीर गी हून प्रिंट कीता जाऽ ?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "हां, इस्सी प्रिंट करो !" msgstr "हां, इस्सी प्रिंट करो !"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !" msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !" msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "तुस अजें बी प्रिंट नेईं करी सकदे !" msgstr "तुस अजें बी प्रिंट नेईं करी सकदे !"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "इस तस्वीर गी मटाई दित्ता जाऽ ?" msgstr "इस तस्वीर गी मटाई दित्ता जाऽ ?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "हां, इस्सी मटाई देओ !" msgstr "हां, इस्सी मटाई देओ !"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "नेईं, इस्सी मत मटाओ !" msgstr "नेईं, इस्सी मत मटाओ !"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "खब्बा माउस बटन बरतना चेतै रक्खो !" msgstr "खब्बा माउस बटन बरतना चेतै रक्खो !"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !" msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !" msgstr "हां, तुंʼदी तस्वीर गी प्रिंट करी लैता गेआ ऐ !"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !" msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !" msgstr "अफसोस ! तुंʼदी तस्वीर गी प्रिंट नेईं कीता जाई सकेआ !"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "जेह्‌ड़ियां तस्वीरां तुस चांह्‌दे ओ, ओह् चुनो ते फ्ही “चलाओ” पर क्लिक करो." msgstr "जेह्‌ड़ियां तस्वीरां तुस चांह्‌दे ओ, ओह् चुनो ते फ्ही “चलाओ” पर क्लिक करो."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "अवाज़ गी बंद कीता गेदा ऐ." msgstr "अवाज़ गी बंद कीता गेदा ऐ."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "अवाज़ गी छोड़ी दित्ता गेआ ." msgstr "अवाज़ गी छोड़ी दित्ता गेआ ."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "कृपा करियै बलगो..." msgstr "कृपा करियै बलगो..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "पूंझो" msgstr "पूंझो"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "स्लाइड़ां" msgstr "स्लाइड़ां"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "पिच्छें" msgstr "पिच्छें"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "चलाओ" msgstr "चलाओ"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "अगला" msgstr "अगला"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "आऽ" msgstr "आऽ"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "हां" msgstr "हां"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "नेईं" msgstr "नेईं"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "तुंʼदियें तब्दीलियें गी तस्वीर कन्नै प्रतिस्थापत कीता जाऽ ?" msgstr "तुंʼदियें तब्दीलियें गी तस्वीर कन्नै प्रतिस्थापत कीता जाऽ ?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "हां, परानी गी बदली ओड़ो!" msgstr "हां, परानी गी बदली ओड़ो!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "नेईं इक नमीं फाइल बचाइयै रक्खो!" msgstr "नेईं इक नमीं फाइल बचाइयै रक्खो!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "जेह्‌ड़ी तस्वीर तुस चांह्‌दे ओ, ओह् चुनो ते फ्ही “खोह्‌ल्लो” पर क्लिक करो." msgstr "जेह्‌ड़ी तस्वीर तुस चांह्‌दे ओ, ओह् चुनो ते फ्ही “खोह्‌ल्लो” पर क्लिक करो."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "कोई रंग चुनो" msgstr "कोई रंग चुनो"
@ -831,11 +870,11 @@ msgstr "अपनी तस्वीरा दे हिस्सें च र
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "अपनी सबूरी तस्वीरा च रंग बदलने आस्तै क्लिक करो." msgstr "अपनी सबूरी तस्वीरा च रंग बदलने आस्तै क्लिक करो."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "ब्लाइंड" msgstr "ब्लाइंड"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -926,11 +965,21 @@ msgstr "कार्टून"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "तस्वीरा गी कार्टून च बदलने आस्तै क्लिक करो ते माउस गी फेरो." msgstr "तस्वीरा गी कार्टून च बदलने आस्तै क्लिक करो ते माउस गी फेरो."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw arrows made of string art."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "धागा कला कन्नै बने दे तीर चित्तरने आस्तै क्लिक करो ते खिच्चो."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-06 07:45+0000\n" "PO-Revision-Date: 2017-12-06 07:45+0000\n"
"Last-Translator: kiolalis <kiolalis@gmail.com>\n" "Last-Translator: kiolalis <kiolalis@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -184,6 +184,38 @@ msgstr "<9>τετράγωνο-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>τετράγωνο-9b" msgstr "<9>τετράγωνο-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Γραμμές"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Κάνε κλικ στη ζωγραφιά για να γεμίσεις μια περιοχή με χρώμα."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -349,47 +381,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Εργαλεία" msgstr "Εργαλεία"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Χρώματα" msgstr "Χρώματα"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Πινέλα" msgstr "Πινέλα"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Σβηστήρες" msgstr "Σβηστήρες"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Σφραγίδες" msgstr "Σφραγίδες"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Σχήματα" msgstr "Σχήματα"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Γράμματα" msgstr "Γράμματα"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Μαγικά" msgstr "Μαγικά"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Γέμισμα"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -441,9 +480,9 @@ msgid "New"
msgstr "Νέο" msgstr "Νέο"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Άνοιγμα" msgstr "Άνοιγμα"
@ -586,227 +625,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Εντάξει λοιπόν… Ας συνεχίσουμε τη σχεδίαση του ίδιου!" msgstr "Εντάξει λοιπόν… Ας συνεχίσουμε τη σχεδίαση του ίδιου!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Σίγουρα θέλεις να βγεις από το πρόγραμμα;" msgstr "Σίγουρα θέλεις να βγεις από το πρόγραμμα;"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ναι, τελείωσα!" msgstr "Ναι, τελείωσα!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Όχι δεν έχω τελειώσει ακόμα!" msgstr "Όχι δεν έχω τελειώσει ακόμα!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Αν βγεις από το πρόγραμμα, θα χαθεί η εικόνα σου! Να αποθηκευτεί;" msgstr "Αν βγεις από το πρόγραμμα, θα χαθεί η εικόνα σου! Να αποθηκευτεί;"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ναι, αποθήκευσέ την!" msgstr "Ναι, αποθήκευσέ την!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Όχι, μην ασχοληθείς με την αποθήκευση!" msgstr "Όχι, μην ασχοληθείς με την αποθήκευση!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Να αποθηκευτεί η εικόνα σου πρώτα;" msgstr "Να αποθηκευτεί η εικόνα σου πρώτα;"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Δεν μπορώ να ανοίξω αυτή τη ζωγραφιά!" msgstr "Δεν μπορώ να ανοίξω αυτή τη ζωγραφιά!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Εντάξει" msgstr "Εντάξει"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Δεν υπάρχουν αποθηκευμένα αρχεία!" msgstr "Δεν υπάρχουν αποθηκευμένα αρχεία!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Να εκτυπώσω τη ζωγραφιά σου;" msgstr "Να εκτυπώσω τη ζωγραφιά σου;"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ναι, εκτύπωσέ την!" msgstr "Ναι, εκτύπωσέ την!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Η εικόνα σου εκτυπώθηκε!" msgstr "Η εικόνα σου εκτυπώθηκε!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!" msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Δεν μπορείς να εκτυπώσεις ακόμη!" msgstr "Δεν μπορείς να εκτυπώσεις ακόμη!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Να διαγραψω αυτήν την εικόνα;" msgstr "Να διαγραψω αυτήν την εικόνα;"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ναι, διάγραψέ την!" msgstr "Ναι, διάγραψέ την!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Όχι, μην τη διαγράφεις!" msgstr "Όχι, μην τη διαγράφεις!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Προσοχή, πρέπει να χρησιμοποιείς το αριστερό πλήκτρο του ποντικιού!" msgstr "Προσοχή, πρέπει να χρησιμοποιείς το αριστερό πλήκτρο του ποντικιού!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Η εικόνα σου εκτυπώθηκε!" msgstr "Η εικόνα σου εκτυπώθηκε!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Η εικόνα σου εκτυπώθηκε!" msgstr "Η εικόνα σου εκτυπώθηκε!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!" msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!" msgstr "Λυπάμαι! Δεν ήταν δυνατή η εκτύπωση της ζωγραφιάς σου!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Διάλεξε τη ζωγραφιά που θέλεις και μετά πάτησε 'Αναπαραγωγή'." msgstr "Διάλεξε τη ζωγραφιά που θέλεις και μετά πάτησε 'Αναπαραγωγή'."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Χωρίς ήχο." msgstr "Χωρίς ήχο."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Με ήχο." msgstr "Με ήχο."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Παρακαλώ περιμένετε..." msgstr "Παρακαλώ περιμένετε..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Διαγραφή" msgstr "Διαγραφή"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Προβολή διαφανειών." msgstr "Προβολή διαφανειών."
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Προηγούμενο" msgstr "Προηγούμενο"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Αναπαραγωγή" msgstr "Αναπαραγωγή"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Επόμενο" msgstr "Επόμενο"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Αα" msgstr "Αα"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ναι" msgstr "Ναι"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Όχι" msgstr "Όχι"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Να αντικαταστήσω τη ζωγραφιά με τις αλλαγές που έκανες;" msgstr "Να αντικαταστήσω τη ζωγραφιά με τις αλλαγές που έκανες;"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ναι, αντικατάστησε την παλιά ζωγραφιά!" msgstr "Ναι, αντικατάστησε την παλιά ζωγραφιά!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Όχι, κάνε αποθήκευση σε νέο αρχείο!" msgstr "Όχι, κάνε αποθήκευση σε νέο αρχείο!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Διάλεξε τη ζωγραφιά που θέλεις και μετά πάτησε 'Άνοιγμα'." msgstr "Διάλεξε τη ζωγραφιά που θέλεις και μετά πάτησε 'Άνοιγμα'."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Επίλεξε ένα χρώμα από τη ζωγραφιά σου." msgstr "Επίλεξε ένα χρώμα από τη ζωγραφιά σου."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Δάλεξε ένα χρώμα." msgstr "Δάλεξε ένα χρώμα."
@ -836,11 +875,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Κάνε κλικ για να αλλάξεις τα χρώματα σε ολόκληρη τη ζωγραφιά σου." msgstr "Κάνε κλικ για να αλλάξεις τα χρώματα σε ολόκληρη τη ζωγραφιά σου."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Θάμπωμα" msgstr "Θάμπωμα"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -919,11 +958,21 @@ msgstr ""
"Κάνε κλικ και κίνησε το ποντίκι γύρω για να κάνεις τη ζωγραφιά να μοιάζει με " "Κάνε κλικ και κίνησε το ποντίκι γύρω για να κάνεις τη ζωγραφιά να μοιάζει με "
"καρτούν." "καρτούν."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Κάνε κλικ και σύρε για να σχεδιάσεις επαναλαμβανόμενα μοτίβα."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-29 23:36+0930\n" "PO-Revision-Date: 2014-06-29 23:36+0930\n"
"Last-Translator: ilox <ilox11@gmail.com>\n" "Last-Translator: ilox <ilox11@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -183,6 +183,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lines"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Click in the picture to fill that area with colour."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -344,47 +376,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tools" msgstr "Tools"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colours" msgstr "Colours"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Brushes" msgstr "Brushes"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Erasers" msgstr "Erasers"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stamps" msgstr "Stamps"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Shapes" msgstr "Shapes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fill"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -436,9 +475,9 @@ msgid "New"
msgstr "New" msgstr "New"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -575,227 +614,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK then… Lets keep drawing this one!" msgstr "OK then… Lets keep drawing this one!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Do you really want to quit?" msgstr "Do you really want to quit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Yes, Im done!" msgstr "Yes, Im done!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, take me back!" msgstr "No, take me back!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "If you quit, youll lose your picture! Save it?" msgstr "If you quit, youll lose your picture! Save it?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Yes, save it!" msgstr "Yes, save it!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, dont bother saving!" msgstr "No, dont bother saving!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Save your picture first?" msgstr "Save your picture first?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Cant open that picture!" msgstr "Cant open that picture!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "There are no saved files!" msgstr "There are no saved files!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Print your picture now?" msgstr "Print your picture now?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Yes, print it!" msgstr "Yes, print it!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "You cant print yet!" msgstr "You cant print yet!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Erase this picture?" msgstr "Erase this picture?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Yes, erase it!" msgstr "Yes, erase it!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, dont erase it!" msgstr "No, dont erase it!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Remember to use the left mouse button!" msgstr "Remember to use the left mouse button!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Choose the pictures you want, then click “Play”." msgstr "Choose the pictures you want, then click “Play”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sound muted." msgstr "Sound muted."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sound unmuted." msgstr "Sound unmuted."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Please wait…" msgstr "Please wait…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Erase" msgstr "Erase"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slides" msgstr "Slides"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Back" msgstr "Back"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Play" msgstr "Play"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Next" msgstr "Next"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Yes" msgstr "Yes"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Replace the picture with your changes?" msgstr "Replace the picture with your changes?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Yes, replace the old one!" msgstr "Yes, replace the old one!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, save a new file!" msgstr "No, save a new file!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Choose the picture you want, then click “Open”." msgstr "Choose the picture you want, then click “Open”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Pick a colour." msgstr "Pick a colour."
@ -827,11 +866,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Click to change the colours in your entire picture." msgstr "Click to change the colours in your entire picture."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blind" msgstr "Blind"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -923,11 +962,21 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Click and move the mouse around to turn the picture into a cartoon." msgstr "Click and move the mouse around to turn the picture into a cartoon."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Click and drag to draw repetitive patterns. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-07-07 12:22+0100\n" "PO-Revision-Date: 2014-07-07 12:22+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -181,6 +181,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lines"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Click in the picture to fill that area with colour."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tools" msgstr "Tools"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colors" msgstr "Colors"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Brushes" msgstr "Brushes"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Erasers" msgstr "Erasers"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stamps" msgstr "Stamps"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Shapes" msgstr "Shapes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fill"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "New" msgstr "New"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -579,227 +618,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK then… Lets keep drawing this one!" msgstr "OK then… Lets keep drawing this one!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Do you really want to quit?" msgstr "Do you really want to quit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Yes, Im done!" msgstr "Yes, Im done!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, take me back!" msgstr "No, take me back!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "If you quit, youll lose your picture! Save it?" msgstr "If you quit, youll lose your picture! Save it?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Yes, save it!" msgstr "Yes, save it!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, dont bother saving!" msgstr "No, dont bother saving!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Save your picture first?" msgstr "Save your picture first?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Cant open that picture!" msgstr "Cant open that picture!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "There are no saved files!" msgstr "There are no saved files!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Print your picture now?" msgstr "Print your picture now?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Yes, print it!" msgstr "Yes, print it!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "You cant print yet!" msgstr "You cant print yet!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Erase this picture?" msgstr "Erase this picture?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Yes, erase it!" msgstr "Yes, erase it!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, dont erase it!" msgstr "No, dont erase it!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Remember to use the left mouse button!" msgstr "Remember to use the left mouse button!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Choose the pictures you want, then click “Play”." msgstr "Choose the pictures you want, then click “Play”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sound muted." msgstr "Sound muted."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sound unmuted." msgstr "Sound unmuted."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Please wait…" msgstr "Please wait…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Erase" msgstr "Erase"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slides" msgstr "Slides"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Back" msgstr "Back"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Play" msgstr "Play"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Next" msgstr "Next"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Yes" msgstr "Yes"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Replace the picture with your changes?" msgstr "Replace the picture with your changes?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Yes, replace the old one!" msgstr "Yes, replace the old one!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, save a new file!" msgstr "No, save a new file!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Choose the picture you want, then click \"Open\"." msgstr "Choose the picture you want, then click \"Open\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Pick a color." msgstr "Pick a color."
@ -831,11 +870,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Click to change the colours in your entire picture." msgstr "Click to change the colours in your entire picture."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blind" msgstr "Blind"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -927,11 +966,21 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Click and move the mouse around to turn the picture into a cartoon." msgstr "Click and move the mouse around to turn the picture into a cartoon."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Click and drag to draw repetitive patterns. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-30 21:17+0000\n" "PO-Revision-Date: 2017-12-30 21:17+0000\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -184,6 +184,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lines"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Click in the picture to fill that area with colour."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -345,47 +377,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tools" msgstr "Tools"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colours" msgstr "Colours"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Brushes" msgstr "Brushes"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Erasers" msgstr "Erasers"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stamps" msgstr "Stamps"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Shapes" msgstr "Shapes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fill"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -437,9 +476,9 @@ msgid "New"
msgstr "New" msgstr "New"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -576,227 +615,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK then… Lets keep drawing this one!" msgstr "OK then… Lets keep drawing this one!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Do you really want to quit?" msgstr "Do you really want to quit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Yes, Im done!" msgstr "Yes, Im done!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No. take me back!" msgstr "No. take me back!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "If you quit, youll lose your picture! Save it?" msgstr "If you quit, youll lose your picture! Save it?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Yes, save it!" msgstr "Yes, save it!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, dont bother saving!" msgstr "No, dont bother saving!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Save your picture first?" msgstr "Save your picture first?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Cant open that picture!" msgstr "Cant open that picture!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "There are no saved files!" msgstr "There are no saved files!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Print your picture now?" msgstr "Print your picture now?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Yes, print it!" msgstr "Yes, print it!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "You cant print yet!" msgstr "You cant print yet!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Erase this picture?" msgstr "Erase this picture?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Yes, erase it!" msgstr "Yes, erase it!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, dont erase it!" msgstr "No, dont erase it!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Remember to use the left mouse button!" msgstr "Remember to use the left mouse button!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Sorry! Your picture could not be printed!" msgstr "Sorry! Your picture could not be printed!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Choose the pictures you want, then click Play." msgstr "Choose the pictures you want, then click Play."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sound muted." msgstr "Sound muted."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sound unmuted." msgstr "Sound unmuted."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Please wait…" msgstr "Please wait…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Erase" msgstr "Erase"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slides" msgstr "Slides"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Back" msgstr "Back"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Play" msgstr "Play"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Next" msgstr "Next"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Yes" msgstr "Yes"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Replace the picture with your changes?" msgstr "Replace the picture with your changes?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Yes, replace the old one!" msgstr "Yes, replace the old one!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, save a new file!" msgstr "No, save a new file!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Choose the picture you want, then click Open." msgstr "Choose the picture you want, then click Open."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Select a colour from your drawing." msgstr "Select a colour from your drawing."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Pick a colour." msgstr "Pick a colour."
@ -825,11 +864,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Click to change the colours in your entire picture." msgstr "Click to change the colours in your entire picture."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blind" msgstr "Blind"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -904,11 +943,21 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Click and move the mouse around to turn the picture into a cartoon." msgstr "Click and move the mouse around to turn the picture into a cartoon."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Click and drag to draw repetitive patterns. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.16\n" "Project-Id-Version: 0.9.16\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2009-09-06 15:46+0100\n" "PO-Revision-Date: 2009-09-06 15:46+0100\n"
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n" "Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
"Language-Team: English (South African) <en_za@li.org>\n" "Language-Team: English (South African) <en_za@li.org>\n"
@ -181,6 +181,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lines"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Click in the picture to fill that area with colour."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -345,47 +377,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tools" msgstr "Tools"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colours" msgstr "Colours"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Brushes" msgstr "Brushes"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Erasers" msgstr "Erasers"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stamps" msgstr "Stamps"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Shapes" msgstr "Shapes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fill"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -437,9 +476,9 @@ msgid "New"
msgstr "New" msgstr "New"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -579,235 +618,235 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK then... Lets keep drawing this one!" msgstr "OK then... Lets keep drawing this one!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Do you really want to quit?" msgstr "Do you really want to quit?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
#, fuzzy #, fuzzy
#| msgid "Yes, I'm done!" #| msgid "Yes, I'm done!"
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Yes, I'm done!" msgstr "Yes, I'm done!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, take me back!" msgstr "No, take me back!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "If you quit, youll lose your picture! Save it?" msgstr "If you quit, youll lose your picture! Save it?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Yes, save it!" msgstr "Yes, save it!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, don't bother saving!" msgstr "No, don't bother saving!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Save your picture first?" msgstr "Save your picture first?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Cant open that picture!" msgstr "Cant open that picture!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "There are no saved files!" msgstr "There are no saved files!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Print your picture now?" msgstr "Print your picture now?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Yes, print it!" msgstr "Yes, print it!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "You cant print yet!" msgstr "You cant print yet!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Erase this picture?" msgstr "Erase this picture?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Yes, erase it!" msgstr "Yes, erase it!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, don't erase it!" msgstr "No, don't erase it!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Remember to use the left mouse button!" msgstr "Remember to use the left mouse button!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Your picture has been printed!" msgstr "Your picture has been printed!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Choose the pictures you want, then click “Play”." msgstr "Choose the pictures you want, then click “Play”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sound muted." msgstr "Sound muted."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sound unmuted." msgstr "Sound unmuted."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Please wait…" msgstr "Please wait…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Erase" msgstr "Erase"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slides" msgstr "Slides"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Back" msgstr "Back"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Play" msgstr "Play"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Next" msgstr "Next"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Yes" msgstr "Yes"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Replace the picture with your changes?" msgstr "Replace the picture with your changes?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Yes, replace the old one!" msgstr "Yes, replace the old one!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, save a new file!" msgstr "No, save a new file!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Choose the picture you want, then click “Open”." msgstr "Choose the picture you want, then click “Open”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Pick a colour." msgstr "Pick a colour."
@ -837,11 +876,11 @@ msgstr "Click and move the mouse around to blur the picture."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Click and move the mouse around to blur the picture." msgstr "Click and move the mouse around to blur the picture."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blind" msgstr "Blind"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -933,11 +972,20 @@ msgstr "Cartoon"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Click and move the mouse around to turn the picture into a cartoon." msgstr "Click and move the mouse around to turn the picture into a cartoon."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Click and move the mouse around to blur the picture."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-16 16:00+0000\n" "PO-Revision-Date: 2014-06-16 16:00+0000\n"
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n" "Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n" "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@ -180,6 +180,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linioj"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Alklaku ie bilde por plenigi tiun regionon per koloro."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Iloj" msgstr "Iloj"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Koloroj" msgstr "Koloroj"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Penikoj" msgstr "Penikoj"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Viŝiloj" msgstr "Viŝiloj"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stampiloj" msgstr "Stampiloj"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formoj" msgstr "Formoj"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Literoj" msgstr "Literoj"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magio" msgstr "Magio"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Plenigi"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "Nova" msgstr "Nova"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Malfermi" msgstr "Malfermi"
@ -573,227 +612,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Bone… Ni plu desegnu ĉi tiun!" msgstr "Bone… Ni plu desegnu ĉi tiun!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Ĉu vi vere volas eliri?" msgstr "Ĉu vi vere volas eliri?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Jes, mi finis!" msgstr "Jes, mi finis!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ne, mi volas daŭrigi!" msgstr "Ne, mi volas daŭrigi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Se vi eliros, via bildo perdiĝos! Ĉu vi volas konservi ĝin?" msgstr "Se vi eliros, via bildo perdiĝos! Ĉu vi volas konservi ĝin?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Jes, konservu ĝin!" msgstr "Jes, konservu ĝin!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ne, ne indas konservi ĝin!" msgstr "Ne, ne indas konservi ĝin!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Ĉu vi volas unue konservi vian nunan bildon?" msgstr "Ĉu vi volas unue konservi vian nunan bildon?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ne eblas malfermi tiun bildon!" msgstr "Ne eblas malfermi tiun bildon!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Bone" msgstr "Bone"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Ne estas konservitaj dosieroj!" msgstr "Ne estas konservitaj dosieroj!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Ĉu printi vian bildon nun?" msgstr "Ĉu printi vian bildon nun?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Jes, printu ĝin!" msgstr "Jes, printu ĝin!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Via bildo estis printita!" msgstr "Via bildo estis printita!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Pardonon! Via bildo ne estis printita!" msgstr "Pardonon! Via bildo ne estis printita!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Vi ankoraŭ ne povas printi!" msgstr "Vi ankoraŭ ne povas printi!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Ĉu forviŝi ĉi tiun bildon?" msgstr "Ĉu forviŝi ĉi tiun bildon?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Jes, forviŝu ĝin!" msgstr "Jes, forviŝu ĝin!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ne, ne forviŝu ĝin!" msgstr "Ne, ne forviŝu ĝin!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Memoru uzi la maldekstran musbutonon!" msgstr "Memoru uzi la maldekstran musbutonon!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Via bildo estis printita!" msgstr "Via bildo estis printita!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Via bildo estis printita!" msgstr "Via bildo estis printita!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Pardonon! Via bildo ne estis printita!" msgstr "Pardonon! Via bildo ne estis printita!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Pardonon! Via bildo ne estis printita!" msgstr "Pardonon! Via bildo ne estis printita!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Elektu la bildon, kiun vi volas, kaj alklaku “Ludi”." msgstr "Elektu la bildon, kiun vi volas, kaj alklaku “Ludi”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sono malŝaltita." msgstr "Sono malŝaltita."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sono ŝaltita." msgstr "Sono ŝaltita."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Bonvolu atendi…" msgstr "Bonvolu atendi…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Forviŝi" msgstr "Forviŝi"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Lumbildoj" msgstr "Lumbildoj"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Reen" msgstr "Reen"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Ludi" msgstr "Ludi"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Sekva" msgstr "Sekva"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Jes" msgstr "Jes"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Ĉu anstataŭigi la bildon per viaj ŝanĝoj?" msgstr "Ĉu anstataŭigi la bildon per viaj ŝanĝoj?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Jes, anstataŭigu la malnovan!" msgstr "Jes, anstataŭigu la malnovan!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ne, konservu je nova dosiero!" msgstr "Ne, konservu je nova dosiero!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Elektu la bildon, kiun vi volas, kaj alklaku “Malfermi”." msgstr "Elektu la bildon, kiun vi volas, kaj alklaku “Malfermi”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Elektu koloron." msgstr "Elektu koloron."
@ -825,11 +864,11 @@ msgstr "Alklaku kaj movu la muson por ŝanĝi la koloron en partoj de via bildo.
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Alklaku por ŝanĝi la kolorojn je via tuta bildo." msgstr "Alklaku por ŝanĝi la kolorojn je via tuta bildo."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Rulŝutro" msgstr "Rulŝutro"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -920,11 +959,20 @@ msgstr "Karikaturigi"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon al karikaturo." msgstr "Alklaku kaj movu la muson por ŝanĝi la bildon al karikaturo."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Alklaku kaj tiru por desegni ripetivajn figurojn."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -29,7 +29,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-18 20:31-0300\n" "PO-Revision-Date: 2017-12-18 20:31-0300\n"
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n" "Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -201,6 +201,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Líneas"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Haz click en el dibujo para rellenar un área de color."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -364,47 +396,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Herramientas" msgstr "Herramientas"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colores" msgstr "Colores"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinceles" msgstr "Pinceles"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomas" msgstr "Gomas"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Sellos" msgstr "Sellos"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formas" msgstr "Formas"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letras" msgstr "Letras"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magias" msgstr "Magias"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Rellenar"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -456,9 +495,9 @@ msgid "New"
msgstr "Nuevo" msgstr "Nuevo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -598,227 +637,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Muy bien… ¡vamos a seguir dibujando!" msgstr "Muy bien… ¡vamos a seguir dibujando!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "¿De verdad quieres salir?" msgstr "¿De verdad quieres salir?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "¡Sí, de momento ya está!" msgstr "¡Sí, de momento ya está!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, ¡quiero volver!" msgstr "No, ¡quiero volver!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Si te vas perderás tu dibujo, ¿lo quieres guardar?" msgstr "Si te vas perderás tu dibujo, ¿lo quieres guardar?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sí, ¡guárdalo!" msgstr "Sí, ¡guárdalo!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, ¡no me importa!." msgstr "No, ¡no me importa!."
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "¿Quieres guardar tu dibujo primero?" msgstr "¿Quieres guardar tu dibujo primero?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "¡No se pudo abrir ese dibujo!" msgstr "¡No se pudo abrir ese dibujo!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Aceptar" msgstr "Aceptar"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "¡No hay documentos guardados!" msgstr "¡No hay documentos guardados!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "¿Quieres imprimir tu dibujo ahora?" msgstr "¿Quieres imprimir tu dibujo ahora?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "¡Sí, imprímelo!" msgstr "¡Sí, imprímelo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "¡Tu dibujo se ha impreso!" msgstr "¡Tu dibujo se ha impreso!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "¡Perdón, no se pudo imprimir tu dibujo!" msgstr "¡Perdón, no se pudo imprimir tu dibujo!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "¡Todavía no puedes imprimir!" msgstr "¡Todavía no puedes imprimir!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "¿Quieres borrar este dibujo?" msgstr "¿Quieres borrar este dibujo?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "¡Sí, bórralo!" msgstr "¡Sí, bórralo!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "¡No, no lo borres!" msgstr "¡No, no lo borres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "¡Utiliza el botón izquierdo del ratón!" msgstr "¡Utiliza el botón izquierdo del ratón!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "¡Tu dibujo se ha impreso!" msgstr "¡Tu dibujo se ha impreso!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "¡Tu dibujo se ha impreso!" msgstr "¡Tu dibujo se ha impreso!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "¡Perdón, no se pudo imprimir tu dibujo!" msgstr "¡Perdón, no se pudo imprimir tu dibujo!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "¡Perdón, no se pudo imprimir tu dibujo!" msgstr "¡Perdón, no se pudo imprimir tu dibujo!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Elige el dibujo que quieres y luego selecciona \"Reproducir\"." msgstr "Elige el dibujo que quieres y luego selecciona \"Reproducir\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sonido desactivado." msgstr "Sonido desactivado."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sonido activado." msgstr "Sonido activado."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Espera…" msgstr "Espera…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Borrar" msgstr "Borrar"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositivas" msgstr "Diapositivas"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Atrás" msgstr "Atrás"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproducir" msgstr "Reproducir"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "¿Quieres reemplazar el dibujo con tus cambios?" msgstr "¿Quieres reemplazar el dibujo con tus cambios?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "¡Sí, reemplázalo!" msgstr "¡Sí, reemplázalo!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "¡No, guarda un documento nuevo!" msgstr "¡No, guarda un documento nuevo!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Elige el dibujo que quieres y luego selecciona \"Abrir\"." msgstr "Elige el dibujo que quieres y luego selecciona \"Abrir\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Elige un color de tu dibujo." msgstr "Elige un color de tu dibujo."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Elige un color." msgstr "Elige un color."
@ -848,11 +887,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Haz click para cambiar los colores de todo el dibujo." msgstr "Haz click para cambiar los colores de todo el dibujo."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persianas" msgstr "Persianas"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -928,11 +967,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Haz click y arrastra el ratón para que tu dibujo se vea como en un cómic." "Haz click y arrastra el ratón para que tu dibujo se vea como en un cómic."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Haz click y mueve el ratón para dibujar patrones repetitivos. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.2\n" "Project-Id-Version: TuxPaint 0.9.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2007-08-05 19:22-0400\n" "PO-Revision-Date: 2007-08-05 19:22-0400\n"
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\n" "Last-Translator: Ignacio Tike <itike17@yahoo.com>\n"
"Language-Team: Español <ggabriel@internet.com.uy>\n" "Language-Team: Español <ggabriel@internet.com.uy>\n"
@ -177,6 +177,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lineas"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Haz clic en la imagen para rellenar esa área con color."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -340,47 +372,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Herramientas" msgstr "Herramientas"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colores" msgstr "Colores"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinceles" msgstr "Pinceles"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Borradores" msgstr "Borradores"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Sellos" msgstr "Sellos"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Figuras" msgstr "Figuras"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letras" msgstr "Letras"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magia" msgstr "Magia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Rellenar"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -432,9 +471,9 @@ msgid "New"
msgstr "Nuevo" msgstr "Nuevo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -575,237 +614,237 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Muy bien... ¡Sigamos dibujando esto!" msgstr "Muy bien... ¡Sigamos dibujando esto!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "¿Realmente quieres salir?" msgstr "¿Realmente quieres salir?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
#, fuzzy #, fuzzy
#| msgid "Yes, I'm done!" #| msgid "Yes, I'm done!"
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "¡Sí, he terminado!" msgstr "¡Sí, he terminado!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "¡No, llévame a la pantalla anterior!" msgstr "¡No, llévame a la pantalla anterior!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "" msgstr ""
"¡Si sales perderás tu pintura!!\n" "¡Si sales perderás tu pintura!!\n"
"¿Quieres guardarla?" "¿Quieres guardarla?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "¡Sí, guárdalo!" msgstr "¡Sí, guárdalo!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "¡No, no lo guardes!." msgstr "¡No, no lo guardes!."
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "¿Guardar tu imagen primero?" msgstr "¿Guardar tu imagen primero?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "¡No se puede abrir esa imagen!" msgstr "¡No se puede abrir esa imagen!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Aceptar" msgstr "Aceptar"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "¡No hay archivos guardados!" msgstr "¡No hay archivos guardados!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "¿Imprimir tu imagen ahora?" msgstr "¿Imprimir tu imagen ahora?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "¡Sí, imprímelo!" msgstr "¡Sí, imprímelo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "¡Aún no puedes imprimir!" msgstr "¡Aún no puedes imprimir!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "¿Borrar esta imagen?" msgstr "¿Borrar esta imagen?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "¡Sí, bórralo!" msgstr "¡Sí, bórralo!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "¡No, no lo borres!" msgstr "¡No, no lo borres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "¡Recuerda usar el botón izquierdo del ratón!" msgstr "¡Recuerda usar el botón izquierdo del ratón!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "¡Tu imagen ha sido impresa!" msgstr "¡Tu imagen ha sido impresa!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Elige la imagen que quieras, luego haz clic en \"Reproducir\"." msgstr "Elige la imagen que quieras, luego haz clic en \"Reproducir\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Sonido deshabilitado." msgstr "Sonido deshabilitado."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Sonido habilitado." msgstr "Sonido habilitado."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Espera, por favor..." msgstr "Espera, por favor..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Borrar" msgstr "Borrar"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositivas" msgstr "Diapositivas"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Atrás" msgstr "Atrás"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproducir" msgstr "Reproducir"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "¿Reemplazar la imagen con tus cambios?" msgstr "¿Reemplazar la imagen con tus cambios?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "¡Sí, reemplaza la anterior!" msgstr "¡Sí, reemplaza la anterior!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "¡No, guardar en un nuevo archivo!" msgstr "¡No, guardar en un nuevo archivo!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Selecciona la imagen que quieres, luego haz clic en \"Abrir\"." msgstr "Selecciona la imagen que quieres, luego haz clic en \"Abrir\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Elige un color." msgstr "Elige un color."
@ -835,11 +874,11 @@ msgstr "Haz clic y arrastra el ratón para desenfocar la imagen."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Haz clic y arrastra el ratón para desenfocar la imagen." msgstr "Haz clic y arrastra el ratón para desenfocar la imagen."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -931,11 +970,21 @@ msgstr ""
"Haz clic y arrastra el ratón alrededor para convertir la imagen en una " "Haz clic y arrastra el ratón alrededor para convertir la imagen en una "
"caricatura." "caricatura."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr ""
"Haz clic y arrastra el ratón para poner azulejos de vidrio sobre tu imagen."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2015-03-07 13:09+0000\n" "PO-Revision-Date: 2015-03-07 13:09+0000\n"
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n" "Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/" "Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/"
@ -187,6 +187,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Jooned"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klõpsa pildil, et täita see ala värviga."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -347,47 +379,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tööriistad" msgstr "Tööriistad"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Värvid" msgstr "Värvid"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pintslid" msgstr "Pintslid"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Kustukummid" msgstr "Kustukummid"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Templid" msgstr "Templid"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Kujundid" msgstr "Kujundid"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Tähed" msgstr "Tähed"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Maagia" msgstr "Maagia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Täide"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -439,9 +478,9 @@ msgid "New"
msgstr "Uus" msgstr "Uus"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Ava" msgstr "Ava"
@ -577,227 +616,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Olgu nii, joonistame seda pilti edasi!" msgstr "Olgu nii, joonistame seda pilti edasi!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Kas sa tõesti tahad väljuda?" msgstr "Kas sa tõesti tahad väljuda?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Jah, ma lõpetasin!" msgstr "Jah, ma lõpetasin!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ei, vii mind tagasi!" msgstr "Ei, vii mind tagasi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Kui sa praegu väljud, kaotad sa oma pildi ära! Kas salvestame?" msgstr "Kui sa praegu väljud, kaotad sa oma pildi ära! Kas salvestame?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Jah, salvesta!" msgstr "Jah, salvesta!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ei, pole vaja salvestada!" msgstr "Ei, pole vaja salvestada!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Salvestame su pildi enne ära?" msgstr "Salvestame su pildi enne ära?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Selle pildi avamine ei ole võimalik!" msgstr "Selle pildi avamine ei ole võimalik!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Selge" msgstr "Selge"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Salvestatud pilte ei ole!" msgstr "Salvestatud pilte ei ole!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Kas trükin sinu pildi välja?" msgstr "Kas trükin sinu pildi välja?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Jah, trüki!" msgstr "Jah, trüki!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Sinu pilt on välja trükitud!" msgstr "Sinu pilt on välja trükitud!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Anna andeks aga su pilti ei olnud võimalik printida!" msgstr "Anna andeks aga su pilti ei olnud võimalik printida!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ei saa veel välja trükkida!" msgstr "Ei saa veel välja trükkida!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Kas kustutan selle pildi?" msgstr "Kas kustutan selle pildi?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Jah, kustuta!" msgstr "Jah, kustuta!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ei, ära kustuta!" msgstr "Ei, ära kustuta!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Ära unusta kasutamast vasakut hiire nuppu!" msgstr "Ära unusta kasutamast vasakut hiire nuppu!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Sinu pilt on välja trükitud!" msgstr "Sinu pilt on välja trükitud!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Sinu pilt on välja trükitud!" msgstr "Sinu pilt on välja trükitud!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Anna andeks aga su pilti ei olnud võimalik printida!" msgstr "Anna andeks aga su pilti ei olnud võimalik printida!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Anna andeks aga su pilti ei olnud võimalik printida!" msgstr "Anna andeks aga su pilti ei olnud võimalik printida!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Vali soovitud pildid ja klõpsa nupul \"Esita\"" msgstr "Vali soovitud pildid ja klõpsa nupul \"Esita\""
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Heli vaigistatud." msgstr "Heli vaigistatud."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Heli taastatud." msgstr "Heli taastatud."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Palun oota..." msgstr "Palun oota..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Kustuta" msgstr "Kustuta"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slaidid" msgstr "Slaidid"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Tagasi" msgstr "Tagasi"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Esita" msgstr "Esita"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Edasi" msgstr "Edasi"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Jah" msgstr "Jah"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ei" msgstr "Ei"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Asenda pilt tehtud muudatustega?" msgstr "Asenda pilt tehtud muudatustega?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Jah, vaheta vana pilt välja!" msgstr "Jah, vaheta vana pilt välja!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ei, salvestame uude faili!" msgstr "Ei, salvestame uude faili!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Vali pilt ja klõpsa nupul \"Ava\"" msgstr "Vali pilt ja klõpsa nupul \"Ava\""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Vali värv." msgstr "Vali värv."
@ -828,11 +867,11 @@ msgstr "Hoia hiirenuppu all ja liiguta, et muuta su pildis värve."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Tee klõps, et muuta terves pildis värve." msgstr "Tee klõps, et muuta terves pildis värve."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -921,11 +960,21 @@ msgstr "Multikas"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Tee klõps ja liiguta hiirt, et muuta pilt multika sarnaseks." msgstr "Tee klõps ja liiguta hiirt, et muuta pilt multika sarnaseks."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr ""
"Hoia hiirenuppu all ja liiguta, et teha nöörikunstist tehtud noolekesi."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2020-07-30 16:43+0200\n" "PO-Revision-Date: 2020-07-30 16:43+0200\n"
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n" "Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
"Language-Team: librezale@librezale.org\n" "Language-Team: librezale@librezale.org\n"
@ -184,6 +184,38 @@ msgstr "<9>9a-pieza"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>9b-pieza" msgstr "<9>9b-pieza"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Marrak"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik egin irudian eremu bat kolorez betetzeko."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -346,47 +378,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tresnak" msgstr "Tresnak"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Koloreak" msgstr "Koloreak"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pintzelak" msgstr "Pintzelak"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Ezabagailuak" msgstr "Ezabagailuak"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Zigiluak" msgstr "Zigiluak"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Irudiak" msgstr "Irudiak"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letrak" msgstr "Letrak"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magia" msgstr "Magia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Bete"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Berria" msgstr "Berria"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Ireki" msgstr "Ireki"
@ -577,124 +616,124 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Ondo... jarrai dezagun honekin!" msgstr "Ondo... jarrai dezagun honekin!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Irten nahi al duzu, benetan?" msgstr "Irten nahi al duzu, benetan?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Bai, amaitu dut!" msgstr "Bai, amaitu dut!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ez, itzul gaitezen lehengora!" msgstr "Ez, itzul gaitezen lehengora!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Irtenez gero, galdu egingo duzu irudia! Gorde nahi al duzu?" msgstr "Irtenez gero, galdu egingo duzu irudia! Gorde nahi al duzu?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Bai, gorde!" msgstr "Bai, gorde!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ez, ez gorde!" msgstr "Ez, ez gorde!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Gorde nahi al duzu irudia lehenbizi?" msgstr "Gorde nahi al duzu irudia lehenbizi?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ez dago irudia irekitzerik!" msgstr "Ez dago irudia irekitzerik!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Ez dago gordetako artxiborik!" msgstr "Ez dago gordetako artxiborik!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Irudia orain inprimatu?" msgstr "Irudia orain inprimatu?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Bai, inprimatu!" msgstr "Bai, inprimatu!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Zure irudia inprimatua izan da!" msgstr "Zure irudia inprimatua izan da!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Ene! Zure irudia ezin da inprimatu!" msgstr "Ene! Zure irudia ezin da inprimatu!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ezin duzu oraindik inprimitu!" msgstr "Ezin duzu oraindik inprimitu!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Irudi hau ezabatu?" msgstr "Irudi hau ezabatu?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Bai, ezabatu!" msgstr "Bai, ezabatu!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ez, ez ezabatu!" msgstr "Ez, ez ezabatu!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Gogora ezazu saguaren ezkerreko botoia erabiltzea!" msgstr "Gogora ezazu saguaren ezkerreko botoia erabiltzea!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Zure irudia inprimatua izan da!" msgstr "Zure irudia inprimatua izan da!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Zure irudia inprimatua izan da!" msgstr "Zure irudia inprimatua izan da!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Ene! Zure irudia ezin da inprimatu!" msgstr "Ene! Zure irudia ezin da inprimatu!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Ene! Zure irudia ezin da inprimatu!" msgstr "Ene! Zure irudia ezin da inprimatu!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
#, fuzzy #, fuzzy
#| msgid "Choose the pictures you want, then click “Play“." #| msgid "Choose the pictures you want, then click “Play“."
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
@ -702,90 +741,90 @@ msgstr ""
"Aukera ezazu ireki nahi duzun irudia. Ondoren klik egin “Hasi“ botoian." "Aukera ezazu ireki nahi duzun irudia. Ondoren klik egin “Hasi“ botoian."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Soinurik gabe." msgstr "Soinurik gabe."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Soinua gaituta." msgstr "Soinua gaituta."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Itxaron, mesedez…" msgstr "Itxaron, mesedez…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Ezabatu" msgstr "Ezabatu"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositibak" msgstr "Diapositibak"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "Esportatu" msgstr "Esportatu"
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Atzera" msgstr "Atzera"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Hasi" msgstr "Hasi"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "Esportatu GIF gisa" msgstr "Esportatu GIF gisa"
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Hurrengoa" msgstr "Hurrengoa"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Bai" msgstr "Bai"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ez" msgstr "Ez"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Ordeztu irudia zure aldaketa berriekin?" msgstr "Ordeztu irudia zure aldaketa berriekin?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Bai, zaharra ordeztu!" msgstr "Bai, zaharra ordeztu!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ez, artxibo berria gorde!" msgstr "Ez, artxibo berria gorde!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "" msgstr ""
"Aukera ezazu ireki nahi duzun irudia. Ondoren klik egin “Ireki“ botoian." "Aukera ezazu ireki nahi duzun irudia. Ondoren klik egin “Ireki“ botoian."
@ -793,15 +832,15 @@ msgstr ""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "Hautatu 2 marrazki edo gehiago GIF animatua bihurtzeko." msgstr "Hautatu 2 marrazki edo gehiago GIF animatua bihurtzeko."
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Hautatu zure marrazkiaren kolore bat." msgstr "Hautatu zure marrazkiaren kolore bat."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Hautatu kolore bat." msgstr "Hautatu kolore bat."
@ -830,11 +869,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik egin irudi osoaren koloreak aldatzeko." msgstr "Klik egin irudi osoaren koloreak aldatzeko."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Pertsiana" msgstr "Pertsiana"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -910,11 +949,21 @@ msgstr "Bineta"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klik egin eta mugi ezazu sagua irudia komikia bihurtzeko." msgstr "Klik egin eta mugi ezazu sagua irudia komikia bihurtzeko."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik egin eta arrastatu ereduak errepikatzeko. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-11-09 21:17+0330\n" "PO-Revision-Date: 2014-11-09 21:17+0330\n"
"Last-Translator: snima <unix.nima@gmail.com>\n" "Last-Translator: snima <unix.nima@gmail.com>\n"
"Language-Team: farsi <farinaz.hedayat@gmail.com>\n" "Language-Team: farsi <farinaz.hedayat@gmail.com>\n"
@ -183,6 +183,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "خطوط"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "روی تصویر کلیک کن تا آن ناحیه با رنگ انتخاب شده پر شود."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "ابزار" msgstr "ابزار"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "رنگ ها" msgstr "رنگ ها"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "سر قلم ها" msgstr "سر قلم ها"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "پاک کن ها" msgstr "پاک کن ها"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "تمبر‌ها" msgstr "تمبر‌ها"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "اشکال هندسی" msgstr "اشکال هندسی"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "حروف" msgstr "حروف"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "جادویی" msgstr "جادویی"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "پر کردن"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "جدید" msgstr "جدید"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "باز کردن" msgstr "باز کردن"
@ -580,235 +619,235 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "خب حالا… بزار این یکی رو بکشیم!" msgstr "خب حالا… بزار این یکی رو بکشیم!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "آیا واقعاً می خواهی خارج شوی؟" msgstr "آیا واقعاً می خواهی خارج شوی؟"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
#, fuzzy #, fuzzy
#| msgid "Yes, I'm done!" #| msgid "Yes, I'm done!"
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "بله،ذخیره کن!" msgstr "بله،ذخیره کن!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "!نه،من را برگردان" msgstr "!نه،من را برگردان"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "اگر خارج شوید تصویر شما از بین میرود!می خواهید آن را ذخیره کنید؟" msgstr "اگر خارج شوید تصویر شما از بین میرود!می خواهید آن را ذخیره کنید؟"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "بله،ذخیره کن!" msgstr "بله،ذخیره کن!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "نه،ذخیره نکن!" msgstr "نه،ذخیره نکن!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "اول تصویر ذخیره شود؟" msgstr "اول تصویر ذخیره شود؟"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "نمی توانی آن تصویر را باز کنی!" msgstr "نمی توانی آن تصویر را باز کنی!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "قبول" msgstr "قبول"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "فایل ذخیره شده ای موجود نیست!" msgstr "فایل ذخیره شده ای موجود نیست!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "تصویر را چاپ کنم؟" msgstr "تصویر را چاپ کنم؟"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "بله،آن را چاپ کن!" msgstr "بله،آن را چاپ کن!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "شما هنوز نمی توانید تصویر را چاپ کنید!" msgstr "شما هنوز نمی توانید تصویر را چاپ کنید!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr " تصویر را پاک کنم؟" msgstr " تصویر را پاک کنم؟"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "بله،آن را پاک کن!" msgstr "بله،آن را پاک کن!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "نه،آن را پاک نکن!" msgstr "نه،آن را پاک نکن!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "یادت باشه از کلیلک چپ استفاده کنی!" msgstr "یادت باشه از کلیلک چپ استفاده کنی!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "تصویر شما چاپ شد!" msgstr "تصویر شما چاپ شد!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "تصویری که می خواهی را انتخاب کن و سپس روی \"نمایش\" کلیک کن." msgstr "تصویری که می خواهی را انتخاب کن و سپس روی \"نمایش\" کلیک کن."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "صدا قطع شد." msgstr "صدا قطع شد."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "صدا وصل است. " msgstr "صدا وصل است. "
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "لطفاً کمی صبر کن" msgstr "لطفاً کمی صبر کن"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "پاك‌ كردن‌" msgstr "پاك‌ كردن‌"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "اسلاید" msgstr "اسلاید"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "بازگشت" msgstr "بازگشت"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "نمایش" msgstr "نمایش"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "بعدی" msgstr "بعدی"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "آا" msgstr "آا"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "بله" msgstr "بله"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "خیر" msgstr "خیر"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "تصویر با تغییرات شما جایگزین شود؟" msgstr "تصویر با تغییرات شما جایگزین شود؟"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "بله،جایگزین قبلی کن!" msgstr "بله،جایگزین قبلی کن!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "خیر،یک فایل جدید ذخیره کن!" msgstr "خیر،یک فایل جدید ذخیره کن!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "تصویری که می خواهی را انتخاب کن و سپس روی \"باز کردن\" کلیک کن." msgstr "تصویری که می خواهی را انتخاب کن و سپس روی \"باز کردن\" کلیک کن."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "یک رنگ بردار." msgstr "یک رنگ بردار."
@ -842,11 +881,11 @@ msgstr "برای ایجاد اعوجاج در تصویر روی محل مورد
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "برای محو کردن تصویر کلیک کن و موس را حرکت بده." msgstr "برای محو کردن تصویر کلیک کن و موس را حرکت بده."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "کور" msgstr "کور"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -939,11 +978,21 @@ msgstr "کارتون"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "برای تبدیل تصویر به حالت کارتونی کلیک کن و موس را حرکت بده. " msgstr "برای تبدیل تصویر به حالت کارتونی کلیک کن و موس را حرکت بده. "
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw a beam of light on your picture."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "برای ایجاد پرتوهای نور در تصویر کلیک کن و موس را بکش."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-03 10:35+0200\n" "PO-Revision-Date: 2017-12-03 10:35+0200\n"
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n" "Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
"Language-Team: FULAH LOCALIZATION\n" "Language-Team: FULAH LOCALIZATION\n"
@ -180,6 +180,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Diidi"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Dobo e natal ngal ngam hebbinde ɗoon goobol."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -340,47 +372,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Kuwtorɗe" msgstr "Kuwtorɗe"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Goobi" msgstr "Goobi"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "boroseeje" msgstr "boroseeje"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Momtirɗe" msgstr "Momtirɗe"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Temmbe" msgstr "Temmbe"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Beeli" msgstr "Beeli"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Alkule" msgstr "Alkule"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Ñeŋngo" msgstr "Ñeŋngo"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Hebbin"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -432,9 +471,9 @@ msgid "New"
msgstr "Fuɗɗo" msgstr "Fuɗɗo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Uddit" msgstr "Uddit"
@ -571,227 +610,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Eey wadde… Njokken e natde ngoo-ɗoo!" msgstr "Eey wadde… Njokken e natde ngoo-ɗoo!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Aɗa teeŋtini yiɗde yaltude?" msgstr "Aɗa teeŋtini yiɗde yaltude?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Eey, mi gaynii!" msgstr "Eey, mi gaynii!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Alaa, ndutto-ɗen!" msgstr "Alaa, ndutto-ɗen!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "So a yaltii jooni, ko nat-ɗaa fof mototo! Aɗa yiɗi danndude?" msgstr "So a yaltii jooni, ko nat-ɗaa fof mototo! Aɗa yiɗi danndude?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Eey ndannden tawo!" msgstr "Eey ndannden tawo!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Alaa, soklaani danndude!" msgstr "Alaa, soklaani danndude!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Ndannden natngo maa tawo?" msgstr "Ndannden natngo maa tawo?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ngal natal jaɓaani udditaade!" msgstr "Ngal natal jaɓaani udditaade!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "AWA" msgstr "AWA"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Hay piilol gootol danndaaka!" msgstr "Hay piilol gootol danndaaka!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Aɗa winnditoo natal maa jooni?" msgstr "Aɗa winnditoo natal maa jooni?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Eey, winndito!" msgstr "Eey, winndito!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Natal maa winnditaama!" msgstr "Natal maa winnditaama!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Njaafo-ɗaa, natal maa horiima winnditeede." msgstr "Njaafo-ɗaa, natal maa horiima winnditeede."
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "A waawaa winnditaade tawo!" msgstr "A waawaa winnditaade tawo!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Aɗa momta natal ngal??" msgstr "Aɗa momta natal ngal??"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Eey, momtu ngal!" msgstr "Eey, momtu ngal!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Alaa, hoto momtu!" msgstr "Alaa, hoto momtu!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Hoto yejjit huutoraade uure nanre doombel ngel!" msgstr "Hoto yejjit huutoraade uure nanre doombel ngel!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Natal maa winnditaama!" msgstr "Natal maa winnditaama!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Natal maa winnditaama!" msgstr "Natal maa winnditaama!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Njaafo-ɗaa, natal maa horiima winnditeede." msgstr "Njaafo-ɗaa, natal maa horiima winnditeede."
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Njaafo-ɗaa, natal maa horiima winnditeede." msgstr "Njaafo-ɗaa, natal maa horiima winnditeede."
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Suɓo nate njiɗ-ɗaa, ndobo-ɗaa \"Dognu\"" msgstr "Suɓo nate njiɗ-ɗaa, ndobo-ɗaa \"Dognu\""
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Hito muumɗinaama." msgstr "Hito muumɗinaama."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Hito muuɗitii." msgstr "Hito muuɗitii."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Tiiɗno abbo seeɗa…" msgstr "Tiiɗno abbo seeɗa…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Momtu" msgstr "Momtu"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Japooje" msgstr "Japooje"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Rutto" msgstr "Rutto"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Dognu" msgstr "Dognu"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Dewwo" msgstr "Dewwo"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Eey" msgstr "Eey"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Alaa" msgstr "Alaa"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Lomtin natal ngal ko mbayluɗaa koo?" msgstr "Lomtin natal ngal ko mbayluɗaa koo?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Eey, lomtin natal ɓooyngal ngal!" msgstr "Eey, lomtin natal ɓooyngal ngal!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Alaa, danndu natal kesal!" msgstr "Alaa, danndu natal kesal!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Suɓo natal njiɗ-ɗaa, ndobo-ɗaa \"Uddit\"" msgstr "Suɓo natal njiɗ-ɗaa, ndobo-ɗaa \"Uddit\""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Labo goobol iwde e natol maa." msgstr "Labo goobol iwde e natol maa."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Suɓo goobol." msgstr "Suɓo goobol."
@ -819,11 +858,11 @@ msgstr "Dobo, ndaasaa doombel ngel ngam waylude goobi bannge e natal maa."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Dobo ngam waylude goobi e natal ngal fof." msgstr "Dobo ngam waylude goobi e natal ngal fof."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Rido" msgstr "Rido"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -897,11 +936,21 @@ msgstr "Daarnatol"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal daarnatol." msgstr "Dobo, ndaasaa doombel ngam waɗtude natal ngal daarnatol."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Dobo, ndaasaa ngam natde laañe baɗiraaɗe geese. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2015-10-09 18:00+0200\n" "PO-Revision-Date: 2015-10-09 18:00+0200\n"
"Last-Translator: inactive\n" "Last-Translator: inactive\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@ -185,6 +185,38 @@ msgstr "<9>vara-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>vara-9b" msgstr "<9>vara-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Viivat"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Napsauta sitä maalauksen aluetta, jota haluat värittää."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -349,48 +381,55 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Työkalut" msgstr "Työkalut"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Värit" msgstr "Värit"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Siveltimet" msgstr "Siveltimet"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Pyyhekumit" msgstr "Pyyhekumit"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Leimat" msgstr "Leimat"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Muodot" msgstr "Muodot"
# Amerikanenglannissa sana "letters" tarkoittaa myös aakkosia. # Amerikanenglannissa sana "letters" tarkoittaa myös aakkosia.
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Kirjaimet" msgstr "Kirjaimet"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Taiat" msgstr "Taiat"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Täytä"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -442,9 +481,9 @@ msgid "New"
msgstr "Uusi" msgstr "Uusi"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Avaa" msgstr "Avaa"
@ -589,117 +628,117 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Hyvä on… Jatketaan tämän piirtämistä!" msgstr "Hyvä on… Jatketaan tämän piirtämistä!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Haluatko varmasti lopettaa?" msgstr "Haluatko varmasti lopettaa?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Kyllä, valmista on!" msgstr "Kyllä, valmista on!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ei, palaa takaisin maalaukseen!" msgstr "Ei, palaa takaisin maalaukseen!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Menetät maalauksen jos lopetat! Tallennetaanko se?" msgstr "Menetät maalauksen jos lopetat! Tallennetaanko se?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Kyllä, tallenna se!" msgstr "Kyllä, tallenna se!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ei, älä tallenna!" msgstr "Ei, älä tallenna!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Tallennetaanko maalauksesi ensin?" msgstr "Tallennetaanko maalauksesi ensin?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Maalauksen avaaminen ei onnistu!" msgstr "Maalauksen avaaminen ei onnistu!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Hyvä" msgstr "Hyvä"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Ei löytynyt yhtään tallennettua maalausta!" msgstr "Ei löytynyt yhtään tallennettua maalausta!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Tulostetaanko maalauksesi nyt?" msgstr "Tulostetaanko maalauksesi nyt?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Kyllä, tulosta se!" msgstr "Kyllä, tulosta se!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Maalauksesi on tulostettu!" msgstr "Maalauksesi on tulostettu!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Pahoittelut! Maalaustasi ei voitu tulostaa!" msgstr "Pahoittelut! Maalaustasi ei voitu tulostaa!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Et voi vielä tulostaa!" msgstr "Et voi vielä tulostaa!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Poistetaanko tämä kuva?" msgstr "Poistetaanko tämä kuva?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Kyllä, poista se!" msgstr "Kyllä, poista se!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ei, älä poista sitä!" msgstr "Ei, älä poista sitä!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Muista käyttää hiiren vasenta painiketta!" msgstr "Muista käyttää hiiren vasenta painiketta!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Maalauksesi on tulostettu!" msgstr "Maalauksesi on tulostettu!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Maalauksesi on tulostettu!" msgstr "Maalauksesi on tulostettu!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Pahoittelut! Maalaustasi ei voitu tulostaa!" msgstr "Pahoittelut! Maalaustasi ei voitu tulostaa!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
@ -707,111 +746,111 @@ msgstr "Pahoittelut! Maalaustasi ei voitu tulostaa!"
# Pilkku ennen ja-sanaa tarvitaan estämään fuzzy-määrite # Pilkku ennen ja-sanaa tarvitaan estämään fuzzy-määrite
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Valikoi haluamasi maalaukset, ja valitse “Näytä“." msgstr "Valikoi haluamasi maalaukset, ja valitse “Näytä“."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Äänet mykistetty." msgstr "Äänet mykistetty."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Äänet käytössä." msgstr "Äänet käytössä."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Odota hetki…" msgstr "Odota hetki…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Poista" msgstr "Poista"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diat" msgstr "Diat"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Takaisin" msgstr "Takaisin"
# Dia-näytös alkaa # Dia-näytös alkaa
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Näytä" msgstr "Näytä"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Seuraava" msgstr "Seuraava"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Kyllä" msgstr "Kyllä"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ei" msgstr "Ei"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Korvataanko maalaus sinun muutoksillasi?" msgstr "Korvataanko maalaus sinun muutoksillasi?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Kyllä, korvaa vanha maalaus!" msgstr "Kyllä, korvaa vanha maalaus!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ei, tallenna uusi maalaus!" msgstr "Ei, tallenna uusi maalaus!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Valikoi haluamasi maalaus ja valitse “Avaa”." msgstr "Valikoi haluamasi maalaus ja valitse “Avaa”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Valitse väri." msgstr "Valitse väri."
@ -843,11 +882,11 @@ msgstr "Vaihda maalauksesi värejä eri kohdista raahaamalla hiirtä."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Vaihda koko maalauksesi värit painamalla hiiren painiketta." msgstr "Vaihda koko maalauksesi värit painamalla hiiren painiketta."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Verhot" msgstr "Verhot"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -940,11 +979,21 @@ msgstr ""
"Muuta kuva ääriviivapiirrokseksi painamalla hiiren painiketta ja piirtämällä " "Muuta kuva ääriviivapiirrokseksi painamalla hiiren painiketta ja piirtämällä "
"kuvan ympäri." "kuvan ympäri."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Napsauta ja vedä piirtääksesi toistuvia kuvioita."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint 0.9.18\n" "Project-Id-Version: Tux Paint 0.9.18\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2008-01-18 12:40-0000\n" "PO-Revision-Date: 2008-01-18 12:40-0000\n"
"Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n" "Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n"
"Language-Team: Faroese <morshus@morshus.com>\n" "Language-Team: Faroese <morshus@morshus.com>\n"
@ -182,6 +182,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Strikur"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klikkja á myndina til at fylla tað økið við liti."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tól" msgstr "Tól"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Litir" msgstr "Litir"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Penslar" msgstr "Penslar"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Viskarar" msgstr "Viskarar"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempul" msgstr "Stempul"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formar" msgstr "Formar"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Stavir" msgstr "Stavir"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Gandur" msgstr "Gandur"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fyll"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "Nýtt" msgstr "Nýtt"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Opna" msgstr "Opna"
@ -574,235 +613,235 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Alt í lagi... So halda vit á at tekna hesa!" msgstr "Alt í lagi... So halda vit á at tekna hesa!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Vilt tú veruliga gevast?" msgstr "Vilt tú veruliga gevast?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
#, fuzzy #, fuzzy
#| msgid "Yes, I'm done!" #| msgid "Yes, I'm done!"
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ja, her er liðugt!" msgstr "Ja, her er liðugt!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nei, lat meg koma aftur til myndina!" msgstr "Nei, lat meg koma aftur til myndina!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Um tú gevst, so missir tú myndina! Vilt tú goyma hana?" msgstr "Um tú gevst, so missir tú myndina! Vilt tú goyma hana?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ja, goym hana!" msgstr "Ja, goym hana!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
#, fuzzy #, fuzzy
#| msgid "No, don't bother saving!" #| msgid "No, don't bother saving!"
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Nei, legg ikki í at goyma!" msgstr "Nei, legg ikki í at goyma!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Goym myndina fyrst?" msgstr "Goym myndina fyrst?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Fái ikki opna hasa myndina!" msgstr "Fái ikki opna hasa myndina!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Har eru ongar goymdar fílur!" msgstr "Har eru ongar goymdar fílur!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Prenta myndina hjá tær nú?" msgstr "Prenta myndina hjá tær nú?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ja, prenta hana!" msgstr "Ja, prenta hana!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Tú kanst ikki prenta enn!" msgstr "Tú kanst ikki prenta enn!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Strika hesa myndina?" msgstr "Strika hesa myndina?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ja, strika hana!" msgstr "Ja, strika hana!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
#, fuzzy #, fuzzy
#| msgid "No, don't erase it!" #| msgid "No, don't erase it!"
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Nei, ikki strika hana!" msgstr "Nei, ikki strika hana!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Minst til at brúka vinstra músaknøtt!" msgstr "Minst til at brúka vinstra músaknøtt!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Myndin hjá tær er prentað!" msgstr "Myndin hjá tær er prentað!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Vel ynsktu myndir og klikkja so á 'Vís'" msgstr "Vel ynsktu myndir og klikkja so á 'Vís'"
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Ljóðið doyvt." msgstr "Ljóðið doyvt."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Ljóðið ikki doyvt." msgstr "Ljóðið ikki doyvt."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Vinarliga bíða..." msgstr "Vinarliga bíða..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Viska" msgstr "Viska"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Ljósmyndir" msgstr "Ljósmyndir"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Aftur" msgstr "Aftur"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Spæl" msgstr "Spæl"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Næsta" msgstr "Næsta"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nei" msgstr "Nei"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Skifta út myndina við tínar broytingar?" msgstr "Skifta út myndina við tínar broytingar?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ja, skift út gomlu!" msgstr "Ja, skift út gomlu!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nei, goym eina nýggja fílu!" msgstr "Nei, goym eina nýggja fílu!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Vel ynsktu mynd og klikkja so á 'Opna'" msgstr "Vel ynsktu mynd og klikkja so á 'Opna'"
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Vel ein lit." msgstr "Vel ein lit."
@ -834,11 +873,11 @@ msgstr "Klikkja og drag músina til at gera myndina káma."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klikkja og drag músina til at gera myndina káma." msgstr "Klikkja og drag músina til at gera myndina káma."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -927,11 +966,20 @@ msgstr "Tekniseria"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klikkja og drag músina til at fáa gera myndina um til eina tekniseriu." msgstr "Klikkja og drag músina til at fáa gera myndina um til eina tekniseriu."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klikkja og drag músina til at tekna eina ljósstrálu á myndina."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: fr\n" "Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2020-12-08 10:39+0100\n" "PO-Revision-Date: 2020-12-08 10:39+0100\n"
"Last-Translator: Chion Jacques <jacques.chion@orange.fr>\n" "Last-Translator: Chion Jacques <jacques.chion@orange.fr>\n"
"Language-Team: <fr@li.org>\n" "Language-Team: <fr@li.org>\n"
@ -180,6 +180,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lignes"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Clique sur l'image pour remplir la surface choisie avec une couleur."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "Dessine des objets depuis un coin." msgstr "Dessine des objets depuis un coin."
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Outils" msgstr "Outils"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Couleurs" msgstr "Couleurs"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinceaux" msgstr "Pinceaux"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gommes" msgstr "Gommes"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Tampons" msgstr "Tampons"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formes" msgstr "Formes"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lettres" msgstr "Lettres"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magie" msgstr "Magie"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Remplir"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "Nouveau" msgstr "Nouveau"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Ouvrir" msgstr "Ouvrir"
@ -572,219 +611,219 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Bien ! Continuons donc ce dessin !" msgstr "Bien ! Continuons donc ce dessin !"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Veux-tu vraiment quitter ?" msgstr "Veux-tu vraiment quitter ?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Oui, j'ai fini !" msgstr "Oui, j'ai fini !"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Non, on revient !" msgstr "Non, on revient !"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Si tu quittes, ton image sera perdue ! Tu sauvegardes ?" msgstr "Si tu quittes, ton image sera perdue ! Tu sauvegardes ?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Oui, on sauvegarde !" msgstr "Oui, on sauvegarde !"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Non, ce n'est pas la peine !" msgstr "Non, ce n'est pas la peine !"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Sauvegarder tout d'abord ton image ?" msgstr "Sauvegarder tout d'abord ton image ?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Je ne peux pas ouvrir cette image !" msgstr "Je ne peux pas ouvrir cette image !"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "D'accord" msgstr "D'accord"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Il n'y a pas de fichiers sauvegardés !" msgstr "Il n'y a pas de fichiers sauvegardés !"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Imprimer l'image ?" msgstr "Imprimer l'image ?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Oui, imprime !" msgstr "Oui, imprime !"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Ton image a été imprimée !" msgstr "Ton image a été imprimée !"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Désolé, ton image n'a pas pu être imprimée !" msgstr "Désolé, ton image n'a pas pu être imprimée !"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Tu ne peux pas imprimer maintenant !" msgstr "Tu ne peux pas imprimer maintenant !"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Effacer cette image ?" msgstr "Effacer cette image ?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Oui, efface-la !" msgstr "Oui, efface-la !"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Non, ne l'efface pas !" msgstr "Non, ne l'efface pas !"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "N'oublie pas d'utiliser le bouton gauche de la souris !" msgstr "N'oublie pas d'utiliser le bouton gauche de la souris !"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Ton image a été exportée !" msgstr "Ton image a été exportée !"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Ton image GIF a été exportée !" msgstr "Ton image GIF a été exportée !"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Désolé, ton image n'a pas pu être exportée !" msgstr "Désolé, ton image n'a pas pu être exportée !"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Désolé, ton image GIF n'a pas pu être exportée !" msgstr "Désolé, ton image GIF n'a pas pu être exportée !"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Choisis les images que tu veux, puis clique sur “Départ”." msgstr "Choisis les images que tu veux, puis clique sur “Départ”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Son désactivé." msgstr "Son désactivé."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Son activé." msgstr "Son activé."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Attends s'il te plaît ..." msgstr "Attends s'il te plaît ..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Effacer" msgstr "Effacer"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapos" msgstr "Diapos"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "Exporter" msgstr "Exporter"
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Retour" msgstr "Retour"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Départ" msgstr "Départ"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "Exporter en GIF" msgstr "Exporter en GIF"
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Suite" msgstr "Suite"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Enregistrer l'image avec tes changements ?" msgstr "Enregistrer l'image avec tes changements ?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Oui, remplace l'ancienne !" msgstr "Oui, remplace l'ancienne !"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Non, c'est une nouvelle image !" msgstr "Non, c'est une nouvelle image !"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Choisis une image, et clique ensuite sur “Ouvrir”." msgstr "Choisis une image, et clique ensuite sur “Ouvrir”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "Sélectionner 2 ou plusieurs dessins pour créer une image animée GIF." msgstr "Sélectionner 2 ou plusieurs dessins pour créer une image animée GIF."
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Sélectionne une couleur à partir de ton dessin." msgstr "Sélectionne une couleur à partir de ton dessin."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Choisis une couleur." msgstr "Choisis une couleur."
@ -814,11 +853,11 @@ msgstr "Clique et déplace la souris pour changer la couleur localement."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Clique pour changer la couleur de tout le dessin." msgstr "Clique pour changer la couleur de tout le dessin."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Store" msgstr "Store"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -899,11 +938,21 @@ msgstr ""
"Clique et déplace la souris pour que ton dessin ressemble à une bande " "Clique et déplace la souris pour que ton dessin ressemble à une bande "
"dessinée." "dessinée."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Clique et promène la souris pour dessiner des motifs répétitifs."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2015-10-09 17:38+0500\n" "PO-Revision-Date: 2015-10-09 17:38+0500\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n" "Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -179,6 +179,39 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Línte"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr ""
"Cliceáil sa phictiúr chun an limistéar roghnaithe agat a líonadh le dath."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Uirlisí" msgstr "Uirlisí"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Dathanna" msgstr "Dathanna"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Scuaba" msgstr "Scuaba"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Léirscriosáin" msgstr "Léirscriosáin"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stampaí" msgstr "Stampaí"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Cruthanna" msgstr "Cruthanna"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Litreacha" msgstr "Litreacha"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Draíocht" msgstr "Draíocht"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Líon"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +474,9 @@ msgid "New"
msgstr "Nua" msgstr "Nua"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Oscail" msgstr "Oscail"
@ -575,213 +615,213 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK… Bímis ag dearadh an chinn seo!" msgstr "OK… Bímis ag dearadh an chinn seo!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "An bhfuil tú cinnte gur mhaith leat scor?" msgstr "An bhfuil tú cinnte gur mhaith leat scor?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Tá, táim críochnaithe!" msgstr "Tá, táim críochnaithe!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Níl, ba mhaith liom dul ar ais!" msgstr "Níl, ba mhaith liom dul ar ais!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Má scoireann tú, caillfidh tú an pictiúr seo! Sábháil?" msgstr "Má scoireann tú, caillfidh tú an pictiúr seo! Sábháil?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sábháil!" msgstr "Sábháil!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ná sábháil!" msgstr "Ná sábháil!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Ar mhaith leat an pictiúr a shábháil ar dtús?" msgstr "Ar mhaith leat an pictiúr a shábháil ar dtús?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ní féidir an pictiúr sin a oscailt!" msgstr "Ní féidir an pictiúr sin a oscailt!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Níl aon chomhad sábháilte ann!" msgstr "Níl aon chomhad sábháilte ann!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Ar mhaith leat an pictiúr a phriontáil anois?" msgstr "Ar mhaith leat an pictiúr a phriontáil anois?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ba mhaith!" msgstr "Ba mhaith!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Priontáladh do phictiúr!" msgstr "Priontáladh do phictiúr!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!" msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ní féidir leat priontáil fós!" msgstr "Ní féidir leat priontáil fós!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Ar mhaith leat an pictiúr seo a scriosadh?" msgstr "Ar mhaith leat an pictiúr seo a scriosadh?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ba mhaith, scrios é!" msgstr "Ba mhaith, scrios é!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Níor mhaith, ná scrios!" msgstr "Níor mhaith, ná scrios!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Bí cinnte an cnaipe ar chlé a úsáid!" msgstr "Bí cinnte an cnaipe ar chlé a úsáid!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Priontáladh do phictiúr!" msgstr "Priontáladh do phictiúr!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Priontáladh do phictiúr!" msgstr "Priontáladh do phictiúr!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!" msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!" msgstr "Tá brón orm! Níorbh fhéidir do phictiúr a phriontáil!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "" msgstr ""
"Roghnaigh na pictiúir is mian leat a oscailt, agus ansin cliceáil “Seinn”." "Roghnaigh na pictiúir is mian leat a oscailt, agus ansin cliceáil “Seinn”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Gan fuaim." msgstr "Gan fuaim."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Le fuaim." msgstr "Le fuaim."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Fan go fóill…" msgstr "Fan go fóill…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Scrios" msgstr "Scrios"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Sleamhnáin" msgstr "Sleamhnáin"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Siar" msgstr "Siar"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Seinn" msgstr "Seinn"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Ar Aghaidh" msgstr "Ar Aghaidh"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Tá" msgstr "Tá"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Níl" msgstr "Níl"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Forscríobh an pictiúr le do chuid athruithe?" msgstr "Forscríobh an pictiúr le do chuid athruithe?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Forscríobh é!" msgstr "Forscríobh é!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ná forscríobh, sábháil i gcomhad nua!" msgstr "Ná forscríobh, sábháil i gcomhad nua!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "" msgstr ""
"Roghnaigh an pictiúr is mian leat a oscailt, agus ansin cliceáil “Oscail”." "Roghnaigh an pictiúr is mian leat a oscailt, agus ansin cliceáil “Oscail”."
@ -789,15 +829,15 @@ msgstr ""
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Roghnaigh dath ón líníocht." msgstr "Roghnaigh dath ón líníocht."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Roghnaigh dath." msgstr "Roghnaigh dath."
@ -826,11 +866,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Cliceáil chun na dathanna a athrú ar fud an phictiúir." msgstr "Cliceáil chun na dathanna a athrú ar fud an phictiúir."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Dallóga" msgstr "Dallóga"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -905,11 +945,21 @@ msgstr "Cartún"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Cliceáil agus tarraing an luch chun cartún a dhéanamh ón phictiúr." msgstr "Cliceáil agus tarraing an luch chun cartún a dhéanamh ón phictiúr."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Cliceáil agus tarraing chun patrún athfhillteach a dhearadh. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-04 10:50+0100\n" "PO-Revision-Date: 2017-12-04 10:50+0100\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n" "Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Fòram na Gàidhlig\n" "Language-Team: Fòram na Gàidhlig\n"
@ -181,6 +181,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Loidhnichean"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Briog anns an dealbh gus roinn a lìonadh le dath."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -346,47 +378,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Innealan" msgstr "Innealan"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Dathan" msgstr "Dathan"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Bruisean" msgstr "Bruisean"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Suathain" msgstr "Suathain"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stampaichean" msgstr "Stampaichean"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Cumaidhean" msgstr "Cumaidhean"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Litrichean" msgstr "Litrichean"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Draoidheachd" msgstr "Draoidheachd"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Lìon"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Ùr" msgstr "Ùr"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Fosgail" msgstr "Fosgail"
@ -582,227 +621,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Ceart ma-thà… Cumaidh sinn oirnn a peantadh an fhir seo!" msgstr "Ceart ma-thà… Cumaidh sinn oirnn a peantadh an fhir seo!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Am bu mhiann leat am prògram seo fhàgail dha-rìribh?" msgstr "Am bu mhiann leat am prògram seo fhàgail dha-rìribh?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Bu mhiann, tha mi deiseil!" msgstr "Bu mhiann, tha mi deiseil!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Cha bu mhiann, thoir air ais mi!" msgstr "Cha bu mhiann, thoir air ais mi!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ma dhfhàgas tu an seo, caillidh tu an dealbh agad! An sàbhail sinn e?" msgstr "Ma dhfhàgas tu an seo, caillidh tu an dealbh agad! An sàbhail sinn e?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sàbhailidh gu dearbh!" msgstr "Sàbhailidh gu dearbh!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Cha shàbhail, na bodraig leis!" msgstr "Cha shàbhail, na bodraig leis!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "An sàbhail sinn an dealbh agad an toiseach?" msgstr "An sàbhail sinn an dealbh agad an toiseach?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Chan urrainn dhomh an dealbh seo fhosgladh!" msgstr "Chan urrainn dhomh an dealbh seo fhosgladh!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Ceart ma-thà" msgstr "Ceart ma-thà"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Chan eil dealbhan air an sàbhaladh ann!" msgstr "Chan eil dealbhan air an sàbhaladh ann!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "An clò-bhuail mi an dealbh agad an-dràsta?" msgstr "An clò-bhuail mi an dealbh agad an-dràsta?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Clò-bhuail e!" msgstr "Clò-bhuail e!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Chlò-bhuail mi an dealbh agad!" msgstr "Chlò-bhuail mi an dealbh agad!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!" msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Chan urrainn dhut a chlò-bhualadh fhathast!" msgstr "Chan urrainn dhut a chlò-bhualadh fhathast!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "An sguab mi an dealbh seo às?" msgstr "An sguab mi an dealbh seo às?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Sguabaidh!" msgstr "Sguabaidh!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Cha sguab!" msgstr "Cha sguab!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Cuimhnich gun cleachd thu putan clì na luchaige agad!" msgstr "Cuimhnich gun cleachd thu putan clì na luchaige agad!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Chlò-bhuail mi an dealbh agad!" msgstr "Chlò-bhuail mi an dealbh agad!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Chlò-bhuail mi an dealbh agad!" msgstr "Chlò-bhuail mi an dealbh agad!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!" msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!" msgstr "Tha mi duilich! Cha b urrainn dhomh an dealbh agad a chlò-bhualadh!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Tagh na dealbhan a tha thu ag iarraidh is briog air “Cluich”." msgstr "Tagh na dealbhan a tha thu ag iarraidh is briog air “Cluich”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Fuaim air a mùchadh." msgstr "Fuaim air a mùchadh."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Fuaim air a dhì-mhùchadh." msgstr "Fuaim air a dhì-mhùchadh."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Fuirich greiseag…" msgstr "Fuirich greiseag…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Sgudail" msgstr "Sgudail"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Sleamhnagan" msgstr "Sleamhnagan"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Air ais" msgstr "Air ais"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Cluich" msgstr "Cluich"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Air adhart" msgstr "Air adhart"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Tha" msgstr "Tha"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Chan eil" msgstr "Chan eil"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "An cuir mi na h-atharraichean agad an àite an deilbh?" msgstr "An cuir mi na h-atharraichean agad an àite an deilbh?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Cuiridh, cuir an àite an t-seann fhir e!" msgstr "Cuiridh, cuir an àite an t-seann fhir e!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Cha chuir, sàbhail ann am faidhle ùr e!" msgstr "Cha chuir, sàbhail ann am faidhle ùr e!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Tagh an dealbh a tha thu ag iarraidh is briog air “Fosgail”." msgstr "Tagh an dealbh a tha thu ag iarraidh is briog air “Fosgail”."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Tagh dath on dealbh agad." msgstr "Tagh dath on dealbh agad."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Tagh dath." msgstr "Tagh dath."
@ -832,11 +871,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Briog gus na dathan san dealbh gu lèir atharrachadh." msgstr "Briog gus na dathan san dealbh gu lèir atharrachadh."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Sgàil" msgstr "Sgàil"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -921,11 +960,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Briog is slaod an luchag mu thimcheall gus an tèid an dealbh na chartùn." "Briog is slaod an luchag mu thimcheall gus an tèid an dealbh na chartùn."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Briog is slaod gus pàtranan ath-chùrsach a pheantadh."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Tux Paint\n" "Project-Id-Version: Tux Paint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2021-01-14 10:01+0100\n" "PO-Revision-Date: 2021-01-14 10:01+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\n" "Language-Team: Proxecto Trasno <proxecto@trasno.net>\n"
@ -185,6 +185,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Liñas"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Preme no debuxo para encher unha área con cor."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -346,47 +378,54 @@ msgid "Draw shapes from a corner."
msgstr "Debuxar formas dende un canto." msgstr "Debuxar formas dende un canto."
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Ferramentas" msgstr "Ferramentas"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Cores" msgstr "Cores"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pinceis" msgstr "Pinceis"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomas" msgstr "Gomas"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Selos" msgstr "Selos"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Formas" msgstr "Formas"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letras" msgstr "Letras"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Maxia" msgstr "Maxia"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Encher"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Novo" msgstr "Novo"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -573,219 +612,219 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Ben... Imos seguir debuxando este debuxo!" msgstr "Ben... Imos seguir debuxando este debuxo!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Queres saír?" msgstr "Queres saír?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Si, xa estou listo!" msgstr "Si, xa estou listo!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Non, quero volver!" msgstr "Non, quero volver!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Se saes, perderas o teu debuxo! Queres gardalo?" msgstr "Se saes, perderas o teu debuxo! Queres gardalo?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Si, gárdao!" msgstr "Si, gárdao!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Non, non te molestes en gardalo!" msgstr "Non, non te molestes en gardalo!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Queres gardar o teu debuxo antes de saír?" msgstr "Queres gardar o teu debuxo antes de saír?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Non foi posíbel abrir este debuxo!" msgstr "Non foi posíbel abrir este debuxo!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Aceptar" msgstr "Aceptar"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Non hai ficheiros gardados!" msgstr "Non hai ficheiros gardados!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Queres imprimir agora o teu debuxo?" msgstr "Queres imprimir agora o teu debuxo?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "SI, imprímeo!" msgstr "SI, imprímeo!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Xa se imprimiu o teu debuxo!" msgstr "Xa se imprimiu o teu debuxo!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Mágoa! Non foi posíbel imprimir o teu debuxo!" msgstr "Mágoa! Non foi posíbel imprimir o teu debuxo!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ainda non podes imprimir!" msgstr "Ainda non podes imprimir!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Queres borrar este debuxo?" msgstr "Queres borrar este debuxo?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Si, bórrao!" msgstr "Si, bórrao!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Non, non o borres!" msgstr "Non, non o borres!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Lembra usar o botón esquerdo do rato!" msgstr "Lembra usar o botón esquerdo do rato!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "O teu debuxo foi importado!" msgstr "O teu debuxo foi importado!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "O teu GIF do diaporama foi importado!" msgstr "O teu GIF do diaporama foi importado!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Mágoa! Non foi posíbel importar o teu debuxo!" msgstr "Mágoa! Non foi posíbel importar o teu debuxo!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Mágoa! Non foi posíbel importar o teu GIF do diaporama!" msgstr "Mágoa! Non foi posíbel importar o teu GIF do diaporama!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Escolle os debuxos que queiras, e após preme en «Reproducir»." msgstr "Escolle os debuxos que queiras, e após preme en «Reproducir»."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Son silenciado." msgstr "Son silenciado."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Son sen silenciar." msgstr "Son sen silenciar."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Agarda un chisco…" msgstr "Agarda un chisco…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Borrar" msgstr "Borrar"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositivas" msgstr "Diapositivas"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "Exportar" msgstr "Exportar"
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Atrás" msgstr "Atrás"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Reproducir" msgstr "Reproducir"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "Exportar o GIF" msgstr "Exportar o GIF"
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Seguinte" msgstr "Seguinte"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Si" msgstr "Si"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Queres substituír o debuxo cos teus cambios?" msgstr "Queres substituír o debuxo cos teus cambios?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Si, substitúe o antigo!" msgstr "Si, substitúe o antigo!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Non, gárdao nun novo ficheiro!" msgstr "Non, gárdao nun novo ficheiro!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Escolle o debuxo que queiras, e após preme en «Abrir»." msgstr "Escolle o debuxo que queiras, e após preme en «Abrir»."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "Selecciona 2 ou máis debuxos para convertelos nun GIF animado." msgstr "Selecciona 2 ou máis debuxos para convertelos nun GIF animado."
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Selecciona unha cor do teu debuxo." msgstr "Selecciona unha cor do teu debuxo."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Escolle unha cor." msgstr "Escolle unha cor."
@ -814,11 +853,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Preme para cambiarlle a cor a todo o debuxo." msgstr "Preme para cambiarlle a cor a todo o debuxo."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Persianas" msgstr "Persianas"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -896,11 +935,21 @@ msgstr ""
"Preme e arrastra o rato arredor para para converter o debuxo nun debuxo de " "Preme e arrastra o rato arredor para para converter o debuxo nun debuxo de "
"cómic." "cómic."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Preme e arrastra o rato para debuxar patróns repetitivos."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "Clonar" msgstr "Clonar"
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2005-07-26 01:30-0800\n" "PO-Revision-Date: 2005-07-26 01:30-0800\n"
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n" "Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -180,6 +180,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Lienen"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik in dien tijken um dat dijl mit kleur te vullen."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -345,48 +377,55 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Raive" msgstr "Raive"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Kleuren" msgstr "Kleuren"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Kwaasten" msgstr "Kwaasten"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
#, fuzzy #, fuzzy
msgid "Erasers" msgid "Erasers"
msgstr "Gum" msgstr "Gum"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempels" msgstr "Stempels"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Vörms" msgstr "Vörms"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Letters" msgstr "Letters"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Teuverij" msgstr "Teuverij"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Opvullen"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -438,9 +477,9 @@ msgid "New"
msgstr "Nij" msgstr "Nij"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Lösdoun" msgstr "Lösdoun"
@ -580,232 +619,232 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Na goud din... Loawwe dizze mor tijken blieven!" msgstr "Na goud din... Loawwe dizze mor tijken blieven!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Wilst dr echt uut?" msgstr "Wilst dr echt uut?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "" msgstr ""
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "" msgstr ""
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ast dr uut gest, bust dien ploatje kwiet! Bewoaren?" msgstr "Ast dr uut gest, bust dien ploatje kwiet! Bewoaren?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "" msgstr ""
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Eerst dien tijken bewoaren?" msgstr "Eerst dien tijken bewoaren?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Krieg dij tijken nie lös!" msgstr "Krieg dij tijken nie lös!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Goud" msgstr "Goud"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Dr bunnen gien bewoarde bestanden!" msgstr "Dr bunnen gien bewoarde bestanden!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Dien tijken noe ófdrukken!" msgstr "Dien tijken noe ófdrukken!"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Kanst noe nog nait ófdrukken!" msgstr "Kanst noe nog nait ófdrukken!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Dizze tijken votsmieten?" msgstr "Dizze tijken votsmieten?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "" msgstr ""
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "" msgstr ""
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "" msgstr ""
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Dien tijken is ófdrukt!" msgstr "Dien tijken is ófdrukt!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
#, fuzzy #, fuzzy
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Kijs de tijken dijst wilst, klik din op \"Lösdoun\"." msgstr "Kijs de tijken dijst wilst, klik din op \"Lösdoun\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "" msgstr ""
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "" msgstr ""
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "" msgstr ""
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Votsmieten" msgstr "Votsmieten"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "" msgstr ""
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Weerumme" msgstr "Weerumme"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
#, fuzzy #, fuzzy
msgid "Next" msgid "Next"
msgstr "Tekst" msgstr "Tekst"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "" msgstr ""
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nee" msgstr "Nee"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "" msgstr ""
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "" msgstr ""
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
#, fuzzy #, fuzzy
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nee, n nij bestaand bewoaren" msgstr "Nee, n nij bestaand bewoaren"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Kijs de tijken dijst wilst, klik din op \"Lösdoun\"." msgstr "Kijs de tijken dijst wilst, klik din op \"Lösdoun\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "" msgstr ""
@ -836,11 +875,11 @@ msgstr "Klik en beweeg de moes rond um dien tijken dokeg te moaken."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik en beweeg de moes rond um dien tijken dokeg te moaken." msgstr "Klik en beweeg de moes rond um dien tijken dokeg te moaken."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "" msgstr ""
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -928,11 +967,20 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Klik en beweeg de moes rond um dien tijken in n kriettijken umme te teuvern." "Klik en beweeg de moes rond um dien tijken in n kriettijken umme te teuvern."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik en beweeg de moes um dien tijken dun te moaken."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-31 11:57+0530\n" "PO-Revision-Date: 2017-12-31 11:57+0530\n"
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n" "Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
"Language-Team: Gujarati <team@utkarsh.org>\n" "Language-Team: Gujarati <team@utkarsh.org>\n"
@ -179,6 +179,38 @@ msgstr "<9>ખાલી-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>ખાલી-9b" msgstr "<9>ખાલી-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "રેખાઓ"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "તે વિસ્તારને રંગથી ભરવાં માટે ચિત્રમાં ક્લિક કરો."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -339,47 +371,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "સાધનો" msgstr "સાધનો"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "રંગો" msgstr "રંગો"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "પીંછીઓ" msgstr "પીંછીઓ"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "રબર" msgstr "રબર"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "છાપ" msgstr "છાપ"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "આકારો" msgstr "આકારો"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "અક્ષરો" msgstr "અક્ષરો"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "જાદુ" msgstr "જાદુ"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "ભરો"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -431,9 +470,9 @@ msgid "New"
msgstr "નવું" msgstr "નવું"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "ખોલો" msgstr "ખોલો"
@ -570,227 +609,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "બરાબર ત્યારે... ચાલો આ દોરવાનું ચાલુ રાખીએ!" msgstr "બરાબર ત્યારે... ચાલો આ દોરવાનું ચાલુ રાખીએ!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "તમે ખરેખર બહાર નીકળવા માંગો છો?" msgstr "તમે ખરેખર બહાર નીકળવા માંગો છો?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "હા, મેં પૂરૂં કર્યું!" msgstr "હા, મેં પૂરૂં કર્યું!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "ના, મને પાછા લઇ જાવ!" msgstr "ના, મને પાછા લઇ જાવ!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "જો તમે બહાર નીકળશો, તો તમે તમારૂ ચિત્ર ગુમાવશો! તેને સાચવશો?" msgstr "જો તમે બહાર નીકળશો, તો તમે તમારૂ ચિત્ર ગુમાવશો! તેને સાચવશો?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "હા, તેને સાચવો!" msgstr "હા, તેને સાચવો!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "ના, સાચવશો નહી!" msgstr "ના, સાચવશો નહી!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "પહેલાં તમારૂં ચિત્ર સાચવશો?" msgstr "પહેલાં તમારૂં ચિત્ર સાચવશો?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "ચિત્ર ખોલી શકાતું નથી!" msgstr "ચિત્ર ખોલી શકાતું નથી!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "બરાબર" msgstr "બરાબર"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "કોઇ ફાઇલો સાચવેલ નથી!" msgstr "કોઇ ફાઇલો સાચવેલ નથી!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "તમારૂં ચિત્ર અત્યારે છાપશો?" msgstr "તમારૂં ચિત્ર અત્યારે છાપશો?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "હા, તેને છાપો!" msgstr "હા, તેને છાપો!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!" msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!" msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "તમે તેને અત્યારે છાપી શકતા નથી!" msgstr "તમે તેને અત્યારે છાપી શકતા નથી!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "આ ચિત્રને ભૂંસી નાખવા માંગો છો?" msgstr "આ ચિત્રને ભૂંસી નાખવા માંગો છો?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "હા, તેને ભૂંસી નાખો!" msgstr "હા, તેને ભૂંસી નાખો!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "ના, તેને ભૂંસો નહી!" msgstr "ના, તેને ભૂંસો નહી!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "જમણાં માઉસ બટનનો ઉપયોગ કરવાનું યાદ રાખો!" msgstr "જમણાં માઉસ બટનનો ઉપયોગ કરવાનું યાદ રાખો!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!" msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!" msgstr "તમારૂં ચિત્ર અત્યારે છપાઇ રહ્યું છે!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!" msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!" msgstr "માફ કરશો! તમારૂં ચિત્ર છાપી શકાતું નથી!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "તમારે જોઇતું ચિત્ર પસંદ કરો, અને “ચાલુ” પર ક્લિક કરો." msgstr "તમારે જોઇતું ચિત્ર પસંદ કરો, અને “ચાલુ” પર ક્લિક કરો."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "અવાજ બંધ કરેલ છે." msgstr "અવાજ બંધ કરેલ છે."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "અવાજ શરુ કરેલ છે." msgstr "અવાજ શરુ કરેલ છે."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "મહેરબાની કરી રાહ જુઓ..." msgstr "મહેરબાની કરી રાહ જુઓ..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "ભૂંસો" msgstr "ભૂંસો"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "સ્લાઇડો" msgstr "સ્લાઇડો"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "પાછા" msgstr "પાછા"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "ચાલુ" msgstr "ચાલુ"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "આગળ" msgstr "આગળ"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "આ" msgstr "આ"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "હા" msgstr "હા"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "ના" msgstr "ના"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "ચિત્રને તમે કરેલા ફેરફારો સાથે બદલશો?" msgstr "ચિત્રને તમે કરેલા ફેરફારો સાથે બદલશો?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "હા, જુની ફાઇલને બદલો!" msgstr "હા, જુની ફાઇલને બદલો!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "ના, નવી ફાઇલને સાચવો!" msgstr "ના, નવી ફાઇલને સાચવો!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "તમારે જોઇતું ચિત્ર પસંદ કરો, અને “ખોલો” પર ક્લિક કરો." msgstr "તમારે જોઇતું ચિત્ર પસંદ કરો, અને “ખોલો” પર ક્લિક કરો."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "તમારા ચિત્રમાંથી રંગ પસંદ કરો." msgstr "તમારા ચિત્રમાંથી રંગ પસંદ કરો."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "રંગ પસંદ કરો." msgstr "રંગ પસંદ કરો."
@ -818,11 +857,11 @@ msgstr "તમારા ચિત્રનાં રંગનાં ભાગો
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "તમારા આખાં ચિત્રનાં રંગો બદલવાં માટે ક્લિક કરો." msgstr "તમારા આખાં ચિત્રનાં રંગો બદલવાં માટે ક્લિક કરો."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "અંધ" msgstr "અંધ"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -896,11 +935,21 @@ msgstr "કાર્ટૂન"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "ચિત્રને કાર્ટૂનમાં ફેરવવા માટે ક્લિક કરો અને માઉસ આજુબાજુ ખેંચો." msgstr "ચિત્રને કાર્ટૂનમાં ફેરવવા માટે ક્લિક કરો અને માઉસ આજુબાજુ ખેંચો."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "ફરીથી બનતી ભાતોને દોરવા માટે માઉસને ક્લિક કરીને ખેંચો."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: he\n" "Project-Id-Version: he\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2009-05-10 21:45+0200\n" "PO-Revision-Date: 2009-05-10 21:45+0200\n"
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\n" "Last-Translator: Jorge Mariano <jmariano@ymail.com>\n"
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n" "Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
@ -190,6 +190,38 @@ msgstr ""
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "" msgstr ""
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "קווים"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "לחצי בתוך התמונה למילוי האזור בצבע."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -350,47 +382,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "כלים" msgstr "כלים"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "צבעים" msgstr "צבעים"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "מברשות" msgstr "מברשות"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "מחקים" msgstr "מחקים"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "חותמות" msgstr "חותמות"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "צורות" msgstr "צורות"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "אותיות" msgstr "אותיות"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "קסם" msgstr "קסם"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "מילוי"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -442,9 +481,9 @@ msgid "New"
msgstr "חדש" msgstr "חדש"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "פתיחה" msgstr "פתיחה"
@ -581,227 +620,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "בסדר... נמשיך לצייר את התמונה הזאת!" msgstr "בסדר... נמשיך לצייר את התמונה הזאת!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "האם ברצונך לצאת?" msgstr "האם ברצונך לצאת?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "כן, אני סיימתי!" msgstr "כן, אני סיימתי!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "לא, תחזיר אותי!" msgstr "לא, תחזיר אותי!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "יציאה ללא שמירה תגרום לאיבוד הציור שלך! האם לשמור אותו?" msgstr "יציאה ללא שמירה תגרום לאיבוד הציור שלך! האם לשמור אותו?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "כן, שמור אותו!" msgstr "כן, שמור אותו!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "לא, אל תטרח לשמור!" msgstr "לא, אל תטרח לשמור!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "האם קודם לשמור את התמונה שלך?" msgstr "האם קודם לשמור את התמונה שלך?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "לא ניתן לפתוח תמונה זו!" msgstr "לא ניתן לפתוח תמונה זו!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "בסדר" msgstr "בסדר"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "אין קבצים שמורים!" msgstr "אין קבצים שמורים!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "האם להדפיס את הציור עכשיו?" msgstr "האם להדפיס את הציור עכשיו?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "כן, הדפס אותו!" msgstr "כן, הדפס אותו!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "הציור שלך הודפס!" msgstr "הציור שלך הודפס!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "הציור שלך לא הודפס!" msgstr "הציור שלך לא הודפס!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "עדיין אין באפשרותך להדפיס!" msgstr "עדיין אין באפשרותך להדפיס!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "למחוק ציור זה?" msgstr "למחוק ציור זה?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "כן, מחק אותו!" msgstr "כן, מחק אותו!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "לא, אל תמחק אותו!" msgstr "לא, אל תמחק אותו!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "זכרי להשתמש בכפתור השמאלי של העכבר!" msgstr "זכרי להשתמש בכפתור השמאלי של העכבר!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "הציור שלך הודפס!" msgstr "הציור שלך הודפס!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "הציור שלך הודפס!" msgstr "הציור שלך הודפס!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "הציור שלך לא הודפס!" msgstr "הציור שלך לא הודפס!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "הציור שלך לא הודפס!" msgstr "הציור שלך לא הודפס!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "בחרי תמונה, ואז לחצי \"הצג\"." msgstr "בחרי תמונה, ואז לחצי \"הצג\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "קול מושתק." msgstr "קול מושתק."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "קול לא מושתק." msgstr "קול לא מושתק."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "אנא חכה..." msgstr "אנא חכה..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "מחק" msgstr "מחק"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "שקופיות" msgstr "שקופיות"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "חזרה" msgstr "חזרה"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "הצג" msgstr "הצג"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "הבא" msgstr "הבא"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "כן" msgstr "כן"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "לא" msgstr "לא"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "החלף תמונה עם השינויים שעשית?" msgstr "החלף תמונה עם השינויים שעשית?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "כן, החלף את הישנה!" msgstr "כן, החלף את הישנה!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "לא, שמור בקובץ חדש!" msgstr "לא, שמור בקובץ חדש!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "בחרי תמונה, ואז לחצי \"פתיחה\"." msgstr "בחרי תמונה, ואז לחצי \"פתיחה\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "בחרי צבע." msgstr "בחרי צבע."
@ -832,13 +871,13 @@ msgstr "לחצי והזיזי את העכבר לשינוי הצבע של חלק
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "לחצי לשינוי הצבע של כל התמונה." msgstr "לחצי לשינוי הצבע של כל התמונה."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
#, fuzzy #, fuzzy
#| msgid "Alien" #| msgid "Alien"
msgid "Blind" msgid "Blind"
msgstr "חיזר" msgstr "חיזר"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -929,11 +968,21 @@ msgstr "סרט מצוייר"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "לחצי והזיזי את העכבר כדי להפוך את התמונה לסרט מצויר." msgstr "לחצי והזיזי את העכבר כדי להפוך את התמונה לסרט מצויר."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw string art aligned to the edges."
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "לחצי וגררי לציור מסילת רכבת על התמונה."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint 0.9.14\n" "Project-Id-Version: tuxpaint 0.9.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-08-09 02:17+1000\n" "PO-Revision-Date: 2014-08-09 02:17+1000\n"
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n" "Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
"Language-Team: Hindi\n" "Language-Team: Hindi\n"
@ -183,6 +183,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "रेखाऍं"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "रंग भरो"
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -343,47 +375,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "औजार" msgstr "औजार"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "रंग" msgstr "रंग"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "ब्रश" msgstr "ब्रश"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "रबड़" msgstr "रबड़"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "टिकटें" msgstr "टिकटें"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "आकार" msgstr "आकार"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "अक्शर" msgstr "अक्शर"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "जादू" msgstr "जादू"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "भरो"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -435,9 +474,9 @@ msgid "New"
msgstr "नया काम" msgstr "नया काम"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "खोलो" msgstr "खोलो"
@ -579,227 +618,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "चलो ड्राइंग को जारी रखते है " msgstr "चलो ड्राइंग को जारी रखते है "
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "क्या आप सही मे टक्सपेंट को बंद करना चाहते है ऋ" msgstr "क्या आप सही मे टक्सपेंट को बंद करना चाहते है ऋ"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "हाँ, मैं पूरा कर चूका हूँ!" msgstr "हाँ, मैं पूरा कर चूका हूँ!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "नहीं, मुझे वापस ले जाएं!" msgstr "नहीं, मुझे वापस ले जाएं!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "आपका काम सेव करे ऋ" msgstr "आपका काम सेव करे ऋ"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "हाँ, इसे सुरक्षित करें!" msgstr "हाँ, इसे सुरक्षित करें!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "नहीं, इसे सुरक्षित करने का कष्ट न करें!" msgstr "नहीं, इसे सुरक्षित करने का कष्ट न करें!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "कया पहले काम को सेव करे ऋ" msgstr "कया पहले काम को सेव करे ऋ"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "तस्वीर नहीं खुल रही है" msgstr "तस्वीर नहीं खुल रही है"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "हॉंं" msgstr "हॉंं"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "वहाँ कोई फ़ाइलें बची नही है" msgstr "वहाँ कोई फ़ाइलें बची नही है"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "प्रिन्ट करू क्या" msgstr "प्रिन्ट करू क्या"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "हाँ, इसे प्रिंट करें!" msgstr "हाँ, इसे प्रिंट करें!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "प्रिन्ट हो गयी" msgstr "प्रिन्ट हो गयी"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|" msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "अभी प्रिन्ट नहीं कर सकते" msgstr "अभी प्रिन्ट नहीं कर सकते"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "नष्ट करू क्या ऋ" msgstr "नष्ट करू क्या ऋ"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "हाँ, इसे मिटाएं!" msgstr "हाँ, इसे मिटाएं!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "नहीं, इसे मत मिटाएं!" msgstr "नहीं, इसे मत मिटाएं!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "बाएँ माउस बटन का उपयोग करना न भूलें!" msgstr "बाएँ माउस बटन का उपयोग करना न भूलें!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "प्रिन्ट हो गयी" msgstr "प्रिन्ट हो गयी"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "प्रिन्ट हो गयी" msgstr "प्रिन्ट हो गयी"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|" msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|" msgstr "क्षमा करें! आपका चित्र मुद्रित नहीं किया जा सका|"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "जो चित्र आप चाहते हैं उसे चुने और \"चलायें\" पर क्लिक करें" msgstr "जो चित्र आप चाहते हैं उसे चुने और \"चलायें\" पर क्लिक करें"
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "आवाज बंद किया गया|" msgstr "आवाज बंद किया गया|"
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "आवाज शुरू किया गया|" msgstr "आवाज शुरू किया गया|"
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "कृपया प्रतीक्षा करें..." msgstr "कृपया प्रतीक्षा करें..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "नष्ट कर" msgstr "नष्ट कर"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "स्लाइड" msgstr "स्लाइड"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "पीछे" msgstr "पीछे"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "चलायें" msgstr "चलायें"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "अगला" msgstr "अगला"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "हॉं" msgstr "हॉं"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "नहीं" msgstr "नहीं"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "आपके परिवर्तनों के साथ चित्र बदलें?" msgstr "आपके परिवर्तनों के साथ चित्र बदलें?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "हाँ, पुराने को बदलें!" msgstr "हाँ, पुराने को बदलें!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "नहीं, नयी फाइल सुरक्षित करें|" msgstr "नहीं, नयी फाइल सुरक्षित करें|"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "काम को चुन कर ‘खोलो’।" msgstr "काम को चुन कर ‘खोलो’।"
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "एक रंग चुनें|" msgstr "एक रंग चुनें|"
@ -830,11 +869,11 @@ msgstr "चित्र के भागों के रंग परिवर
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "अपने पूरे चित्र में रंग बदलने के लिए क्लिक करें|" msgstr "अपने पूरे चित्र में रंग बदलने के लिए क्लिक करें|"
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "परदा" msgstr "परदा"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -926,11 +965,21 @@ msgstr "हास्यचित्र"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "चित्र को हास्यचित्र में बदलने के लिए क्लिक करें और स्थानांतरित करें" msgstr "चित्र को हास्यचित्र में बदलने के लिए क्लिक करें और स्थानांतरित करें"
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "पैटर्न को दोहराने के लिए क्लिक करें और खीचें|"
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-26 10:53+0100\n" "PO-Revision-Date: 2017-12-26 10:53+0100\n"
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n" "Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -180,6 +180,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Pravci"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klikni na crtež da popuniš taj dio crteža bojom."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -342,47 +374,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Alati" msgstr "Alati"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Boje" msgstr "Boje"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Četkice" msgstr "Četkice"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gumica" msgstr "Gumica"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Markice" msgstr "Markice"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Oblici" msgstr "Oblici"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Slova" msgstr "Slova"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Čarolija" msgstr "Čarolija"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Popuni"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -434,9 +473,9 @@ msgid "New"
msgstr "Novi" msgstr "Novi"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Otvori" msgstr "Otvori"
@ -573,227 +612,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "U redu. Nastavit ćemo crtat ovaj crtež!" msgstr "U redu. Nastavit ćemo crtat ovaj crtež!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Želiš li stvarno zatvoriti prozor?" msgstr "Želiš li stvarno zatvoriti prozor?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Da, gotov/a sam!" msgstr "Da, gotov/a sam!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ne, vrati me nazad!" msgstr "Ne, vrati me nazad!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Da li želiš pohraniti tvoj crtež?" msgstr "Da li želiš pohraniti tvoj crtež?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Da, spremi ga!" msgstr "Da, spremi ga!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ne, ne trudi se spremat!" msgstr "Ne, ne trudi se spremat!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Treba li prvo pohraniti tvoj crtež?" msgstr "Treba li prvo pohraniti tvoj crtež?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ne mogu otvoriti taj crtež!" msgstr "Ne mogu otvoriti taj crtež!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "U redu" msgstr "U redu"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Nema pohranjenih datoteka!" msgstr "Nema pohranjenih datoteka!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Želiš li ispisati svoj crtež?" msgstr "Želiš li ispisati svoj crtež?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Da, ispiši!" msgstr "Da, ispiši!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Tvoj crtež je ispisan!" msgstr "Tvoj crtež je ispisan!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Žao nam je! Tvoj crtež nije ispisan!" msgstr "Žao nam je! Tvoj crtež nije ispisan!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Ne možeš još ispisati!" msgstr "Ne možeš još ispisati!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Želiš li obrisati ovaj crtež?" msgstr "Želiš li obrisati ovaj crtež?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Da, izbriši ga!" msgstr "Da, izbriši ga!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ne, nemoj ga izbrisati1" msgstr "Ne, nemoj ga izbrisati1"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Podsjetnik: Koristi lijevu tipku miša!" msgstr "Podsjetnik: Koristi lijevu tipku miša!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Tvoj crtež je ispisan!" msgstr "Tvoj crtež je ispisan!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Tvoj crtež je ispisan!" msgstr "Tvoj crtež je ispisan!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Žao nam je! Tvoj crtež nije ispisan!" msgstr "Žao nam je! Tvoj crtež nije ispisan!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Žao nam je! Tvoj crtež nije ispisan!" msgstr "Žao nam je! Tvoj crtež nije ispisan!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Izaberi crtež, a zatim klikni “Otvori”." msgstr "Izaberi crtež, a zatim klikni “Otvori”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Zvuk isključen." msgstr "Zvuk isključen."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Zvuk uključen" msgstr "Zvuk uključen"
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Molimo pričekajte..." msgstr "Molimo pričekajte..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Izbriši" msgstr "Izbriši"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slajdovi" msgstr "Slajdovi"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Natrag" msgstr "Natrag"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Pokreni" msgstr "Pokreni"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Idući" msgstr "Idući"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Da" msgstr "Da"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Zamjeniti crtež s vašim promjenama?" msgstr "Zamjeniti crtež s vašim promjenama?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Da, zamjeni prethodnu!" msgstr "Da, zamjeni prethodnu!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ne. Pohrani u novu datoteku!" msgstr "Ne. Pohrani u novu datoteku!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Izaberi crtež, a zatim klikni 'Otvori'." msgstr "Izaberi crtež, a zatim klikni 'Otvori'."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Odaberite boju s vašeg crteža." msgstr "Odaberite boju s vašeg crteža."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Odaberi boju" msgstr "Odaberi boju"
@ -821,11 +860,11 @@ msgstr "Klikni i pomakni miš da promijeniš boje na dijelovima svoga crteža."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klikni za promjenu boje u cijelom crtežu." msgstr "Klikni za promjenu boje u cijelom crtežu."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Zavjesa" msgstr "Zavjesa"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -899,11 +938,21 @@ msgstr "Animirani film"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Klikni i pomakni miš da načiniš animirani film od slike." msgstr "Klikni i pomakni miš da načiniš animirani film od slike."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klikni i pomakni miš za crtanje ponavljajućih redoslijeda uzorka."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-06-28 12:48+0200\n" "PO-Revision-Date: 2014-06-28 12:48+0200\n"
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n" "Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n" "Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
@ -184,6 +184,38 @@ msgstr "áíűőüöúóé"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "ÁÍŰŐÜÖÓÉ" msgstr "ÁÍŰŐÜÖÓÉ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Vonalak"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Kattints oda a rajzodon, ahol ki szeretnéd tölteni a színnel!"
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -347,47 +379,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Eszközök" msgstr "Eszközök"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Színek" msgstr "Színek"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Ecsetek" msgstr "Ecsetek"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Radírok" msgstr "Radírok"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Matricák" msgstr "Matricák"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Síkidomok" msgstr "Síkidomok"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Betűk" msgstr "Betűk"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Varázs" msgstr "Varázs"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Kitöltés"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -439,9 +478,9 @@ msgid "New"
msgstr "Új" msgstr "Új"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Megnyitás" msgstr "Megnyitás"
@ -590,227 +629,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Rendben… Akkor folytassuk ezt a rajzot!" msgstr "Rendben… Akkor folytassuk ezt a rajzot!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Biztos ki szeretnél lépni?" msgstr "Biztos ki szeretnél lépni?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Igen, befejeztem!" msgstr "Igen, befejeztem!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nem, folytatni akarom!" msgstr "Nem, folytatni akarom!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "El fog veszni a rajzod, ha kilépsz. Mentsük el?" msgstr "El fog veszni a rajzod, ha kilépsz. Mentsük el?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Igen, mentsd!" msgstr "Igen, mentsd!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ne mentsd!" msgstr "Ne mentsd!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Elmentjük előbb a rajzod?" msgstr "Elmentjük előbb a rajzod?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Ezt a képet nem lehet megnyitni!" msgstr "Ezt a képet nem lehet megnyitni!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Oké" msgstr "Oké"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Nincsenek mentett fájlok!" msgstr "Nincsenek mentett fájlok!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Kinyomtassuk most a rajzod?" msgstr "Kinyomtassuk most a rajzod?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Igen, nyomtasd!" msgstr "Igen, nyomtasd!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Kinyomtattuk a rajzod!" msgstr "Kinyomtattuk a rajzod!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!" msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Még nem nyomtathatsz!" msgstr "Még nem nyomtathatsz!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Biztos törlöd ezt a rajzot?" msgstr "Biztos törlöd ezt a rajzot?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Igen, töröld!" msgstr "Igen, töröld!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ne töröld!" msgstr "Ne töröld!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Ne feledd használni a bal egérgombot!" msgstr "Ne feledd használni a bal egérgombot!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Kinyomtattuk a rajzod!" msgstr "Kinyomtattuk a rajzod!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Kinyomtattuk a rajzod!" msgstr "Kinyomtattuk a rajzod!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!" msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!" msgstr "Elnézést, a rajzod nem sikerült kinyomtatni!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Válaszd ki a képeket, majd kattints a „Lejátszás” gombra." msgstr "Válaszd ki a képeket, majd kattints a „Lejátszás” gombra."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Hang elnémítva." msgstr "Hang elnémítva."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Hang bekapcsolva." msgstr "Hang bekapcsolva."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Kis türelmet…" msgstr "Kis türelmet…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Törlés" msgstr "Törlés"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Fóliák" msgstr "Fóliák"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Vissza" msgstr "Vissza"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Lejátszás" msgstr "Lejátszás"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Következő" msgstr "Következő"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Igen" msgstr "Igen"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nem" msgstr "Nem"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Lecseréled a képet a módosítottra?" msgstr "Lecseréled a képet a módosítottra?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Igen, lecserélem a régit!" msgstr "Igen, lecserélem a régit!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nem, inkább mentsük el más néven!" msgstr "Nem, inkább mentsük el más néven!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Válaszd ki a képet, majd kattints a „Megnyitás” gombra." msgstr "Válaszd ki a képet, majd kattints a „Megnyitás” gombra."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Válassz egy színt!" msgstr "Válassz egy színt!"
@ -841,11 +880,11 @@ msgstr "Kattints oda a rajzodon, ahol meg szeretnéd változtatni a színeket."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Kattints az egész rajz színeinek megváltoztatásához." msgstr "Kattints az egész rajz színeinek megváltoztatásához."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Függöny" msgstr "Függöny"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -935,11 +974,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Kattints oda a rajzodon, ahol a képet képregénnyé szeretnéd változtatni!" "Kattints oda a rajzodon, ahol a képet képregénnyé szeretnéd változtatni!"
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Az egér gombját lenyomva tartva ismétlődő mintát rajzolhatsz."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.8\n" "Project-Id-Version: 1.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2014-03-22 11:39+0400\n" "PO-Revision-Date: 2014-03-22 11:39+0400\n"
"Last-Translator: Aram Palyan <ararat.info@gmail.com>\n" "Last-Translator: Aram Palyan <ararat.info@gmail.com>\n"
"Language-Team: Armenian <ararat.info@gmail.com>\n" "Language-Team: Armenian <ararat.info@gmail.com>\n"
@ -184,6 +184,38 @@ msgstr "<9>պահեստային-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>պահեստային-9b" msgstr "<9>պահեստային-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Գծեր"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Սեղմիր նկարի վրա, այդ հատվածը գույնով լցնելու համար:"
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -350,47 +382,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Գործիքներ" msgstr "Գործիքներ"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Գույներ" msgstr "Գույներ"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Վրձիններ" msgstr "Վրձիններ"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Ռետիններ" msgstr "Ռետիններ"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Կնիքներ" msgstr "Կնիքներ"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Ձևեր" msgstr "Ձևեր"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Տառեր" msgstr "Տառեր"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Մոգական" msgstr "Մոգական"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Լցոնում"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -442,9 +481,9 @@ msgid "New"
msgstr "Նորը" msgstr "Նորը"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Բացել" msgstr "Բացել"
@ -586,227 +625,227 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Լավ, ուրեմն... Շարունակենք նկարել այս մեկը" msgstr "Լավ, ուրեմն... Շարունակենք նկարել այս մեկը"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Իսկապե՞ս ցանկանում ես դուրս գալ:" msgstr "Իսկապե՞ս ցանկանում ես դուրս գալ:"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Այո, վերջացրեցի:" msgstr "Այո, վերջացրեցի:"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Ոչ, ինձ ետ տար:" msgstr "Ոչ, ինձ ետ տար:"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Եթե դուրս գաս, կկորցնես նկարը, պահպանե՞լ այն:" msgstr "Եթե դուրս գաս, կկորցնես նկարը, պահպանե՞լ այն:"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Այո, պահպանել այն:" msgstr "Այո, պահպանել այն:"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Ոչ, մի անհանգստացիր պահպանելու համար:" msgstr "Ոչ, մի անհանգստացիր պահպանելու համար:"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Նախ պահպանե՞մ քո նկարը:" msgstr "Նախ պահպանե՞մ քո նկարը:"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Չի կարող բացել նկարը:" msgstr "Չի կարող բացել նկարը:"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Լավ" msgstr "Լավ"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Պահպանված ֆայլեր չկան" msgstr "Պահպանված ֆայլեր չկան"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Հիմա տպե՞նք քո նկարը:" msgstr "Հիմա տպե՞նք քո նկարը:"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Այո, տպիր այն" msgstr "Այո, տպիր այն"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Քո նկարը տպվեց" msgstr "Քո նկարը տպվեց"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել" msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Չես կարող տպել դեռևս" msgstr "Չես կարող տպել դեռևս"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Ջնջե՞լ այս նկարը:" msgstr "Ջնջե՞լ այս նկարը:"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Այո, ջնջել այն" msgstr "Այո, ջնջել այն"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Ոչ, մի ջնջիր այն" msgstr "Ոչ, մի ջնջիր այն"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Հիշիր օգտագործել մկնիկի ձախ կոճակը" msgstr "Հիշիր օգտագործել մկնիկի ձախ կոճակը"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Քո նկարը տպվեց" msgstr "Քո նկարը տպվեց"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Քո նկարը տպվեց" msgstr "Քո նկարը տպվեց"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել" msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել" msgstr "Ցավոք, քո նկարը հնարավոր չէ տպել"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Ընտրիր քո կամեցած նկարը, այնուհետ սեղմիր «Գործարկել»" msgstr "Ընտրիր քո կամեցած նկարը, այնուհետ սեղմիր «Գործարկել»"
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Ձայնը լռեցված է" msgstr "Ձայնը լռեցված է"
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Ձայնը միացված է:" msgstr "Ձայնը միացված է:"
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Խնդրում եմ սպասիր..." msgstr "Խնդրում եմ սպասիր..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Ջնջել" msgstr "Ջնջել"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Սլայդեր" msgstr "Սլայդեր"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Հետ" msgstr "Հետ"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Գործարկել" msgstr "Գործարկել"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Հաջորդ" msgstr "Հաջորդ"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "այո" msgstr "այո"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "ոչ" msgstr "ոչ"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Փոխարինել նկարը քո կատարած փոփոխություններով?" msgstr "Փոխարինել նկարը քո կատարած փոփոխություններով?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Այո, փոխարինել հինը" msgstr "Այո, փոխարինել հինը"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Ոչ, պահպանել նոր ֆայլը" msgstr "Ոչ, պահպանել նոր ֆայլը"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Ընտրիր քո նախընտրած նկարը և սեղմիր «Բացել»" msgstr "Ընտրիր քո նախընտրած նկարը և սեղմիր «Բացել»"
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "" msgstr ""
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Ընտրիր գույնը" msgstr "Ընտրիր գույնը"
@ -838,11 +877,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Սեղմիր ամբողջ նկարիդ գույները փոխելու համար:" msgstr "Սեղմիր ամբողջ նկարիդ գույները փոխելու համար:"
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Վարագույր" msgstr "Վարագույր"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -934,11 +973,21 @@ msgstr "Մուլտիկ"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Սեղմիր և շարժիր մկնիկը շուրջ բոլորը մուլտիկային դարձնելու համար:" msgstr "Սեղմիր և շարժիր մկնիկը շուրջ բոլորը մուլտիկային դարձնելու համար:"
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Սեղմիր և քաշիր կրկնվող ձևանմուշներ նկարելու համար "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-09 04:22+0000\n" "PO-Revision-Date: 2017-12-09 04:22+0000\n"
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n" "Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -182,6 +182,38 @@ msgstr "<9>spare-9a"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "<9>spare-9b" msgstr "<9>spare-9b"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Garis"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Klik dalam gambar untuk mengisi area dengan warna."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -345,47 +377,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Tool" msgstr "Tool"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Warna" msgstr "Warna"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Kuas" msgstr "Kuas"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Penghapus" msgstr "Penghapus"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stempel" msgstr "Stempel"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Bentuk" msgstr "Bentuk"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Surat" msgstr "Surat"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magic" msgstr "Magic"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Isi"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -437,9 +476,9 @@ msgid "New"
msgstr "Baru" msgstr "Baru"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Buka" msgstr "Buka"
@ -581,105 +620,105 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "OK...Mari terus menggambar yang ini!" msgstr "OK...Mari terus menggambar yang ini!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Kamu benar-benar ingin keluar?" msgstr "Kamu benar-benar ingin keluar?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Ya, Saya Selesai" msgstr "Ya, Saya Selesai"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Tidak, Kembali Ke Sebelumnya!" msgstr "Tidak, Kembali Ke Sebelumnya!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Jika kamu keluar, kamu akan kehilangan gambar! Simpan?" msgstr "Jika kamu keluar, kamu akan kehilangan gambar! Simpan?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Ya, Simpan!" msgstr "Ya, Simpan!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Tidak, Tidak perlu menyimpan!" msgstr "Tidak, Tidak perlu menyimpan!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Simpan gambarmu dulu?" msgstr "Simpan gambarmu dulu?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Tidak dapat membuka gambar itu!" msgstr "Tidak dapat membuka gambar itu!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Tidak ada file tersimpan!" msgstr "Tidak ada file tersimpan!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Cetak gambarmu sekarang?" msgstr "Cetak gambarmu sekarang?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Ya, Cetak itu!" msgstr "Ya, Cetak itu!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Gambarmu telah dicetak!" msgstr "Gambarmu telah dicetak!"
# | msgid "Your picture has been printed!" # | msgid "Your picture has been printed!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Maaf! Gambar anda tidak dapat dicetak." msgstr "Maaf! Gambar anda tidak dapat dicetak."
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Kamu belum dapat mencetak!" msgstr "Kamu belum dapat mencetak!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Hapus gambar ini?" msgstr "Hapus gambar ini?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Ya, hapus itu!" msgstr "Ya, hapus itu!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Tidak, jangan hapus itu!" msgstr "Tidak, jangan hapus itu!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Ingat untuk menggunakan tombol mouse kiri!" msgstr "Ingat untuk menggunakan tombol mouse kiri!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Gambarmu telah dicetak!" msgstr "Gambarmu telah dicetak!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
@ -687,124 +726,124 @@ msgstr "Gambarmu telah dicetak!"
# | msgid "Your picture has been printed!" # | msgid "Your picture has been printed!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Maaf! Gambar anda tidak dapat dicetak." msgstr "Maaf! Gambar anda tidak dapat dicetak."
# | msgid "Your picture has been printed!" # | msgid "Your picture has been printed!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Maaf! Gambar anda tidak dapat dicetak." msgstr "Maaf! Gambar anda tidak dapat dicetak."
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Pilih gambar yang kamu inginkan, lalu klik “Play”." msgstr "Pilih gambar yang kamu inginkan, lalu klik “Play”."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Suara diredam." msgstr "Suara diredam."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Suara tidak diredam." msgstr "Suara tidak diredam."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Tunggu Sesaat..." msgstr "Tunggu Sesaat..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Hapus" msgstr "Hapus"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Slide" msgstr "Slide"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Kembali" msgstr "Kembali"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Play" msgstr "Play"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Selanjutnya" msgstr "Selanjutnya"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Ya" msgstr "Ya"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Tidak" msgstr "Tidak"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Ganti gambar dengan perubahan yang dilakukan?" msgstr "Ganti gambar dengan perubahan yang dilakukan?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Ya, gantikan yang lama!" msgstr "Ya, gantikan yang lama!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Tidak, Simpan sebuah berkas baru!" msgstr "Tidak, Simpan sebuah berkas baru!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Pilih gambar yang kamu inginkan, lalu klik \"Open\"." msgstr "Pilih gambar yang kamu inginkan, lalu klik \"Open\"."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Pilih warna dari gambar anda." msgstr "Pilih warna dari gambar anda."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Pilih warna." msgstr "Pilih warna."
@ -832,11 +871,11 @@ msgstr "Klik dan gerakkan mouse untuk merubah warna pada bagian gambar anda."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Klik untuk merubah warna seluruh gambar anda." msgstr "Klik untuk merubah warna seluruh gambar anda."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Blind" msgstr "Blind"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -913,11 +952,21 @@ msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "" msgstr ""
"Klik dan pindahkan mouse ke sekitar untuk mengubah gambar ke sebuah kartun." "Klik dan pindahkan mouse ke sekitar untuk mengubah gambar ke sebuah kartun."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Klik dan tarik untuk menggambar pola yang berulang. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: tuxpaint\n" "Project-Id-Version: tuxpaint\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2020-12-10 14:59+0000\n" "PO-Revision-Date: 2020-12-10 14:59+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n" "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n" "Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@ -183,6 +183,38 @@ msgstr "ðéíóúþæö"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "ÐÉÍÓÚÞÆÖ" msgstr "ÐÉÍÓÚÞÆÖ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Línur"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Smelltu og hreyfðu músina til að fylla svæðið með lit."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -344,48 +376,55 @@ msgid "Draw shapes from a corner."
msgstr "Teikna form frá horni." msgstr "Teikna form frá horni."
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Áhöld" msgstr "Áhöld"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Litir" msgstr "Litir"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Penslar" msgstr "Penslar"
# Strokleður is the same in plural as singular # Strokleður is the same in plural as singular
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Strokleður" msgstr "Strokleður"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Stimplar" msgstr "Stimplar"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Form" msgstr "Form"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Stafir" msgstr "Stafir"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Galdrar" msgstr "Galdrar"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Fylla"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -437,9 +476,9 @@ msgid "New"
msgstr "Nýtt" msgstr "Nýtt"
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Opna" msgstr "Opna"
@ -573,219 +612,219 @@ msgid "OK then… Lets keep drawing this one!"
msgstr "Allt í lagi... Höldum þá áfram með þessa!" msgstr "Allt í lagi... Höldum þá áfram með þessa!"
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Viltu í alvöru hætta?" msgstr "Viltu í alvöru hætta?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Já, ég er búin!" msgstr "Já, ég er búin!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "Nei, ég vil halda áfram!" msgstr "Nei, ég vil halda áfram!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Ef þú hættir, tapast myndin! Viltu geyma hana?" msgstr "Ef þú hættir, tapast myndin! Viltu geyma hana?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Já, geyma hana!" msgstr "Já, geyma hana!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "Nei, ekki geyma þetta!" msgstr "Nei, ekki geyma þetta!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Geyma myndina fyrst?" msgstr "Geyma myndina fyrst?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Get ekki opnað þessa mynd!" msgstr "Get ekki opnað þessa mynd!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "Í lagi" msgstr "Í lagi"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Fann engar geymdar myndir!" msgstr "Fann engar geymdar myndir!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Prenta myndina núna?" msgstr "Prenta myndina núna?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Já, prentaðu hana!" msgstr "Já, prentaðu hana!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Búið að prenta myndina þína!" msgstr "Búið að prenta myndina þína!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Því miður! Það var ekki hægt að prenta myndina þína!" msgstr "Því miður! Það var ekki hægt að prenta myndina þína!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Þú getur ekki prentað strax!" msgstr "Þú getur ekki prentað strax!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Eyða myndinni?" msgstr "Eyða myndinni?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Já, eyða henni!" msgstr "Já, eyða henni!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "Nei, ekki eyða henni!" msgstr "Nei, ekki eyða henni!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Muna eftir að nota vinstri músarhnappinn!" msgstr "Muna eftir að nota vinstri músarhnappinn!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Búið að flytja út myndina þína!" msgstr "Búið að flytja út myndina þína!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Búið að flytja út GIF-skyggnusýninguna þína!" msgstr "Búið að flytja út GIF-skyggnusýninguna þína!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Því miður! Það var ekki hægt að flytja út myndina þína!" msgstr "Því miður! Það var ekki hægt að flytja út myndina þína!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
msgstr "Því miður! Það var ekki hægt að flytja út GIF-skyggnusýninguna þína!" msgstr "Því miður! Það var ekki hægt að flytja út GIF-skyggnusýninguna þína!"
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Veldu myndirnar sem þú vilt, og smelltu svo á \"Spila\"." msgstr "Veldu myndirnar sem þú vilt, og smelltu svo á \"Spila\"."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Slökkt á hljóði." msgstr "Slökkt á hljóði."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Kveikt á hljóði." msgstr "Kveikt á hljóði."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Bíddu aðeins..." msgstr "Bíddu aðeins..."
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Eyða" msgstr "Eyða"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Myndasýning" msgstr "Myndasýning"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "Flytja út" msgstr "Flytja út"
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Til baka" msgstr "Til baka"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Spila" msgstr "Spila"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "GIF-útflutningur" msgstr "GIF-útflutningur"
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Áfram" msgstr "Áfram"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Já" msgstr "Já"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "Nei" msgstr "Nei"
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Skipta út eldri myndinni með þeirri nýju?" msgstr "Skipta út eldri myndinni með þeirri nýju?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Já, skipta út þeirri gömlu!" msgstr "Já, skipta út þeirri gömlu!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "Nei, geyma nýja mynd!" msgstr "Nei, geyma nýja mynd!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Veldu teikningu, og smelltu svo á 'Opna'." msgstr "Veldu teikningu, og smelltu svo á 'Opna'."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "Veldu 2 eða fleiri teikningar sem á að breyta í GIF-hreyfimynd." msgstr "Veldu 2 eða fleiri teikningar sem á að breyta í GIF-hreyfimynd."
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Veldu lit úr teikningunni þinni." msgstr "Veldu lit úr teikningunni þinni."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Veldu lit." msgstr "Veldu lit."
@ -813,11 +852,11 @@ msgstr "Smelltu og dragðu músina til að breyta litunum í hluta myndarinnar."
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Smelltu og hreyfðu músina til að breyta litunum í allri myndinni." msgstr "Smelltu og hreyfðu músina til að breyta litunum í allri myndinni."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Strimlar" msgstr "Strimlar"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -891,11 +930,21 @@ msgstr "Teiknimynd"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Smelltu og dragðu músina til að breyta myndinni í teiknimynd." msgstr "Smelltu og dragðu músina til að breyta myndinni í teiknimynd."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Smelltu og dragðu músina til að búa til endurtekin mynstur. "
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TuxPaint 0.9.23\n" "Project-Id-Version: TuxPaint 0.9.23\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-11 09:03-0800\n" "POT-Creation-Date: 2021-02-20 20:40-0800\n"
"PO-Revision-Date: 2017-12-18 09:15+0000\n" "PO-Revision-Date: 2017-12-18 09:15+0000\n"
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n" "Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
@ -203,6 +203,38 @@ msgstr "èòàì"
msgid "<9>spare-9b" msgid "<9>spare-9b"
msgstr "ÈÒÀÌ" msgstr "ÈÒÀÌ"
#: ../fill_tools.h:49
msgid "Solid"
msgstr ""
#: ../fill_tools.h:50
#, fuzzy
#| msgid "Lines"
msgid "Linear"
msgstr "Linee"
#: ../fill_tools.h:51
msgid "Radial"
msgstr ""
#: ../fill_tools.h:55
#, fuzzy
#| msgid "Click in the picture to fill that area with color."
msgid "Click to fill an area with a solid color."
msgstr "Fai clic per riempire l'area di colore."
#: ../fill_tools.h:56
msgid ""
"Click and drag to fill an area with a linear gradient (from the chosen color "
"to transparent)."
msgstr ""
#: ../fill_tools.h:57
msgid ""
"Click to fill an area with a radial gradient (from the chosen color to "
"transparent)."
msgstr ""
#. Congratulations #1 #. Congratulations #1
#: ../great.h:37 #: ../great.h:37
msgid "Great!" msgid "Great!"
@ -365,47 +397,54 @@ msgid "Draw shapes from a corner."
msgstr "" msgstr ""
#. Title of tool selector (buttons down the left) #. Title of tool selector (buttons down the left)
#: ../titles.h:56 #: ../titles.h:57
msgid "Tools" msgid "Tools"
msgstr "Strumenti" msgstr "Strumenti"
#. Title of color palette (buttons across the bottom) #. Title of color palette (buttons across the bottom)
#: ../titles.h:59 #: ../titles.h:60
msgid "Colors" msgid "Colors"
msgstr "Colori" msgstr "Colori"
#. Title of brush selector (buttons down the right for paint and line tools) #. Title of brush selector (buttons down the right for paint and line tools)
#: ../titles.h:62 #: ../titles.h:63
msgid "Brushes" msgid "Brushes"
msgstr "Pennelli" msgstr "Pennelli"
#. Title of eraser selector (buttons down the right for eraser tool) #. Title of eraser selector (buttons down the right for eraser tool)
#: ../titles.h:65 #: ../titles.h:66
msgid "Erasers" msgid "Erasers"
msgstr "Gomme" msgstr "Gomme"
#. Title of stamp selector (buttons down the right for stamps tool) #. Title of stamp selector (buttons down the right for stamps tool)
#: ../titles.h:68 #: ../titles.h:69
msgid "Stamps" msgid "Stamps"
msgstr "Timbri" msgstr "Timbri"
#. Title of shape selector (buttons down the right for shapes tool) #. Title of shape selector (buttons down the right for shapes tool)
#. Shape creation tool (square, circle, etc.) #. Shape creation tool (square, circle, etc.)
#: ../titles.h:71 ../tools.h:71 #: ../titles.h:72 ../tools.h:71
msgid "Shapes" msgid "Shapes"
msgstr "Forme" msgstr "Forme"
#. Title of font selector (buttons down the right for text and label tools) #. Title of font selector (buttons down the right for text and label tools)
#: ../titles.h:74 #: ../titles.h:75
msgid "Letters" msgid "Letters"
msgstr "Lettere" msgstr "Lettere"
#. Title of magic tool selector (buttons down the right for magic (effect plugin) tool) #. Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
#. "Magic" effects tools (blur, flip image, etc.) #. "Magic" effects tools (blur, flip image, etc.)
#: ../titles.h:77 ../tools.h:83 #: ../titles.h:78 ../tools.h:83
msgid "Magic" msgid "Magic"
msgstr "Magie" msgstr "Magie"
#. Title of fill selector (buttons down the right for fill tool)
#: ../titles.h:81
#, fuzzy
#| msgid "Fill"
msgid "Fills"
msgstr "Riempi"
#. Freehand painting tool #. Freehand painting tool
#: ../tools.h:62 #: ../tools.h:62
msgid "Paint" msgid "Paint"
@ -459,9 +498,9 @@ msgstr "Nuovo"
# buttons for the file open dialog # buttons for the file open dialog
# buttons for the file open dialog # buttons for the file open dialog
#. Open a saved picture #. Open a saved picture
#. buttons for the file open dialog #. Buttons for the file open dialog
#. Open dialog: 'Open' button, to load the selected picture #. Open dialog: 'Open' button, to load the selected picture
#: ../tools.h:98 ../tuxpaint.c:7949 #: ../tools.h:98 ../tuxpaint.c:8105
msgid "Open" msgid "Open"
msgstr "Apri" msgstr "Apri"
@ -616,117 +655,117 @@ msgstr "Allora ok… continuiamo a disegnare questo!"
# FIXME: Move elsewhere!!! # FIXME: Move elsewhere!!!
# FIXME: Move elsewhere!!! # FIXME: Move elsewhere!!!
#. Prompt to confirm user wishes to quit #. Prompt to confirm user wishes to quit
#: ../tuxpaint.c:2141 #: ../tuxpaint.c:2161
msgid "Do you really want to quit?" msgid "Do you really want to quit?"
msgstr "Vuoi veramente uscire?" msgstr "Vuoi veramente uscire?"
#. Quit prompt positive response (quit) #. Quit prompt positive response (quit)
#: ../tuxpaint.c:2144 #: ../tuxpaint.c:2164
msgid "Yes, Im done!" msgid "Yes, Im done!"
msgstr "Sì, ho finito!" msgstr "Sì, ho finito!"
#. Quit prompt negative response (don't quit) #. Quit prompt negative response (don't quit)
#: ../tuxpaint.c:2147 ../tuxpaint.c:2174 #: ../tuxpaint.c:2167 ../tuxpaint.c:2194
msgid "No, take me back!" msgid "No, take me back!"
msgstr "No, torna indietro!" msgstr "No, torna indietro!"
#. Current picture is not saved; user is quitting #. Current picture is not saved; user is quitting
#: ../tuxpaint.c:2151 #: ../tuxpaint.c:2171
msgid "If you quit, youll lose your picture! Save it?" msgid "If you quit, youll lose your picture! Save it?"
msgstr "Uscendo adesso, il disegno verrà perso! Vuoi salvarlo?" msgstr "Uscendo adesso, il disegno verrà perso! Vuoi salvarlo?"
#: ../tuxpaint.c:2152 ../tuxpaint.c:2157 #: ../tuxpaint.c:2172 ../tuxpaint.c:2177
msgid "Yes, save it!" msgid "Yes, save it!"
msgstr "Sì, salva!" msgstr "Sì, salva!"
#: ../tuxpaint.c:2153 ../tuxpaint.c:2158 #: ../tuxpaint.c:2173 ../tuxpaint.c:2178
msgid "No, dont bother saving!" msgid "No, dont bother saving!"
msgstr "No, non voglio salvare!" msgstr "No, non voglio salvare!"
#. Current picture is not saved; user is opening another picture #. Current picture is not saved; user is opening another picture
#: ../tuxpaint.c:2156 #: ../tuxpaint.c:2176
msgid "Save your picture first?" msgid "Save your picture first?"
msgstr "Vuoi salvare il disegno, prima?" msgstr "Vuoi salvare il disegno, prima?"
#. Error opening picture #. Error opening picture
#: ../tuxpaint.c:2161 #: ../tuxpaint.c:2181
msgid "Cant open that picture!" msgid "Cant open that picture!"
msgstr "Non è possibile aprire quel disegno!" msgstr "Non è possibile aprire quel disegno!"
#. Generic dialog dismissal #. Generic dialog dismissal
#: ../tuxpaint.c:2164 ../tuxpaint.c:2169 ../tuxpaint.c:2178 ../tuxpaint.c:2185 #: ../tuxpaint.c:2184 ../tuxpaint.c:2189 ../tuxpaint.c:2198 ../tuxpaint.c:2205
#: ../tuxpaint.c:2194 ../tuxpaint.c:2199 #: ../tuxpaint.c:2214 ../tuxpaint.c:2219
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
#. Notification that 'Open' dialog has nothing to show #. Notification that 'Open' dialog has nothing to show
#: ../tuxpaint.c:2168 #: ../tuxpaint.c:2188
msgid "There are no saved files!" msgid "There are no saved files!"
msgstr "Non ci sono file salvati!" msgstr "Non ci sono file salvati!"
#. Verification of print action #. Verification of print action
#: ../tuxpaint.c:2172 #: ../tuxpaint.c:2192
msgid "Print your picture now?" msgid "Print your picture now?"
msgstr "Vuoi stampare il disegno adesso?" msgstr "Vuoi stampare il disegno adesso?"
#: ../tuxpaint.c:2173 #: ../tuxpaint.c:2193
msgid "Yes, print it!" msgid "Yes, print it!"
msgstr "Sì, stampa!" msgstr "Sì, stampa!"
#. Confirmation of successful (we hope) printing #. Confirmation of successful (we hope) printing
#: ../tuxpaint.c:2177 #: ../tuxpaint.c:2197
msgid "Your picture has been printed!" msgid "Your picture has been printed!"
msgstr "Il tuo disegno è stato stampato!" msgstr "Il tuo disegno è stato stampato!"
#. We got an error printing #. We got an error printing
#: ../tuxpaint.c:2181 #: ../tuxpaint.c:2201
msgid "Sorry! Your picture could not be printed!" msgid "Sorry! Your picture could not be printed!"
msgstr "Non è possibile stampare il tuo disegno!" msgstr "Non è possibile stampare il tuo disegno!"
#. Notification that it's too soon to print again (--printdelay option is in effect) #. Notification that it's too soon to print again (--printdelay option is in effect)
#: ../tuxpaint.c:2184 #: ../tuxpaint.c:2204
msgid "You cant print yet!" msgid "You cant print yet!"
msgstr "Non puoi ancora stampare!" msgstr "Non puoi ancora stampare!"
#. Prompt to confirm erasing a picture in the Open dialog #. Prompt to confirm erasing a picture in the Open dialog
#: ../tuxpaint.c:2188 #: ../tuxpaint.c:2208
msgid "Erase this picture?" msgid "Erase this picture?"
msgstr "Vuoi cancellare il disegno?" msgstr "Vuoi cancellare il disegno?"
#: ../tuxpaint.c:2189 #: ../tuxpaint.c:2209
msgid "Yes, erase it!" msgid "Yes, erase it!"
msgstr "Sì, cancella!" msgstr "Sì, cancella!"
#: ../tuxpaint.c:2190 #: ../tuxpaint.c:2210
msgid "No, dont erase it!" msgid "No, dont erase it!"
msgstr "No, non cancellare!" msgstr "No, non cancellare!"
#. Reminder that Mouse Button 1 is the button to use in Tux Paint #. Reminder that Mouse Button 1 is the button to use in Tux Paint
#: ../tuxpaint.c:2193 #: ../tuxpaint.c:2213
msgid "Remember to use the left mouse button!" msgid "Remember to use the left mouse button!"
msgstr "Ricorda di usare il pulsante sinistro del mouse!" msgstr "Ricorda di usare il pulsante sinistro del mouse!"
#. Confirmation of successful (we hope) image export #. Confirmation of successful (we hope) image export
#: ../tuxpaint.c:2197 #: ../tuxpaint.c:2217
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your picture has been exported!" msgid "Your picture has been exported!"
msgstr "Il tuo disegno è stato stampato!" msgstr "Il tuo disegno è stato stampato!"
#: ../tuxpaint.c:2198 #: ../tuxpaint.c:2218
#, fuzzy #, fuzzy
#| msgid "Your picture has been printed!" #| msgid "Your picture has been printed!"
msgid "Your slideshow GIF has been exported!" msgid "Your slideshow GIF has been exported!"
msgstr "Il tuo disegno è stato stampato!" msgstr "Il tuo disegno è stato stampato!"
#. We got an error exporting #. We got an error exporting
#: ../tuxpaint.c:2202 #: ../tuxpaint.c:2222
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your picture could not be exported!" msgid "Sorry! Your picture could not be exported!"
msgstr "Non è possibile stampare il tuo disegno!" msgstr "Non è possibile stampare il tuo disegno!"
#: ../tuxpaint.c:2203 #: ../tuxpaint.c:2223
#, fuzzy #, fuzzy
#| msgid "Sorry! Your picture could not be printed!" #| msgid "Sorry! Your picture could not be printed!"
msgid "Sorry! Your slideshow GIF could not be exported!" msgid "Sorry! Your slideshow GIF could not be exported!"
@ -734,62 +773,62 @@ msgstr "Non è possibile stampare il tuo disegno!"
# Let user choose images: # Let user choose images:
#. Slideshow instructions #. Slideshow instructions
#: ../tuxpaint.c:2207 #: ../tuxpaint.c:2227
msgid "Choose the pictures you want, then click “Play”." msgid "Choose the pictures you want, then click “Play”."
msgstr "Scegli i disegni che desideri e fai clic su «Mostra»." msgstr "Scegli i disegni che desideri e fai clic su «Mostra»."
#. Sound has been muted (silenced) via keyboard shortcut #. Sound has been muted (silenced) via keyboard shortcut
#: ../tuxpaint.c:2416 #: ../tuxpaint.c:2436
msgid "Sound muted." msgid "Sound muted."
msgstr "Audio disattivato." msgstr "Audio disattivato."
#. Sound has been unmuted (unsilenced) via keyboard shortcut #. Sound has been unmuted (unsilenced) via keyboard shortcut
#: ../tuxpaint.c:2421 #: ../tuxpaint.c:2441
msgid "Sound unmuted." msgid "Sound unmuted."
msgstr "Audio attivato." msgstr "Audio attivato."
#. Wait while Text tool finishes loading fonts #. Wait while Text tool finishes loading fonts
#: ../tuxpaint.c:3190 #: ../tuxpaint.c:3218
msgid "Please wait…" msgid "Please wait…"
msgstr "Attendi…" msgstr "Attendi…"
#. Open dialog: 'Erase' button, to erase/deleted the selected picture #. Open dialog: 'Erase' button, to erase/deleted the selected picture
#: ../tuxpaint.c:7952 #: ../tuxpaint.c:8108
msgid "Erase" msgid "Erase"
msgstr "Cancella" msgstr "Cancella"
#. Open dialog: 'Slides' button, to switch to slide show mode #. Open dialog: 'Slides' button, to switch to slide show mode
#: ../tuxpaint.c:7955 #: ../tuxpaint.c:8111
msgid "Slides" msgid "Slides"
msgstr "Diapositive" msgstr "Diapositive"
#. Open dialog: 'Export' button, to copy an image to an easily-accessible location #. Open dialog: 'Export' button, to copy an image to an easily-accessible location
#: ../tuxpaint.c:7958 #: ../tuxpaint.c:8114
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture #. Open dialog: 'Back' button, to dismiss Open dialog without opening a picture
#: ../tuxpaint.c:7961 #: ../tuxpaint.c:8117
msgid "Back" msgid "Back"
msgstr "Indietro" msgstr "Indietro"
#. Slideshow: 'Play' button, to begin a slideshow sequence #. Slideshow: 'Play' button, to begin a slideshow sequence
#: ../tuxpaint.c:7964 #: ../tuxpaint.c:8120
msgid "Play" msgid "Play"
msgstr "Mostra" msgstr "Mostra"
#. Slideshow: 'GIF Export' button, to create an animated GIF #. Slideshow: 'GIF Export' button, to create an animated GIF
#: ../tuxpaint.c:7967 #: ../tuxpaint.c:8123
msgid "GIF Export" msgid "GIF Export"
msgstr "" msgstr ""
#. Slideshow: 'Next' button, to load next slide (image) #. Slideshow: 'Next' button, to load next slide (image)
#: ../tuxpaint.c:7970 #: ../tuxpaint.c:8126
msgid "Next" msgid "Next"
msgstr "Avanti" msgstr "Avanti"
#. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces #. Label for 'Letters' buttons (font selector, down the right when the Text tool is being used); used to show the difference between font faces
#: ../tuxpaint.c:8685 #: ../tuxpaint.c:8874
msgid "Aa" msgid "Aa"
msgstr "Aa" msgstr "Aa"
@ -797,51 +836,51 @@ msgstr "Aa"
# FIXME: Move elsewhere! Or not?! # FIXME: Move elsewhere! Or not?!
#. Admittedly stupid way of determining which keys can be used for #. Admittedly stupid way of determining which keys can be used for
#. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English) #. positive and negative responses in dialogs (e.g., [Y] (for 'yes') in English)
#: ../tuxpaint.c:12179 #: ../tuxpaint.c:12515
msgid "Yes" msgid "Yes"
msgstr "Sì" msgstr "Sì"
#: ../tuxpaint.c:12183 #: ../tuxpaint.c:12519
msgid "No" msgid "No"
msgstr "No" msgstr "No"
# FIXME: Move elsewhere!!! # FIXME: Move elsewhere!!!
# #define PROMPT_SAVE_OVER_TXT gettext_noop("Save over the older version of this picture?") # #define PROMPT_SAVE_OVER_TXT gettext_noop("Save over the older version of this picture?")
#. Prompt to ask whether user wishes to save over old version of their file #. Prompt to ask whether user wishes to save over old version of their file
#: ../tuxpaint.c:13309 #: ../tuxpaint.c:13658
msgid "Replace the picture with your changes?" msgid "Replace the picture with your changes?"
msgstr "Vuoi sostituire il disegno precedente?" msgstr "Vuoi sostituire il disegno precedente?"
#. Positive response to saving over old version #. Positive response to saving over old version
#. (like a 'File:Save' action in other applications) #. (like a 'File:Save' action in other applications)
#: ../tuxpaint.c:13313 #: ../tuxpaint.c:13662
msgid "Yes, replace the old one!" msgid "Yes, replace the old one!"
msgstr "Sì, sostituisci il vecchio disegno!" msgstr "Sì, sostituisci il vecchio disegno!"
#. Negative response to saving over old version (saves a new image) #. Negative response to saving over old version (saves a new image)
#. (like a 'File:Save As...' action in other applications) #. (like a 'File:Save As...' action in other applications)
#: ../tuxpaint.c:13317 #: ../tuxpaint.c:13666
msgid "No, save a new file!" msgid "No, save a new file!"
msgstr "No, crea un nuovo file!" msgstr "No, crea un nuovo file!"
#. Let user choose an image: #. Let user choose an image:
#. Instructions for 'Open' file dialog #. Instructions for 'Open' file dialog
#: ../tuxpaint.c:14573 #: ../tuxpaint.c:14929
msgid "Choose the picture you want, then click “Open”." msgid "Choose the picture you want, then click “Open”."
msgstr "Scegli il disegno che desideri e fai clic su «Apri»." msgstr "Scegli il disegno che desideri e fai clic su «Apri»."
#. None selected? Too dangerous to automatically select all (like we do for slideshow playback). #. None selected? Too dangerous to automatically select all (like we do for slideshow playback).
#. Only 1 selected? No point in saving as GIF. #. Only 1 selected? No point in saving as GIF.
#. #.
#: ../tuxpaint.c:15999 #: ../tuxpaint.c:16355
msgid "Select 2 or more drawings to turn into an animated GIF." msgid "Select 2 or more drawings to turn into an animated GIF."
msgstr "" msgstr ""
#: ../tuxpaint.c:23670 #: ../tuxpaint.c:24060
msgid "Select a color from your drawing." msgid "Select a color from your drawing."
msgstr "Seleziona un colore dal tuo disegno." msgstr "Seleziona un colore dal tuo disegno."
#: ../tuxpaint.c:23682 #: ../tuxpaint.c:24072
msgid "Pick a color." msgid "Pick a color."
msgstr "Scegli un colore." msgstr "Scegli un colore."
@ -870,11 +909,11 @@ msgstr ""
msgid "Click to change the colors in your entire picture." msgid "Click to change the colors in your entire picture."
msgstr "Fai clic per cambiare i colori di tutto il disegno." msgstr "Fai clic per cambiare i colori di tutto il disegno."
#: ../../magic/src/blind.c:116 #: ../../magic/src/blind.c:115
msgid "Blind" msgid "Blind"
msgstr "Tendine" msgstr "Tendine"
#: ../../magic/src/blind.c:123 #: ../../magic/src/blind.c:122
msgid "" msgid ""
"Click towards the edge of your picture to pull window blinds over it. Move " "Click towards the edge of your picture to pull window blinds over it. Move "
"perpendicularly to open or close the blinds." "perpendicularly to open or close the blinds."
@ -950,11 +989,21 @@ msgstr "Fumetto"
msgid "Click and drag the mouse around to turn the picture into a cartoon." msgid "Click and drag the mouse around to turn the picture into a cartoon."
msgstr "Fai clic e trascina il mouse per trasformare il disegno in un fumetto." msgstr "Fai clic e trascina il mouse per trasformare il disegno in un fumetto."
#: ../../magic/src/clone.c:121 #: ../../magic/src/checkerboard.c:99
msgid "Checkerboard"
msgstr ""
#: ../../magic/src/checkerboard.c:106
#, fuzzy
#| msgid "Click and drag to draw repetitive patterns. "
msgid "Click and drag to fill the canvas with a checkerboard pattern."
msgstr "Fai clic e trascina per disegnare modelli ripetitivi."
#: ../../magic/src/clone.c:132
msgid "Clone" msgid "Clone"
msgstr "" msgstr ""
#: ../../magic/src/clone.c:127 #: ../../magic/src/clone.c:138
msgid "" msgid ""
"Click once to pick a spot to begin cloning. Click again and drag to clone " "Click once to pick a spot to begin cloning. Click again and drag to clone "
"that part of the picture." "that part of the picture."

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