WIP Load for fonts in locations specified by FontConfig
Checking for fonts in any locations specified by "<dir>" entries found in system-wide and user-level FontConfig config files. This allows more fonts, and user-specific fonts, to be found & loaded. TODO - Looking in Un*x-specific `/etc/fonts/fonts.conf` and `~/.config/fontconfig/fonts.conf`, and should look in the correct places on other platforms. NOTE - This adds a build dependency on `libxml-2.0`.
This commit is contained in:
parent
cb6f190c58
commit
cd392a7864
134 changed files with 11309 additions and 10415 deletions
25
Makefile
25
Makefile
|
|
@ -4,7 +4,7 @@
|
|||
# Various contributors (see AUTHORS.txt)
|
||||
# https://tuxpaint.org/
|
||||
|
||||
# June 14, 2002 - December 28, 2024
|
||||
# June 14, 2002 - December 29, 2024
|
||||
|
||||
|
||||
# The version number, for release:
|
||||
|
|
@ -219,13 +219,16 @@ PNG:=$(if $(PNG),$(PNG),$(call linktest,,-lpng12,))
|
|||
FRIBIDI_LIB:=$(shell $(PKG_CONFIG) --libs fribidi)
|
||||
FRIBIDI_CFLAGS:=$(shell $(PKG_CONFIG) --cflags fribidi)
|
||||
|
||||
windows_ARCH_LINKS:=-lgdi32 -lcomdlg32 $(PNG) -lz -lwinspool -lshlwapi $(FRIBIDI_LIB) -liconv -limagequant -mwindows
|
||||
os2_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) -limagequant
|
||||
macos_ARCH_LINKS:=$(FRIBIDI_LIB) -limagequant -lSDLmain -Wl,-framework,AppKit -Wl,-framework,Cocoa $(shell $(PKG_CONFIG) --libs pangoft2)
|
||||
ios_ARCH_LINKS=$(FRIBIDI_LIB) -limagequant -ljpeg -lbz2 $(shell $(PKG_CONFIG) --libs freetype2 libtiff-4 libwebp libffi harfbuzz libmpg123 ogg vorbisenc vorbisidec libxml-2.0 pangoft2 libpcre)
|
||||
beos_ARCH_LINKS:=-lintl $(PNG) -lz -lbe -lnetwork -liconv $(FRIBIDI_LIB) $(PAPER_LIB) $(STDC_LIB) -limagequant
|
||||
linux_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) -limagequant
|
||||
netbsd_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) -limagequant
|
||||
LIBXML_LIB:=$(shell $(PKG_CONFIG) --libs libxml-2.0)
|
||||
LIBXML_CFLAGS:=$(shell $(PKG_CONFIG) --cflags libxml-2.0)
|
||||
|
||||
windows_ARCH_LINKS:=-lgdi32 -lcomdlg32 $(PNG) -lz -lwinspool -lshlwapi $(FRIBIDI_LIB) $(LIBXML_LIB) -liconv -limagequant -mwindows
|
||||
os2_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) $(LIBXML_LIB) -limagequant
|
||||
macos_ARCH_LINKS:=$(FRIBIDI_LIB) $(LIBXML_LIB) -limagequant -lSDLmain -Wl,-framework,AppKit -Wl,-framework,Cocoa $(shell $(PKG_CONFIG) --libs pangoft2)
|
||||
ios_ARCH_LINKS=$(FRIBIDI_LIB) $(LIBXML_LIB) -limagequant -ljpeg -lbz2 $(shell $(PKG_CONFIG) --libs freetype2 libtiff-4 libwebp libffi harfbuzz libmpg123 ogg vorbisenc vorbisidec libxml-2.0 pangoft2 libpcre)
|
||||
beos_ARCH_LINKS:=-lintl $(PNG) -lz -lbe -lnetwork -liconv $(FRIBIDI_LIB) $(LIBXML_LIB) $(PAPER_LIB) $(STDC_LIB) -limagequant
|
||||
linux_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) $(LIBXML_LIB) -limagequant
|
||||
netbsd_ARCH_LINKS:=$(PAPER_LIB) $(FRIBIDI_LIB) $(LIBXML_LIB) -limagequant
|
||||
ARCH_LINKS:=$($(OS)_ARCH_LINKS)
|
||||
|
||||
windows_ARCH_HEADERS:=src/win32_print.h
|
||||
|
|
@ -1241,7 +1244,7 @@ tuxpaint: obj/tuxpaint.o obj/i18n.o obj/im.o obj/cursor.o obj/pixels.o \
|
|||
$(ARCH_LIBS)
|
||||
@echo
|
||||
@echo "...Linking Tux Paint..."
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(LIBXML_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
-o tuxpaint $^ \
|
||||
$(SDL_LIBS) $(SVG_LIB) $(ARCH_LINKS) -lm
|
||||
@$(RAD_CMD)
|
||||
|
|
@ -1277,7 +1280,7 @@ obj/tuxpaint.o: src/tuxpaint.c \
|
|||
$(ARCH_HEADERS)
|
||||
@echo
|
||||
@echo "...Compiling Tux Paint from source..."
|
||||
$(CC) $(CFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(SVG_CFLAGS) $(MOUSE_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
$(CC) $(CFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(LIBXML_CFLAGS) $(SVG_CFLAGS) $(MOUSE_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
-c src/tuxpaint.c -o obj/tuxpaint.o
|
||||
|
||||
# Broke gperf|sed up into two steps so that it will fail properly if gperf is not installed; there's probably a more elegant solution -bjk 2009.11.20
|
||||
|
|
@ -1324,7 +1327,7 @@ obj/fonts.o: src/fonts.c src/fonts.h src/dirwalk.h src/progressbar.h \
|
|||
src/get_fname.h src/debug.h
|
||||
@echo
|
||||
@echo "...Compiling font support..."
|
||||
$(CC) $(CFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
$(CC) $(CFLAGS) $(LIBXML_CFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(DEFS) $(ARCH_DEFS) \
|
||||
-c src/fonts.c -o obj/fonts.o
|
||||
|
||||
obj/dirwalk.o: src/dirwalk.c src/dirwalk.h src/progressbar.h src/fonts.h \
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2024
|
|||
Various contributors (see below, and AUTHORS.txt)
|
||||
https://tuxpaint.org/
|
||||
|
||||
2024.December.28 (0.9.35)
|
||||
2024.December.29 (0.9.35)
|
||||
* New Magic Tools:
|
||||
----------------
|
||||
+ Heart, Sparkle, and Star emitters
|
||||
|
|
@ -31,6 +31,14 @@ https://tuxpaint.org/
|
|||
Closes https://sourceforge.net/p/tuxpaint/feature-requests/95/
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
+ WIP Checking for fonts in any locations specified by "<dir>"
|
||||
entries found in system-wide and user-level FontConfig config files.
|
||||
This allows more fonts, and user-specific fonts, to be found & loaded.
|
||||
- TODO - Looking in Un*x-specific `/etc/fonts/fonts.conf` and
|
||||
`~/.config/fontconfig/fonts.conf`, and should look in the
|
||||
correct places on other platforms.
|
||||
- Note: This adds a build dependency on `libxml-2.0`.
|
||||
|
||||
* Other Improvements:
|
||||
-------------------
|
||||
+ Improved color picker: better behavior when clicking/tapping and
|
||||
|
|
|
|||
106
src/fonts.c
106
src/fonts.c
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
fonts.c
|
||||
|
||||
Copyright (c) 2009-2023
|
||||
Copyright (c) 2009-2024
|
||||
https://tuxpaint.org/
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
Last modified: June 6, 2024
|
||||
Last modified: December 29, 2024
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
@ -37,6 +37,21 @@
|
|||
#define gettext_noop(String) String
|
||||
#endif
|
||||
|
||||
#include <libxml/xmlmemory.h>
|
||||
#include <libxml/parser.h>
|
||||
|
||||
/* On Linux, we can use 'wordexp()' to expand env. vars. in settings
|
||||
pulled from config. files */
|
||||
#ifdef __linux__
|
||||
|
||||
/* However, Android has __linux__ macro but does not support 'wordexp()'*/
|
||||
#ifndef __ANDROID__
|
||||
#include <wordexp.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
The following section renames global variables defined in SDL2_Pango.h to avoid errors during linking.
|
||||
It is okay to rename these variables because they are constants.
|
||||
|
|
@ -979,10 +994,14 @@ static void loadfonts(SDL_Surface *screen, SDL_Texture *texture, SDL_Renderer *r
|
|||
}
|
||||
|
||||
|
||||
#define NUM_FONTCONFIG_CONFIG_PATHS 2 /* system-wide, and local/homedir */
|
||||
|
||||
/* static */ int load_user_fonts(SDL_Surface *screen, SDL_Texture *texture,
|
||||
SDL_Renderer *renderer, void *vp, const char *restrict const locale)
|
||||
{
|
||||
char *homedirdir;
|
||||
char * fontconfig_config_paths[NUM_FONTCONFIG_CONFIG_PATHS];
|
||||
int i;
|
||||
|
||||
(void)vp; // junk passed by threading library
|
||||
|
||||
|
|
@ -1035,6 +1054,89 @@ static void loadfonts(SDL_Surface *screen, SDL_Texture *texture, SDL_Renderer *r
|
|||
loadfonts(screen, texture, renderer, "/usr/share/vlc/skins2/fonts");
|
||||
loadfonts(screen, texture, renderer, "/usr/share/xplanet/fonts");
|
||||
#endif
|
||||
|
||||
/* See what dirs fontconfig configuration files point to,
|
||||
and try loading fonts from them */
|
||||
|
||||
fontconfig_config_paths[0] = strdup("/etc/fonts/fonts.conf");
|
||||
fontconfig_config_paths[1] = malloc(1024);
|
||||
snprintf(fontconfig_config_paths[1], 1024, "%s/.config/fontconfig/fonts.conf", getenv("HOME"));
|
||||
|
||||
for (i = 0; i < NUM_FONTCONFIG_CONFIG_PATHS; i++)
|
||||
{
|
||||
xmlDocPtr doc;
|
||||
|
||||
doc = xmlReadFile(fontconfig_config_paths[i], NULL, 0);
|
||||
if (doc == NULL)
|
||||
{
|
||||
fprintf(stderr, "Error: Failed to parse fontconfig configuration file '%s'\n", fontconfig_config_paths[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
xmlNodePtr cur;
|
||||
|
||||
cur = xmlDocGetRootElement(doc);
|
||||
if (cur == NULL)
|
||||
{
|
||||
fprintf(stderr, "Error: Failed to parse empty fontconfig configuration file '%s'\n", fontconfig_config_paths[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (xmlStrcmp(cur->name, (const xmlChar *) "fontconfig"))
|
||||
{
|
||||
fprintf(stderr, "Error: Not a fontconfig configuration file: '%s'\n", fontconfig_config_paths[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
cur = cur->xmlChildrenNode;
|
||||
while (cur != NULL)
|
||||
{
|
||||
if (xmlStrcmp(cur->name, (const xmlChar *) "dir") == 0)
|
||||
{
|
||||
xmlChar * path;
|
||||
char * path_str;
|
||||
|
||||
path = xmlNodeGetContent(cur);
|
||||
|
||||
if (path != NULL)
|
||||
{
|
||||
path_str = strdup((char *) path /* FIXME: is this cast safe? -bjk 2024.12.29 */);
|
||||
#ifdef __linux__
|
||||
#ifndef __ANDROID__
|
||||
wordexp_t result;
|
||||
|
||||
wordexp(path_str, &result, 0);
|
||||
if (result.we_wordv == NULL)
|
||||
{
|
||||
fprintf(stderr,
|
||||
"Error: Shell expansion of '%s' on line %d of '%s' failed!\n",
|
||||
path_str, cur->line, fontconfig_config_paths[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("wordexp result.we_wordv of '%s' was '%s'\n", path_str, result.we_wordv[0]);
|
||||
free(path_str);
|
||||
path_str = strdup(result.we_wordv[0]);
|
||||
wordfree(&result);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
loadfonts(screen, texture, renderer, (char *) path_str);
|
||||
free(path_str);
|
||||
xmlFree(path);
|
||||
}
|
||||
}
|
||||
cur = cur->next;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
xmlFreeDoc(doc);
|
||||
}
|
||||
|
||||
free(fontconfig_config_paths[i]);
|
||||
}
|
||||
}
|
||||
|
||||
homedirdir = get_fname("fonts", DIR_DATA);
|
||||
|
|
|
|||
|
|
@ -47,11 +47,12 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.9.35" date="2024-12-26">
|
||||
<release version="0.9.35" date="2024-12-29">
|
||||
<description>
|
||||
<p>New Magic tools: "Hearts", "Sparkles", and "Stars".</p>
|
||||
<p>Improved color picker behavior</p>
|
||||
<p>Text and Label tools support pasting text from the copy/paste clipboard</p>
|
||||
<p>Text and Label tools attempt to load fonts in locations specified in FontConfig <dir> entries now, too</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="0.9.34" date="2024-10-20">
|
||||
|
|
|
|||
166
src/po/ach.po
166
src/po/ach.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-12-09 09:00+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Yelo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Bululu calo pol!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Tar!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Col!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/af.po
166
src/po/af.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: af\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-19 06:38+0000\n"
|
||||
"Last-Translator: OdettePretorius <odettepret@gmail.com>\n"
|
||||
"Language-Team: translate-discuss-af@lists.sourceforge.net\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1561,66 +1567,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Geel!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Hemelblou!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Wit!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Swart!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1628,22 +1634,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Kies 'n kleur van jou prentjie af."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ak.po
166
src/po/ak.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-10-27 10:16-0000\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1557,66 +1563,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Akoɔ srade!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Owim!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Fitaa!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Tuntum!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1624,22 +1630,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/am.po
166
src/po/am.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-10 11:45+0100\n"
|
||||
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1557,66 +1563,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ቢጫ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ውሃ ሰማያዊ! "
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ነጭ! "
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ጥቁር!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1624,22 +1630,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/an.po
166
src/po/an.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-29 10:04+0100\n"
|
||||
"Last-Translator: juanpabl <jpmart[arroba]unizar.es>\n"
|
||||
"Language-Team: softaragonés\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1566,66 +1572,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Amariello!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Azul ciel!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Blanco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Negro!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1633,22 +1639,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Triga una color d'o tuyo dibuixo."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ar.po
166
src/po/ar.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2008-10-07 14:54+0200\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -413,11 +413,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -425,195 +431,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -621,7 +627,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -629,21 +635,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -651,7 +657,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -660,7 +666,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -668,7 +674,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -688,7 +694,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -697,7 +703,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -705,7 +711,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -713,7 +719,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -721,14 +727,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -738,34 +744,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -775,21 +781,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "أصفر"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "أزرق سماوي"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "أبيض"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "أسود"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/as.po
166
src/po/as.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-16 23:33-0800\n"
|
||||
"Last-Translator: Anand Kulkarni <kulkarni1016@yahoo.co.in>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "হালধীয়া!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "আকাশী নীলা!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "বগা!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "কলা!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ast.po
166
src/po/ast.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2011-02-16 18:38+0200\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "¡Mariellu!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "¡Celeste!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "¡Blancu!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "¡Prietu!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/az.po
166
src/po/az.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2008-02-10 19:28+0400\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -398,11 +398,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -410,195 +416,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -606,7 +612,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -614,21 +620,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -636,7 +642,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -645,7 +651,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -706,14 +712,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -723,34 +729,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -760,21 +766,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Sarı!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Göy rəngində!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Ağ!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Qara!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/be.po
166
src/po/be.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-10 23:09+0300\n"
|
||||
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -404,11 +404,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -416,195 +422,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -612,7 +618,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -620,21 +626,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -642,7 +648,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -651,7 +657,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -659,7 +665,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -668,7 +674,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -679,7 +685,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -688,7 +694,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -696,7 +702,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -704,7 +710,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -712,14 +718,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -729,34 +735,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -766,21 +772,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Жоўты!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Блакітны!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Белы!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Чорны!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/bg.po
166
src/po/bg.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-02-28 21:39+0200\n"
|
||||
"Last-Translator: Vankata453\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#, fuzzy
|
||||
#| msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgid ""
|
||||
|
|
@ -418,70 +424,70 @@ msgid ""
|
|||
msgstr ""
|
||||
"Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#, fuzzy
|
||||
#| msgid "Bug-fixes and localization updates."
|
||||
msgid "Localization updates."
|
||||
msgstr "Изчистване на бъгове и актуализации на локализацията."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -489,7 +495,7 @@ msgstr ""
|
|||
"Нови инструменти за \"магия\": 1-, 2-, и 3-точкови перспективни линии (и "
|
||||
"съответстващи редактори на точки на изчезване)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -497,12 +503,12 @@ msgstr ""
|
|||
"Нови инструменти за \"магия\": Изометрични, Диметрични, Триметрични и "
|
||||
"Наклонени линии (и съответстващи редактори на ъгли)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
"Нови инструменти за \"магия\": Епитрохоидни и Хипотрохоидни генератори."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -510,7 +516,7 @@ msgstr ""
|
|||
"Нова опция за конфигурация, \"сложност\", която влияе на поведението (или "
|
||||
"наличието) на някои инструменти за \"магия\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
|
|
@ -518,25 +524,25 @@ msgstr ""
|
|||
"Инструментите за \"магия\" са реорганизирани (преди това бяха наредени в "
|
||||
"азбучен ред по локализираното им име)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Име и размер на шрифт са показани при избор на шрифт в инструментите за "
|
||||
"текст и надписи."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Изчистване на бъгове и актуализации на локализацията."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr "Нови \"магически\" инструменти: Примки, Лента, Заглаждане и Извивки."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr "Инструментът гума вече предлага мъхнати (с меки ръбове) гуми."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -546,7 +552,7 @@ msgstr ""
|
|||
"в \"Рисуване с Тъкс\" (чрез диалога \"Отваряне\"). (Може в последствие да "
|
||||
"бъдат изтрити от диалога \"Нов\".)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -556,7 +562,7 @@ msgstr ""
|
|||
"\"Отваряне\" и експортирани шаблони от диалога \"Нов\", може да бъде "
|
||||
"деактивирана, чрез \"noerase\" опцията за конфигурация."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -565,7 +571,7 @@ msgstr ""
|
|||
"конфигурация. (Покажи наличните шрифтове чрез \"--listfonts\" в команден "
|
||||
"прозорец.)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
|
|
@ -573,7 +579,7 @@ msgstr ""
|
|||
"Различни (по подразбиране) шрифтове на потребителския интерфейс се използват "
|
||||
"отново под различни езици."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -581,18 +587,18 @@ msgstr ""
|
|||
"Малки подобрения на бутоните за избор на \"специалните\" цветове (пипета, "
|
||||
"HSV селектор и цветови миксер)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
"Много инструменти за \"магия\" вече предлагат опции за промяна на размер."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
"Текстът върху бутоните се пренася по редове, когато е възможно (подобрява "
|
||||
"четливостта)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -603,24 +609,24 @@ msgstr ""
|
|||
"Обезнасищане, Премахни цвят, Запази цвят, Калейдо-4, Калейдо-6, Калейдо-8 и "
|
||||
"Разцвет."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
"Марките вече могат да се завъртат, преди да бъдат приложени на платното."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "Инструментът за форми, в режим на плъзгане от ъгъл, е подобрен."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr "Инструментът за запълване вече предлага режим за оформени градиенти."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr "Бърз режим \"Гума\" може да се достъпи чрез клавишна комбинация."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -628,7 +634,7 @@ msgstr ""
|
|||
"Пъстрата палитра (HSV селектора) вече може да зарежда вградения цвят, или "
|
||||
"цветовете от пипетката или цветовия миксер."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -637,16 +643,16 @@ msgstr ""
|
|||
"да се предотврати размазване, когато съотношението на платното се различава "
|
||||
"от това на картината."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"Опцията за конфигурация \"buttonsize\" вече предлага \"auto\" настройка."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Добавен е наръчник за бърз старт."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -658,7 +664,7 @@ msgstr ""
|
|||
"основни цветове (червено, жълто и синьо) и сенки (бели, сиви и черни) за "
|
||||
"създаване на нови цветове, подобно на смесване на бои."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -670,7 +676,7 @@ msgstr ""
|
|||
"и стойност, които позволяват на потребителите да избират от над 16 милиона "
|
||||
"цвята."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -679,7 +685,7 @@ msgstr ""
|
|||
"Също, пряк път на клавиатурата вече е наличен за бърз достъп към селектора "
|
||||
"на цвят - пипетката, използвана за избор на цвят от текущата рисунка."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -690,7 +696,7 @@ msgstr ""
|
|||
"ефекти да бъдат създадени. Също, много видове четки може да са получили по-"
|
||||
"добри стойности за разстояние по подразбиране."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -703,7 +709,7 @@ msgstr ""
|
|||
"вместо платното да се запълни с плътен цвят за фон. Инструментът за "
|
||||
"\"Втурване\" размазва резултатите."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -717,7 +723,7 @@ msgstr ""
|
|||
"промени. Инструкциите, показвани при използване на някои други инструменти, "
|
||||
"също са обогатени."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -730,7 +736,7 @@ msgstr ""
|
|||
"клавиатура е подобрен, както и изгледът и удобството на потребителската "
|
||||
"документация."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -745,7 +751,7 @@ msgstr ""
|
|||
"четка. Допълнително, инструментът за запълване вече предлага режим за "
|
||||
"рисуване със свободна ръка, за интерактивно оцветяване в ограничени зони."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -763,7 +769,7 @@ msgstr ""
|
|||
"смачква картината като на криво огледало. На последно място, \"Гладка дъга\" "
|
||||
"е постепенен вариант на класическия инструмент за дъга в \"Рисуване с Тъкс\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -778,7 +784,7 @@ msgstr ""
|
|||
"Допълнително, \"Анимация\" и \"Полутон\", както и \"Блокове\", \"Тебешир\" и "
|
||||
"\"Релеф\", вече предлагат възможността за промяна на цялата картина наведнъж!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -790,7 +796,7 @@ msgstr ""
|
|||
"изкривяване на картини, за рисуване на шаблони, артистичен и за декорация на "
|
||||
"картини, правейки намирането на необходимия инструмент по-лесно."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -803,7 +809,7 @@ msgstr ""
|
|||
"\"Линейното\" запълване позволява интерактивното създаване на градиенти под "
|
||||
"различни ъгли и размери."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -815,7 +821,7 @@ msgstr ""
|
|||
"лесно, \"Шахматна дъска\" запълва цялото платно с образ на шахматна дъска, и "
|
||||
"\"Копие\" позволява дублиране на части от рисунката чрез щрихи."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -825,7 +831,7 @@ msgstr ""
|
|||
"прави локализацията по-лесна. Тези, които желаят да помогнат с локализиране, "
|
||||
"са насърчени да се свържат с екипа на \"Рисуване с Тъкс\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -841,7 +847,7 @@ msgstr ""
|
|||
"цветовата палитра, може да бъде в полза на потребители с груби входящи "
|
||||
"устройства, като например системи за контрол чрез поглед."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -851,7 +857,7 @@ msgstr ""
|
|||
"опции за избор дали фигурите ще бъдат рисувани от центъра или от ъгъл, "
|
||||
"правейки лесно използването му във всяка ситуация."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -862,7 +868,7 @@ msgstr ""
|
|||
"дисплеи; в полза на потребители с груби входящи устройства, като например "
|
||||
"системи за контрол чрез поглед."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -870,7 +876,7 @@ msgstr ""
|
|||
"Гумичката съдържа нови, по-малки размери, и прилага по-гладки, съседни "
|
||||
"щрихи, когато курсора е преместен бързо."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -880,7 +886,7 @@ msgstr ""
|
|||
"рисунки и GIF анимации, правейки лесно споделянето на картини, анимации и "
|
||||
"слайд шоута с други."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -896,7 +902,7 @@ msgstr ""
|
|||
"рисунка. Плътните цветове за фон също могат да бъдат поставени към края на "
|
||||
"този диалог, позволявайки подчертаване на шаблонни изображения."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -906,7 +912,7 @@ msgstr ""
|
|||
"може да бъде от полза на потребители със слухово увреждане, или в ситуации, "
|
||||
"където само един говорител е наличен."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -916,7 +922,7 @@ msgstr ""
|
|||
"бъде избран чрез курсора, и набор от трилъчеви, четирилъчеви и петолъчни "
|
||||
"звезди."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1690,58 +1696,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Избери 2 или повече рисунки за създаване на анимиран GIF."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "червено"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "жълто"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "синьо"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "бяло"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "сиво"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "черно"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Цветът е %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Цветът е %1$s %2$s и %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Цветът е %1$s %2$s, %3$s %4$s и %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Цветът е %1$s %2$s, %3$s %4$s, %5$s %6$s и %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "Цветът е %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s и %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1751,16 +1757,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "изцяло"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Избери цвят от рисунката."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1769,7 +1775,7 @@ msgstr ""
|
|||
"вървят от ляво (бледо) на дясно (чисто). Стойност (светлина/тъмнина): сива "
|
||||
"лента."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/bm.po
166
src/po/bm.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-09-04 17:25+0200\n"
|
||||
"Last-Translator: Fasokan <konate20032001@yahoo.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Nɛrɛmugu!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Kabanɔgɔlaman!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Jɛman!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Finman!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/bn.po
166
src/po/bn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-30 18:24+0000\n"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: Bengali\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1558,66 +1564,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "হলুদ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "আকাশী নীল!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "সাদা!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "কালো!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1625,22 +1631,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/bo.po
166
src/po/bo.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2006-01-01 17:43+0900\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -387,11 +387,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -399,195 +405,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -595,7 +601,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -603,21 +609,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -625,7 +631,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -634,7 +640,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -642,7 +648,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -651,7 +657,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -671,7 +677,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -679,7 +685,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -695,14 +701,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -712,34 +718,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -749,21 +755,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1490,66 +1496,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ser.po."
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "gnm.sVon.po."
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "dkr.po."
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ng.po."
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1557,22 +1563,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/br.po
166
src/po/br.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2005-01-09 14:49+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1556,66 +1562,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Melen !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Glas oabl !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Gwenn !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Du !"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1623,22 +1629,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/brx.po
166
src/po/brx.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2011-09-14 13:51+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bodo\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "गोमो!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "अख्रां निला!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "गुफुर!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "गोसोम!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/bs.po
166
src/po/bs.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-11-05 04:24+0000\n"
|
||||
"Last-Translator: Samir Ribić <Unknown>\n"
|
||||
"Language-Team: Bosnian <bs@li.org>\n"
|
||||
|
|
@ -427,11 +427,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -439,195 +445,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -635,7 +641,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -643,21 +649,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -711,7 +717,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -719,7 +725,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -727,7 +733,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -735,14 +741,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -752,34 +758,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -789,21 +795,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1647,69 +1653,69 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Žuta!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Nebesko plava!"
|
||||
|
||||
#
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Bijela!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Crna!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1717,22 +1723,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ca.po
166
src/po/ca.po
|
|
@ -21,7 +21,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint cvs 2009-06-21\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-10-22 00:09+0200\n"
|
||||
"Last-Translator: Pere Pujal i Carabantes <perepujal@gmail.com>\n"
|
||||
"Language-Team: Català <linux-ca@chanae.alphanet.ch>\n"
|
||||
|
|
@ -440,11 +440,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr "Nou mode d'omplir: Esborra."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -455,7 +461,7 @@ msgstr ""
|
|||
"«Creixent», «Esprai», «Espiral», «Espiral Quadrada», «Cercles concèntrics», "
|
||||
"«Quadrats concèntrics» i un parell de «Panells»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
|
|
@ -464,31 +470,31 @@ msgstr ""
|
|||
"Nous pinzells: «Fluff» (gradient), «Esquitxos de pintura», «Fum», «Empast», "
|
||||
"«Espines«, «Aigua» (encalmada) i «Taques de aquarel·la»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr "Nova opció de pinzells «Caòtic» (direcció aleatòria)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr "Nous dibuixos d'inici: «Núvols des d'un avió» i «Lough Leane»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "Gomes transparents."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "Descripcions de característiques dels pinzells."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr "Nous pinzells: Làpis, Acrílic, Globus."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr "Noves eines màgiques: Tramat, Polígon."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
|
|
@ -496,11 +502,11 @@ msgstr ""
|
|||
"Actualització d'eines màgiques: Ulleres 3D (ara ofereixen diferentes "
|
||||
"combinacions d'anaglifs)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr "Es pot desagrupar les eines màguiques («ungroupmagictools»)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
|
|
@ -508,17 +514,17 @@ msgstr ""
|
|||
"Es mostra els noms dels fitxers creats amb Obre>Exporta i "
|
||||
"Obre>Diapositives>exporta a GIF i es copia al porta-retalls."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "Actualitzacions de localitzacions."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
"Millora en la separació de paraules per encabir-les als botons (via guionets "
|
||||
"i guionets condicionals o tous)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
|
|
@ -526,7 +532,7 @@ msgstr ""
|
|||
"Els dibuixos esborrats en el diàleg de «Obre» ara també es mouen a la "
|
||||
"paperera en Haiku."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -534,7 +540,7 @@ msgstr ""
|
|||
"Noves eines màgiques: Eines per dibuxar perspectives d'un, dos i tres punts "
|
||||
"de fuga, i les corresponents per editar-ne els punts."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -542,11 +548,11 @@ msgstr ""
|
|||
"Noves eines màgiques: Eines per fer dibuixos isomètrics, dimètrics, "
|
||||
"trimètrics i oblics, i les corresponents per editar-ne els angles."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr "Noves eines màgiques: Generadors d'epitrocoides i hipotrocoides."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -554,32 +560,32 @@ msgstr ""
|
|||
"Nova opció de configuració \"complexity\" que afecta el comportament i/o "
|
||||
"disponibilitat d'algunes eines"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
"Reordenació de les eines màgiques, abans eren ordenades segons l'alfabet."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Es mostra el nom del tipus de lletra i la seva mida en les eines Text i "
|
||||
"Etiquetes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Correccions d'errors i actualitzacions de localitzacions."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr "Noves eines màgiques: Espires, Cinta, Traç suau, Espires gargot."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr "L'eina d'esborrar ara ofereix gomes suaus."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -589,7 +595,7 @@ msgstr ""
|
|||
"fons que es trobaran en el diàleg de Nou dibuix. Aquestes plantilles de fons "
|
||||
"també es podran esborrar en el diàleg d'Obrir."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -598,7 +604,7 @@ msgstr ""
|
|||
"La opció d'esborrar els fitxers desats es pot desactivar amb la opció de "
|
||||
"configuració «noerase»"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -607,27 +613,27 @@ msgstr ""
|
|||
"configuració «uifont». Podeu obtenir el llistat de tipus de lletra "
|
||||
"disponibles amb la opció «--listfonts» en la línia d'ordres."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr "Per defecte s'empren diferents tipus de lleta per a diferents locales."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr "Petites millores en els botons especials de selecció de colors."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr "Ara es pot configurar mides en moltes eines màgiques."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr "Multilínia en les etiquetes dels botons(per millorar la llegibilitat)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -637,25 +643,25 @@ msgstr ""
|
|||
"Radis, Ulleres 3D, Separa colors, Satura, Dessatura, Treu color, Guarda "
|
||||
"color, Calidoscopi-4, Calidoscopi-6, Calidoscopi-8 i Bloom."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "Els segells es poden girar en inserir-los al dibuix."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "En l'ena Formes, s'ha millorat el mode d'inserir des de la vora."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
"L'eina Emplena ara ofereix un efecte de degradat que segueix la forma de "
|
||||
"l'àrea que s'emplena."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr "Hi ha disponible una drecera de teclat que permet esborrar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -663,7 +669,7 @@ msgstr ""
|
|||
"El selector de colors ara pot carregar el color actual o els colors del "
|
||||
"mesclador de colors o escollir-los del dibuix."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -672,17 +678,17 @@ msgstr ""
|
|||
"en que s'han d'estirar o retallar per adaptar-se a una mida de pantalla "
|
||||
"diferent."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"La opció de configuració \"buttonsize\" ara accepta tambe \"auto\" com a "
|
||||
"valor."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "S'ha afegit una guia d'engegada ràpida."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -694,7 +700,7 @@ msgstr ""
|
|||
"i tons(blanc, gris i negre) per crear nous colors com si es barregessin "
|
||||
"pintures."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -705,7 +711,7 @@ msgstr ""
|
|||
"seixanta-cinc mil colors ara ofereix to, saturació i valor per separat, "
|
||||
"permetent triar entre setze milions de colors."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -714,7 +720,7 @@ msgstr ""
|
|||
"També s'ha afegit una drecera de teclat per accedir al selector de "
|
||||
"color(comptagotes) per agafar colors del dibuix."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -724,7 +730,7 @@ msgstr ""
|
|||
"permetent línies de punts i superposicions. També s'ha ajustat els valors "
|
||||
"per defecte de molts altres pinzells. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -736,7 +742,7 @@ msgstr ""
|
|||
"en comptes de omplir la resta del dibuis amb el color de fons. Zoom lliscat "
|
||||
"desenfoca els resultats."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -748,7 +754,7 @@ msgstr ""
|
|||
"que es poden estirar informen a baix de la seva proporció. S'ha expandit "
|
||||
"també altres instruccions mostrades mentre es fa servir l'eina."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -759,7 +765,7 @@ msgstr ""
|
|||
"s'accedeixen amb [⌘ Command]. La mida del teclat de pantalla integrat s'ha "
|
||||
"millorat i la documentació s'ha millorat."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -773,7 +779,7 @@ msgstr ""
|
|||
"l'eina Emplena ara ofereix un mode de pintat a mà alçada dintre d'una àrea "
|
||||
"confinada."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -790,7 +796,7 @@ msgstr ""
|
|||
"imatge com en una casa de miralls. Finalment, Colors suaus és una versió "
|
||||
"gradual de Colors de l'arc."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -804,7 +810,7 @@ msgstr ""
|
|||
"Solidifica i Semitons, així com Quadrets, Guix i Relleu ara poden alterar "
|
||||
"tota la imatge d'un cop!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -815,7 +821,7 @@ msgstr ""
|
|||
"distorsions, filtres de color, deformacions, patrons, artístic i "
|
||||
"decoracions, fent més fàcil trobar l'eina que es cerca."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -827,7 +833,7 @@ msgstr ""
|
|||
"clic i l'emplenat \"Lineal\" permet la creació de gradients de angles i "
|
||||
"mides diferents."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -838,7 +844,7 @@ msgstr ""
|
|||
"píxel-art com els dels videojocs antics, \"Escacs\" omple el dibuix amb un "
|
||||
"tauler d'escacs, i \"Clona\" permet duplicar parts del dibuix a pinzellades."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -848,7 +854,7 @@ msgstr ""
|
|||
"localització. Qui vulgui ajudar en la localització està encoratjat a posar-"
|
||||
"se en contacte amb l'equip del Tux Paint."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -864,7 +870,7 @@ msgstr ""
|
|||
"qui utilitzi punters amb poca precisió, com els ratolins que es fan anar amb "
|
||||
"la mirada."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -874,7 +880,7 @@ msgstr ""
|
|||
"dibuixa des del centre o des d'una cantonada, fent més senzill de fer-la "
|
||||
"servir en totes les situacions."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -885,7 +891,7 @@ msgstr ""
|
|||
"utilitzi punters amb poca precisió, com els ratolins que es fan anar amb la "
|
||||
"mirada."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -893,7 +899,7 @@ msgstr ""
|
|||
"L'eina Esborra afegeix noves gomes, més petites, i esborra més suaument quan "
|
||||
"el ratolí es mou ràpid."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -903,7 +909,7 @@ msgstr ""
|
|||
"individuals i animacions GIF, fent més fàcil compartir dibuixos, còmics i "
|
||||
"presentacions de diapositives amb els altres."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -917,7 +923,7 @@ msgstr ""
|
|||
"l'arrencada i en obrir el diàleg de dibuix \"Nou\". Els colors sòlids es "
|
||||
"poden situar al final del diàleg, enfatitzant les imatges."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -926,7 +932,7 @@ msgstr ""
|
|||
"Ara també és possible desactivar el so estèreo, pot beneficiar ususaris amb "
|
||||
"problemes d'audició o en situacions on només hi ha disponible un sol altaveu."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -936,7 +942,7 @@ msgstr ""
|
|||
"color existent al dibuix, i estrelles de tres, quatre i cinc puntes en "
|
||||
"l'eina Formes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1712,59 +1718,59 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Seleccioneu 2 o més dibuixos per exportar-los a GIF."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "magenta"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "groc"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "cian"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "blanc"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "gris"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "negre"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "El vostre color és %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "El vostre color és %1$s %2$s i %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "El vostre color és %1$s %2$s, %3$s %4$s i %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "El vostre color és %1$s %2$s, %3$s %4$s, %5$s %6$s i %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
"El vostre color és %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s i %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1774,16 +1780,16 @@ msgstr ""
|
|||
"%11$s %12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "totalment"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Seleccioneu un color del vostre dibuix."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1792,7 +1798,7 @@ msgstr ""
|
|||
"saturació o intensitat, d'esquerra(pàlid) a dreta(pur), trieu el valor "
|
||||
"(lluminositat/foscor) a la barra de grisos."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2020-03-29 23:40+0200\n"
|
||||
"Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n"
|
||||
"Language-Team: LliureX\n"
|
||||
|
|
@ -399,11 +399,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,195 +417,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -607,7 +613,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -615,21 +621,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -637,7 +643,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -707,14 +713,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -724,34 +730,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -761,21 +767,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1563,68 +1569,68 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
#, fuzzy
|
||||
#| msgid "Red"
|
||||
msgid "red"
|
||||
msgstr "Vermell"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Groc!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Blau cel!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Blanc!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Negre!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1632,22 +1638,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Trieu un color del vostre dibuix."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/cgg.po
166
src/po/cgg.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-09-17 16:19+0200fu\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Kinekye"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Bururu"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Mutare"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Nikiragura"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/cs.po
166
src/po/cs.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-07-08 13:33+0100\n"
|
||||
"Last-Translator: Zdeněk Chalupský <chalzd@gmail.com>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1563,66 +1569,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Žlutá!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Nebesky modrá!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Bílá!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Černá!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1630,22 +1636,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/cy.po
166
src/po/cy.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: cy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2004-09-21 14:29+0100\n"
|
||||
"Last-Translator: none\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1551,64 +1557,64 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Melyn!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Gwyn!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Du!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1616,22 +1622,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/da.po
166
src/po/da.po
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-05 12:38+0100\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
|
@ -410,11 +410,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -422,195 +428,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -618,7 +624,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -626,21 +632,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -710,7 +716,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -718,14 +724,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -735,34 +741,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -772,21 +778,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1570,66 +1576,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Gul!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Himmelblå!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Hvid!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Sort!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1637,22 +1643,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Vælg en farve fra din tegning·"
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/de.po
166
src/po/de.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-25 21:13+0200\n"
|
||||
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
|
||||
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1571,66 +1577,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Gelb!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Himmelblau!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Weiß!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Schwarz!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1638,22 +1644,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Wähle eine Farbe zum Zeichnen."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/doi.po
166
src/po/doi.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2013-09-04 10:23+0530\n"
|
||||
"Last-Translator: <b>\n"
|
||||
"Language-Team: Dogri\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पीला !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "अस्मानी नीला !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "चिट्टा !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "काला!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/el.po
166
src/po/el.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2021-09-02 07:45+0000\n"
|
||||
"Last-Translator: kiolalis <kiolalis@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1575,66 +1581,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Κίτρινο!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Μπλέ του ουρανού!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Άσπρο!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Μαύρο!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1642,22 +1648,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Επίλεξε ένα χρώμα από τη ζωγραφιά σου."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/en_AU.po
166
src/po/en_AU.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-29 23:36+0930\n"
|
||||
"Last-Translator: ilox <ilox11@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Yellow!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Sky blue!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "White!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Black!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/en_CA.po
166
src/po/en_CA.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-07-07 12:22+0100\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1558,66 +1564,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Yellow!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Sky blue!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "White!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Black!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1625,22 +1631,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/en_GB.po
166
src/po/en_GB.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-30 21:17+0000\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1561,66 +1567,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Yellow!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Sky blue!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "White!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Black!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1628,22 +1634,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Select a colour from your drawing."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/en_ZA.po
166
src/po/en_ZA.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.9.16\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2009-09-06 15:46+0100\n"
|
||||
"Last-Translator: Caroline Ford <caroline.ford.work@googlemail.com>\n"
|
||||
"Language-Team: English (South African) <en_za@li.org>\n"
|
||||
|
|
@ -399,11 +399,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,195 +417,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -607,7 +613,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -615,21 +621,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -637,7 +643,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -707,14 +713,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -724,34 +730,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -761,21 +767,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1555,66 +1561,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Yellow!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Sky blue!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "White!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Black!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1622,22 +1628,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/eo.po
166
src/po/eo.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-16 16:00+0000\n"
|
||||
"Last-Translator: Nuno MAGALHÃES <nunomagalhaes@eu.ipp.pt>\n"
|
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
|
||||
|
|
@ -399,11 +399,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,195 +417,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -607,7 +613,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -615,21 +621,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -637,7 +643,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -707,14 +713,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -724,34 +730,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -761,21 +767,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1546,66 +1552,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Flava!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Ĉielblua!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Blanka!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Nigra!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1613,22 +1619,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/es.po
166
src/po/es.po
|
|
@ -29,7 +29,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-18 20:31-0300\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -420,11 +420,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -432,195 +438,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -628,7 +634,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -636,21 +642,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -704,7 +710,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -712,7 +718,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -720,7 +726,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -728,14 +734,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -745,34 +751,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -782,21 +788,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1584,66 +1590,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "¡Amarillo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "¡Celeste!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "¡Blanco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "¡Negro!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1651,22 +1657,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Elige un color de tu dibujo."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/es_MX.po
166
src/po/es_MX.po
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2007-08-05 19:22-0400\n"
|
||||
"Last-Translator: Ignacio Tike <itike17@yahoo.com>\n"
|
||||
"Language-Team: Español <ggabriel@internet.com.uy>\n"
|
||||
|
|
@ -395,11 +395,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -407,195 +413,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -603,7 +609,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -611,21 +617,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -633,7 +639,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -642,7 +648,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -659,7 +665,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -670,7 +676,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -679,7 +685,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -703,14 +709,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -720,34 +726,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -757,21 +763,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1554,66 +1560,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "¡Amarillo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "¡Azul Cielo!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "¡Blanco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "¡Negro!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1621,22 +1627,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/et.po
166
src/po/et.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2015-03-07 13:09+0000\n"
|
||||
"Last-Translator: Sven Ollino <sven.ollino@gmail.com>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/projects/p/doudoulinux/"
|
||||
|
|
@ -406,11 +406,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -418,195 +424,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -614,7 +620,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -622,21 +628,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -661,7 +667,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -670,7 +676,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -706,7 +712,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -714,14 +720,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -731,34 +737,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -768,21 +774,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1543,66 +1549,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Kollane!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Taevassinine!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Valge!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Must!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1610,22 +1616,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/eu.po
166
src/po/eu.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2020-07-30 16:43+0200\n"
|
||||
"Last-Translator: Alexander Gabilondo <alexgabi@irakasle.net>\n"
|
||||
"Language-Team: librezale@librezale.org\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1565,66 +1571,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Hautatu 2 marrazki edo gehiago GIF animatua bihurtzeko."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Horia!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Urdin argia!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Zuria!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Beltza!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1632,22 +1638,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Hautatu zure marrazkiaren kolore bat."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/fa.po
166
src/po/fa.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-11-09 21:17+0330\n"
|
||||
"Last-Translator: snima <unix.nima@gmail.com>\n"
|
||||
"Language-Team: farsi <farinaz.hedayat@gmail.com>\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1569,66 +1575,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "زرد"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "آبی آسمانی"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "سفید"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "سیاه"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1636,22 +1642,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ff.po
166
src/po/ff.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-03 10:35+0200\n"
|
||||
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
|
||||
"Language-Team: FULAH LOCALIZATION\n"
|
||||
|
|
@ -399,11 +399,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,195 +417,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -607,7 +613,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -615,21 +621,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -637,7 +643,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -707,14 +713,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -724,34 +730,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -761,21 +767,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1556,66 +1562,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Oolo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Bulo asamaan"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Daneejo!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Ɓaleejo!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1623,22 +1629,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Labo goobol iwde e natol maa."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/fi.po
166
src/po/fi.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2015-10-09 18:00+0200\n"
|
||||
"Last-Translator: inactive\n"
|
||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
||||
|
|
@ -408,11 +408,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -420,195 +426,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -616,7 +622,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -624,21 +630,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -672,7 +678,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -708,7 +714,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -716,14 +722,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -733,34 +739,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -770,21 +776,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1574,66 +1580,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Keltainen!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Taivaansininen!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Valkoinen!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Musta!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1641,22 +1647,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/fo.po
166
src/po/fo.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint 0.9.18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2008-01-18 12:40-0000\n"
|
||||
"Last-Translator: Lis Gøthe í Jákupsstovu <morshus@morshus.com>\n"
|
||||
"Language-Team: Faroese <morshus@morshus.com>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1548,66 +1554,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Gult!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Himmalblátt!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Hvítt!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Svart!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1615,22 +1621,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/fr.po
166
src/po/fr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: fr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-10-07 19:29+0200\n"
|
||||
"Last-Translator: jacques.chion@orange.fr\n"
|
||||
"Language-Team: <fr@li.org>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr "Nouveau mode de remplissage : \"Gomme\" avec remplissage."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, "
|
||||
|
|
@ -423,7 +429,7 @@ msgstr ""
|
|||
"\"ASCII\", divers \"Fractales\",\"Croissant\", \"Peinture en spray\", "
|
||||
"\"Spirale\" et \"Spirale carrée\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#, fuzzy
|
||||
#| msgid "New brush: Fluff (gradient)."
|
||||
msgid ""
|
||||
|
|
@ -432,31 +438,31 @@ msgid ""
|
|||
"splotches\"."
|
||||
msgstr "Nouveau pinceau : Duvet (progressif)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "Gommes transparentes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "Descriptions des pinceaux."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr "Nouveaux pinceaux : Stylo, Acrylique, Duvet."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr "Nouveaux outils Magie : Tramage, Polygone plein."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
|
|
@ -464,11 +470,11 @@ msgstr ""
|
|||
"Mise à jour d'outils Magie : Lunettes 3D (avec maintenant différentes "
|
||||
"combinaisons de couleurs pour les anaglyphes)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr "Les outils Magie peuvent être dégroupés (\"ungroupmagictools\")."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
|
|
@ -476,17 +482,17 @@ msgstr ""
|
|||
"Le nom des fichiers créés par Ouvrir>Export et Ouvrir>Diapos>Export "
|
||||
"GIF sont maintenant affichés et placés dans le presse-papier copier/coller."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "Mises à jour des localisations."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
"Amélioration du retour automatique à la ligne pour les textes dans les "
|
||||
"boutons (via les traits d'union et tirets conditionnels)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
|
|
@ -495,7 +501,7 @@ msgstr ""
|
|||
"\"Ouvrir\" sont maintenant placés dans la corbeille du bureau sur les "
|
||||
"appareils fonctionnant avec HaIku."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -503,7 +509,7 @@ msgstr ""
|
|||
"Nouveaux outils de Magie : outil de dessin de ligne avec perspective (1-, -2 "
|
||||
"et -3 points de fuite avec les éditeurs correspondants)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -511,12 +517,12 @@ msgstr ""
|
|||
"Nouveaux outils Magie : Outils de dessin isométrique, dimétrique, "
|
||||
"trimétrique et oblique (et les éditeurs d'angles correspondants)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
"Nouveaux outils Magie : générateurs d'Épitrochoïdes et d'Hypotrochoïdes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -524,7 +530,7 @@ msgstr ""
|
|||
"Nouvelle option de configuration, \"complexité\", qui affecte le "
|
||||
"comportement (ou la disponibilité) de certains outils Magie."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
|
|
@ -532,25 +538,25 @@ msgstr ""
|
|||
"Réorganisation des outils magiques (auparavant classés par ordre "
|
||||
"alphabétique du nom localisé)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Le nom et la taille de la police sont indiqués lors du choix d'une police "
|
||||
"dans les outils Texte et Étiquette."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Correction de bogues et mises à jour de localisations."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr "Nouveaux outils Magie : Boucles, Ruban, Adoucir et Gribouillis."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr "L'outil 'Gomme' permet maintenant de flouter (bords progressifs)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -560,7 +566,7 @@ msgstr ""
|
|||
"nouvelle boîte de dialogue). (Ils peuvent donc être effacés à partir de la "
|
||||
"nouvelle boîte de dialogue)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -570,7 +576,7 @@ msgstr ""
|
|||
"Ouvrir et des modèles exportés avec la boîte Nouveau peut être désactivée "
|
||||
"avec l'option \"noerase\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -579,7 +585,7 @@ msgstr ""
|
|||
"liste des fontes disponibles est disponible avec l'option \"--listfonts\" en "
|
||||
"ligne de commande)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
|
|
@ -587,7 +593,7 @@ msgstr ""
|
|||
"Différentes fontes interface utilisateurs sont disponibles pour des locales "
|
||||
"différentes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -595,19 +601,19 @@ msgstr ""
|
|||
"Des améliorations mineures ont été apportées pour les couleurs "
|
||||
"'spéciales' (pipette, sélecteur HSV et mélangeur de couleurs)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
"Beaucoup d'outils Magie possèdent maintenant la possibilité de changer de "
|
||||
"taille."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
"Retour à la ligne automatique des noms de boutons quand c'est possible "
|
||||
"(améliore la lisibilité)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -618,27 +624,27 @@ msgstr ""
|
|||
"Enlever une couleur, Garder une couleur, Kaleido-4, Kaleido-6, Kaleido-8 et "
|
||||
"Bloom."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
"Les tampons peuvent être orientés avant de les appliquer sur le dessin."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
"L'outil 'Formes', dans le mode 'dessiner à partir d'un coin', a été "
|
||||
"améliorer."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr "L'outil 'Remplir' possède maintenant un mode de remplissage en biseau."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
"Un mode d'effacement rapide peut être effectué via un raccourci clavier."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -647,7 +653,7 @@ msgstr ""
|
|||
"couleurs intégrées ou bien les couleurs venant de l'outil pipette ou bien du "
|
||||
"mélangeur."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -656,17 +662,17 @@ msgstr ""
|
|||
"Modèle, pour éviter des défauts quand le ratio d'aspect du canevas diffère "
|
||||
"de celui de l'image."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"L'option de configuration \"taille des boutons\" offre maintenant un réglage "
|
||||
"\"auto\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Un guide rapide de démarrage a été ajouté."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -678,7 +684,7 @@ msgstr ""
|
|||
"couleurs primaires (rouge, jaune et bleu) et d'ombres (blanc, gris et noir) "
|
||||
"en vue de créer de nouvelles couleurs, semblables à des mélanges de peinture."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -690,7 +696,7 @@ msgstr ""
|
|||
"choisir des valeurs de teinte, de saturation permettant à l'utilisateur de "
|
||||
"choisir parmi plus de 16 millions de couleurs."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -700,7 +706,7 @@ msgstr ""
|
|||
"au sélecteur de couleur -- l'outil \"pipette\" pour choisir une couleur à "
|
||||
"partir du dessin en cours."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -711,7 +717,7 @@ msgstr ""
|
|||
"effets de traînée. De plus beaucoup de pinceaux ont une meilleure valeur "
|
||||
"d'espacement."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -723,7 +729,7 @@ msgstr ""
|
|||
"plusieurs tuiles sur la toile, plutôt que remplir la toile avec une couleur "
|
||||
"noire unie. L'outil \"Rush\" zoome et dézoome en ajoutant un effet de flou."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -737,7 +743,7 @@ msgstr ""
|
|||
"faites la modification. Des informations sont également montrées pour "
|
||||
"d'autres outils."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -749,7 +755,7 @@ msgstr ""
|
|||
"utilisant Tux Paint avec macOS. La taille du clavier virtuel a été "
|
||||
"améliorée. La convivialité de la documentation utilisateur a été améliorée."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -764,7 +770,7 @@ msgstr ""
|
|||
"De plus, l'outil \"Remplir\" offre maintenant un mode de peinture à main "
|
||||
"levée pour colorier de manière interactive une aire déterminée."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -782,7 +788,7 @@ msgstr ""
|
|||
"et déformer l'image comme un miroir de foire. Et enfin, \"Arc-en-ciel doux\" "
|
||||
"fournit une variation plus douce que l'outil arc-en-ciel classique."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -797,7 +803,7 @@ msgstr ""
|
|||
"D.\" et \"Photogravure\", tout comme \"Blocs\", \"Craie\" et \"Relief\" ont "
|
||||
"maintenant la possibilité de traiter l'image entière d'un seul coup !"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -808,7 +814,7 @@ msgstr ""
|
|||
"similaires - peindre, distorsions, filtres couleurs, déformations, motifs, "
|
||||
"art et décorations -- rendant plus facile la recherche de l'outil nécessaire."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -821,7 +827,7 @@ msgstr ""
|
|||
"manière interactive la création de gradients d'angles et de tailles "
|
||||
"différents."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -833,7 +839,7 @@ msgstr ""
|
|||
"damier, et \"Clone\" permet la duplication de parties de l'image avec des "
|
||||
"coups de pinceaux."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -843,7 +849,7 @@ msgstr ""
|
|||
"facile. Ceux qui sont intéressés pour nous aider sont invités à prendre "
|
||||
"contact avec l'équipe de Tux Paint."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -860,7 +866,7 @@ msgstr ""
|
|||
"utilisateurs ayant un dispositif de pointage imprécis, comme les systèmes "
|
||||
"avec suivi oculaire."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -870,7 +876,7 @@ msgstr ""
|
|||
"choisir si les formes sont dessinées depuis le centre ou un coin, le rendant "
|
||||
"ainsi plus facile à utiliser dans toutes les situations."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -881,7 +887,7 @@ msgstr ""
|
|||
"c'est utile avec des des dispositifs d'entrée moins précis, tels que "
|
||||
"systèmes pilotés avec les yeux."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -890,7 +896,7 @@ msgstr ""
|
|||
"d'appliquer des touches rapprochées plus douces quand le pointeur est bougé "
|
||||
"de manière rapide."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -900,7 +906,7 @@ msgstr ""
|
|||
"dessins et des animations GIF, facilitant ainsi le partage d'images, de B.D. "
|
||||
"et de diaporamas."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -916,7 +922,7 @@ msgstr ""
|
|||
"appel à la commande \"Nouveau\". Les couleurs unies peuvent être mises à la "
|
||||
"fin du dialogue pour permettre d'accéder directement aux images modèles."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -926,7 +932,7 @@ msgstr ""
|
|||
"service à ceux qui ont des problèmes d'audition, ou bien lorsqu'il n' a "
|
||||
"qu'un seul haut-parleur."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -936,7 +942,7 @@ msgstr ""
|
|||
"choisir toute couleur dans un dessin, et un ensemble d'étoiles à trois, "
|
||||
"quatre et cinq branches."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1716,59 +1722,59 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Sélectionne deux ou plusieurs dessins pour créer une image animée GIF."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "rouge"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "jaune"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "bleu"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "blanc"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "gris"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "noir"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Ta couleur est %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Ta couleur est %1$s %2$s et %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Ta couleur est %1$s %2$s, %3$s %4$s, et %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Ta couleur est %1$s %2$s, %3$s %4$s, %5$s %6$s, et %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
"Ta couleur est %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, et %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1778,16 +1784,16 @@ msgstr ""
|
|||
"%11$s %12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "totalement"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Sélectionne une couleur à partir de ton dessin."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1796,7 +1802,7 @@ msgstr ""
|
|||
"intensité va de la gauche (pâle) vers la droite (pur). La valeur brillant/"
|
||||
"sombre : barre grise."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ga.po
166
src/po/ga.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2015-10-09 17:38+0500\n"
|
||||
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
|
@ -391,11 +391,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -403,195 +409,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -599,7 +605,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -607,21 +613,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -629,7 +635,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -699,14 +705,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -716,34 +722,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -753,21 +759,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1541,58 +1547,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Roghnaigh dhá líníocht, nó níos mó, chun GIF beoite a dhéanamh díobh."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "dearg"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "buí"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "gorm"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "bán"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "liath"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "dubh"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Dath: %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Dath: %1$s %2$s agus %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Dath: %1$s %2$s, %3$s %4$s, agus %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Dath: %1$s %2$s, %3$s %4$s, %5$s %6$s, agus %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "Dath: %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, agus %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1602,16 +1608,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "go hiomlán"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Roghnaigh dath ón líníocht."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1619,7 +1625,7 @@ msgstr ""
|
|||
"Roghnaigh dath. Téann na líocha ó bhun go barr. Téann an sáithiú ó chlé "
|
||||
"(níos báine) go deas (lándaite). Gile/dorchadas: an barra liath."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/gd.po
166
src/po/gd.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2021-09-02 12:18-0700\n"
|
||||
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
|
||||
"Language-Team: Fòram na Gàidhlig\n"
|
||||
|
|
@ -408,11 +408,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -420,195 +426,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -616,7 +622,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -624,21 +630,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -672,7 +678,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -708,7 +714,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -716,14 +722,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -733,34 +739,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -770,21 +776,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1573,66 +1579,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Tagh iomadh dealbh airson GIF beòthaichte a dhèanamh diubh."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Buidhe!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Speur-ghorm!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Geal!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Dubh!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1640,22 +1646,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Tagh dath on dealbh agad."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/gl.po
166
src/po/gl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tux Paint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2021-03-03 10:01+0100\n"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
|
||||
"Language-Team: Proxecto Trasno <proxecto@trasno.net>\n"
|
||||
|
|
@ -412,11 +412,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -424,195 +430,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -620,7 +626,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -628,21 +634,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -659,7 +665,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -696,7 +702,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -704,7 +710,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -712,7 +718,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -720,14 +726,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -737,34 +743,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -774,21 +780,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Selecciona 2 ou máis debuxos para convertelos nun GIF animado."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Amarelo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Azul cesleste!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Branco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Negro!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Selecciona unha cor do teu debuxo."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/gos.po
166
src/po/gos.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2005-07-26 01:30-0800\n"
|
||||
"Last-Translator: Bill Kendrick <bill@newbreedsoftware.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -397,11 +397,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -409,195 +415,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -605,7 +611,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -613,21 +619,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -635,7 +641,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -652,7 +658,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -661,7 +667,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -672,7 +678,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -689,7 +695,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -697,7 +703,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -705,14 +711,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -722,34 +728,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -759,21 +765,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1549,64 +1555,64 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Geel!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Wit!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Zwaart!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1614,22 +1620,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/gu.po
166
src/po/gu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-31 11:57+0530\n"
|
||||
"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n"
|
||||
"Language-Team: Gujarati <team@utkarsh.org>\n"
|
||||
|
|
@ -384,11 +384,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -396,195 +402,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -592,7 +598,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -600,21 +606,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -622,7 +628,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -631,7 +637,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -659,7 +665,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -668,7 +674,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -692,14 +698,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -709,34 +715,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -746,21 +752,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1531,58 +1537,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "લાલ"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "પીળો"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "વાદળી"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "સફેદ"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "ભૂખરો"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "કાળું"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "તમારો રંગ %1$s %2$s છે."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "તમારો રંગ %1$s %2$s અને %3$s %4$s છે."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "તમારો રંગ %1$s %2$s, %3$s %4$s, અને %5$s %6$s છે."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "તમારો રંગ %1$s %2$s, %3$s %4$s, %5$s %6$s, અને %7$s %8$s છે."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1590,22 +1596,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "સંપૂર્ણ"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "તમારા ચિત્રમાંથી રંગ પસંદ કરો."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/he.po
166
src/po/he.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2009-05-10 21:45+0200\n"
|
||||
"Last-Translator: Jorge Mariano <jmariano@ymail.com>\n"
|
||||
"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
|
||||
|
|
@ -409,11 +409,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -421,195 +427,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -617,7 +623,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -625,21 +631,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -709,7 +715,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -717,14 +723,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -734,34 +740,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -771,21 +777,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1550,67 +1556,67 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "צהוב!"
|
||||
|
||||
# This may sound a bit weird to some; it might need to be checked.
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "כחול שמיים!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "לבן!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "שחור!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1618,22 +1624,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/hi.po
166
src/po/hi.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-08-09 02:17+1000\n"
|
||||
"Last-Translator: Ashish Arora <ashish.arora13@gmail.com>\n"
|
||||
"Language-Team: Hindi\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1557,66 +1563,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पीला"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आसमानी नीला!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "सफ्ेद"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "काला!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1624,22 +1630,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/hr.po
166
src/po/hr.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-26 10:53+0100\n"
|
||||
"Last-Translator: Paulo Pavačić <pavacic.p@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -399,11 +399,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,195 +417,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -607,7 +613,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -615,21 +621,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -637,7 +643,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -646,7 +652,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -663,7 +669,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -674,7 +680,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -683,7 +689,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -707,14 +713,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -724,34 +730,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -761,21 +767,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1558,66 +1564,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Žuta!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Nebesko plava!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Bijela!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Crna!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1625,22 +1631,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Odaberite boju s vašeg crteža."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/hu.po
166
src/po/hu.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-28 12:48+0200\n"
|
||||
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
|
||||
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1574,66 +1580,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Sárga!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Égkék!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Fehér!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Fekete!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1641,22 +1647,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/hy.po
166
src/po/hy.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 1.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-03-22 11:39+0400\n"
|
||||
"Last-Translator: Aram Palyan <ararat.info@gmail.com>\n"
|
||||
"Language-Team: Armenian <ararat.info@gmail.com>\n"
|
||||
|
|
@ -406,11 +406,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -418,195 +424,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -614,7 +620,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -622,21 +628,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -661,7 +667,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -670,7 +676,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -706,7 +712,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -714,14 +720,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -731,34 +737,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -768,21 +774,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Դեղին"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Երկնագույն"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Սպիտակ"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Սև"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/id.po
166
src/po/id.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-09 04:22+0000\n"
|
||||
"Last-Translator: Teuku Surya <tsuryafajri@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1575,66 +1581,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Kuning!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Biru langit!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Putih!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Hitam!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1642,22 +1648,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Pilih warna dari gambar anda."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/is.po
166
src/po/is.po
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2023-06-28 15:44+0000\n"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "Stimplum er hægt að snúa áður en þeir eru settir á myndflötinn."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Nýjar flýtileiðbeiningar hafa verið útbúnar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -671,7 +677,7 @@ msgstr ""
|
|||
"býður fylliverkfærið núna upp á fríhendismálun til að lita gagnvirkt innan "
|
||||
"afmarkaðra svæða."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -707,7 +713,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -715,14 +721,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -732,34 +738,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -769,21 +775,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1549,59 +1555,59 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Veldu 2 eða fleiri teikningar sem á að breyta í GIF-hreyfimynd."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "rautt"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "gult"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "blátt"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "hvítt"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "grátt"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "svart"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Liturinn þinn er %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Liturinn þinn er %1$s %2$s og %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Liturinn þinn er %1$s %2$s, %3$s %4$s, og %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Liturinn þinn er %1$s %2$s, %3$s %4$s, %5$s %6$s, og %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
"Liturinn þinn er %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, og %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1611,16 +1617,16 @@ msgstr ""
|
|||
"%11$s %12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "algerlega"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Veldu lit úr teikningunni þinni."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1628,7 +1634,7 @@ msgstr ""
|
|||
"Veldu lit. Litblæir eru að ofan og niður. Litmettun/litstyrkur fer frá "
|
||||
"vinstri (fölt) til hægri (hreint). Litgildi (ljóst/dökkt) eru á gráu stikuni."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/it.po
166
src/po/it.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint 0.9.23\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-18 09:15+0000\n"
|
||||
"Last-Translator: Flavio Pastore <ironbishop@fsfe.org>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
|
@ -422,11 +422,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -434,195 +440,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -630,7 +636,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -638,21 +644,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -660,7 +666,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -669,7 +675,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -697,7 +703,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -706,7 +712,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -714,7 +720,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -722,7 +728,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -730,14 +736,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -747,34 +753,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -784,21 +790,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1607,66 +1613,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Giallo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Azzurro!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Bianco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Nero!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1674,22 +1680,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Seleziona un colore dal tuo disegno."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/iu.po
166
src/po/iu.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint Inuktitut\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2013-07-04 16:05-0500\n"
|
||||
"Last-Translator: Harvey Ginter <harveyginter@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <harveyginter@gmail.com>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1556,66 +1562,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ᖁᕐᓱᑕᖅ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ᕿᓚᑦᑎᑐᑦ ᑐᖑᔪᕐᑕᖅ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ᖃᑯᕐᑕᖅ!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ᕿᕐᓂᑕᖅ!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1623,22 +1629,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ja.po
166
src/po/ja.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.29\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-10-11 13:17+0900\n"
|
||||
"Last-Translator: Shin-ichi TOYAMA <dolphin6k@wmail.plala.or.jp>\n"
|
||||
"Language-Team: japanese <dolphin6k@wmail.plala.or.jp>\n"
|
||||
|
|
@ -397,11 +397,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr "塗りつぶしの新しい機能: \"けしゴム\" モード"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -411,7 +417,7 @@ msgstr ""
|
|||
"「まほう」ツールの追加: みずたま、かいてん、アスキーアート、フラクタル、みか"
|
||||
"づき、スプレー、うずまき、どうしんえん、どうしんのしかく、くりかえしもよう"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#, fuzzy
|
||||
#| msgid "New brush: Fluff (gradient)."
|
||||
msgid ""
|
||||
|
|
@ -420,31 +426,31 @@ msgid ""
|
|||
"splotches\"."
|
||||
msgstr "「ふで」ツールの追加: 毛ブラシ(階調)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "透明な消しゴムを追加しました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "いくつかのブラシについて、特徴の説明を表示するようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr "ブラシの追加: 鉛筆、アクリル絵の具、毛羽だったブラシ"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr "「まほう」ツールの追加: 「ディザ」「たかっけい」"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
|
|
@ -452,11 +458,11 @@ msgstr ""
|
|||
"「まほう」ツールの「りったいめがね」で、色の組み合わせを選べるようになりまし"
|
||||
"た。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr "「まほう」ツールをグループ化しないオプションを追加しました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
|
|
@ -465,15 +471,15 @@ msgstr ""
|
|||
"出される作品のファイル名が表示され、また、クリップボードにコピーされるように"
|
||||
"なりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "翻訳の更新。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr "ボタンの文字列の折り返しを改良しました(ハイフンやソフト・ハイフン)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
|
|
@ -481,7 +487,7 @@ msgstr ""
|
|||
"Haiki 版でも「ひらく」ダイアログの「けす」で削除した作品がデスクトップのごみ"
|
||||
"箱に移動するようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -489,7 +495,7 @@ msgstr ""
|
|||
"「まほう」ツールの追加: 透視図法による作図ツール(「1てんとうし」「2てんと"
|
||||
"うし」「3てんとうし」)と、それぞれの消失点を設定するためのツール"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -498,13 +504,13 @@ msgstr ""
|
|||
"く」「ふとうかく」「しゃとうえい」)と、それぞれの基準角を設定するためのツー"
|
||||
"ル"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
"「まほう」ツールの追加: コロイド曲線描画ツール(「エピコロイド」「ハイポコロ"
|
||||
"イド」)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -512,7 +518,7 @@ msgstr ""
|
|||
"新規オプションとして「難易度」の設定を追加。設定したレベルに応じて「まほう」"
|
||||
"ツールの動作を変更したり、いくつかの「まほう」ツールを無効にしたりします。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
|
|
@ -520,27 +526,27 @@ msgstr ""
|
|||
"「まほう」ツールの並びを変更(これまでは、翻訳後のツール名の順に表示されてい"
|
||||
"ました)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"「もじ」ツール、「ラベル」ツールで、フォント名とフォントサイズを表示するよう"
|
||||
"になりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "バグ修正と翻訳の更新。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
"「まほう」ツールの追加: 「ループ」「リボン」「なめらかなせん」「くしゃく"
|
||||
"しゃ」"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr "周囲をぼかした消しゴムを追加しました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -550,7 +556,7 @@ msgstr ""
|
|||
"しょから」ダイアログに表示されます)。「さいしょかr」ダイアログで、あとから"
|
||||
"削除することもできます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -560,7 +566,7 @@ msgstr ""
|
|||
"り、「さいしょから」ダイアログから自作のテンプレートを削除する「けす」ボタン"
|
||||
"を無効にすることができます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -568,13 +574,13 @@ msgstr ""
|
|||
"\"uifont\" オプションでユーザーインターフェースのフォントを指定できます。ま"
|
||||
"た、\"listfonts\" オプションで利用可能なフォントがリストアップされます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr "言語環境ごとの規定のユーザーインターフェースフォントが使用されます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -582,15 +588,15 @@ msgstr ""
|
|||
"「スポイト」「レインボーパレット」「カラーミキサー」のボタンの表示を改善しま"
|
||||
"した。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr "「まほう」ツールの多くは、サイズが変更できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr "ボタンのラベルは可能な場合は折り返し表示されます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -601,25 +607,25 @@ msgstr ""
|
|||
"4」「まんげきょう6」「っまんげきょう」「かがやき」の15種類のまほうツールが追"
|
||||
"加されています。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "はんこは、キャンバスに貼り付ける前に回転できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "「かたち」ツールの図形の角から広げるモードの動作を改良しました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
"塗りつぶしツールに、エリアの輪郭にそってグラデーションをつけるモードが追加さ"
|
||||
"れました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr "キーボードショートカットで素早くけしゴムが使えるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -627,7 +633,7 @@ msgstr ""
|
|||
"レインボーパレット(HSV色選択)ツールに、組み込みカラーパレットやスポイトツー"
|
||||
"ル又はカラーミキサーで選択した色を取り込めるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -635,16 +641,16 @@ msgstr ""
|
|||
"スターター画像とテンプレート画像の属性に、画像と縦横比が異なるキャンバスに読"
|
||||
"み込む際、どのように拡大するかを設定できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"UIボタンの大きさを画面サイズに応じて自動設定するオプションが追加されました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "「クイックスタートガイド」が同梱されました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -655,7 +661,7 @@ msgstr ""
|
|||
"絵の具を混ぜるように、異なる割合の原色(赤、黄、青)とシェード(白、グレー、"
|
||||
"黒)を組み合わせて、新しい色を作り出すことができるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -665,7 +671,7 @@ msgstr ""
|
|||
"カラーピッカーは、従来は約6万5千色の固定パレットでしたが、色相、彩度、明度の"
|
||||
"個別設定に対応し、1600万色以上の色を選択できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -674,7 +680,7 @@ msgstr ""
|
|||
"また、カラーセレクター(絵の中から色を抽出するためのピペットツール)に素早く"
|
||||
"アクセスするためのキーボードショートカットが利用できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -684,7 +690,7 @@ msgstr ""
|
|||
"やスミアの効果を作ることができるようになりました。また、多くのブラシでデフォ"
|
||||
"ルトの間隔が改善されました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -696,7 +702,7 @@ msgstr ""
|
|||
"ではなく、キャンバス全体にタイル状に描画を複製します。ラッシュツールは、ズー"
|
||||
"ム後に結果をぼかします。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -708,7 +714,7 @@ msgstr ""
|
|||
"ど、引き伸ばせる図形は、下部に縦横比を表示しながら調整できるようになりまし"
|
||||
"た。その他、一部のツールで表示される操作説明も充実させました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -720,7 +726,7 @@ msgstr ""
|
|||
"ました。タックスペイントに内蔵された画面キーボードのサイズ調整が改良されまし"
|
||||
"た。ユーザードキュメントの見映えが改善されました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -734,7 +740,7 @@ msgstr ""
|
|||
"りました。また、塗りつぶしツールにはフリーハンドモードが追加され、塗りつぶし"
|
||||
"たい範囲にインタラクティブに色を塗ることができるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -751,7 +757,7 @@ msgstr ""
|
|||
"りすることができます。「なめらかなにじ」は、以前からある「にじ」ツールよりも"
|
||||
"スムーズなグラデーションの虹を描きます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -764,7 +770,7 @@ msgstr ""
|
|||
"レビ」などが改良されました。さらに、「まんが」「ハーフトーン」「ブロック」"
|
||||
"「チョーク」「うきぼり」では、画像全体を一度に変更できるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -774,7 +780,7 @@ msgstr ""
|
|||
"「まほう」ツールは、効果の特徴ごとにグループ分けされて、使いたいツールを簡単"
|
||||
"に見つけることができるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -786,7 +792,7 @@ msgstr ""
|
|||
"「リニア」は、さまざまな方向や大きさのグラデーションをインタラクティブに作成"
|
||||
"できます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -797,7 +803,7 @@ msgstr ""
|
|||
"ルアートを簡単に作成でき、「チェッカーボード」はキャンバス全体をチェック柄で"
|
||||
"塗りつぶし、「クローン」はマウス操作で絵の一部を複製することが可能です。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -806,7 +812,7 @@ msgstr ""
|
|||
"ユーザードキュメントが一新され、各種言語への翻訳がより簡単になりました。翻訳"
|
||||
"にご興味のある方は、タックスペイントチームまでご連絡ください。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -821,7 +827,7 @@ msgstr ""
|
|||
"成する新しいオプションとともに、視線追跡システムのような、細かい操作が難しい"
|
||||
"入力デバイスを利用するユーザーにも役立ちます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -830,7 +836,7 @@ msgstr ""
|
|||
"図形ツールの大きな改良点として、図形を中心から描くか端から描くかを選択できる"
|
||||
"ようになり、あらゆる場面で使いやすくなりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -840,7 +846,7 @@ msgstr ""
|
|||
"テムなどの細かい操作が難しい入力デバイスを利用するユーザーにとって使いやすく"
|
||||
"なりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -848,7 +854,7 @@ msgstr ""
|
|||
"「けしゴム」ツールには、新たに小さな消しゴムサイズが追加され、ポインターを素"
|
||||
"早く動かしたときに、より滑らかで連続した動きをするようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -857,7 +863,7 @@ msgstr ""
|
|||
"最新バージョンでは、個々の作品やGIFアニメーションをエクスポートするオプション"
|
||||
"が追加され、作品を簡単に他の人と共有することができます。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -872,7 +878,7 @@ msgstr ""
|
|||
"ら」ダイアログで様々なテンプレート画像の方を目立たせたい場合には、単色のキャ"
|
||||
"ンバスを末尾に配置することができるようになりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -881,7 +887,7 @@ msgstr ""
|
|||
"また、聴覚に障害のあるユーザーや、スピーカーが1つしかない場合に有効な、ステレ"
|
||||
"オサウンドの無効化も可能になりました。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -891,7 +897,7 @@ msgstr ""
|
|||
"カー」と、「かたち」ツールに、三芒星、四芒星、五芒星が新たに追加されていま"
|
||||
"す。"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1670,58 +1676,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "2ついじょうのえをえらんで GIFアニメをかきだします。"
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "あか"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "きいろ"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "あお"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "しろ"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "はいいろ"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "くろ"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "%1$s %2$s です"
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "%2$sが%1$sで %4$sが%3$sの いろ"
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "%2$sが%1$sで %4$sが%3$sで %6$sが%5$sの いろ"
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "%2$sが%1$sで %4$sが%3$sで %6$sが%5$sで %8$sが%7$sの いろ"
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "%2$sが%1$sで %4$sが%3$sで %6$sが%5$sで %8$sが%7$sで %10$sが%9$sの いろ"
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1731,16 +1737,16 @@ msgstr ""
|
|||
"が%11$sの いろ"
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "かんぜんな"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "えの なかから いろを えらぼう。"
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1748,7 +1754,7 @@ msgstr ""
|
|||
"いろの えらびかた:いろあいは うえから したへ、あざやかさは ひだり(あわい い"
|
||||
"ろ)から みぎ(あざやかな いろ)へ。みぎの バーで あかるさを えらびます。"
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ka.po
166
src/po/ka.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 20:01+0400\n"
|
||||
"Last-Translator: Giasher <giasher@gmail.com>\n"
|
||||
"Language-Team: Gia Shervashidze <giasher@gmail.com>\n"
|
||||
|
|
@ -398,11 +398,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -410,152 +416,152 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -565,25 +571,25 @@ msgstr ""
|
|||
"სხივები, 3D სათვალეები, ფერდაშლა, ფერგაჯერება, გახუნება, ფერის ამოღება, "
|
||||
"ფერის შენახვა, კალეიდო-4, კალეიდო-6, კალეიდო-8 და ცვარი."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "შტამპები დაფაზე ჩასმამდე შეგიძლიათ დაატრიალოთ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "ფორმების სამარჯვი კუთხიდან გადათრევის რეჟიმში დაიხვეწა."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr "ჩასხმის სამარჯვი ახლა უკვე გრადიენტის რეჟიმსაც გთავაზობთ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#, fuzzy
|
||||
#| msgid "A quick Eraser mode is be accessed via keyboard shortcut."
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr "სწრაფი წაშლის რეჟიმი მიიღწევა კლავიატურის კომბინაციით."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -591,7 +597,7 @@ msgstr ""
|
|||
"ცისარტყელა პალიტრიდან (HSV ფერის შერჩევა) ახლა შეგიძლიათ აირჩიოთ მზა "
|
||||
"ფერებიდან ან შეარჩიოთ ფერის ამკრეფი პიპეტით ან თავად შექმნათ ფერების შერევით."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -599,15 +605,15 @@ msgstr ""
|
|||
"საწყისი გამოსახულებებისა და თარგებისთვის შეიძლება მიეთითოს რამდენად "
|
||||
"გაიწელოს, როცა დაფისა და ნახატის პროპორცია განსხვავებულია."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr "კონფიგურაციაში \"ღილაკების\" პარამეტრებში გთავაზობთ ოპციას \"ავტო\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "დაემატა სწრაფი მეგზური."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -618,7 +624,7 @@ msgstr ""
|
|||
"ფერის მისაღებად პირველადი (წითელი, ყვითელი და ლურჯი) და ჩრდილოვანი (თეთრი, "
|
||||
"ნაცრისფერი, შავი) ფერების სხვადასხვა პროპორციით შერევას შეძლებთ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -629,7 +635,7 @@ msgstr ""
|
|||
"ფერიდან ახალა ტონის, გაჯერებისა და მნიშვნელობის პარამეტრებით 16 მილიონამდე "
|
||||
"ფერის შერჩევა შეგიძლიათ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -638,7 +644,7 @@ msgstr ""
|
|||
"ასევე, ფერის არჩევა კლავიატურის კომბინაციითაც შეგიძლიათ — \"პიპეტის\" "
|
||||
"სამარჯვით ფერის 'აკრეფას' არსებული ნახატიდან შეძლებთ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -648,7 +654,7 @@ msgstr ""
|
|||
"და წყვეტის ეფექტით ხატვას შეძლებთ. ბევრი ფუნჯის ნაგულისხმები ბიჯი ასევე "
|
||||
"გაუმჯობესდა."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -659,7 +665,7 @@ msgstr ""
|
|||
"'ცვარი'. ნახატის 'ფილების მასშტაბით' დამუშავებისას დაფა ნახატის ფილების "
|
||||
"მცირე გამოსახულებით შეივსება. 'ცვარის' ეფექტის შედეგი გაბუნდოვნებაა."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -672,7 +678,7 @@ msgstr ""
|
|||
"ოვალი და ა.შ.) თქვენი ცვლილებების შესაბამისად ქვემოთ პროპორცია აისახება. "
|
||||
"ინსტრუქციები სხვა ზოგი ფუნქციისთვის ასევე გაფართოვდა."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -684,7 +690,7 @@ msgstr ""
|
|||
"სისტემისთვის. ჩადგული ეკრანული კლავიატურის ზომა დაიხვეწა, ისევე როგორც "
|
||||
"მომხმარებლის დოკუმენტაციის იერსახე."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -698,7 +704,7 @@ msgstr ""
|
|||
"ხელსაწყო ახლა გთავაზობთ თავისუფალი ხატვის რეჟიმს ცალკეული არეების "
|
||||
"ინტერაქტიურად გასაფერადებლად."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -715,7 +721,7 @@ msgstr ""
|
|||
"მრუდე სარკესავით. დაბოლოს, 'გლუვი ცისარტყელა' - კლასიკური ცისარტყელის უფრო "
|
||||
"რბილი ვარიაციაა."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -730,7 +736,7 @@ msgstr ""
|
|||
"'ცარცთან' და 'რელიეფთან' ერთად ახლა ნახატის ერთიანად შეცვლის შესაძლებლობას "
|
||||
"იძლევა!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -742,7 +748,7 @@ msgstr ""
|
|||
"დაშტრიხვა, სამხატვრო და დეკორაციული — ეს სასურველი ხელსაწყოს მოძიებას "
|
||||
"აადვილებს."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -754,7 +760,7 @@ msgstr ""
|
|||
"გრადიენტი, ხოლო \"წრფივი\" ჩასხმით სხვადასხვა დახრისა და ზომის გრადიენტი "
|
||||
"იქმნება."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -765,7 +771,7 @@ msgstr ""
|
|||
"ნახატებს რეტრო თამაშების სტილში, \"ჭადრაკის დაფა\" სრულად ავსებს ჭადრაკულად, "
|
||||
"ხოლო \"კლონირება\" ნახატის ასლს შექმნის ფუნჯის მონასმით."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -775,7 +781,7 @@ msgstr ""
|
|||
"მოსახერხებელია ლოკალიზებისთვის. დაინტერესებული პირებს გთხოვთ დაგვიკავშირდეთ "
|
||||
"Tux Paint გუნდს."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -789,7 +795,7 @@ msgstr ""
|
|||
"ეს ფუნქცია პალიტრის რეორგანიზებასთან ერთად ასევე შეიძლება ძალიან სასარგებლო "
|
||||
"იყოს ბევრი სხვადასხვა მოწყობილობის მქონე მომხმარებლისთვის."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -799,7 +805,7 @@ msgstr ""
|
|||
"კუთხიდან ხატვის შესაძლებლობას იძლევა, რაც ბევრად მოსახერხებელია სხვადასხვა "
|
||||
"სიტუაციაში."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -809,7 +815,7 @@ msgstr ""
|
|||
"წარწერების ხელსაწყოებისთვის, ახლა უკვე უფრო დიდი ზომით და მოსახერხებელია "
|
||||
"მცირე ზომის მოწყობილობებისთვის."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -817,7 +823,7 @@ msgstr ""
|
|||
"საშლელის ხელსაწყოში დამატებულია ახალი, უფრო მცირე ზომები და სწრაფად "
|
||||
"მოძრაობისას უფრო რბილად მოქმედებს."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -826,7 +832,7 @@ msgstr ""
|
|||
"და ბოლოს, უახლეს ვერსიაში დამატებულია ცალკეული ნახატებისა და GIF ანიმაციების "
|
||||
"ექსპორტი, რითაც ნახატების, კომიქსებისა და სლაიდშოუების გაზიარებას შეძლებთ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -840,7 +846,7 @@ msgstr ""
|
|||
"ნახატის გახსნისას გაუმჯობესებულია დიალოგის დაფა \"ახალი\". ამ დიალოგის ბოლოს "
|
||||
"შეიძლება განთავსდეს ერთგვაროვანი ფონური ფერები, რაც თარგის ნახატის გამოკვეთს."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -849,7 +855,7 @@ msgstr ""
|
|||
"Tux Paint პროგრამაში შეგიძლიათ ამორთოთ სტერეო ხმები, რაც შესაძლოა სასარგებლო "
|
||||
"იყოს შეზღუდული სმენის ან მხოლოდ ერთი სპიკერის არსებობისას."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -859,7 +865,7 @@ msgstr ""
|
|||
"ნებისმიერი ფერის არჩევაა შესაძლებელი, აგრეთვე სამ-, ოთხ- და ხუთქიმიანი "
|
||||
"ვარსკვლავების ფორმები."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1624,59 +1630,59 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "შეარჩიეთ 2 ან მეტი ნახატი GIF ანიმაციად გარდასაქმნელად."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "წითელი"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "ყვითელი"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "ლურჯი"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "თეთრი"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "ნაცრისფერი"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "შავი"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "თქვენი ფერია %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "თქვენი ფერია %1$s %2$s და %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "თქვენი ფერია %1$s %2$s, %3$s %4$s, და %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "თქვენი ფერია %1$s %2$s, %3$s %4$s, %5$s %6$s, და %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
"თქვენი ფერია %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, და %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1686,16 +1692,16 @@ msgstr ""
|
|||
"%11$s %12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "სრულად"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "შეარჩიეთ ფერი თქვენი ნახატიდან."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1703,7 +1709,7 @@ msgstr ""
|
|||
"შეარჩიეთ ფერი. ტონი ნაწილდება ზემოდან ქვემოთ. გაჯერება/ინტენსიობა მარცხნიდან "
|
||||
"(მქრქალი) მარჯვნივ (სუფთა). მნიშვნელობა (ღია/მუქი): ნაცრისფერი ზოლი."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/kab.po
166
src/po/kab.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kab\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-23 23:11+0100\n"
|
||||
"Last-Translator: Yacine Bouklif <yacine_tizi2003@yahoo.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1567,66 +1573,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Awraɣ !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Anili n igni !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Amlal !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Aberkan !"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1634,22 +1640,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Fren ini seg wunuɣ-inek."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/km.po
166
src/po/km.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2008-05-30 15:41+0700\n"
|
||||
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
|
||||
"Language-Team: Khmer <support@khmeros.info>\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1549,66 +1555,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "លឿង !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ខៀវផ្ទៃមេឃ !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ស !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ខ្មៅ !"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1616,22 +1622,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/kn.po
166
src/po/kn.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-08 23:43+0630\n"
|
||||
"Last-Translator: Savitha <savithasprasad@yahoo.com>\n"
|
||||
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1568,66 +1574,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ಹಳದಿ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ಆಕಾಶ ನೀಲಿ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ಬಿಳಿ!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ಕಪ್ಪು!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1635,22 +1641,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ko.po
166
src/po/ko.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2022-09-10 06:06-0400\n"
|
||||
"Last-Translator: Mark K. Kim <markuskimius@gmail.com>\n"
|
||||
"Language-Team: N/A\n"
|
||||
|
|
@ -389,11 +389,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -401,195 +407,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -597,7 +603,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -605,21 +611,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -627,7 +633,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -636,7 +642,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -689,7 +695,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -697,14 +703,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -714,34 +720,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -751,21 +757,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1520,59 +1526,59 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "지프로 만들 두가지 이상의 그림을 고르세요."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "빨간색"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "노란색"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "파란색"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "흰색"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "회색"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "검정색"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "당신의 색갈은 %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "당신의 색갈은 %1$s %2$s 와 %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "당신의 색갈은 %1$s %2$s, %3$s %4$s, 그리고 %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "당신의 색갈은 %1$s %2$s, %3$s %4$s, %5$s %6$s, 그리고 %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
"당신의 색갈은 %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, 그리고%9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1582,22 +1588,22 @@ msgstr ""
|
|||
"%11$s %12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "전채"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "그림에서 색갈을 고르세요."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/kok.po
166
src/po/kok.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: en_gb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-05-19 23:18+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "हळदुवो !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "मळबा निळो !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "धवो !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "काळो"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2012-05-11 18:00+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1561,66 +1567,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "hollduvo !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "mollba nillo !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "dhovo!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Kallo!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1628,22 +1634,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ks.po
166
src/po/ks.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2012-01-02 11:36+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-PA\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr " لیوٚدُر"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr " آسمٲن۪یرنگ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "سفید!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr " کرٚہُن!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2012-12-21 11:04+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kashmiri-DV\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1561,66 +1567,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ज़रेद!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आसमॊन !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "सफिद!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "करुहुन!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1628,22 +1634,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ku.po
166
src/po/ku.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ku\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2009-05-25 12:52+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: en_US <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Zer"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Şîna ezmên!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Spî"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Reş"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/lb.po
166
src/po/lb.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: lb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-02-16 21:10+0100\n"
|
||||
"Last-Translator: René Brandenburger <rene@brandenburger.lu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1534,66 +1540,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Giel!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Himmelblo!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Wäiss!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Schwaarz!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1601,22 +1607,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/lg.po
166
src/po/lg.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-09-21 09:37+0200\n"
|
||||
"Last-Translator: OLWENY San James <sjolweny85@yahoo.co.uk>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1566,66 +1572,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Kyenvu!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Bbulu w'eggulu!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Njeru!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Nzirugavu!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1633,22 +1639,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/lt.po
166
src/po/lt.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.9\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2004-12-10 18:11+0200\n"
|
||||
"Last-Translator: Gintaras Goštautas <gintaras@nes.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konf.lt>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1565,66 +1571,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Geltona!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Dangaus žydrumo!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Balta!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Juoda!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1632,22 +1638,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/lv.po
166
src/po/lv.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-11 23:13-0000\n"
|
||||
"Last-Translator: Raivis Strogonovs <raivis.strogonovs@gmail.com>\n"
|
||||
"Language-Team: Valoda <raivucis@gmail.com>\n"
|
||||
|
|
@ -402,11 +402,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -414,195 +420,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -610,7 +616,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -618,21 +624,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -640,7 +646,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -657,7 +663,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -694,7 +700,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -702,7 +708,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -710,14 +716,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -727,34 +733,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -764,21 +770,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1562,66 +1568,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Dzeltens!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Debesu zils!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Balts! "
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Melns!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1629,22 +1635,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/mai.po
166
src/po/mai.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2013-02-18 09:21+0530\n"
|
||||
"Last-Translator: sk <sk>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1554,66 +1560,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पीअर!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आसमानी नीला!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "उज्जर!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "करिया!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1621,22 +1627,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/mk.po
166
src/po/mk.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2006-06-17 23:07+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Macedonian <mk@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1554,66 +1560,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Жолто!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Небесно плаво!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Бело!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Црно!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1621,22 +1627,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ml.po
166
src/po/ml.po
|
|
@ -18,7 +18,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-08-03 16:29+0530\n"
|
||||
"Last-Translator: Akhil Krishnan S <akhilkrishnans@gmail.com>\n"
|
||||
"Language-Team: Malayalam\n"
|
||||
|
|
@ -411,11 +411,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -423,195 +429,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -619,7 +625,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -627,21 +633,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -711,7 +717,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -719,14 +725,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -736,34 +742,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -773,21 +779,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "മഞ്ഞ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ആകാശനീല!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "വെളള!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "കറുപ്പ്!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/mn.po
166
src/po/mn.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -378,11 +378,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -390,195 +396,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -586,7 +592,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -594,21 +600,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -616,7 +622,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -625,7 +631,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -633,7 +639,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -642,7 +648,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -670,7 +676,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -686,14 +692,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -703,34 +709,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -740,21 +746,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1473,58 +1479,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr ""
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1532,22 +1538,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/mni.po
166
src/po/mni.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2011-10-07 15:05+0530\n"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1558,66 +1564,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "হঙ্গাম্পাল মচু!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "অতিয়া মচু!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "অঙৌবা!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "অমুবা!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1625,22 +1631,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2011-10-07 15:05+0530\n"
|
||||
"Last-Translator: Hidam Dolen <dolenhi@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -400,11 +400,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -412,195 +418,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -608,7 +614,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -616,21 +622,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -638,7 +644,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -655,7 +661,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -692,7 +698,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -700,7 +706,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -708,14 +714,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -725,34 +731,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,21 +768,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1555,66 +1561,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ꯍꯪꯒꯥꯝꯄꯥꯜ ꯃꯆꯨ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ꯑꯇꯤꯌꯥ ꯃꯆꯨ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ꯑꯉꯧꯕ!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ꯑꯃꯨꯕ!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1622,22 +1628,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/mr.po
166
src/po/mr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.21c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2013-03-28 12:11+0530\n"
|
||||
"Last-Translator: Santosh Jankiram Kshetre <quicklearning@rediffmail.com>\n"
|
||||
"Language-Team: Marathi\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1567,66 +1573,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पीवळा"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आकाशी किंवा निळसर रंगाची छटा "
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "पांढरा किंवा श्वेत "
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "काळा"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1634,22 +1640,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ms.po
166
src/po/ms.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2015-03-07 23:30+0000\n"
|
||||
"Last-Translator: abuyop <abuyop@gmail.com>\n"
|
||||
"Language-Team: Malay (http://www.transifex.com/projects/p/doudoulinux/"
|
||||
|
|
@ -413,11 +413,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -425,195 +431,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -621,7 +627,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -629,21 +635,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -651,7 +657,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -660,7 +666,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -668,7 +674,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -677,7 +683,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -688,7 +694,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -697,7 +703,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -705,7 +711,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -713,7 +719,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -721,14 +727,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -738,34 +744,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -775,21 +781,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1545,66 +1551,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Kuning!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Biru langit!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Putih!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Hitam!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1612,22 +1618,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/nb.po
166
src/po/nb.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2021-06-28 19:40+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
|
||||
|
|
@ -409,11 +409,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -421,195 +427,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -617,7 +623,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -625,21 +631,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -647,7 +653,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -684,7 +690,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -709,7 +715,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -717,14 +723,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -734,34 +740,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -771,21 +777,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgstr ""
|
|||
"Velg to eller flere tegninger for å gjøre de om til en animert GIF-bildefil."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Gul!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Lyseblå!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Hvit!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Svart!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Velg en farge fra tegningen."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ne.po
166
src/po/ne.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-09 08:08+0530\n"
|
||||
"Last-Translator: Khagen Sarma <khagen.sharma@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1558,66 +1564,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पँहेलो!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आकासे निलो!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "सेतो!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "कालो!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1625,22 +1631,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/nl.po
166
src/po/nl.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2023-03-30 14:41+0200\n"
|
||||
"Last-Translator: Willem Heppe <heppew@yahoo.com>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,152 +419,152 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -568,27 +574,27 @@ msgstr ""
|
|||
"Vacht, Cirkels, Stralen, 3D Brillen, Kleur Sep., Verzadig, Onverzadig, "
|
||||
"Verwijder Kleur, Behoud Kleur, Kaleido-4, Kaleido-6, Kaleido-8 en Bloem."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
"Stempels mogen gedraaid worden voor ze aan het canvas worden toegevoegd."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "Vormen, in sleep-vanuit-hoek modus, is verbeterd."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr "Vul gereedschap biedt nu een gevormd verloop (bevel) modus."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#, fuzzy
|
||||
#| msgid "A quick Eraser mode is be accessed via keyboard shortcut."
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
"Een snelle Gummer modus kan via een toetsenbord sneltoets worden uitgevoerd."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -596,7 +602,7 @@ msgstr ""
|
|||
"Een regenboogpalet (HSV kleurenkiezer) kan nu de ingebouwde kleur laden, of "
|
||||
"de kleuren van de pipet-tool of de kleurenmixer. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -605,15 +611,15 @@ msgstr ""
|
|||
"worden om vervaging te vermijden als de canvas verhouding afwijkt van die "
|
||||
"van de afbeelding. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr "De \"knopgrootte\" instellingoptie biedt nu een \"auto\"-instelling."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Een snelstart handleiding is toegevoegd."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -625,7 +631,7 @@ msgstr ""
|
|||
"en blauw) en schaduwen (wit, grijs en zwart) combineren m nieuwe kleuren te "
|
||||
"maken, vergelijkbaar met mengen van verf. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -637,7 +643,7 @@ msgstr ""
|
|||
"verzadiging en waardeinstellingen, waarmee gebruikers kunnen kiezen uit meer "
|
||||
"dan 16 miljoen kleuren."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -646,7 +652,7 @@ msgstr ""
|
|||
"Een sneltoets is nu ook beschikbaar voor snelle toegang tot de Kleurkiezer - "
|
||||
"de \"pipet\"-tool gebruikt voor kiezen van kleuren van de huidige tekening."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -657,7 +663,7 @@ msgstr ""
|
|||
"smeereffecten gemaakt kunnen worden. Veel penseelstreken hebben een betere "
|
||||
"standaard ruimte-waarde gekregen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -670,7 +676,7 @@ msgstr ""
|
|||
"dan het canvas vullen met een vaste achtergrondkleur. De Vervaging vervaagt "
|
||||
"het resultaat."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -684,7 +690,7 @@ msgstr ""
|
|||
"aanpassingen maakt. Informatief-getoonde informatie is ook uitgebreid voor "
|
||||
"andere tools. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -697,7 +703,7 @@ msgstr ""
|
|||
"toetsenbord is verbeterd. De look en feel van de gebruikerdocumentatie is "
|
||||
"verbeterd."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -711,7 +717,7 @@ msgstr ""
|
|||
"penseelvormselector. Bovendien biedt de Vultool nu vrijehandschilder modus "
|
||||
"voor interactief kleuren binnen een afgeschermd gebied. "
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -729,7 +735,7 @@ msgstr ""
|
|||
"zoals in een lachspiegel. En als laatste, Zachte Regenboog biedt een meer "
|
||||
"geleidelijke verandering van de Tux Paint's klassieke Regenboog tool."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -744,7 +750,7 @@ msgstr ""
|
|||
"Blokken, Krijt, en Reliëf bieden nu de mogelijkheid om de gehele afbeelding "
|
||||
"tegelijk aan te passen!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -756,7 +762,7 @@ msgstr ""
|
|||
"beeldvervormingen, patroonschilderen, artistiek en beelddecoraties - "
|
||||
"waardoor je makkelijker je tool kan vinden."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -768,7 +774,7 @@ msgstr ""
|
|||
"gecentreerd rond de muisklik, terwijl de \"Lineair\" vulling overloop maakt "
|
||||
"in verschillende hoeken en groottes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -780,7 +786,7 @@ msgstr ""
|
|||
"canvas met een dambordpatroon, en \"Kloon\" maakt het mogelijk om delen van "
|
||||
"de afbeelding te dupliceren met penseelstreken."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -790,7 +796,7 @@ msgstr ""
|
|||
"makkelijker wordt. Geïnteresseerde partijen worden aangemoedigd om contact "
|
||||
"op te nemen met Tux Paint om mee te helpen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -805,7 +811,7 @@ msgstr ""
|
|||
"Deze optie, samen met de optie om het kleurpalet te reorganiseren, is handig "
|
||||
"voor gebruikers met minder verfijnd invoerapparaten, zoals oog-volgsystemen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -815,7 +821,7 @@ msgstr ""
|
|||
"kiezen uit vormen tekenen vanuit het midden of vanuit een hoek, dat "
|
||||
"makkelijker is om in iedere situatie te gebruiken."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -825,7 +831,7 @@ msgstr ""
|
|||
"Labeltools, toont groter op grotere schermen; handig voor gebruikers met een "
|
||||
"minder verfijnd invoerapparaat zoals oogvolgsystemen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -833,7 +839,7 @@ msgstr ""
|
|||
"De Gumtool bevat nu ook kleinere gumvlakken, en is met soepeler, continue "
|
||||
"streken toegepast als de pointer snel beweegt."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -843,7 +849,7 @@ msgstr ""
|
|||
"animaties te exporteren, waarmee het eenvoudiger is om afbeeldingen, "
|
||||
"cartoons en diavoorstellingen met anderen te delen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -858,7 +864,7 @@ msgstr ""
|
|||
"gevulde achtergrondkleuren kunnen ook aan het einde van de dialoog geplaatst "
|
||||
"worden, met nadruk op de template afbeeldingen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -868,7 +874,7 @@ msgstr ""
|
|||
"gebruikers met een gehoorbeperking kunnen profiteren, of in situaties waarin "
|
||||
"alleen 1 speaker beschikbaar is."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -878,7 +884,7 @@ msgstr ""
|
|||
"iedere kleur in de tekening te kiezen met gebruik van de pointer, en een set "
|
||||
"van drie-, vier- en vijfpuntige stervormen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1661,58 +1667,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Kies 2 of meer tekeningen om in een geanimeerde GIF te veranderen."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "rood"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "geel"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "blauw"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "wit"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "grijs"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "zwart"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Je kleur is %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Je kleur is %1$s %2$s en %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Je kleur is %1$s %2$s, %3$s %4$s en %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Je kleur is %1$s %2$s, %3$s %4$s, %5$s %6$s en %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "Je kleur is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s en %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1722,16 +1728,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "geheel"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Kies een kleur uit je tekening."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1740,7 +1746,7 @@ msgstr ""
|
|||
"gaat van links (bleek) naar rechts (puur). Waarde (helderheid/donkerte): "
|
||||
"grijze balk."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/nn.po
166
src/po/nn.po
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-06-02 13:17+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||
|
|
@ -395,11 +395,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#, fuzzy
|
||||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
|
|
@ -409,70 +415,70 @@ msgid ""
|
|||
"tools."
|
||||
msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "Gjennomsiktige viskelêr."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "Penslar har no tekstskildringar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr "Nye magiske verktøy: prikkemønster, fylte mangekantar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
"Oppdaterte magiske verktøy: 3D-briller (støttar no ulike anaglyffargar)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr "Magiske verktøy kan no avgrupperast («ungroupmagictools»)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "Oppdaterte omsetjingar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
"Forbetra tekstbryting på knappar (med bindestrekar og mjuke bindestrekar)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -480,7 +486,7 @@ msgstr ""
|
|||
"Nye magiske verktøy: 1-, 2- og 3-punkts perspektivteikning for linjer (med "
|
||||
"tilhøyrande verktøy for å justera forsvinningspunkt)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -488,11 +494,11 @@ msgstr ""
|
|||
"Nye magiske verktøy: isometrisk, dimetrisk, trimetrisk og skeiv projeksjon "
|
||||
"for linjeteikning (med tilhøyrande verktøy for å justera vinklar)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr "Nye magiske verktøy: epitrokoide- og hypotrokoide-generatorar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -500,31 +506,31 @@ msgstr ""
|
|||
"Nytt oppsettval «complexity», som påverkar korleis nokre magiske verktøy "
|
||||
"verkar (eller om dei vert synlege)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr "Ny sortering av magiske verktøy (var før sorterte alfabetisk)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Skriftnamn og -storleik vert no vist når du vel ei skrift i tekst- og "
|
||||
"merkelapp-verktøya."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Feilrettingar og oppdaterte omsetjingar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr "Nye magiske verktøy: ringar, sløyfeband, utglatta og krusedullar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr "Viskelêrverktøyet har no viskelêr med mjuke kantar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -534,7 +540,7 @@ msgstr ""
|
|||
"Paint (via «Opna»-vindauget). Du kan seinare sletta malane frå «Ny»-"
|
||||
"vindauget."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -543,7 +549,7 @@ msgstr ""
|
|||
"Knappane for å sletta lagra teikningar frå «Opna»-vindauget og eksporterte "
|
||||
"malar frå «Ny»-vindauget kan fjernast med innstillinga «noerase»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -552,7 +558,7 @@ msgstr ""
|
|||
"oversikt over tilgjengelege skrifter med kommandolinje-argumentet «--"
|
||||
"listfonts».)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
|
|
@ -560,7 +566,7 @@ msgstr ""
|
|||
"Forskjellige skrifter vert igjen (som standard) brukte for forskjellige "
|
||||
"språk."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -568,17 +574,17 @@ msgstr ""
|
|||
"Mindre forbetringar i knappane for «spesialfargar» (pipetten, HSV-"
|
||||
"fargeveljaren og fargeblandaren)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr "Mange magiske verktøy kjem no i ulike storleikar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
"Tekst på knappar vert no viste over fleire linjer viss mogleg (vert lettare "
|
||||
"å lesa)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -588,25 +594,25 @@ msgstr ""
|
|||
"strålar, 3D-briller, skil fargar, gråare, meir fargerik, fjern farge, behald "
|
||||
"farge, kaleido-4, kaleido-6, kaleido-8 og glød."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "Du kan dreia på stempla før du stemplar dei på teikninga."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "Dra-frå-hjørna-funksjonen i figurverktøyet er forbetra."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
"Bøtteverktøyet har no ein modus der du kan teikna fargeovergangar som "
|
||||
"følgjer former."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr "Mellombels viskelêrmodus er no tilgjengeleg via tastaturet."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -614,7 +620,7 @@ msgstr ""
|
|||
"Regnbogepaletten (HSV-fargeveljaren) kan no henta inn fargar frå pipetten "
|
||||
"eller fargeblandaren."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -623,16 +629,16 @@ msgstr ""
|
|||
"utsmørjing når breidd/høgd-forholdet til vindauget ikkje stemmer med det til "
|
||||
"malen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"Innstillinga «buttonsize» (knappstorleik) har no eit «auto»-alternativ."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Ei «kom i gang»-rettleiing er lagd til."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -643,7 +649,7 @@ msgstr ""
|
|||
"(magenta, gul og cyanblå) og skuggefargar (kvit, grå og svart) for å laga ny "
|
||||
"fargar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -654,7 +660,7 @@ msgstr ""
|
|||
"sekstifem tusen fargar, kan du no velja fargenyanse, fargemetting og "
|
||||
"lysstyrke direkte, noko som gjev tilgang til over seksten millionar fargar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -663,7 +669,7 @@ msgstr ""
|
|||
"Det finst no ein snøggtast for tilgang til «pipetten» som lèt deg henta "
|
||||
"fargar frå teikninga."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -673,7 +679,7 @@ msgstr ""
|
|||
"for å laga prikka linjer eller utgniingseffektar. Mange av penslane har òg "
|
||||
"fått betre standardavstand."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -686,7 +692,7 @@ msgstr ""
|
|||
"fylla den ledige plassen med ein farge. Hastverk-verktøyet gjer biletet "
|
||||
"uklart (rørslesløring)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -699,7 +705,7 @@ msgstr ""
|
|||
"forholdet vist i tekstfeltet. Tekstinformasjonen for nokre andre verktøy har "
|
||||
"òg blitt utvida."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -710,7 +716,7 @@ msgstr ""
|
|||
"den meir tradisjonelle «⌘»-tasten (kommandotasten) på macOS. Storleiken på "
|
||||
"det innebygde skjermtastaturet er òg forbetra, og det same er hjelpefilene."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -723,7 +729,7 @@ msgstr ""
|
|||
"markerte med eigne ikon i hjørnet. Bøtteverktøyet (fargefyll-verktøyet) har "
|
||||
"no òg fått ein frihandspensel, der du kan fylla delar av avgrensa område."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -740,7 +746,7 @@ msgstr ""
|
|||
"som i eit spegelhus på tivoli. «Jamn regnboge» er ein jamnare variant av det "
|
||||
"klassiske regnbogeverktøyet."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -754,7 +760,7 @@ msgstr ""
|
|||
"fjernsynsskjerm. Det er òg no mogleg å køyra «Forsterk», «Raster» og "
|
||||
"«Blokk», «Krit» og «Relieff» på heile teikninga på ein gong."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -765,7 +771,7 @@ msgstr ""
|
|||
"målingar, forvrenging, fargefilter, heilteikning-forvrenging, mønstermåling, "
|
||||
"kunst og pynt – slik at det vert lettare å finna verktøyet du treng."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -776,7 +782,7 @@ msgstr ""
|
|||
"fargar. Radiellvarianten lagar sirkelforma overgangar, mens den lineære "
|
||||
"overgangen lèt deg sjølv velja storleik og retning på overgangen."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -788,7 +794,7 @@ msgstr ""
|
|||
"sjakkbrettmønster og «Klon» lèt deg kopiera delar av teikninga med ein "
|
||||
"pensel."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -798,7 +804,7 @@ msgstr ""
|
|||
"til nye språk. Er du interessert i å hjelpa til, ta kontakt med Tux Paint-"
|
||||
"utviklarane."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -814,7 +820,7 @@ msgstr ""
|
|||
"paletten, kan òg vera nyttig for brukarar med unøyaktige styreeiningar, for "
|
||||
"eksempel dei som brukar augestyring."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -823,7 +829,7 @@ msgstr ""
|
|||
"Det er gjort ei stor forbetring i figurverktøyet, der du no kan velja å "
|
||||
"teikna figurane frå midten eller frå eit hjørne."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -834,7 +840,7 @@ msgstr ""
|
|||
"brukarar med unøyaktige styreeiningar, for eksempel dei som brukar "
|
||||
"augestyring."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -842,7 +848,7 @@ msgstr ""
|
|||
"Viskelêrverktøyet har no nokre nye og mindre storleikar, som gjev jamnare "
|
||||
"strøk når du flyttar penselen raskt."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -852,7 +858,7 @@ msgstr ""
|
|||
"animasjonar, slik at du lett kan dela både teikningar og lysbilete"
|
||||
"framvisingar med andre."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -867,7 +873,7 @@ msgstr ""
|
|||
"teikning»-vindauget. Dei einsfarga bakgrunnane kan òg plasserast på slutten "
|
||||
"av dette vindauget, for å gje meir fokus til teikningsmalane."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -877,7 +883,7 @@ msgstr ""
|
|||
"brukarar med høyrslehemmingar eller i situasjonar der berre éin høgtalar er "
|
||||
"tilgjengeleg."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -886,7 +892,7 @@ msgstr ""
|
|||
"Nytt i denne versjonen er ein «fargeplukkar», som du kan bruka for å henta "
|
||||
"fargar frå teikninga, og eit sett med tre-, fire- og femtagga stjernefigurar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1662,58 +1668,58 @@ msgstr ""
|
|||
"biletfil."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "raud"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "gul"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "blå"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "kvit"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "grå"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "svart"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Fargen er %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Fargen er %1$s %2$s og %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Fargen er %1$s %2$s, %3$s %4$s og %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Fargen er %1$s %2$s, %3$s %4$s, %5$s %6$s og %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "Fargen er %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s og %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1723,16 +1729,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "heilt"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Vel ein farge frå teikninga."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1741,7 +1747,7 @@ msgstr ""
|
|||
"endrar seg frå bleik (til venstre) til fargesterk (til høgre). Lysstyrke "
|
||||
"(lys/mørk): grå stolpe."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/nr.po
166
src/po/nr.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2006-10-09 20:32+0200\n"
|
||||
"Last-Translator: Vincent Mahlangu <vmahlangu@parliament.gov.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1564,66 +1570,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Surulani!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Hlaza kwesibhakabhaka!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Mhlophe!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Nzima!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1631,22 +1637,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/nso.po
166
src/po/nso.po
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2010-10-04 17:44+0200\n"
|
||||
"Last-Translator: Pheledi <pheledi@mosekolatranslation.co.za>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1565,66 +1571,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Serolwana!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Talalerata!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Tšhweu!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Ntsho!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1632,22 +1638,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/oc.po
166
src/po/oc.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2021-06-06 18:54+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Occitan (post 1500) <oc@li.org>\n"
|
||||
|
|
@ -389,11 +389,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -401,195 +407,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -597,7 +603,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -605,21 +611,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -627,7 +633,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -636,7 +642,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -664,7 +670,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -689,7 +695,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -697,14 +703,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -714,34 +720,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -751,21 +757,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1496,66 +1502,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Jaune !"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Blau cèl !"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Blanc !"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Negre !"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1563,22 +1569,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/oj.po
166
src/po/oj.po
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ojibwaytuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2007-10-08 18:19-0500\n"
|
||||
"Last-Translator: Ed Montgomery <edm@rocketmail.com>\n"
|
||||
"Language-Team: Ed <edm@rocketmail.com>\n"
|
||||
|
|
@ -387,11 +387,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -399,195 +405,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -595,7 +601,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -603,21 +609,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -625,7 +631,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -634,7 +640,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -642,7 +648,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -651,7 +657,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -671,7 +677,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -679,7 +685,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -695,14 +701,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -712,34 +718,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -749,21 +755,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1504,66 +1510,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Ozaawaadiso"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Mizhakwadong inaanzo"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Waabishki"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Makadewaanzo"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1571,22 +1577,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/or.po
166
src/po/or.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2012-04-05 20:08+0530\n"
|
||||
"Last-Translator: Ekanta <ekanta@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1559,66 +1565,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ହଳଦିଆ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ଆକାଶ ନୀଳ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ଧଳା!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "କଳା!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1626,22 +1632,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/pa.po
166
src/po/pa.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2022-10-13 16:28-0700\n"
|
||||
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||
|
|
@ -394,11 +394,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -406,195 +412,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -602,7 +608,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -610,21 +616,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -632,7 +638,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -645,7 +651,7 @@ msgstr ""
|
|||
"ਵੀ ਤੁਸੀਂ ਤਬਦੀਲੀ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰਦੇ ਹੋ ਤਾਂ ਸ਼ਕਲ ਦੇ ਅਨੁਸਾਰੀ ਅਨੁਪਾਤ ਨੂੰ ਹੇਠਾਂ ਦਿਖਾਇਆ ਜਾਂਦਾ ਹੈ। "
|
||||
"ਢਾਂਚਾ ਜਾਣਕਾਰੀ ਦਿਖਾਈ ਜਾਂਦੀ ਹੈ, ਜਦ ਕਿ ਕੁਝ ਹੋਰ ਟੂਲਾਂ ਵਿੱਚ ਵਾਧਾ ਵੀ ਕੀਤਾ ਗਿਆ ਹੈ।"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -706,14 +712,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -723,27 +729,27 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -752,7 +758,7 @@ msgstr ""
|
|||
"ਆਖਰ ਵਿੱਚ, ਇਹ ਨਵੇਂ ਵਰਜ਼ਨ ਵਿੱਚ ਇਕੱਲੀਆਂ ਡਰਾਇੰਗਾਂ ਤੇ GIF ਐਨੀਮੇਸ਼ਨਾਂ ਨੂੰ ਐਕਸਪੋਰਟ ਕਰਨ ਦੀ ਚੋਣ ਜੋੜੀ ਗਈ "
|
||||
"ਹੈ, ਜਿਸ ਨਾਲ ਤਸਵੀਰਾਂ, ਕਾਰਟੂਨਾਂ ਤੇ ਸਲਾਈਡ-ਸ਼ੋਅ ਹੋਰਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰਨਾ ਸੌਖਾ ਹੋ ਗਿਆ ਹੈ।"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -762,7 +768,7 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -771,14 +777,14 @@ msgstr ""
|
|||
"ਟੱਕਸ ਪੇਂਟ ਨੇ ਹੁਣ ਸਟੀਰਿਓ ਸਾਊਂਢ ਨੂੰ ਅਸਮਰੱਥ ਕਰਨਾ ਸੰਭਵ ਕੀਤਾ ਹੈ, ਜਿਸ ਨਾਲ ਬੋਲੇ ਵਰਤੋਂਕਾਰਾਂ ਨੂੰ ਜਾਂ ਜਿੱਥੇ "
|
||||
"ਸਿਰਫ਼ ਇੱਕ ਸਪੀਕਰ ਮੌਜੂਦ ਹੋਵੇ, ਉੱਥੇ ਫਾਇਦਾ ਹੋ ਸਕਦਾ ਹੈ।"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1536,58 +1542,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "ਐਨੀਮੇਟ ਕੀਤੇ GIF ਵਿੱਚ ਬਦਲਣ ਲਈ 2 ਜਾਂ ਵੱਧ ਡਰਾਇੰਗਾਂ ਚੁਣੋ।"
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "ਲਾਲ"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "ਪੀਲਾ"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "ਨੀਲਾ"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "ਚਿੱਟਾ"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "ਸਲੇਟੀ"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "ਕਾਲਾ"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "ਤੁਹਾਡਾ ਰੰਗ %1$s %2$s ਹੈ।"
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "ਤੁਹਾਡਾ ਰੰਗ %1$s %2$s ਅਤੇ %3$s %4$s ਹੈ।"
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "ਤੁਹਾਡਾ ਰੰਗ %1$s %2$s, %3$s %4$s, ਅਤੇ %5$s %6$s ਹੈ।"
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "ਤੁਹਾਡਾ ਰੰਗ %1$s %2$s, %3$s %4$s, %5$s %6$s, ਅਤੇ %7$s %8$s ਹੈ।"
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "ਤੁਹਾਡਾ ਰੰਗ %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, ਅਤੇ %9$s %10$s ਹੈ।"
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1597,16 +1603,16 @@ msgstr ""
|
|||
"%12$s।"
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "ਪੂਰਾ"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "ਆਪਣੀ ਡਰਾਇੰਗ ਵਿੱਚੋਂ ਰੰਗ ਚੁਣੋ।"
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1614,7 +1620,7 @@ msgstr ""
|
|||
"ਰੰਗ ਚੁਣੋ। ਰੰਗਤ ਉੱਤੇ ਤੋਂ ਹੇਠਾਂ ਵੱਲ ਹੈ। ਸੰਤ੍ਰਿਪਤਾ/ਤੀਬਰਤਾ ਖੱਬੇ (ਪੀਲੀ ਭਾਅ) ਤੋਂ ਸੱਜੇ (ਸ਼ੁੱਧ) ਵੱਲ ਹੈ। ਮੁੱਲ "
|
||||
"(ਹਲਕਾ/ਗੂੜ੍ਹਾ): ਸਲੇਟੀ ਪੱਟੀ।"
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/pl.po
166
src/po/pl.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-30 18:21+0000\n"
|
||||
"Last-Translator: Chris <cjl@sugarlabs.org>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -406,11 +406,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -418,195 +424,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -614,7 +620,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -622,21 +628,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -644,7 +650,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -661,7 +667,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -670,7 +676,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -681,7 +687,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -706,7 +712,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -714,14 +720,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -731,34 +737,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -768,21 +774,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1563,66 +1569,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Żółty!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Jasnoniebieski!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Biały!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Czarny!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1630,22 +1636,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Wybierz kolor z Twojego rysunku."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/pt.po
166
src/po/pt.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-10-06 17:17+0100\n"
|
||||
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr "Novo modo de preenchimento: preenchimento com \"Borracha\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, "
|
||||
|
|
@ -423,7 +429,7 @@ msgstr ""
|
|||
"\"ASCII\" diversa, diversos \"Fractais\", \"Crescente\", \"Pintura em "
|
||||
"spray\", \"Espiral\" e \"Espiral quadrada\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#, fuzzy
|
||||
#| msgid "New brush: Fluff (gradient)."
|
||||
msgid ""
|
||||
|
|
@ -432,31 +438,31 @@ msgid ""
|
|||
"splotches\"."
|
||||
msgstr "Novo pincel: Penugem (gradiente)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "Borrachas transparentes."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "Os pincéis suportam descrições."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr "Novos pincéis: Lápis, Acrílico, Penugem."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr "Novas ferramentas de magia: Pontilhado, Polígono preenchido."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
|
|
@ -464,12 +470,12 @@ msgstr ""
|
|||
"Ferramentas de magia atualizadas: óculos 3D (agora oferece diferentes "
|
||||
"combinações de cores anáglifas)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
"As ferramentas de magia podem ser desagrupadas (\"ungroupmagictools\")."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
|
|
@ -478,17 +484,17 @@ msgstr ""
|
|||
"de diapositivos>Exportar GIF são agora apresentados e colocados na área "
|
||||
"de transferência copiar/colar."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "Atualizações de localização."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
"Melhoria da quebra de palavras nos botões (através de hífenes e hífenes "
|
||||
"suaves)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
|
|
@ -496,7 +502,7 @@ msgstr ""
|
|||
"Agora, os desenhos removidos pela opção “Apagar” na caixa de diálogo Abrir "
|
||||
"também são movidos para o Lixo da área de trabalho no Haiku."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -504,7 +510,7 @@ msgstr ""
|
|||
"Novas ferramentas de Magia: ferramentas de desenho de linhas em perspetiva "
|
||||
"de 1, 2 e 3 pontos (e editores de pontos de fuga correspondentes)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -512,11 +518,11 @@ msgstr ""
|
|||
"Novas ferramentas de Magia: ferramentas de desenho de linhas Isométricas, "
|
||||
"Dimétricas, Trimétricas e Oblíquas (e editores de ângulos correspondentes)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr "Novas ferramentas de Magia: geradores de epitrocóides e hipotrocóides."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -524,7 +530,7 @@ msgstr ""
|
|||
"Nova opção de configuração, \"complexidade\", que afeta o comportamento (ou "
|
||||
"a disponibilidade) de algumas ferramentas de magia."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
|
|
@ -532,26 +538,26 @@ msgstr ""
|
|||
"Ferramentas de magia reorganizadas (anteriormente ordenadas alfabeticamente "
|
||||
"por nome localizado)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Nome e tamanho do tipo de letra apresentados ao selecionar tipos de letra "
|
||||
"nas ferramentas Texto e Etiqueta."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Correções de erros e atualizações de localização."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr "Novas ferramentas de Magia: Laços, Fita, Suavizar e Rabiscos."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
"A ferramenta Borracha oferece agora borrachas difusas (com arestas suaves)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -561,7 +567,7 @@ msgstr ""
|
|||
"Novo) a partir do próprio Tux Paint (através da caixa de diálogo Abrir). "
|
||||
"(Eles podem ser eliminados posteriormente da caixa de diálogo Novo)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -571,7 +577,7 @@ msgstr ""
|
|||
"e modelos exportados da caixa de diálogo Novo pode ser desativada, através "
|
||||
"da opção de configuração \"não apagar\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -580,7 +586,7 @@ msgstr ""
|
|||
"configuração \"uifont\". (Liste os tipos de letra disponíveis com \"--"
|
||||
"listfonts\" na linha de comandos)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
|
|
@ -588,7 +594,7 @@ msgstr ""
|
|||
"Mais uma vez, são utilizados tipos de letra diferentes (predefinidos) para a "
|
||||
"interface do utilizador em diferentes locais."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -596,17 +602,17 @@ msgstr ""
|
|||
"Pequenos melhoramentos nos botões de seleção para as cores "
|
||||
"\"especiais\" (pipeta, seletor HSV e misturador de cores)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr "Muitas ferramentas de Magia oferecem agora definições de tamanho."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
"Os rótulos dos botões devem ser revestidos de palavras sempre que possível "
|
||||
"(melhora a legibilidade)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -617,27 +623,27 @@ msgstr ""
|
|||
"Dessaturar, Remover cor, Manter cor, Caleidoscópio-4, Caleidoscópio-6, "
|
||||
"Caleidoscópio-8 e Florescente."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "Os carimbos podem ser rodados antes de serem aplicados na tela."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "A ferramenta de formas, em modo \"arrasta-do-canto\", foi melhorada."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
"A ferramenta de preenchimento oferece agora um modo de gradiente de forma "
|
||||
"(biselado)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
"É possível aceder a um modo de Borracha rápida através de uma tecla de "
|
||||
"atalho."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -645,7 +651,7 @@ msgstr ""
|
|||
"A paleta do arco-íris (seletor de cores HSV) pode agora carregar a cor "
|
||||
"embutida, ou as cores da ferramenta de pipeta ou misturador de cores."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -653,17 +659,17 @@ msgstr ""
|
|||
"As imagens iniciais e de modelo podem especificar como devem esticar, para "
|
||||
"evitar manchas quando a relação de aspeto da tela difere da imagem."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"A opção de configuração \"tamanho do botão\" oferece agora uma definição "
|
||||
"\"auto\"."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Um guia de iniciação rápida foi adicionado."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -675,7 +681,7 @@ msgstr ""
|
|||
"primárias (vermelho, amarelo e azul) e tonalidades (branco, cinzento e "
|
||||
"preto) para criar novas cores, semelhantes à mistura de tintas."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -687,7 +693,7 @@ msgstr ""
|
|||
"separada, saturação, e definições de valores, permitindo aos utilizadores "
|
||||
"escolher entre mais de dezasseis milhões de cores."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -697,7 +703,7 @@ msgstr ""
|
|||
"Seletor de cores - a ferramenta \"pipeta\" utilizada para escolher cores do "
|
||||
"desenho atual."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -708,7 +714,7 @@ msgstr ""
|
|||
"efeitos de manchas. Muitos pincéis foram também dotados de melhores valores "
|
||||
"de espaçamento padrão."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -720,7 +726,7 @@ msgstr ""
|
|||
"este replica o desenho através da tela em mosaicos, em vez de encher a tela "
|
||||
"com uma cor de fundo sólida. A ferramenta Apressar desfoca os resultados."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -734,7 +740,7 @@ msgstr ""
|
|||
"inferior enquanto faz os seus ajustes. A informação instrutiva mostrada "
|
||||
"durante a utilização de algumas outras ferramentas foi também expandida."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -746,7 +752,7 @@ msgstr ""
|
|||
"no macOS. O dimensionamento do teclado Tux Paint incorporado no ecrã foi "
|
||||
"melhorado. O aspeto da documentação do utilizador foi melhorado."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -761,7 +767,7 @@ msgstr ""
|
|||
"ferramenta Preenchimento oferece agora um modo de pintura à mão livre para "
|
||||
"colorir interactivamente dentro de uma área confinada."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -779,7 +785,7 @@ msgstr ""
|
|||
"uma casa divertida. Finalmente, o Arco-íris suave proporciona uma variação "
|
||||
"mais gradual da ferramenta clássica do Tux Paint Arco-íris."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -794,7 +800,7 @@ msgstr ""
|
|||
"juntamente com Blocos, Giz e Relevo, oferecem agora a possibilidade de "
|
||||
"alterar toda a imagem de uma só vez!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -806,7 +812,7 @@ msgstr ""
|
|||
"desenhos, pintura de padrões, artística e decoração de desenhos - tornando "
|
||||
"mais fácil encontrar a ferramenta de que necessita."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -819,7 +825,7 @@ msgstr ""
|
|||
"preenchimento \"Linear\" permite a criação interativa de gradientes em "
|
||||
"diferentes ângulos e tamanhos."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -831,7 +837,7 @@ msgstr ""
|
|||
"preenche toda a tela com um padrão de verificação, e \"Clonar\" permite "
|
||||
"duplicar partes do desenho através de pinceladas."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -841,7 +847,7 @@ msgstr ""
|
|||
"localização mais fácil. As partes interessadas em ajudar na localização são "
|
||||
"encorajadas a contactar a equipa do Tux Paint."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -857,7 +863,7 @@ msgstr ""
|
|||
"nova opção para reorganizar a paleta de cores, também pode ser útil aos "
|
||||
"utilizadores de dispositivos ásperos, tais como sistemas de rastreio ocular."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -867,7 +873,7 @@ msgstr ""
|
|||
"para escolher se as formas são desenhadas a partir do centro ou de um canto, "
|
||||
"tornando-a mais fácil de usar em qualquer situação."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -878,7 +884,7 @@ msgstr ""
|
|||
"agora maior em ecrãs maiores; útil para utilizadores de dispositivos mais "
|
||||
"ásperos, tais como sistemas de rastreio ocular."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -886,7 +892,7 @@ msgstr ""
|
|||
"A ferramenta Borracha adiciona novos tamanhos de borracha mais pequenos, e "
|
||||
"aplica traços mais suaves e contíguos quando o ponteiro é movido rapidamente."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -896,7 +902,7 @@ msgstr ""
|
|||
"individuais e animações GIF, facilitando a partilha de desenhos, desenhos "
|
||||
"animados e apresentações de diapositivos com outros."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -912,7 +918,7 @@ msgstr ""
|
|||
"desenho. As cores de fundo sólidas também podem ser colocadas no final desse "
|
||||
"diálogo, permitindo dar ênfase às imagens de modelo."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -922,7 +928,7 @@ msgstr ""
|
|||
"beneficiar os utilizadores com uma deficiência auditiva, ou em situações em "
|
||||
"que apenas está disponível uma coluna."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -932,7 +938,7 @@ msgstr ""
|
|||
"cor dentro de um desenho seja escolhida usando o cursor, e um conjunto de "
|
||||
"três, quatro, e cinco formas de estrelas pontiagudas."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1715,58 +1721,58 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "Selecione 2 ou mais desenhos para se tornar num GIF animado."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "vermelho"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "amarelo"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "azul"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "branco"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "cinzento"
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "preto"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "A tua cor é %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "A tua cor é %1$s %2$s e %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "A tua cor é %1$s %2$s, %3$s %4$s, e %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "A tua cor é %1$s %2$s, %3$s %4$s, %5$s %6$s, e %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "A tua cor é %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, e %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1776,16 +1782,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "inteiramente"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Seleciona uma cor do teu desenho."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1794,7 +1800,7 @@ msgstr ""
|
|||
"da esquerda (pálida) para a direita (pura). Valor (leveza/escuridão): barra "
|
||||
"cinzenta."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/pt_BR.po
166
src/po/pt_BR.po
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2017-12-06 13:01-0300\n"
|
||||
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -403,11 +403,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -415,195 +421,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -611,7 +617,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -619,21 +625,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -641,7 +647,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -650,7 +656,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -667,7 +673,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -678,7 +684,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -687,7 +693,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -711,14 +717,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -728,34 +734,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -765,21 +771,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1570,66 +1576,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Amarelo!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Azul celeste!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Branco!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Preto!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1637,22 +1643,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Selecione uma cor do seu desenho."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ro.po
166
src/po/ro.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Tuxpaint 0.9.2pre\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2003-01-03 21:32-0500\n"
|
||||
"Language-Team: Romanian <ro@li.org>\n"
|
||||
"Language: ro\n"
|
||||
|
|
@ -407,11 +407,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -419,195 +425,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -615,7 +621,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -623,21 +629,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -645,7 +651,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -654,7 +660,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -671,7 +677,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -691,7 +697,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -699,7 +705,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -707,7 +713,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -715,14 +721,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -732,34 +738,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -769,21 +775,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1583,68 +1589,68 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
#, fuzzy
|
||||
#| msgid "Red"
|
||||
msgid "red"
|
||||
msgstr "Roșu!"
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "Galben!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "Albastru ceruleum!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "Alb!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "Negru!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1652,22 +1658,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/ru.po
166
src/po/ru.po
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: TuxPaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2024-06-27 16:04+0300\n"
|
||||
"Last-Translator: Alevtina <karashokovaaa@basealt.ru>\n"
|
||||
"Language-Team: Basealt Translation Team\n"
|
||||
|
|
@ -434,11 +434,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#, fuzzy
|
||||
#| msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgid ""
|
||||
|
|
@ -449,39 +455,39 @@ msgid ""
|
|||
msgstr ""
|
||||
"Новые магические инструменты: Узор из точек, Закрашенный многоугольник."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr "Прозрачные ластики."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr "Описание поддержки кистей."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr "Новые кисти: Карандаш, Акриловая, Пуховая."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
"Новые магические инструменты: Узор из точек, Закрашенный многоугольник."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
|
|
@ -489,12 +495,12 @@ msgstr ""
|
|||
"Обновлённые магические инструменты: 3D-очки (теперь предлагаются различные "
|
||||
"комбинации цветов анаглифа)"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
"Магические инструменты могут быть разгруппированы («ungroupmagictools»)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
|
|
@ -503,15 +509,15 @@ msgstr ""
|
|||
"Слайд-шоу>Экспорт GIF теперь отображаются, а также помещаются в буфер "
|
||||
"обмена для копирования/вставки."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr "Обновления локализации."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr "Улучшен перенос слов на кнопках (с помощью дефисов и мягких дефисов)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
|
|
@ -519,7 +525,7 @@ msgstr ""
|
|||
"Рисунки, удалённые с помощью опции «Удалить» в диалоговом окне «Открыть», "
|
||||
"теперь также перемещаются в корзину рабочего стола в Haiku."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
|
|
@ -527,7 +533,7 @@ msgstr ""
|
|||
"Новые магические инструменты: инструменты для рисования 1-, 2- и 3-точечных "
|
||||
"перспектив (и соответствующие редакторы точек схода)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
|
|
@ -535,11 +541,11 @@ msgstr ""
|
|||
"Новые магические инструменты: инструменты для рисования изометрических, "
|
||||
"диметрических и косых проекций (и соответствующие редакторы углов)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr "Новые магические инструменты: генераторы эпитрохоид и гипотрохоид"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
|
|
@ -547,7 +553,7 @@ msgstr ""
|
|||
"Новый параметр конфигурации, «complexity», который влияет на поведение (или "
|
||||
"доступность) некоторых магических инструментов."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
|
|
@ -555,27 +561,27 @@ msgstr ""
|
|||
"Магические инструменты реорганизованы (ранее они располагались в алфавитном "
|
||||
"порядке по локализованному названию)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
"Название и размер шрифта отображаются при выборе шрифтов в инструментах "
|
||||
"«Текст» и «Метка»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr "Исправление ошибок и обновление локализации."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
"Новые магические инструменты: Петли, Лента, Сглаживание и Волнистые завитки."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
"Инструмент «Ластик» теперь предлагает нечёткие (с мягкими краями) ластики."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
|
|
@ -585,7 +591,7 @@ msgstr ""
|
|||
"«Создать») в самом Tux Paint (через диалоговое окно «Открыть»). "
|
||||
"(Впоследствии их можно удалить из диалогового окна «Создать»)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
|
|
@ -595,7 +601,7 @@ msgstr ""
|
|||
"«Открыть» и экспортированных шаблонов из диалога «Создать» может быть "
|
||||
"отключена с помощью параметра конфигурации «noerase»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
|
|
@ -604,7 +610,7 @@ msgstr ""
|
|||
"«uifont». (Список доступных шрифтов с помощью параметра «--listfonts» в "
|
||||
"командной строке)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
|
|
@ -612,7 +618,7 @@ msgstr ""
|
|||
"Для разных языков снова используются разные (по умолчанию) шрифты "
|
||||
"пользовательского интерфейса."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
|
|
@ -620,17 +626,17 @@ msgstr ""
|
|||
"Незначительные улучшения кнопок выбора «специальных» цветов (пипетка, "
|
||||
"средство выбора цветов HSV и инструмент смешивания цветов)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr "Многие магические инструменты теперь предоставляют параметры размера."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
"Метки кнопок переносятся на новую строку, когда это возможно (так их проще "
|
||||
"читать)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
|
|
@ -641,26 +647,26 @@ msgstr ""
|
|||
"«Обесцвечивание», «Удаление цвета», «Сохранение цвета», «Калейдоскоп-4», "
|
||||
"«Калейдоскоп-6», «Калейдоскоп-8» и «Свечение»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr "Штампы можно повернуть перед нанесением на холст."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr "Улучшена работа инструмента «Формы» в режиме перетаскивания из угла."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
"Инструмент «Заливка» теперь предоставляет режим фигурного градиента (скос)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
"Доступ к режиму стирания можно получить путём нажатия соответствующей "
|
||||
"комбинации клавиш."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
|
|
@ -669,7 +675,7 @@ msgstr ""
|
|||
"встроенный цвет или цвета из инструмента пипетки или инструмента смешивания "
|
||||
"цветов."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
|
|
@ -678,16 +684,16 @@ msgstr ""
|
|||
"(чтобы они не смазывались, когда соотношение сторон холста отличается от "
|
||||
"соотношения сторон изображения)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
"Для параметра конфигурации «buttonsize» теперь предусмотрен вариант «auto»."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr "Добавлено краткое руководство по началу работы."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -699,7 +705,7 @@ msgstr ""
|
|||
"(красный, жёлтый и синий) и оттенки (белый, серый и чёрный) для создания "
|
||||
"новых цветов; это похоже на смешивание красок на палитре."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -711,7 +717,7 @@ msgstr ""
|
|||
"оттенка, насыщенности и значения, что позволяет пользователям выбирать из "
|
||||
"более чем шестнадцати миллионов цветов."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
|
|
@ -721,7 +727,7 @@ msgstr ""
|
|||
"цвета — инструменту «пипетки», который используется для выбора цветов из "
|
||||
"текущего рисунка."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
|
|
@ -731,7 +737,7 @@ msgstr ""
|
|||
"для кистей, что позволяет создавать пунктирные линии или эффекты смазывания. "
|
||||
"Кроме того, для многих кистей были улучшены стандартные значения интервалов."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -744,7 +750,7 @@ msgstr ""
|
|||
"происходит заполнения холста сплошным фоновым цветом). После использования "
|
||||
"инструмента «Рывок» рисунок смазывается."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -758,7 +764,7 @@ msgstr ""
|
|||
"перечень сведений, которые показываются при использовании некоторых других "
|
||||
"инструментов."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -771,7 +777,7 @@ msgstr ""
|
|||
"клавиатуры Tux Paint. Выполнена работа по усовершенствованию документации "
|
||||
"пользователя."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -786,7 +792,7 @@ msgstr ""
|
|||
"инструмент «Заливка» теперь предоставляет режим рисования от руки для "
|
||||
"интерактивного раскрашивания в пределах ограниченной области."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -805,7 +811,7 @@ msgstr ""
|
|||
"«Плавные 7 цветов» предоставляет вариант классического инструмента «7 "
|
||||
"цветов» Tux Paint, обеспечивая более плавные переходы."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -820,7 +826,7 @@ msgstr ""
|
|||
"«Мультфильм» и «Полутоновый оттиск», а также «Мозаика», «Мел» и «Рельеф» "
|
||||
"теперь позволяют изменять всё изображение целиком!"
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -832,7 +838,7 @@ msgstr ""
|
|||
"картинки, рисование по образцу, художественные эффекты и декорирование "
|
||||
"рисунков. Благодаря этому становится проще найти нужный инструмент."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -845,7 +851,7 @@ msgstr ""
|
|||
"интерактивном режиме создавать градиенты под разными углами и разных "
|
||||
"размеров."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -857,7 +863,7 @@ msgstr ""
|
|||
"заполняет весь холст шахматным узором, а «Клонирование» позволяет "
|
||||
"дублировать части рисунка с помощью мазков кистью."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
|
|
@ -867,7 +873,7 @@ msgstr ""
|
|||
"локализацию. Тем, кто готов помочь с локализацией, рекомендуется обратиться "
|
||||
"к команде Tux Paint."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -883,7 +889,7 @@ msgstr ""
|
|||
"палитры, также может быть полезна пользователям более грубых устройств ввода "
|
||||
"(например, систем отслеживания движений глаз)."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
|
|
@ -893,7 +899,7 @@ msgstr ""
|
|||
"следует ли рисовать формы из центра или из угла, что упрощает работу с этим "
|
||||
"инструментом во всех ситуациях."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
|
|
@ -904,7 +910,7 @@ msgstr ""
|
|||
"больших экранах; это удобно для пользователей более грубых устройств ввода, "
|
||||
"таких как системы отслеживания движений глаз."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
|
|
@ -913,7 +919,7 @@ msgstr ""
|
|||
"реализованы плавные, непрерывные мазки при быстром перемещении указателя "
|
||||
"мыши."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
|
|
@ -923,7 +929,7 @@ msgstr ""
|
|||
"рисунков и GIF-анимаций, что позволяет с лёгкостью делиться картинками, "
|
||||
"мультфильмами и слайдшоу с другими пользователями."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -939,7 +945,7 @@ msgstr ""
|
|||
"можно расположить в конце этого диалога, что позволяет сосредоточить "
|
||||
"внимание на шаблонных изображениях."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
|
|
@ -949,7 +955,7 @@ msgstr ""
|
|||
"пользователям с нарушениями слуха или в тех случаях, когда доступен только "
|
||||
"один динамик."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
|
|
@ -959,7 +965,7 @@ msgstr ""
|
|||
"на рисунке с помощью указателя мыши, а также возможность создавать трёх-, "
|
||||
"четырёх- и пятиконечные формы звёзд."
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1736,62 +1742,62 @@ msgstr ""
|
|||
"Выберите два или больше рисунков для преобразования в анимированный GIF."
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr "красный"
|
||||
|
||||
# При выборе жёлтого (255, 255, 0) цвета
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
msgid "yellow"
|
||||
msgstr "жёлтый"
|
||||
|
||||
# При выборе голубого (138, 168, 205) цвета
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr "синий"
|
||||
|
||||
# При выборе белого (255, 255, 255) цвета
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
msgid "white"
|
||||
msgstr "белый"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr "серый"
|
||||
|
||||
# При выборе чёрного (0, 0, 0) цвета
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
msgid "black"
|
||||
msgstr "чёрный"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr "Ваш цвет: %1$s %2$s."
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr "Ваш цвет: %1$s %2$s и %3$s %4$s."
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr "Ваш цвет: %1$s %2$s, %3$s %4$s и %5$s %6$s."
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr "Ваш цвет: %1$s %2$s, %3$s %4$s, %5$s %6$s и %7$s %8$s."
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr "Ваш цвет: %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s и %9$s %10$s."
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1801,16 +1807,16 @@ msgstr ""
|
|||
"%12$s."
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr "полностью"
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "Выберите цвет для рисования."
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
|
|
@ -1819,7 +1825,7 @@ msgstr ""
|
|||
"слева (тускло) направо (ярко). Значение (освещённость или затенённость): "
|
||||
"серая панель."
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/rw.po
166
src/po/rw.po
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint 0.9.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
|
||||
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
||||
|
|
@ -411,11 +411,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -423,195 +429,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -619,7 +625,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -627,21 +633,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -649,7 +655,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -658,7 +664,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -666,7 +672,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -675,7 +681,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -686,7 +692,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -695,7 +701,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -703,7 +709,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -711,7 +717,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -719,14 +725,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -736,34 +742,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -773,21 +779,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1557,62 +1563,62 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
msgid "yellow"
|
||||
msgstr "Umuhondo"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
msgid "blue"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
msgid "white"
|
||||
msgstr "Umweru"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
# officecfg/registry\schema\org\openoffice\Office\Math.xcs:....FontFormat.Weight..10.text
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
msgid "black"
|
||||
msgstr "umukara"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1620,22 +1626,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/sa.po
166
src/po/sa.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2011-11-19 07:03+0530\n"
|
||||
"Last-Translator: Aarathi Bala\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1554,66 +1560,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "पीतम्!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "आकाशनीलम्!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "श्वेतः!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "कृष्णः!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1621,22 +1627,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
166
src/po/sat.po
166
src/po/sat.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: tuxpaint\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2014-06-16 16:55+0530\n"
|
||||
"Last-Translator: Ganesh Murmu <murmu.ganesh@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
|
@ -401,11 +401,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -413,195 +419,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -609,7 +615,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -617,21 +623,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -639,7 +645,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -648,7 +654,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -656,7 +662,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -665,7 +671,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -676,7 +682,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -685,7 +691,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -693,7 +699,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -701,7 +707,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -709,14 +715,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -726,34 +732,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -763,21 +769,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1563,66 +1569,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr ""
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "सासाङ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "सेरमा लिल!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "पुंड!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "हेंदे!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1630,22 +1636,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-26 21:13-0800\n"
|
||||
"POT-Creation-Date: 2024-12-29 02:14-0800\n"
|
||||
"PO-Revision-Date: 2022-02-11 18:33+0530\n"
|
||||
"Last-Translator: Prasanta Hembram <prasantahembram720@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -398,11 +398,17 @@ msgstr ""
|
|||
msgid "Text and Label tools support pasting text from the copy/paste clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:59
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:55
|
||||
msgid ""
|
||||
"Text and Label tools attempt to load fonts in locations specified in "
|
||||
"FontConfig <dir> entries now, too"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:60
|
||||
msgid "New Fill mode: \"Eraser\" flood fill."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
msgid ""
|
||||
"New Magic tools: \"Comic dots\", \"Rotate\", various \"ASCII\" art, various "
|
||||
"\"Fractals\", \"Crescent\", \"Spray Paint\", \"Spiral\", \"Square Spiral\", "
|
||||
|
|
@ -410,195 +416,195 @@ msgid ""
|
|||
"tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:61
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
msgid ""
|
||||
"New brushes: \"Fluff (gradient)\", \"Graphite\", \"Impasto\", \"Paint "
|
||||
"splats\", \"Smoke\", \"Spines\", \"Water (still)\", and \"Watercolor "
|
||||
"splotches\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:62
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
msgid "New brush option: \"Chaotic\" (random direction)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:63
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:64
|
||||
msgid "New templates: \"Clouds from an airplane\" and \"Lough Leane\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:68
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
msgid "Transparent Erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:69
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
msgid "Brushes support descriptions."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:70
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
msgid "New brushes: Pencil, Acrylic, Fluff."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:71
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
msgid "New Magic tools: Dither, Filled Polygon."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:72
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
msgid ""
|
||||
"Updated Magic tools: 3D Glasses (now offers different anaglyph color "
|
||||
"combinations)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:73
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
msgid "Magic tools may be ungrouped (\"ungroupmagictools\")."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:74
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
msgid ""
|
||||
"Name of files created by Open>Export and Open>Slideshow>Export GIF "
|
||||
"are now displayed as well as placed in copy/paste clipboard."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:75
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
msgid "Localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:76
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
msgid "Improved word wrapping in buttons (via hyphens and soft hyphens)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:77
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:78
|
||||
msgid ""
|
||||
"Drawings removed by the \"Erase\" option in the Open dialog are moved to the "
|
||||
"desktop Trash on Haiku now, too."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:82
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
msgid ""
|
||||
"New Magic tools: 1-, 2-, and 3-Point Perspective line-drawing tools (and "
|
||||
"corresponding vanishing point editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:83
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
msgid ""
|
||||
"New Magic tools: Isometric, Dimetric, Trimetric, and Oblique line-drawing "
|
||||
"tools (and corresponding angle editors)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:84
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
msgid "New Magic tools: Epitrochoid and Hypotrochoid generators."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:85
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
msgid ""
|
||||
"New configuration option, \"complexity\", which affects the behavior (or "
|
||||
"availability) of some Magic tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:86
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
msgid ""
|
||||
"Magic tools reorganized (previously ordered alphabetically by localized "
|
||||
"name)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:87
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
msgid "Font name and size shown when selecting fonts in Text and Label tools."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:88
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:89
|
||||
msgid "Bug-fixes and localization updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:93
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
msgid "New Magic tools: Loops, Ribbon, Smooth, and Squiggles."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:94
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
msgid "Eraser tool now offers fuzzy (soft-edged) erasers."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:95
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
msgid ""
|
||||
"Turn saved drawings into Templates (found in the New dialog) from within Tux "
|
||||
"Paint itself (via the Open dialog). (They may subsequently be deleted from "
|
||||
"the New dialog.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:96
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
msgid ""
|
||||
"\"Erase\" option to remove saved drawings from the Open dialog and exported "
|
||||
"templates from the New dialog may be disabled, via \"noerase\" configuration "
|
||||
"option."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:97
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
msgid ""
|
||||
"Specify the user interface font, via \"uifont\" configuration option. (List "
|
||||
"available fonts with \"--listfonts\" on the command-line.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:98
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
msgid ""
|
||||
"Different (default) user interface fonts are once again used for under "
|
||||
"different locales."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:99
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:100
|
||||
msgid ""
|
||||
"Minor improvements to the selection buttons for the 'special' colors "
|
||||
"(pipette, HSV picker, and color mixer)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:104
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
msgid "Many Magic tools now offer size settings."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:105
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:106
|
||||
msgid "Button labels word-wrap when possible (improves legibility)."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:110
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
msgid ""
|
||||
"Fifteen new magic tools have been added: Maze, Googly Eyes, Fur, Circles, "
|
||||
"Rays, 3D Glasses, Color Sep., Saturate, Desaturate, Remove Color, Keep "
|
||||
"Color, Kaleido-4, Kaleido-6, Kaleido-8, and Bloom."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:111
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
msgid "Stamps may be rotated before being applied to the canvas."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:112
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
msgid "Shapes tool, in drag-from-corner mode, has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:113
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
msgid "Fill tool now offers a shaped gradient (bevel) mode."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:114
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
msgid "A quick Eraser mode can be accessed via keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:115
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
msgid ""
|
||||
"The rainbow palette (HSV color picker) can now load the built-in color, or "
|
||||
"the colors from the pipette tool or color mixer."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:116
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
msgid ""
|
||||
"Starter and Template images can specify how they should stretch, to avoid "
|
||||
"smearing when the canvas aspect ratio differs from that of the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:117
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
msgid "The \"buttonsize\" configuration option now offers an \"auto\" setting."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:118
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:119
|
||||
msgid "A quick start guide has been added."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:123
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
msgid ""
|
||||
"Tux Paint's Color palette includes a new Color Mixer option, which allows "
|
||||
"users to combine different proportions of primary colors (red, yellow, and "
|
||||
|
|
@ -606,7 +612,7 @@ msgid ""
|
|||
"mixing paints."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:124
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
msgid ""
|
||||
"The Color Picker option, which previously offered a static palette of around "
|
||||
"sixty-five thousand color choices, now supports separate hue, saturation, "
|
||||
|
|
@ -614,21 +620,21 @@ msgid ""
|
|||
"colors."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:125
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
msgid ""
|
||||
"Also, a keyboard shortcut is now available for quick access to the Color "
|
||||
"Selector — the \"pipette\" tool used for picking colors from the current "
|
||||
"drawing."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:126
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
msgid ""
|
||||
"The Paint and Lines tools now provide a way to adjust the spacing of "
|
||||
"brushes, allowing dotted lines or smearing effects to be made. Many brushes "
|
||||
"have been given better default spacing values, as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:127
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
msgid ""
|
||||
"Two new variations of the Zoom Magic Tool, Tile Zoom and Rush, have been "
|
||||
"added. When shrinking a drawing with Tile Zoom, it replicates the drawing "
|
||||
|
|
@ -636,7 +642,7 @@ msgid ""
|
|||
"background color. The Rush tool blurs the results."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:128
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
msgid ""
|
||||
"Tux Paint's Shapes tool now offers hexagon (6-sided) and heptagon (7-sided) "
|
||||
"polygons. For shapes which can be stretched (rectangle, oval, etc.), the "
|
||||
|
|
@ -645,7 +651,7 @@ msgid ""
|
|||
"has also been expanded."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:129
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:130
|
||||
msgid ""
|
||||
"Keyboard shortcuts, such as [Control]+[S] to save a drawing, are now "
|
||||
"accessed with the more traditional [⌘ Command] key when using Tux Paint on "
|
||||
|
|
@ -653,7 +659,7 @@ msgid ""
|
|||
"The look and feel of the user documentation has been improved."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:134
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
msgid ""
|
||||
"Tux Paint's Paint and Line tools now support brushes that rotate based on "
|
||||
"the angle of the stroke. This new rotation feature, as well as the older "
|
||||
|
|
@ -662,7 +668,7 @@ msgid ""
|
|||
"painting mode for interactively coloring within a confined area."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:135
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
msgid ""
|
||||
"Six new Magic tools have been added to Tux Paint. Panels shrinks and "
|
||||
"duplicates the drawing into a 2-by-2 grid, which is useful for making four-"
|
||||
|
|
@ -673,7 +679,7 @@ msgid ""
|
|||
"of Tux Paint's classic Rainbow tool."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:136
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
msgid ""
|
||||
"A number of existing Magic tools have been updated, as well. Improvements "
|
||||
"were made to Halftone, which simulates photographs on newsprint; Cartoon, "
|
||||
|
|
@ -682,7 +688,7 @@ msgid ""
|
|||
"Chalk, and Emboss, now offer the ability to alter the entire image at once!"
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:137
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:138
|
||||
msgid ""
|
||||
"Finally, Magic tools are now grouped into collections of similar effects — "
|
||||
"painting, distorts, color filters, picture warps, pattern painting, "
|
||||
|
|
@ -690,7 +696,7 @@ msgid ""
|
|||
"need."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:142
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
msgid ""
|
||||
"Tux Paint's Fill tool now offers options to fill an area with color "
|
||||
"gradients. The \"Radial\" fill creates a circular gradient centered around "
|
||||
|
|
@ -698,7 +704,7 @@ msgid ""
|
|||
"of gradients at different angles and sizes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:143
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
msgid ""
|
||||
"New Magic tools have been added to Tux Paint: \"Pixels\" makes it easier to "
|
||||
"create retro-gaming style pixel art, \"Checkerboard\" fills the entire "
|
||||
|
|
@ -706,14 +712,14 @@ msgid ""
|
|||
"picture via brush strokes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:144
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
msgid ""
|
||||
"Tux Paint's user documentation has been overhauled, making localization "
|
||||
"easier. Parties interested in helping with localization are encouraged to "
|
||||
"contact the Tux Paint team."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:145
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:146
|
||||
msgid ""
|
||||
"Finally, a new pair of accessibility options have been added. The entire "
|
||||
"user interface can now be enlarged benefiting users with impaired vision, "
|
||||
|
|
@ -723,34 +729,34 @@ msgid ""
|
|||
"systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:150
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
msgid ""
|
||||
"A major improvement has been made to the Shapes tool, which now provides "
|
||||
"options to choose whether shapes are drawn from the center or a corner, "
|
||||
"making it easier to use in any situation."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:151
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
msgid ""
|
||||
"The on-screen keyboard, an accessibility feature optionally available when "
|
||||
"using the Text and Label tools, now appears larger on bigger displays; "
|
||||
"helpful for users of coarser input devices, such as eye-tracking systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:152
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
msgid ""
|
||||
"The Eraser tool adds new, smaller eraser sizes, and applies smoother, "
|
||||
"contiguous strokes when the pointer is moved quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:153
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:154
|
||||
msgid ""
|
||||
"Finally, this newest version adds options to export individual drawings and "
|
||||
"GIF animations, making it easy to share pictures, cartoons, and slideshows "
|
||||
"with others."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:158
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
msgid ""
|
||||
"The latest version has promoted the \"Fill\" tool, previously found under "
|
||||
"the \"Magic\" section of Tux Paint, to the main toolbar, where it's easier "
|
||||
|
|
@ -760,21 +766,21 @@ msgid ""
|
|||
"images."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:159
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:160
|
||||
msgid ""
|
||||
"Tux Paint also now makes it possible to disable stereo sound, which can "
|
||||
"benefit users with a hearing impairment, or in situations where only one "
|
||||
"speaker is available."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:164
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
msgid ""
|
||||
"New in this version are a \"color picker\", which allows any color within a "
|
||||
"drawing to be chosen using the pointer, and a set of three-, four-, and five-"
|
||||
"pointed star shapes."
|
||||
msgstr ""
|
||||
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:165
|
||||
#: ../org.tuxpaint.Tuxpaint.appdata.xml.in:166
|
||||
msgid ""
|
||||
"The latest version also incorporates a number of new translations, bringing "
|
||||
"the number of supported languages up to nearly 130: Bengali, Bodo, Dogri, "
|
||||
|
|
@ -1560,66 +1566,66 @@ msgid "Select 2 or more drawings to turn into an animated GIF."
|
|||
msgstr "ᱮᱱᱤᱢᱮᱴᱮᱰ GIF ᱞᱟᱹᱜᱤᱫ ᱵᱟᱨᱭᱟ ᱠᱷᱚᱱ ᱡᱟᱹᱥᱛᱤ ᱛᱮᱭᱟᱨ ᱠᱚ ᱪᱚᱭᱚᱱ ᱢᱮ"
|
||||
|
||||
#. Descriptions (names) of the color mixer tool's primary colors and shades
|
||||
#: ../tuxpaint.c:25501
|
||||
#: ../tuxpaint.c:25513
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25502
|
||||
#: ../tuxpaint.c:25514
|
||||
#, fuzzy
|
||||
#| msgid "Yellow!"
|
||||
msgid "yellow"
|
||||
msgstr "ᱥᱟᱥᱟᱝ!"
|
||||
|
||||
#: ../tuxpaint.c:25503
|
||||
#: ../tuxpaint.c:25515
|
||||
#, fuzzy
|
||||
#| msgid "Sky blue!"
|
||||
msgid "blue"
|
||||
msgstr "ᱥᱮᱨᱢᱟ ᱞᱤᱞ!"
|
||||
|
||||
#: ../tuxpaint.c:25504
|
||||
#: ../tuxpaint.c:25516
|
||||
#, fuzzy
|
||||
#| msgid "White!"
|
||||
msgid "white"
|
||||
msgstr "ᱯᱩᱸᱰ!"
|
||||
|
||||
#: ../tuxpaint.c:25505
|
||||
#: ../tuxpaint.c:25517
|
||||
msgid "grey"
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25506
|
||||
#: ../tuxpaint.c:25518
|
||||
#, fuzzy
|
||||
#| msgid "Black!"
|
||||
msgid "black"
|
||||
msgstr "ᱦᱮᱸᱫᱮ!"
|
||||
|
||||
#. Tool tip text describing a mixed color (e.g., "1/3 red and 1/2 yellow", or "1/3 blue and 2/3 white", etc.)
|
||||
#: ../tuxpaint.c:25511
|
||||
#: ../tuxpaint.c:25523
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25512
|
||||
#: ../tuxpaint.c:25524
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s and %3$s %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25513
|
||||
#: ../tuxpaint.c:25525
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, and %5$s %6$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25514
|
||||
#: ../tuxpaint.c:25526
|
||||
#, c-format
|
||||
msgid "Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, and %7$s %8$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25515
|
||||
#: ../tuxpaint.c:25527
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, and %9$s %10$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:25516
|
||||
#: ../tuxpaint.c:25528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Your color is %1$s %2$s, %3$s %4$s, %5$s %6$s, %7$s %8$s, %9$s %10$s, and "
|
||||
|
|
@ -1627,22 +1633,22 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Color mixer; e.g., "Your color is entirely grey."
|
||||
#: ../tuxpaint.c:26296 ../tuxpaint.c:26301
|
||||
#: ../tuxpaint.c:26308 ../tuxpaint.c:26313
|
||||
msgid "entirely"
|
||||
msgstr ""
|
||||
|
||||
#. Add "Color Select" color:
|
||||
#: ../tuxpaint.c:29503
|
||||
#: ../tuxpaint.c:29515
|
||||
msgid "Select a color from your drawing."
|
||||
msgstr "ᱟᱢᱟᱜ ᱜᱟᱨ ᱪᱤᱛᱟᱹᱨ ᱠᱷᱚᱱ ᱨᱚᱝ ᱪᱚᱭᱚᱱ ᱢᱮ ᱾"
|
||||
|
||||
#: ../tuxpaint.c:29514
|
||||
#: ../tuxpaint.c:29526
|
||||
msgid ""
|
||||
"Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) "
|
||||
"to right (pure). Value (lightness/darkness): grey bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../tuxpaint.c:29528
|
||||
#: ../tuxpaint.c:29540
|
||||
msgid ""
|
||||
"Click the primary colors (red, yellow, and blue), white (to tint), grey (to "
|
||||
"tone), and black (to shade), to mix together a new color."
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue