Initial Ccheckin of prozilla 2.0.4

This commit is contained in:
Mario Fetka
2010-08-31 03:50:41 +02:00
commit 093662fc48
226 changed files with 131185 additions and 0 deletions

8
po/.cvsignore Normal file
View File

@@ -0,0 +1,8 @@
Makefile
autom4te.cache
config.h
config.log
config.status
stamp-h1
*.tar.gz
.tm_project.cache

4
po/ChangeLog Normal file
View File

@@ -0,0 +1,4 @@
2001-06-03 gettextize <bug-gnu-utils@gnu.org>
* Makefile.in.in: Upgrade to gettext-0.10.38.

248
po/Makefile.in.in Normal file
View File

@@ -0,0 +1,248 @@
# Makefile for program source directory in GNU NLS utilities package.
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
#
# This file file be copied and used freely without restrictions. It can
# be used in projects which are not available under the GNU Public License
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
PACKAGE = @PACKAGE@
VERSION = @VERSION@
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po
subdir = po
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
CC = @CC@
GENCAT = @GENCAT@
GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
MSGFMT = @MSGFMT@
XGETTEXT = PATH=../src:$$PATH @XGETTEXT@
MSGMERGE = PATH=../src:$$PATH msgmerge
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
INCLUDES = -I.. -I$(top_srcdir)/intl
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
SOURCES = cat-id-tbl.c
POFILES = @POFILES@
GMOFILES = @GMOFILES@
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
POTFILES = \
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
INSTOBJEXT = @INSTOBJEXT@
.SUFFIXES:
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
.c.o:
$(COMPILE) $<
.po.pox:
$(MAKE) $(PACKAGE).pot
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
.po.mo:
$(MSGFMT) -o $@ $<
.po.gmo:
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
&& rm -f $$file && $(GMSGFMT) -o $$file $<
.po.cat:
sed -f ../intl/po2msg.sed < $< > $*.msg \
&& rm -f $@ && $(GENCAT) $@ $*.msg
all: all-@USE_NLS@
all-yes: cat-id-tbl.c $(CATALOGS)
all-no:
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/POTFILES.in \
&& test ! -f $(PACKAGE).po \
|| ( rm -f $(srcdir)/$(PACKAGE).pot \
&& mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
$(srcdir)/cat-id-tbl.c: stamp-cat-id; @:
$(srcdir)/stamp-cat-id: $(PACKAGE).pot
rm -f cat-id-tbl.tmp
sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \
| sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp
if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \
rm cat-id-tbl.tmp; \
else \
echo cat-id-tbl.c changed; \
rm -f $(srcdir)/cat-id-tbl.c; \
mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \
fi
cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
install: install-exec install-data
install-exec:
install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(datadir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
case "$$cat" in \
*.gmo) destdir=$(gnulocaledir);; \
*) destdir=$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
dir=$$destdir/$$lang/LC_MESSAGES; \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $$dir; \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
fi; \
if test -r $$cat; then \
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
else \
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
fi; \
if test -r $$cat.m; then \
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
if test -r $(srcdir)/$$cat.m ; then \
$(INSTALL_DATA) $(srcdir)/$$cat.m \
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
true; \
fi; \
fi; \
done
if test "$(PACKAGE)" = "gettext"; then \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(gettextsrcdir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
$(gettextsrcdir)/Makefile.in.in; \
else \
: ; \
fi
# Define this as empty until I found a useful application.
installcheck:
uninstall:
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
done
rm -f $(gettextsrcdir)/po-Makefile.in.in
check: all
cat-id-tbl.o: ../intl/libgettext.h
dvi info tags TAGS ID:
mostlyclean:
rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp
rm -fr *.o
clean: mostlyclean
distclean: clean
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
rm -f $(GMOFILES)
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
dist distdir: update-po $(DISTFILES)
dists="$(DISTFILES)"; \
for file in $$dists; do \
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|| cp -p $(srcdir)/$$file $(distdir); \
done
update-po: Makefile
$(MAKE) $(PACKAGE).pot
PATH=`pwd`/../src:$$PATH; \
cd $(srcdir); \
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
mv $$lang.po $$lang.old.po; \
echo "$$lang:"; \
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
rm -f $$lang.old.po; \
else \
echo "msgmerge for $$cat failed!"; \
rm -f $$lang.po; \
mv $$lang.old.po $$lang.po; \
fi; \
done
POTFILES: POTFILES.in
( if test 'x$(srcdir)' != 'x.'; then \
posrcprefix='$(top_srcdir)/'; \
else \
posrcprefix="../"; \
fi; \
rm -f $@-t $@ \
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
| sed -e '$$s/\\$$//') > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )
Makefile: Makefile.in.in ../config.status POTFILES
cd .. \
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
$(SHELL) ./config.status
# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

5
po/POTFILES.in Normal file
View File

@@ -0,0 +1,5 @@
src/download_win.cpp
src/ftpsearch_win.cpp
src/init.cpp
src/main.cpp
src/prefs.cpp

180
po/cat-id-tbl.c Normal file
View File

@@ -0,0 +1,180 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-12-15 12:14+0600\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/download_win.cpp:522
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!\n"
msgstr ""
#: src/init.cpp:83
msgid "unable to create the directory to store the config info in"
msgstr ""
#: src/init.cpp:87
msgid "Error while stating the config info directory"
msgstr ""
#: src/main.cpp:178
#, c-format
msgid "%s. Version: %s\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:250
#, c-format
msgid ""
"Error: Invalid arguments for the -k option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:256
#, c-format
msgid ""
"Hey! How can I download anything with 0 (Zero) connections!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:267
#, c-format
msgid ""
"Error: Invalid arguments for the -t or --tries option(s)\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:316
#, c-format
msgid ""
"Error: Invalid arguments for the --retry-delay option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:327
#, c-format
msgid ""
"Error: Invalid arguments for the --timeout option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:364
#, c-format
msgid ""
"Error: Invalid arguments for the --pt option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:370
#, c-format
msgid ""
"Hey! Does waiting for a server response for Zero(0) seconds make and sense "
"to you!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:382 src/main.cpp:401
#, c-format
msgid ""
"Error: Invalid arguments for the --pao option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:388
#, c-format
msgid ""
"Hey you! Will pinging Zero(0) servers at once achive anything for me!?\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:407
#, c-format
msgid ""
"Hey! Will requesting Zero(0) servers at oncefrom the ftpearch achive "
"anything!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:419
#, c-format
msgid ""
"Error: Invalid arguments for the --max-bps option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:433
#, c-format
msgid ""
"Error: Invalid arguments for the --min-size option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:446
#, c-format
msgid ""
"Error: Invalid arguments for the --ftpsid option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:452
#, c-format
msgid ""
"The available servers are (0) filesearching.com and (1) ftpsearch.elmundo."
"es\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:461
#, c-format
msgid "Error: Invalid option\n"
msgstr ""
#: src/main.cpp:498
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr ""
#: src/prefs.cpp:549
msgid "could not open preferences file for reading"
msgstr ""

213
po/es.po Normal file
View File

@@ -0,0 +1,213 @@
# translation of proz.po to Espa<70>ol
# Copyright (C) 2006
# This file is distributed under the same license as the PACKAGE package.
#
# Luciano Bello <luciano@linux.org.ar>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: proz\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-12-11 21:45+0600\n"
"PO-Revision-Date: 2006-01-14 21:09-0300\n"
"Last-Translator: Luciano Bello <luciano@linux.org.ar>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: Espa<70>o<EFBFBD> <es@li.org>\n"
"X-Generator: KBabel 1.11.1\n"
#: src/download_win.cpp:527
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!\n"
msgstr ""
"Alguna de las conexiones para la descarga de %s di<64> un error irrecuperable,"
"t<><74>picamente es porque el archivo no est<73> presente en el servidor remoto, por lo que la"
" descarga ser<65> abortada!\n"
#: src/init.cpp:83
msgid "unable to create the directory to store the config info in"
msgstr "imposible crear el directorio para guardar la configuraci<63>n"
#: src/init.cpp:87
msgid "Error while stating the config info directory"
msgstr "Error mientras se define el directorio de configuraci<63>n"
#: src/main.cpp:178
#, c-format
msgid "%s. Version: %s\n"
msgstr "%s. Versi<73>n: %s\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:250
#, c-format
msgid ""
"Error: Invalid arguments for the -k option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argmentos no v<>lidos para la opci<63>n -k\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:256
#, c-format
msgid ""
"Hey! How can I download anything with 0 (Zero) connections!?\n"
"Please type proz --help for help\n"
msgstr ""
"<22>Hey! <20><>C<EFBFBD>mo har<61> para bajar algo con 0 (Cero) conexiones!?\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:267
#, c-format
msgid ""
"Error: Invalid arguments for the -t or --tries option(s)\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n -t o --tries\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:316
#, c-format
msgid ""
"Error: Invalid arguments for the --retry-delay option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --retry-delay\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:327
#, c-format
msgid ""
"Error: Invalid arguments for the --timeout option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --timeout\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:364
#, c-format
msgid ""
"Error: Invalid arguments for the --pt option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --pt\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:370
#, c-format
msgid ""
"Hey! Does waiting for a server response for Zero(0) seconds make and sense "
"to you!?\n"
"Please type proz --help for help\n"
msgstr ""
"<22>Hey! <20><>Tiene sentido esperar que el servidor responda en 0(Cero) segundos!?\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:382 src/main.cpp:401
#, c-format
msgid ""
"Error: Invalid arguments for the --pao option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --pao\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:388
#, c-format
msgid ""
"Hey you! Will pinging Zero(0) servers at once achive anything for me!?\n"
"Please type proz --help for help\n"
msgstr ""
"<22>Hey! Tiene sentido alguno enviar un ping a cero (0) servidores!?\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:407
#, c-format
msgid ""
"Hey! Will requesting Zero(0) servers at oncefrom the ftpearch achive "
"anything!?\n"
"Please type proz --help for help\n"
msgstr ""
""
"Please type proz --help for help\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:419
#, c-format
msgid ""
"Error: Invalid arguments for the --max-bps option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --max-bps\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:433
#, c-format
msgid ""
"Error: Invalid arguments for the --min-size option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --min-size\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:446
#, c-format
msgid ""
"Error: Invalid arguments for the --ftpsid option\n"
"Please type proz --help for help\n"
msgstr ""
"Error: Argumentos no v<>lidos para la opci<63>n --ftpsid\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:452
#, c-format
msgid ""
"The available servers are (0) filesearching.com and (1) ftpsearch.elmundo."
"es\n"
"Please type proz --help for help\n"
msgstr ""
"Los servidores disponibles son (0) filesearching.com y (1) ftpsearch.elmundo."
"es\n"
"Por favor, escriba proz --help para ver la ayuda\n"
#: src/main.cpp:461
#, c-format
msgid "Error: Invalid option\n"
msgstr "Error: Opci<63>n Inv<6E>lida\n"
#: src/main.cpp:498
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s no parece ser una URL v<>lida"
#: src/prefs.cpp:549
msgid "could not open preferences file for reading"
msgstr "imposible abrir el archivo de preferencias para la lectura"

BIN
po/fr.gmo Normal file

Binary file not shown.

523
po/fr.po Normal file
View File

@@ -0,0 +1,523 @@
# french po file for prozgui
# Copyright (C) 2001 Free Software Foundation, Inc.
# Eric Lassauge <lassauge@mail.dotcom.fr>, 2001
# http://lassauge.free.fr/linux.html
#
msgid ""
msgstr ""
"Project-Id-Version: prozgui 2.0.4\n"
"POT-Creation-Date: 2001-12-03 15:43+0100\n"
"PO-Revision-Date: 2001-12-03 15:43+0100\n"
"Last-Translator: Eric Lassauge <lassauge@mail.dotcom.fr>\n"
"Language-Team: Gozer le maudit <gozer@mailclub.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/we.cxx:81
msgid "ftpsearch.lycos.com"
msgstr ""
#: src/we.cxx:82
msgid "ftpsearch.uniovie.es"
msgstr ""
#: src/we.cxx:92
msgid "Prozilla Preferences Panel"
msgstr "Configuration des pr<70>f<EFBFBD>rences de Prozilla"
#: src/we.cxx:97
msgid "General"
msgstr "G<>n<EFBFBD>ral"
#: src/we.cxx:116
msgid "Number of Threads:"
msgstr "Nombre de \"Threads\":"
#: src/we.cxx:125
msgid "Use PASV for FTP transfers (recommended)"
msgstr "Utiliser PASV pour les transferts FTP (recommand<6E>)"
#: src/we.cxx:130
msgid ""
"Ask the HTTP proxies not to cache requests between sessions (default is off)"
msgstr ""
"Demander aux proxies HTTP de ne pas faire de cache pour les requ<71>tes "
"entre les sessions (pas fait par d<>faut)"
#: src/we.cxx:146
msgid "Retry Delay (Sec):"
msgstr "D<>lai entre les tentatives (sec):"
#: src/we.cxx:150
msgid "Timeout Period (Sec):"
msgstr "Dur<75>e de hors-temps (sec):"
#: src/we.cxx:154
msgid "Directory to download the files:"
msgstr "R<>pertoire o<> t<>l<EFBFBD>charger les fichiers:"
#: src/we.cxx:158
msgid "Limit bandwith usage PER download to (Kbps) (0 = unlimited):"
msgstr "Limiter la bande passante par t<>l<EFBFBD>chargement <20> (Kps) (0 = illimit<69>):"
#: src/we.cxx:166
msgid "Proxies"
msgstr ""
#: src/we.cxx:174 src/we.cxx:201
msgid "Hostname:"
msgstr "Nom d'h<>te:"
#: src/we.cxx:179 src/we.cxx:206
msgid "Port:"
msgstr ""
#: src/we.cxx:185
msgid "HTTP Proxy:"
msgstr "Proxy HTTP:"
#: src/we.cxx:190 src/we.cxx:212
msgid "Username:"
msgstr "Nom d'utilisateur:"
#: src/we.cxx:195 src/we.cxx:217
msgid "Password:"
msgstr "Mot de passe:"
#: src/we.cxx:223
msgid "FTP Proxy:"
msgstr "Proxy FTP:"
#: src/we.cxx:228
msgid "FTP Proxy Type:"
msgstr "Type de proxy FTP:"
#: src/we.cxx:235
msgid "Use HTTP Proxy"
msgstr "Utiliser un proxy HTTP"
#: src/we.cxx:240
msgid "Use FTP Proxy"
msgstr "Utiliser un proxy FTP"
#: src/we.cxx:248
msgid "Direct Connection to the Internet"
msgstr "Connexion directe <20> Internet"
#: src/we.cxx:255
msgid "Use proxies"
msgstr "Utiliser des proxies"
#: src/we.cxx:268
msgid "FTP Search"
msgstr "Recherche FTP"
#: src/we.cxx:274
msgid "Number of mirrors to request:"
msgstr "Nombre de sites miroirs <20> interroger:"
#: src/we.cxx:287
msgid "Ping Timeout (Sec):"
msgstr "Hors temps pour ping (Sec):"
#: src/we.cxx:296
msgid "Number of mirrors to ping at once:"
msgstr "Nombre de sites miroirs <20> contacter (ping) <20> la fois:"
#: src/we.cxx:309
msgid "Do FTPSearch automatically"
msgstr "Faire les recherches FTP automatiquement"
#: src/we.cxx:314
msgid "FTPSearch Server to use:"
msgstr "Serveur de recherche FTP <20> utiliser:"
#: src/we.cxx:331 src/we.cxx:4252 src/we.cxx:4653
msgid "OK"
msgstr ""
#: src/dl_win.cxx:102 src/we.cxx:335 src/we.cxx:4669
msgid "Cancel"
msgstr "Annuler"
#: src/we.cxx:4240
msgid "Prozilla Download Accelerator 2.0.4"
msgstr "Acc<63>l<EFBFBD>rateur de t<>l<EFBFBD>chargement Prozilla 2.0.4"
#: src/we.cxx:4246
msgid "GUI Version 2.0.4"
msgstr "IHM Version 2.0.4"
#: src/we.cxx:4249
msgid "libprozilla version 1.0.0"
msgstr ""
#: src/we.cxx:4264
msgid "Credits"
msgstr "Cr<43>dits"
#: src/we.cxx:4273
msgid "Kalum Somaratna - Main Programming"
msgstr "Kalum Somaratna - Programmeur principal"
#: src/we.cxx:4277
msgid "Uwe Hermann - Additional Programming"
msgstr "Uwe Hermann - Programmeur additionnel"
#: src/we.cxx:4280
msgid ""
"Gustavo Noronha Silva (KoV) - libprozilla GNU gettext support, deb package "
"maintainer"
msgstr ""
"Gustavo Noronha Silva (KoV) - Support GNU gettext pour "
"libprozilla, mainteneur du package debian"
#: src/we.cxx:4285
msgid "Ralph Slooten - Web Page Maintainer, RPM packager, testing"
msgstr "Ralph Slooten - Mainteneur des pages Web, empaqueteur RPM, tests"
#: src/we.cxx:4289
msgid ""
"If you have contributed and arent listed, I apologise and please mail me "
"<kalum@genesys.ro> and I will correct it"
msgstr ""
"Si vous avez contribu<62> et n'<27>tes pas list<73>, milles excuses et envoyez un mel <20>"
"<kalum@genesys.ro> et je corrigerais <20>a."
#: src/we.cxx:4294
msgid ""
"Silviu Marin-Caea - (Our sysadmin) Donation of valuable bandwith and system "
"resources at genesys.ro, testing"
msgstr ""
"Silviu Marin-Caea - (notre administrateur syst<73>me) Dons de bande passanteet "
"de ressources syst<73>me chez genesys.ro, tests"
#: src/we.cxx:4299
msgid "Pablo Iranzo G<>mez - testing"
msgstr "Pablo Iranzo G<>mez - tests"
#: src/we.cxx:4303
msgid "Krogg - The cool Prozilla logo"
msgstr "Krogg - Le logo Prozilla"
#: src/we.cxx:4307
msgid "David L. Matthews - testing"
msgstr "David L. Matthews - tests"
#: src/we.cxx:4315
msgid "Translations"
msgstr "Traductions"
#: src/we.cxx:4323
msgid "Ruben Boer - Dutch Translation"
msgstr "Ruben Boer - Traduction en hollandais"
#: src/we.cxx:4327
msgid "Ralph Slooten- Dutch Translation"
msgstr "Ralph Slooten - Traduction en hollandais"
#: src/we.cxx:4331
msgid "Flower - Romanian Translation"
msgstr "Flower - Traduction en roumain"
#: src/we.cxx:4335
msgid "Gustavo Noronha Silva (KoV) - Portugese Translation"
msgstr "Gustavo Noronha Silva (KoV) - Traduction en portugais"
#: src/we.cxx:4339
msgid "Emanuele Tatti (Kreazy) - Italian Translation"
msgstr "Emanuele Tatti (Kreazy) - Traduction en italien"
#: src/we.cxx:4343
msgid "Alberto Zanoni - Italian Translation"
msgstr "Alberto Zanoni - Traduction en italien"
#: src/we.cxx:4347
msgid "Eric Lassauge - French Translation"
msgstr "Eric Lassauge - Traduction en fran<61>ais"
#: src/we.cxx:4357
msgid "Webpage - http://prozilla.genesys.ro/"
msgstr "Site web - http://prozilla.genesys.ro/"
#: src/we.cxx:4651
msgid "Please enter the URL"
msgstr "Entrez l'URL"
#: src/we.cxx:4662
msgid "Enter URL (CTRL+V to paste from clipboard)"
msgstr ""
"Entrez l'URL (CTRL+V ou clic milieu pour copier depuis le presse-papier)"
#: src/we.cxx:4673
msgid "FTPSearch for mirrors (Experimental)"
msgstr "Recherches FTP pour les sites miroirs (exp<78>rimental)"
#: src/dl_win.cxx:14
msgid "Abort, Resume Later"
msgstr "Interrompre, continuer + tard"
#: src/dl_win.cxx:19 src/download_win.cpp:392
msgid "Pause"
msgstr ""
#: src/dl_win.cxx:25
msgid "Abort, No Resume Later"
msgstr "Interrompre, pas de continuation + tard"
#: src/dl_win.cxx:31
msgid "URL:"
msgstr ""
#: src/dl_win.cxx:70
msgid "Estimated Time Left"
msgstr "Temps restant estim<69>"
#: src/dl_win.cxx:98
msgid "Creating file.............."
msgstr "Cr<43>ation du fichier.............."
#: src/dl_win.cxx:137 src/dl_win.cxx:170 src/dl_win.cxx:208
msgid "Attention!"
msgstr ""
#: src/dl_win.cxx:141
msgid "Ok"
msgstr ""
#: src/dl_win.cxx:174 src/dl_win.cxx:212
msgid "Yes"
msgstr "Oui"
#: src/dl_win.cxx:178 src/dl_win.cxx:216
msgid "No"
msgstr "Non"
#: src/download_win.cpp:43
msgid "Are you Sure You want to quit?"
msgstr "Voulez-vous vraiment quitter?"
#: src/download_win.cpp:185
msgid "Creating the thread that gets info about file.."
msgstr "Cr<43>ation du \"thread\" qui r<>cup<75>re les informations sur le fichier..."
#: src/download_win.cpp:209
msgid "I am unable to delete the target file!"
msgstr "Impossible de d<>truire le fichier cible!"
#: src/download_win.cpp:242
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections"
msgstr ""
"Erreur lors du traitement du fichier de traces! Utilisation du nombrede "
"connections par d<>faut"
#: src/download_win.cpp:251
msgid ""
"The previous download used a different number of connections than the "
"default! so I will use the previous number of threads"
msgstr ""
"Le t<>l<EFBFBD>chargement pr<70>c<EFBFBD>dent utilisait un nombre de connections diff<66>rentde "
"la valeur par d<>faut! Utilisation du nombre de \"threads\" pr<70>c<EFBFBD>dent"
#: src/download_win.cpp:271
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections to delete"
msgstr ""
"Erreur lors du traitement du fichier de traces! Utilisation du nombrede "
"connections par d<>faut <20> d<>tuire"
#: src/download_win.cpp:294
#, c-format
msgid "The target file %s exists, would you like to overwrite it?"
msgstr "Le fichier cible %s existe, voulez-vous l'<27>craser?"
#: src/download_win.cpp:322
#, c-format
msgid ""
"Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr ""
"Un t<>l<EFBFBD>chargement pr<70>c<EFBFBD>dent de %s existe, voulez-vous l'<27>craser ou continuer?"
#: src/download_win.cpp:326
msgid "Resume"
msgstr "Continuer"
#: src/download_win.cpp:327
msgid "Overwrite"
msgstr "Ecraser"
#: src/download_win.cpp:372
msgid "RESUME supported"
msgstr "CONTINUATION possible"
#: src/download_win.cpp:380
msgid "RESUME NOT supported"
msgstr "CONTINUATION impossible"
#: src/download_win.cpp:445
msgid "UnPause"
msgstr "Fin de pause"
#: src/download_win.cpp:476
msgid "waiting for thread to end"
msgstr "attente de la fin du \"thread\""
#: src/download_win.cpp:478
msgid "Thread ended"
msgstr "Fin du \"thread\""
#: src/download_win.cpp:486
msgid "Got info succesfully"
msgstr "R<>cup<75>ration r<>ussie des informations"
#: src/download_win.cpp:489
#, c-format
msgid "File Size = %ld Kb"
msgstr "Taille du fichier: = %ld Ko"
#: src/download_win.cpp:493
msgid "File Size is UNKOWN"
msgstr "Taille du fichier INCONNUE"
#: src/download_win.cpp:527
#, c-format
msgid "The URL %s doesnt exist!"
msgstr "L'URL %s n'existe pas!"
#: src/download_win.cpp:558
msgid "No suitable mirrors were found, downloading from original server"
msgstr "Pas de site miroir trouv<75>, t<>l<EFBFBD>chargement depuis le site d'origine"
#: src/download_win.cpp:623
#, c-format
msgid "Total Bytes received %ld Kb"
msgstr "Total des octets recus %ld Ko"
#: src/download_win.cpp:628
#, c-format
msgid "Average Speed = %.3f Kb/sec"
msgstr "Vitesse moyenne = %.3f Ko/sec"
#: src/download_win.cpp:637
#, c-format
msgid "%d Seconds"
msgstr "%d secondes"
#: src/download_win.cpp:639
#, c-format
msgid "%d Minutes %d Seconds"
msgstr "%d minutes %d secondes"
#: src/download_win.cpp:642
#, c-format
msgid "%d Hours %d minutes"
msgstr "%d heures %d minutes"
#. Wait till all are completed
#: src/download_win.cpp:664
msgid "Waiting till all threads terminate"
msgstr "Attente de la fin de tous les \"threads\""
#: src/download_win.cpp:669
msgid "Got DL succesfully, now building file"
msgstr "T<>l<EFBFBD>chargement r<>ussi, reconstruction du fichier"
#: src/download_win.cpp:676
#, c-format
msgid "Building file %s ....."
msgstr "Reconstruction du fichier %s ....."
#: src/download_win.cpp:698
msgid ""
"Error the server/proxy lied about resuming so I have to restart this from "
"the beginning!"
msgstr ""
"Erreur, le serveur/proxy a donn<6E> une fausse information sur sa capacit<69><74> "
"ex<65>cuter une continuation, il est n<>cessaire de recommencer du d<>but!"
#: src/download_win.cpp:718
#, c-format
msgid ""
"One connection of the download %s encountered a unrecoverable local error, "
"usually lack of free space, or a write to bad medium, or a problem with "
"permissions,so please fix this and retry"
msgstr ""
"Une connexion du t<>l<EFBFBD>chargement %s a eu une erreur fatale, <20> priori manquede "
"place disque, ou <20>criture sur un support en erreur, ou une probl<62>me avecles "
"permissions de fichier, corriger ce probl<62>me avant de recommencer"
#: src/download_win.cpp:735
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!"
msgstr ""
"Une connexion du t<>l<EFBFBD>chargement %s a eu une erreur fatale, <20> priorile "
"fichier n'est pas pr<70>sent sur le serveur distant, le t<>l<EFBFBD>chargement a du<64>tre "
"interrompu!"
#: src/download_win.cpp:782 src/download_win.cpp:809
msgid "Close"
msgstr "Fermer"
#: src/main.cpp:225 src/main.cpp:351
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s n'est pas une URL valide"
#: src/main.cpp:232
#, c-format
msgid "%s contains just a hostname, it does not contain a file to download!"
msgstr "%s contient juste un nom d'h<>te, pas de fichier <20> t<>l<EFBFBD>charger!"
#: src/main.cpp:286
msgid "Error: Invalid option\n"
msgstr "Erreur: option invalide\n"
#: src/main.cpp:291
msgid "Prozilla - Download Accelerator"
msgstr "Prozilla - Acc<63>l<EFBFBD>rateur de t<>l<EFBFBD>chargement"
#: src/main.cpp:314
msgid "&File"
msgstr "&Fichier"
#: src/main.cpp:315
msgid "&New URL"
msgstr "&Nouvelle URL"
#: src/main.cpp:317
msgid "&Preferences"
msgstr "&Pr<50>f<EFBFBD>rences"
#: src/main.cpp:319
msgid "&Quit"
msgstr "&Quitter"
#: src/main.cpp:321
msgid "&Help"
msgstr "&Aide"
#: src/main.cpp:322
msgid "&About"
msgstr "A &Propos"
#: src/options.cpp:130
#, c-format
msgid "%s does not seem to be a valid directory"
msgstr "%s ne contient pas un r<>pertoire valide"
#: src/options.cpp:153
#, c-format
msgid "%s does not seem to be a valid HTTP proxy value"
msgstr "%s ne contient pas une valeur de proxy HTTP valide"
#: src/options.cpp:181
#, c-format
msgid "%s does not seem to be a valid FTP proxy value"
msgstr "%s ne contient pas une valeur de proxy FTP valide"

BIN
po/it.gmo Normal file

Binary file not shown.

498
po/it.po Normal file
View File

@@ -0,0 +1,498 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-09-27 12:56+0600\n"
"PO-Revision-Date: 2001-10-04 20:51+GMT\n"
"Last-Translator: \n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.7\n"
#: src/we.cxx:84
msgid "Prozilla Preferences Panel"
msgstr "Pannello Preferenze di Prozilla"
#: src/we.cxx:89
msgid "General"
msgstr "Generale"
#: src/we.cxx:108
msgid "Number of Threads:"
msgstr "Numero di Threads:"
#: src/we.cxx:117
msgid "Use PASV for FTP transfers (recommended)"
msgstr "Usa PASV per i trasferimenti FTP (raccomandato)"
#: src/we.cxx:122
msgid "Ask the HTTP proxies not to cache requests between sessions (default is off)"
msgstr ""
"Chiedi ai proxies HTTP di non mettere in cache le richieste tra le sessioni "
"(disabilitato per default)"
#: src/we.cxx:138
msgid "Retry Delay (Sec):"
msgstr "Ritardo tra i tentativi (Sec):"
#: src/we.cxx:142
msgid "Timeout Period (Sec):"
msgstr "Tempo di Timeout (Sec):"
#: src/we.cxx:146
msgid "Directory to download the files:"
msgstr "Directory dove scaricare i files:"
#: src/we.cxx:150
msgid "Limit bandwith usage PER download to (Kbps) (0 = unlimited):"
msgstr "Limita l'uso della banda per ogni download a (Kbps) (0 = illimitata):"
#: src/we.cxx:158
msgid "Proxies"
msgstr "Proxies"
#: src/we.cxx:166 src/we.cxx:193
msgid "Hostname:"
msgstr "Nome Host:"
#: src/we.cxx:171 src/we.cxx:198
msgid "Port:"
msgstr "Porta:"
#: src/we.cxx:177
msgid "HTTP Proxy:"
msgstr "Proxy HTTP:"
#: src/we.cxx:182 src/we.cxx:204
msgid "Username:"
msgstr "Nome utente:"
#: src/we.cxx:187 src/we.cxx:209
msgid "Password:"
msgstr "Password:"
#: src/we.cxx:215
msgid "FTP Proxy:"
msgstr "Proxy FTP:"
#: src/we.cxx:220
msgid "FTP Proxy Type:"
msgstr "Tipo di proxy FTP:"
#: src/we.cxx:227
msgid "Use HTTP Proxy"
msgstr "Usa Proxy HTTP"
#: src/we.cxx:232
msgid "Use FTP Proxy"
msgstr "Usa Proxy FTP"
#: src/we.cxx:240
msgid "Direct Connection to the Internet"
msgstr "Connessione Diretta a Internet"
#: src/we.cxx:247
msgid "Use proxies"
msgstr "Usa proxies"
#: src/we.cxx:260
msgid "FTP Search"
msgstr "Ricerca FTP"
#: src/we.cxx:266
msgid "Number of mirrors to request:"
msgstr "Numero di mirrors da richiedere:"
#: src/we.cxx:279
msgid "Ping Timeout (Sec):"
msgstr "Timeout del ping(Sec):"
#: src/we.cxx:288
msgid "Number of mirrors to ping at once:"
msgstr "Numero di mirrors da pingare alla volta:"
#: src/we.cxx:301
msgid "Do FTPSearch automatically"
msgstr "Effettua la ricerca FTP automaticamente"
#: src/we.cxx:312 src/we.cxx:4233 src/we.cxx:4626
msgid "OK"
msgstr "OK"
#: src/dl_win.cxx:102 src/we.cxx:316 src/we.cxx:4642
msgid "Cancel"
msgstr "Cancella"
#: src/we.cxx:4221
msgid "Prozilla Download Accelerator 2.0.4beta"
msgstr "Prozilla Download Accelerator 2.0.4beta"
#: src/we.cxx:4227
msgid "GUI Version 2.0.4beta"
msgstr "Versione GUI 2.0.4-beta"
#: src/we.cxx:4230
msgid "libprozilla version 1.0.0"
msgstr "Versione libprozilla 1.0.0"
#: src/we.cxx:4245
msgid "Credits"
msgstr "Crediti"
#: src/we.cxx:4254
msgid "Kalum Somaratna - Main Programming"
msgstr "Kalum Somaratna - Programmazione Principale"
#: src/we.cxx:4258
msgid "Uwe Hermann - Additional Programming"
msgstr "Uwe Hermann - Programmazione aggiutiva"
#: src/we.cxx:4261
msgid ""
"Gustavo Noronha Silva (KoV) - libprozilla GNU gettext support, deb package "
"maintainer"
msgstr "Gustavo Noronha Silva (KoV) - supporto libprozilla GNU gettext, maintenimento pacchetti deb"
#: src/we.cxx:4266
msgid "Ralph Slooten - Web Page Maintainer, RPM packager, testing"
msgstr "Ralph Slooten - Web Page Maintainer, RPM packager, testing"
#: src/we.cxx:4270
msgid ""
"If you have contributed and arent listed, I apologise and please mail me "
"<kalum@genesys.ro> and I will correct it"
msgstr ""
"Se hai contribuito e non sei nella lista, ti prego di mandarmi un email"
"<kalum@genesys.ro> e la corregger<65>"
#: src/we.cxx:4275
msgid ""
"Silviu Marin-Caea - (Our sysadmin) Donation of valuable bandwith and system "
"resources at genesys.ro, testing"
msgstr ""
"Silviu Marin-Caea - (Nostro amministratore di sistema) Donazione considerevole di banda "
"e risorse di sistema a genesys.ro, testing"
#: src/we.cxx:4280
msgid "Pablo Iranzo G<>mez - testing"
msgstr "Pablo Iranzo G<>mez - testing"
#: src/we.cxx:4284
msgid "Krogg - The cool Prozilla logo"
msgstr "Krogg - Il simpatico logo di Prozilla"
#: src/we.cxx:4288
msgid "David L. Matthews - testing"
msgstr "David L. Matthews - testing"
#: src/we.cxx:4296
msgid "Translations"
msgstr "Traduzioni"
#: src/we.cxx:4304
msgid "Ruben Boer - Dutch Translation"
msgstr "Ruben Boer - Traduzione Belga"
#: src/we.cxx:4308
msgid "Ralph Slooten- Dutch Translation"
msgstr "Ralph Slooten- Traduzione Belga"
#: src/we.cxx:4312
msgid "Flower - Romanian Translation"
msgstr "Flower - Traduzione Rumena"
#: src/we.cxx:4316
msgid "Gustavo Noronha Silva (KoV) - Portugese Translation"
msgstr "Gustavo Noronha Silva (KoV) - Traduzione Portoghese"
#: src/we.cxx:4320
msgid "Emanuele Tatti (Kreazy) - Itallian Translation"
msgstr "Emanuele Tatti (Kreazy) - Traduzione Italiana"
#: src/we.cxx:4330
msgid "Webpage - http://prozilla.genesys.ro/"
msgstr "Webpage - http://prozilla.genesys.ro/"
#: src/we.cxx:4624
msgid "Please enter the URL"
msgstr "Per favore inserisci l'URL"
#: src/we.cxx:4635
msgid "Enter URL (CTRL+V to paste from clipboard)"
msgstr "Inserisci l'URL (CTRL+V per incollare dagli appunti)"
#: src/we.cxx:4646
msgid "FTPSearch for mirrors (Experimental)"
msgstr "Ricerca mirrors FTP (Sperimentale)"
#: src/dl_win.cxx:14
msgid "Abort, Resume Later"
msgstr "Abortisci; Riprendi pi<70> tardi"
#: src/dl_win.cxx:19 src/download_win.cpp:391
msgid "Pause"
msgstr "Pausa"
#: src/dl_win.cxx:25
msgid "Abort, No Resume Later"
msgstr "Abortisci; Non Riprendere"
#: src/dl_win.cxx:31
msgid "URL:"
msgstr "URL:"
#: src/dl_win.cxx:70
msgid "Estimated Time Left"
msgstr "Tempo mancante stimato"
#: src/dl_win.cxx:98
msgid "Creating file.............."
msgstr "Creando file..............."
#: src/dl_win.cxx:137 src/dl_win.cxx:170 src/dl_win.cxx:208
msgid "Attention!"
msgstr "Attenzione!"
#: src/dl_win.cxx:141
msgid "Ok"
msgstr "Ok"
#: src/dl_win.cxx:174 src/dl_win.cxx:212
msgid "Yes"
msgstr "Si"
#: src/dl_win.cxx:178 src/dl_win.cxx:216
msgid "No"
msgstr "No"
#: src/download_win.cpp:43
msgid "Are you Sure You want to quit?"
msgstr "Sei sicuro di voler abbandonare?"
#: src/download_win.cpp:183
msgid "Creating the thread that gets info about file.."
msgstr "Creando il thread che ottiene le informazioni sul file.."
#: src/download_win.cpp:208
msgid "I am unable to delete the target file!"
msgstr "Non riesco a cancellare il target file!"
#: src/download_win.cpp:241
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections"
msgstr ""
"Un errore <20> occorso durante la lettura del file di log! Uso il numero "
"predefinito di.connessioni"
#: src/download_win.cpp:250
msgid ""
"The previous download used a different number of connections than the "
"default! so I will use the previous number of threads"
msgstr ""
"Il download precedente usava un numero differente di connessioni rispetto al "
"numero predefinito! Uso il numero precedente di threads"
#: src/download_win.cpp:270
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections to delete"
msgstr ""
"Un errore <20> occorso durante la letture del file di log! Uso il numero "
"predefinito di connessioni da cancellare"
#: src/download_win.cpp:293
#, c-format
msgid "The target file %s exists, would you like to overwrite it?"
msgstr "Il target file %s esiste, lo vuoi sovrascrivere?"
#: src/download_win.cpp:321
#, c-format
msgid "Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr "Un precedente download di %s esiste, lo vuoi riprendere o sovrascrivere?"
#: src/download_win.cpp:325
msgid "Resume"
msgstr "Riprendi"
#: src/download_win.cpp:326
msgid "Overwrite"
msgstr "Sovrascrivi"
#: src/download_win.cpp:371
msgid "RESUME supported"
msgstr "RESUME supportato"
#: src/download_win.cpp:379
msgid "RESUME NOT supported"
msgstr "RESUME NON supportato"
#: src/download_win.cpp:444
msgid "UnPause"
msgstr "Riprendi"
#: src/download_win.cpp:477
msgid "waiting for thread to end"
msgstr "sto aspettando la fine del thread"
#: src/download_win.cpp:479
msgid "Thread ended"
msgstr "Thread terminato"
#: src/download_win.cpp:487
msgid "Got info succesfully"
msgstr "Ottenute le informazioni correttamente"
#: src/download_win.cpp:490
#, c-format
msgid "File Size = %ld Kb"
msgstr "Grandezza File = %ld Kb"
#: src/download_win.cpp:494
msgid "File Size is UNKOWN"
msgstr "La Grandezza del file <20> SCONOSCIUTA"
#: src/download_win.cpp:515
#, c-format
msgid "The URL %s doesnt exist!"
msgstr "L'URL %s non esiste!"
#: src/download_win.cpp:546
msgid "No suitable mirrors were found, downloading from original server"
msgstr "Non sono stati trovati mirrors validi, effettuo il download dal server originale"
#: src/download_win.cpp:596
#, c-format
msgid "Total Bytes received %ld Kb"
msgstr "Bytes ricevute in totale %ld kb"
#: src/download_win.cpp:601
#, c-format
msgid "Average Speed = %.3f Kb/sec"
msgstr "Velocit<69> di trasferimento media = %.3f Kb/sec"
#: src/download_win.cpp:610
#, c-format
msgid "%d Seconds"
msgstr "%d Secondi"
#: src/download_win.cpp:612
#, c-format
msgid "%d Minutes %d Seconds"
msgstr "%d Minuti %d Secondi"
#: src/download_win.cpp:615
#, c-format
msgid "%d Hours %d minutes"
msgstr "%d Ore %d Minuti"
#. Wait till all are completed
#: src/download_win.cpp:637
msgid "Waiting till all threads terminate"
msgstr "Sto aspettando la conclusione di tutti i threads"
#: src/download_win.cpp:642
msgid "Got DL succesfully, now building file"
msgstr "Ottenuti i DL correttamente, ora sto costruendo il file"
#: src/download_win.cpp:649
#, c-format
msgid "Building file %s ....."
msgstr "Costruendo file %s"
#: src/download_win.cpp:673
msgid ""
"Error the server/proxy lied about resuming so I have to restart this from "
"the begiining!"
msgstr ""
"Errore: a causa del server/proxy non <20> stato possibile riprendere il "
"download perci<63> devo riprendere dall'inizio!"
#: src/download_win.cpp:693
#, c-format
msgid ""
"One connection of the download %s encountered a unrecoverable local error, "
"usually lack of free space, or a write to bad medium, or a problem with "
"permissions,so pelase fix this and retry"
msgstr ""
"Una connessione del download %s <20> incappata in un errore locale "
"irreversibile, di solito a causa di mancanza di spazio su disco, o la "
"scrittura su un medium con problemi oppure un problema di persmesse, per "
"favore ripara il problema e riprova"
#: src/download_win.cpp:710
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!"
msgstr ""
"Una connessione del download %s <20> incappata in un errore remoto "
"irreversibile, di solito a causa dell'assenza del file sul server remoto, perci<63> il download deve essere abortito!"
#: src/download_win.cpp:761 src/download_win.cpp:788
msgid "Close"
msgstr "Chiudi"
#: src/main.cpp:225 src/main.cpp:351
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s non sembra essere un'URL valido"
#: src/main.cpp:232
#, c-format
msgid "%s contains just a hostname, it does not contain a file to download!"
msgstr "%s contiene solo il nome di un host, non contiene un file da scaricare!"
#: src/main.cpp:286
msgid "Error: Invalid option\n"
msgstr "Errore: opzione non valida\n"
#: src/main.cpp:291
msgid "Prozilla - Download Accelerator"
msgstr "Prozilla - Download Accelerator"
#: src/main.cpp:314
msgid "&File"
msgstr "&File"
#: src/main.cpp:315
msgid "&New URL"
msgstr "&Nuova URL"
#: src/main.cpp:317
msgid "&Preferences"
msgstr "&Preferenze"
#: src/main.cpp:319
msgid "&Quit"
msgstr "&Abbandona"
#: src/main.cpp:321
msgid "&Help"
msgstr "&Aiuto"
#: src/main.cpp:322
msgid "&About"
msgstr "&A proposito di..."
#: src/options.cpp:130
#, c-format
msgid "%s does not seem to be a valid directory"
msgstr "%s non sembra essere una directory valida"
#: src/options.cpp:153
#, c-format
msgid "%s does not seem to be a valid HTTP proxy value"
msgstr "%s non sembra essere un valore valido per un proxy HTTP"
#: src/options.cpp:181
#, c-format
msgid "%s does not seem to be a valid FTP proxy value"
msgstr "%s non sembra essere un valore valido per un proxy FTP"

BIN
po/nl.gmo Normal file

Binary file not shown.

422
po/nl.po Normal file
View File

@@ -0,0 +1,422 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-08-15 15:29+0600\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: src/we.cxx:49
msgid "USER@SITE"
msgstr "GEBRUIKER@SITE"
#: src/we.cxx:50
msgid "USER@ProxyUser@SITE"
msgstr "GEBRUIKER@ProxyUser@SITE"
#: src/we.cxx:51
msgid "USER@SITE_PROXYUSER"
msgstr "GEBRUIKER@SITE_PROXYUSER"
#: src/we.cxx:52
msgid "ProxyUser@SITE"
msgstr "ProxyUser@SITE"
#: src/we.cxx:53
msgid "LOGIN_then_USER@SITE"
msgstr "LOGIN_dan_GEBRUIKER@SITE"
#: src/we.cxx:54
msgid "OPENSITE"
msgstr "OPENSITE"
#: src/we.cxx:55
msgid "SITESITE"
msgstr "SITESITE"
#: src/we.cxx:56
msgid "HTTP"
msgstr "HTTP"
#: src/we.cxx:74
msgid "Prozilla Preferences Panel"
msgstr "Prozilla Instellingen"
#: src/we.cxx:79
msgid "General"
msgstr "Algemeen"
#: src/we.cxx:84
msgid "Retry Delay (Sec):"
msgstr ""
#: src/we.cxx:98
msgid "Number of Threads:"
msgstr ""
#: src/we.cxx:101
msgid "Timeout Period (Sec):"
msgstr ""
#: src/we.cxx:106
msgid "Use PASV for FTP transfers (recommended)"
msgstr "Gebruik PASV voor FTP vervoer"
#: src/we.cxx:110
msgid ""
"Ask the HTTP proxies not to cache requests between sessions (default is off)"
msgstr ""
#: src/we.cxx:115
msgid "Directory to download the files:"
msgstr "Download Map"
#: src/we.cxx:119
msgid "Limit bandwith usage PER download to (Kbps) (0 = unlimited):"
msgstr ""
#: src/we.cxx:128
msgid "Proxies"
msgstr "Proxies"
#: src/we.cxx:136 src/we.cxx:157
msgid "Hostname:"
msgstr "Hostname:"
#: src/we.cxx:140 src/we.cxx:161
msgid "Port:"
msgstr "Poort:"
#: src/we.cxx:145
msgid "HTTP Proxy:"
msgstr "HTTP Proxy:"
#: src/we.cxx:148 src/we.cxx:166
msgid "Username:"
msgstr "Gebruikersnaam"
#: src/we.cxx:152 src/we.cxx:170
msgid "Password:"
msgstr "Wachtwoord"
#: src/we.cxx:175
msgid "FTP Proxy:"
msgstr "FTP Proxy:"
#: src/we.cxx:178
msgid "FTP Proxy Type:"
msgstr "FTP Proxy Soort:"
#: src/we.cxx:183
msgid "Use HTTP Proxy"
msgstr "Gebruik HTTP Proxy"
#: src/we.cxx:187
msgid "Use FTP Proxy"
msgstr "Gebruik FTP Proxy"
#: src/we.cxx:194
msgid "Direct Connection to the Internet"
msgstr "Direct Internet Verbinding"
#: src/we.cxx:200
msgid "Use proxies"
msgstr "Proxies Gebruiken"
#: src/we.cxx:214 src/we.cxx:4175
msgid "OK"
msgstr "OK"
#: src/dl_win.cxx:85 src/we.cxx:218
msgid "Cancel"
msgstr "Annuleer"
#: src/we.cxx:4123
msgid "Prozilla Download Accelerator M1"
msgstr "Prozilla Download Accelerator"
#: src/we.cxx:4128
msgid "GUI Version 2.0.4-beta"
msgstr "GUI Versie 2.0.4-beta"
#: src/we.cxx:4131
msgid "libprozilla version 1.0.0"
msgstr "libprozilla versie 1.0.0"
#: src/we.cxx:4134
msgid "Credits"
msgstr ""
#: src/we.cxx:4140
msgid "Kalum Somaratna - Main Programming"
msgstr "Kalum Somaratna - Hoofd Programeren"
#: src/we.cxx:4143
msgid "Uwe Hermann - Additional Programming"
msgstr "Uwe Hermann - Extra Programeren"
#: src/we.cxx:4146
msgid ""
"Gustavo Noronha Silva (KoV) - libprozilla GNU gettext support, translator, "
"deb package maintainer"
msgstr ""
#: src/we.cxx:4151
msgid "Ralph Slooten - Web Page Maintainer, RPM packager, testing, translator"
msgstr "Ralph Slooten - Web Site Ontwikkelaar / Onderhoud, RPM packager, testen, vertaaling"
#: src/we.cxx:4155
msgid ""
"If you have contributed and arent listed, I apologise and please mail me "
"<kalum@genesys.ro> and I will correct it"
msgstr ""
#: src/we.cxx:4160
msgid ""
"Silviu Marin-Caea - (Our sysadmin) Donation of valuable bandwith and system "
"resources at genesys.ro, testing"
msgstr ""
#: src/we.cxx:4165
msgid "Pablo Iranzo G<>mez - testing"
msgstr "Pablo Iranzo G<>mez - testen"
#: src/we.cxx:4169
msgid "Krogg - The cool Prozilla logo"
msgstr "Krogg - de gaaf Prozilla logo"
#: src/dl_win.cxx:13
msgid "URL:"
msgstr "URL"
#: src/dl_win.cxx:56
msgid "Estimated Time Left"
msgstr "Gemmidelde Tijd Nog"
#: src/dl_win.cxx:64
msgid "Abort, Resume Later"
msgstr "Anneuleer, Later"
#: src/dl_win.cxx:68
msgid "Abort, No Resume Later"
msgstr "Annuleer, Geen "
#: src/dl_win.cxx:81
msgid "Creating file.............."
msgstr "Bestand maken.............."
#: src/dl_win.cxx:120 src/dl_win.cxx:153 src/dl_win.cxx:191
msgid "Attention!"
msgstr "Attentie!"
#: src/dl_win.cxx:124
msgid "Ok"
msgstr "OK"
#: src/dl_win.cxx:157 src/dl_win.cxx:195
msgid "Yes"
msgstr "Ja"
#: src/dl_win.cxx:161 src/dl_win.cxx:199
msgid "No"
msgstr "Nee"
#: src/download_win.cpp:42
msgid "Are you Sure You want to quit?"
msgstr "Weet U zeker dat U wil stoppen?"
#: src/download_win.cpp:171
msgid "I am unable to delete the target file!"
msgstr "Onmogelijk om de bestand te wissen!"
#: src/download_win.cpp:204
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections"
msgstr ""
#: src/download_win.cpp:213
msgid ""
"The previous download used a different number of connections than the "
"default! so I will use the previous number of threads"
msgstr ""
#: src/download_win.cpp:233
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections to delete"
msgstr ""
#: src/download_win.cpp:256
#, c-format
msgid "The target file %s exists, would you like to overwrite it?"
msgstr "De bestand %s bestaat al, wilt U het vervengen?"
#: src/download_win.cpp:284
#, c-format
msgid ""
"Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr ""
#: src/download_win.cpp:288
msgid "Resume"
msgstr ""
#: src/download_win.cpp:289
msgid "Overwrite"
msgstr "Overschrijven"
#: src/download_win.cpp:326
msgid "RESUME supported"
msgstr ""
#: src/download_win.cpp:334
msgid "RESUME NOT supported"
msgstr ""
#: src/download_win.cpp:378
msgid "waiting for thread to end"
msgstr ""
#: src/download_win.cpp:380
msgid "Thread ended"
msgstr ""
#: src/download_win.cpp:388
msgid "Got info succesfully"
msgstr ""
#: src/download_win.cpp:391
#, c-format
msgid "File Size = %ld Kb"
msgstr ""
#: src/download_win.cpp:395
msgid "File Size is UNKOWN"
msgstr ""
#: src/download_win.cpp:404
#, c-format
msgid "The URL %s doesnt exist!"
msgstr "De URL %s bestaat niet!"
#: src/download_win.cpp:451
#, c-format
msgid "Total Bytes received %ld Kb"
msgstr "Totaal Bytes ontvangen %ld Kb"
#: src/download_win.cpp:456
#, c-format
msgid "Average Speed = %.3f Kb/sec"
msgstr "Gemiddelde Snelheid = %.3f Kb/sec"
#: src/download_win.cpp:465
#, c-format
msgid "%d Seconds"
msgstr "%d Seconden"
#: src/download_win.cpp:467
#, c-format
msgid "%d Minutes %d Seconds"
msgstr "%d Minuten %d Seconden"
#: src/download_win.cpp:470
#, c-format
msgid "%d Hours %d minutes"
msgstr "%d Uren %d Minuten"
#. Wait till all are completed
#: src/download_win.cpp:492
msgid "Waiting till all threads terminate"
msgstr ""
#: src/download_win.cpp:497
msgid "Got DL succesfully, now building file"
msgstr ""
#: src/download_win.cpp:503
#, c-format
msgid "Building file %s ....."
msgstr ""
#: src/download_win.cpp:526
msgid ""
"Error the server/proxy lied about resuming so I have to restart this from "
"the begiining!"
msgstr ""
#: src/download_win.cpp:546
#, c-format
msgid ""
"One connection of the download %s encountered a unrecoverable local error, "
"usually lack of free space, or a write to bad medium, or a problem with "
"permissions,so pelase fix this and retry"
msgstr ""
#: src/download_win.cpp:593 src/download_win.cpp:619
msgid "Close"
msgstr "Sluiten"
#: src/download_win.cpp:685
msgid "Creating the thread that gets info about file.."
msgstr ""
#: src/main.cpp:145
msgid "Enter URL (CTRL+V to paste from clipboard)"
msgstr "URL toevoegen (CTRL+V van de klapper te plakken)"
#: src/main.cpp:158 src/main.cpp:306
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s is geen URL"
#: src/main.cpp:248
msgid "Error: Invalid option\n"
msgstr "Fout: Ongeldige optie\n"
#: src/main.cpp:253
msgid "Prozilla - Download Accelerator"
msgstr "Prozilla - Download Accelerator"
#: src/main.cpp:276
msgid "&File"
msgstr "&Bestand"
#: src/main.cpp:277
msgid "&New URL"
msgstr "&Nieuwe URL"
#: src/main.cpp:278
msgid "&Preferences"
msgstr "&Instellingen"
#: src/main.cpp:279
msgid "&About"
msgstr ""
#: src/main.cpp:280
msgid "&Quit"
msgstr ""
#: src/options.cpp:119
#, c-format
msgid "%s does not seem to be a valid directory"
msgstr ""
#: src/options.cpp:142
#, c-format
msgid "%s does not seem to be a valid HTTP proxy value"
msgstr ""
#: src/options.cpp:170
#, c-format
msgid "%s does not seem to be a valid FTP proxy value"
msgstr ""

180
po/proz.pot Normal file
View File

@@ -0,0 +1,180 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-12-15 12:14+0600\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/download_win.cpp:522
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!\n"
msgstr ""
#: src/init.cpp:83
msgid "unable to create the directory to store the config info in"
msgstr ""
#: src/init.cpp:87
msgid "Error while stating the config info directory"
msgstr ""
#: src/main.cpp:178
#, c-format
msgid "%s. Version: %s\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:250
#, c-format
msgid ""
"Error: Invalid arguments for the -k option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:256
#, c-format
msgid ""
"Hey! How can I download anything with 0 (Zero) connections!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:267
#, c-format
msgid ""
"Error: Invalid arguments for the -t or --tries option(s)\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:316
#, c-format
msgid ""
"Error: Invalid arguments for the --retry-delay option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:327
#, c-format
msgid ""
"Error: Invalid arguments for the --timeout option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:364
#, c-format
msgid ""
"Error: Invalid arguments for the --pt option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:370
#, c-format
msgid ""
"Hey! Does waiting for a server response for Zero(0) seconds make and sense "
"to you!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:382 src/main.cpp:401
#, c-format
msgid ""
"Error: Invalid arguments for the --pao option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:388
#, c-format
msgid ""
"Hey you! Will pinging Zero(0) servers at once achive anything for me!?\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:407
#, c-format
msgid ""
"Hey! Will requesting Zero(0) servers at oncefrom the ftpearch achive "
"anything!?\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:419
#, c-format
msgid ""
"Error: Invalid arguments for the --max-bps option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:433
#, c-format
msgid ""
"Error: Invalid arguments for the --min-size option\n"
"Please type proz --help for help\n"
msgstr ""
#.
#. * The call failed due to a invalid arg
#.
#: src/main.cpp:446
#, c-format
msgid ""
"Error: Invalid arguments for the --ftpsid option\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:452
#, c-format
msgid ""
"The available servers are (0) filesearching.com and (1) ftpsearch.elmundo."
"es\n"
"Please type proz --help for help\n"
msgstr ""
#: src/main.cpp:461
#, c-format
msgid "Error: Invalid option\n"
msgstr ""
#: src/main.cpp:498
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr ""
#: src/prefs.cpp:549
msgid "could not open preferences file for reading"
msgstr ""

40
po/prozgui.pot Normal file
View File

@@ -0,0 +1,40 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-12-09 08:50-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/download_win.cpp:186
#, c-format
msgid ""
"Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr ""
#: src/download_win.cpp:277
msgid "File Size is UNKOWN\n"
msgstr ""
#: src/download_win.cpp:492
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!\n"
msgstr ""
#: src/main.cpp:443
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr ""

BIN
po/pt_BR.gmo Normal file

Binary file not shown.

504
po/pt_BR.po Normal file
View File

@@ -0,0 +1,504 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Gustavo Noronha Silva <kov@debian.org>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: prozgui\n"
"POT-Creation-Date: 2001-09-27 12:56+0600\n"
"PO-Revision-Date: 2001-10-02\n"
"Last-Translator: Gustavo Noronha Silva <kov@debian.org>\n"
"Language-Team: Debian-BR <debian-l10n-portuguese@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: ENCODING\n"
#: src/we.cxx:84
msgid "Prozilla Preferences Panel"
msgstr "Painel de Prefer<65>ncias do Prozilla"
#: src/we.cxx:89
msgid "General"
msgstr "Geral"
#: src/we.cxx:108
msgid "Number of Threads:"
msgstr "N<>mero de Threads:"
#: src/we.cxx:117
msgid "Use PASV for FTP transfers (recommended)"
msgstr "Usar PASV para transfer<65>ncias FTP (recomendado)"
#: src/we.cxx:122
msgid ""
"Ask the HTTP proxies not to cache requests between sessions (default is off)"
msgstr "Pedir aos proxies HTTP para n<>o fazerem cache das requisi<73><69>es entre sess<73>es (o padr<64>o <20> desligado)"
#: src/we.cxx:138
msgid "Retry Delay (Sec):"
msgstr "Intervalo de Tentativas (Seg):"
#: src/we.cxx:142
msgid "Timeout Period (Sec):"
msgstr "Tempo Limite de Opera<72><61>o (Seg):"
#: src/we.cxx:146
msgid "Directory to download the files:"
msgstr "Diret<65>rio para onde os arquivos devem ir:"
#: src/we.cxx:150
msgid "Limit bandwith usage PER download to (Kbps) (0 = unlimited):"
msgstr "Limitar largura de banda por download para (Kbps) (0 = ilimitado):"
#: src/we.cxx:158
msgid "Proxies"
msgstr "Proxies"
#: src/we.cxx:166 src/we.cxx:193
msgid "Hostname:"
msgstr "Hostname:"
#: src/we.cxx:171 src/we.cxx:198
msgid "Port:"
msgstr "Porta:"
#: src/we.cxx:177
msgid "HTTP Proxy:"
msgstr "Proxy HTTP:"
#: src/we.cxx:182 src/we.cxx:204
msgid "Username:"
msgstr "Nome do usu<73>rio:"
#: src/we.cxx:187 src/we.cxx:209
msgid "Password:"
msgstr "Senha:"
#: src/we.cxx:215
msgid "FTP Proxy:"
msgstr "Proxy FTP:"
#: src/we.cxx:220
msgid "FTP Proxy Type:"
msgstr "Tipo de Proxy FTP:"
#: src/we.cxx:227
msgid "Use HTTP Proxy"
msgstr "Usar Proxy HTTP"
#: src/we.cxx:232
msgid "Use FTP Proxy"
msgstr "Usar Proxy FTP"
#: src/we.cxx:240
msgid "Direct Connection to the Internet"
msgstr "Conex<65>o Direta <20> Internet"
#: src/we.cxx:247
msgid "Use proxies"
msgstr "Usar Proxy"
#: src/we.cxx:260
msgid "FTP Search"
msgstr "FTP Search"
#: src/we.cxx:266
msgid "Number of mirrors to request:"
msgstr ""
#: src/we.cxx:279
msgid "Ping Timeout (Sec):"
msgstr "Tempo Limite de Opera<72><61>o (Seg):"
#: src/we.cxx:288
msgid "Number of mirrors to ping at once:"
msgstr ""
#: src/we.cxx:301
msgid "Do FTPSearch automatically"
msgstr ""
#: src/we.cxx:312 src/we.cxx:4233 src/we.cxx:4626
msgid "OK"
msgstr "OK"
#: src/dl_win.cxx:102 src/we.cxx:316 src/we.cxx:4642
msgid "Cancel"
msgstr "Cancelar"
#: src/we.cxx:4221
msgid "Prozilla Download Accelerator 2.0.4beta"
msgstr "Acelerador de Downloads Prozilla 2.0.4beta"
#: src/we.cxx:4227
msgid "GUI Version 2.0.4beta"
msgstr "Vers<72>o da GUI: 2.0.4beta"
#: src/we.cxx:4230
msgid "libprozilla version 1.0.0"
msgstr "Vers<72>o da libprozilla: 1.0.1"
#: src/we.cxx:4245
msgid "Credits"
msgstr "Cr<43>ditos"
#: src/we.cxx:4254
msgid "Kalum Somaratna - Main Programming"
msgstr "Kalum Somaratna - Programa<6D><61>o Principal"
#: src/we.cxx:4258
msgid "Uwe Hermann - Additional Programming"
msgstr "Uwe Hermann - Programa<6D><61>o Adicional"
#: src/we.cxx:4261
msgid ""
"Gustavo Noronha Silva (KoV) - libprozilla GNU gettext support, deb package "
"maintainer"
msgstr ""
"Gustavo Noronha Silva (KoV) - suporte a GNU gettext para a libprozilla e "
"mantenedor Debian"
#: src/we.cxx:4266
msgid "Ralph Slooten - Web Page Maintainer, RPM packager, testing"
msgstr "Ralph Slooten - Mantenedor da p<>gina Web, empacotador RPM, testador"
#: src/we.cxx:4270
msgid ""
"If you have contributed and arent listed, I apologise and please mail me "
"<kalum@genesys.ro> and I will correct it"
msgstr "Se voc<6F> contribuiu e n<>o est<73> listado, pe<70>o desculpas e por favor envie um email para <kalum@genesys.ro> e eu irei corrigir isso"
#: src/we.cxx:4275
msgid ""
"Silviu Marin-Caea - (Our sysadmin) Donation of valuable bandwith and system "
"resources at genesys.ro, testing"
msgstr "Silviu Marin-Caea - (Nosso Administrador de Sistema) Doa<6F><61>o de sistema e banda valorosos em genesys.ro e testador"
#: src/we.cxx:4280
msgid "Pablo Iranzo G<>mez - testing"
msgstr "Pablo Iranzo G<>mez - testador"
#: src/we.cxx:4284
msgid "Krogg - The cool Prozilla logo"
msgstr "Krogg - O logo do Prozilla"
#: src/we.cxx:4288
msgid "David L. Matthews - testing"
msgstr "David L. Matthews - testador"
#: src/we.cxx:4296
msgid "Translations"
msgstr "Tradu<64><75>es"
#: src/we.cxx:4304
msgid "Ruben Boer - Dutch Translation"
msgstr "Ruben Boer - Tradu<64><75>o Holandesa"
#: src/we.cxx:4308
msgid "Ralph Slooten- Dutch Translation"
msgstr "Ralph Slooten - Tradu<64><75>o Holandesa"
#: src/we.cxx:4312
msgid "Flower - Romanian Translation"
msgstr "Flower - Tradu<64><75>o Romena"
#: src/we.cxx:4316
msgid "Gustavo Noronha Silva (KoV) - Portugese Translation"
msgstr "Gustavo Noronha Silva (KoV) - Tradu<64><75>o para Portugu<67>s"
#: src/we.cxx:4320
msgid "Emanuele Tatti (Kreazy) - Itallian Translation"
msgstr ""
#: src/we.cxx:4330
msgid "Webpage - http://prozilla.genesys.ro/"
msgstr "P<>gina - http://prozilla.genesys.ro/"
#: src/we.cxx:4624
msgid "Please enter the URL"
msgstr "Por favor digite a URL"
#: src/we.cxx:4635
msgid "Enter URL (CTRL+V to paste from clipboard)"
msgstr "Digite a URL (CTRL+V para colar da <20>rea de transfer<65>ncia)"
#: src/we.cxx:4646
msgid "FTPSearch for mirrors (Experimental)"
msgstr ""
#: src/dl_win.cxx:14
msgid "Abort, Resume Later"
msgstr "Abortar, continuar mais tarde"
#: src/dl_win.cxx:19 src/download_win.cpp:391
msgid "Pause"
msgstr "Pausa"
#: src/dl_win.cxx:25
msgid "Abort, No Resume Later"
msgstr "Abortar, n<>o continuar"
#: src/dl_win.cxx:31
msgid "URL:"
msgstr "URL:"
#: src/dl_win.cxx:70
msgid "Estimated Time Left"
msgstr "Tempo Restante Estimado"
#: src/dl_win.cxx:98
msgid "Creating file.............."
msgstr "Criando arquivo.............."
#: src/dl_win.cxx:137 src/dl_win.cxx:170 src/dl_win.cxx:208
msgid "Attention!"
msgstr "Aten<65><6E>o!"
#: src/dl_win.cxx:141
msgid "Ok"
msgstr "Ok"
#: src/dl_win.cxx:174 src/dl_win.cxx:212
msgid "Yes"
msgstr "Sim"
#: src/dl_win.cxx:178 src/dl_win.cxx:216
msgid "No"
msgstr "N<>o"
#: src/download_win.cpp:43
msgid "Are you Sure You want to quit?"
msgstr "Tem certeza que quer sair?"
#: src/download_win.cpp:183
msgid "Creating the thread that gets info about file.."
msgstr "Criando a thread que obt<62>m informa<6D><61>es sobre o arquivo..."
#: src/download_win.cpp:208
msgid "I am unable to delete the target file!"
msgstr "Fui incapaz de remover o arquivo alvo!"
#: src/download_win.cpp:241
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections"
msgstr "Um erro aconteceu durante o processamento do arquivo de log! Assumindo n<>mero de conex<65>es padr<64>o"
#: src/download_win.cpp:250
msgid ""
"The previous download used a different number of connections than the "
"default! so I will use the previous number of threads"
msgstr "O download anterior usou um n<>mero de conex<65>es diferente do padr<64>o! Ent<6E>o eu usarei o n<>mero anterior de threads."
#: src/download_win.cpp:270
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections to delete"
msgstr "Um erro aconteceu durante o processamento do arquivo de log! Assumindo n<>mero de conex<65>es padr<64>o para remover."
#: src/download_win.cpp:293
#, c-format
msgid "The target file %s exists, would you like to overwrite it?"
msgstr "O arquivo alvo %s existe, gostaria de sobrescrev<65>-lo?"
#: src/download_win.cpp:321
#, c-format
msgid ""
"Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr "Download anterior de %s existe, quer continuar ou sobrescrever?"
#: src/download_win.cpp:325
msgid "Resume"
msgstr "Continuar"
#: src/download_win.cpp:326
msgid "Overwrite"
msgstr "Sobrescrever"
#: src/download_win.cpp:371
msgid "RESUME supported"
msgstr "CONTINUA<55><41>O suportada"
#: src/download_win.cpp:379
msgid "RESUME NOT supported"
msgstr "CONTINUA<55><41>O n<>o suportada"
#: src/download_win.cpp:444
msgid "UnPause"
msgstr "Despausa"
#: src/download_win.cpp:477
msgid "waiting for thread to end"
msgstr "esperando que a thread acabe"
#: src/download_win.cpp:479
msgid "Thread ended"
msgstr "Thread acabou"
#: src/download_win.cpp:487
msgid "Got info succesfully"
msgstr "Informa<6D><61>es conseguidas com <20>xito"
#: src/download_win.cpp:490
#, c-format
msgid "File Size = %ld Kb"
msgstr "Tamanho do arquivo = %ld Kb"
#: src/download_win.cpp:494
msgid "File Size is UNKOWN"
msgstr "Tamanho do arquivo DESCONHECIDO"
#: src/download_win.cpp:515
#, c-format
msgid "The URL %s doesnt exist!"
msgstr "A URL %s n<>o existe!"
#: src/download_win.cpp:546
msgid "No suitable mirrors were found, downloading from original server"
msgstr ""
#: src/download_win.cpp:596
#, c-format
msgid "Total Bytes received %ld Kb"
msgstr "Total de Bytes recebidos %ld Kb"
#: src/download_win.cpp:601
#, c-format
msgid "Average Speed = %.3f Kb/sec"
msgstr "Velocidade M<>dia = %.3f Kb/sec"
#: src/download_win.cpp:610
#, c-format
msgid "%d Seconds"
msgstr "%d Segundos"
#: src/download_win.cpp:612
#, c-format
msgid "%d Minutes %d Seconds"
msgstr "%d Minutos %d Segundos"
#: src/download_win.cpp:615
#, c-format
msgid "%d Hours %d minutes"
msgstr "%d Horas %d Minutos"
#. Wait till all are completed
#: src/download_win.cpp:637
msgid "Waiting till all threads terminate"
msgstr "Esperando at<61> que todas as threads completem"
#: src/download_win.cpp:642
msgid "Got DL succesfully, now building file"
msgstr "Download terminado com sucesso, agora reconstruindo arquivo"
#: src/download_win.cpp:649
#, c-format
msgid "Building file %s ....."
msgstr "Construindo arquivo %s ....."
#: src/download_win.cpp:673
msgid ""
"Error the server/proxy lied about resuming so I have to restart this from "
"the begiining!"
msgstr "Erro: o servidor/proxy mentei sobre continua<75><61>o e eu terei de come<6D>ar tudo do come<6D>o!"
#: src/download_win.cpp:693
#, c-format
msgid ""
"One connection of the download %s encountered a unrecoverable local error, "
"usually lack of free space, or a write to bad medium, or a problem with "
"permissions,so pelase fix this and retry"
msgstr "Uma conex<65>o do download %s encontrou um erro local irrecuper<65>el. Norlmalmente isso quer dizer falta de espa<70>o ou uma m<>dia ruim ou um problema de permiss<73>es, ent<6E>o por favor conserte o erro e tente novamente."
#: src/download_win.cpp:710
#, c-format
msgid ""
"A connection(s) of the download %s encountered a unrecoverable remote error, "
"usually the file not being present in the remote server, therefore the "
"download had to be aborted!"
msgstr "Uma conex<65>o do download %s encontrou um erro local irrecuper<65>el, normalmente isso quer dizer que o arquivo n<>o est<73> presente no servidor remoto, portanto o download teve de ser abortado!"
#: src/download_win.cpp:761 src/download_win.cpp:788
msgid "Close"
msgstr "Fechar"
#: src/main.cpp:225 src/main.cpp:351
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s n<>o parece uma URL v<>lida"
#: src/main.cpp:232
#, c-format
msgid "%s contains just a hostname, it does not contain a file to download!"
msgstr "%s cont<6E>m apenas o nome do host mas n<>o um nome de arquivo para baixar!"
#: src/main.cpp:286
msgid "Error: Invalid option\n"
msgstr "Erro: op<6F><70>o inv<6E>lida\n"
#: src/main.cpp:291
msgid "Prozilla - Download Accelerator"
msgstr "Prozilla - Acelerador de Download"
#: src/main.cpp:314
msgid "&File"
msgstr "&Arquivo"
#: src/main.cpp:315
msgid "&New URL"
msgstr "&Nova URL"
#: src/main.cpp:317
msgid "&Preferences"
msgstr "&Prefer<65>ncias"
#: src/main.cpp:319
msgid "&Quit"
msgstr "&Sair"
#: src/main.cpp:321
msgid "&Help"
msgstr ""
#: src/main.cpp:322
msgid "&About"
msgstr "&Sobre"
#: src/options.cpp:130
#, c-format
msgid "%s does not seem to be a valid directory"
msgstr "%s n<>o parece ser um diret<65>rio v<>lido"
#: src/options.cpp:153
#, c-format
msgid "%s does not seem to be a valid HTTP proxy value"
msgstr "%s n<>o parece ser um valor de proxy HTTP v<>lido"
#: src/options.cpp:181
#, c-format
msgid "%s does not seem to be a valid FTP proxy value"
msgstr "%s n<>o parece ser um valor de proxy FTP v<>lido"
#~ msgid "USER@SITE"
#~ msgstr "USU<53>RIO@SERVIDOR"
#~ msgid "USER@ProxyUser@SITE"
#~ msgstr "USU<53>RIO@USU<53>RIONOPROXY@SERVIDOR"
#~ msgid "USER@SITE_PROXYUSER"
#~ msgstr "USU<53>RIO@SERVIDOR_USU<53>RIONOPROXY"
#~ msgid "ProxyUser@SITE"
#~ msgstr "USU<53>RIONOPROXY@SERVIDOR"
#~ msgid "LOGIN_then_USER@SITE"
#~ msgstr "LOGIN_ent<6E>o_USU<53>RIO@SERVIDOR"
#~ msgid "OPENSITE"
#~ msgstr "SITEABERTO"
#~ msgid "SITESITE"
#~ msgstr "SERVIDORSERVIDOR"
#~ msgid "HTTP"
#~ msgstr "HTTP"

BIN
po/ro.gmo Normal file

Binary file not shown.

445
po/ro.po Normal file
View File

@@ -0,0 +1,445 @@
# Romanian messages for prozgui.
# Copyright (C) 2001 Free Software Foundation, Inc.
# Flower <flower_os@yahoo.com>, 2001.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-08-19 21:49+0600\n"
"PO-Revision-Date: 2001-08-21 06:14+0300\n"
"Last-Translator: Flower <flower_os@yahoo.com>\n"
"Language-Team: RTFS <rtfs-project@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: src/we.cxx:49
msgid "USER@SITE"
msgstr "USER@SITE"
#: src/we.cxx:50
msgid "USER@ProxyUser@SITE"
msgstr "USER@ProxyUser@SITE"
#: src/we.cxx:51
msgid "USER@SITE_PROXYUSER"
msgstr "USER@SITE_PROXYUSER"
#: src/we.cxx:52
msgid "ProxyUser@SITE"
msgstr "ProxyUser@SITE"
#: src/we.cxx:53
msgid "LOGIN_then_USER@SITE"
msgstr "LOGIN_then_USER@SITE"
#: src/we.cxx:54
msgid "OPENSITE"
msgstr "OPENSITE"
#: src/we.cxx:55
msgid "SITESITE"
msgstr "SITESITE"
#: src/we.cxx:56
msgid "HTTP"
msgstr "HTTP"
#: src/we.cxx:74
msgid "Prozilla Preferences Panel"
msgstr "Panoul de op<6F>iuni pentru Prozilla"
#: src/we.cxx:79
msgid "General"
msgstr "General"
#: src/we.cxx:98
msgid "Number of Threads:"
msgstr "Num<75>rul de fire:"
#: src/we.cxx:107
msgid "Use PASV for FTP transfers (recommended)"
msgstr "Folose<73>te PASV pentru transferurile FTP (recomandat)"
#: src/we.cxx:111
msgid ""
"Ask the HTTP proxies not to cache requests between sessions (default is off)"
msgstr ""
"Cere proxy-urilor de HTTP s<> nu p<>streze cererile <20>ntre sesiuni (implicit e inactiv)"
#: src/we.cxx:127
msgid "Retry Delay (Sec):"
msgstr "Pauz<75> <20>ntre <20>ncerc<72>ri (sec):"
#: src/we.cxx:131
msgid "Timeout Period (Sec):"
msgstr "Timp maxim (sec):"
#: src/we.cxx:135
msgid "Directory to download the files:"
msgstr ""
#: src/we.cxx:139
msgid "Limit bandwith usage PER download to (Kbps) (0 = unlimited):"
msgstr "Limiteaz<61> l<><6C>imea de band<6E> PER desc<73>rcare la (Kbps) (0 = nelimitat):"
#: src/we.cxx:147
msgid "Proxies"
msgstr "Proxy-uri"
#: src/we.cxx:155 src/we.cxx:180
msgid "Hostname:"
msgstr "Hostname:"
#: src/we.cxx:160 src/we.cxx:185
msgid "Port:"
msgstr "Port:"
#: src/we.cxx:166
msgid "HTTP Proxy:"
msgstr "Proxy HTTP:"
#: src/we.cxx:169 src/we.cxx:191
msgid "Username:"
msgstr "Nume de utilizator:"
#: src/we.cxx:174 src/we.cxx:196
msgid "Password:"
msgstr "Parola:"
#: src/we.cxx:202
msgid "FTP Proxy:"
msgstr "Proxy FTP:"
#: src/we.cxx:205
msgid "FTP Proxy Type:"
msgstr "Tipul de proxy FTP:"
#: src/we.cxx:211
msgid "Use HTTP Proxy"
msgstr "Folose<73>te proxy-ul HTTP"
#: src/we.cxx:215
msgid "Use FTP Proxy"
msgstr "Folose<73>te proxy-ul FTP"
#: src/we.cxx:222
msgid "Direct Connection to the Internet"
msgstr "Conexiune direct<63> la Internet"
#: src/we.cxx:228
msgid "Use proxies"
msgstr "Folose<73>te proxy-uri"
#: src/we.cxx:242 src/we.cxx:4203 src/we.cxx:4500
msgid "OK"
msgstr "OK"
#: src/dl_win.cxx:88 src/we.cxx:246 src/we.cxx:4516
msgid "Cancel"
msgstr "Renun<75><6E>"
#: src/we.cxx:4151
msgid "Prozilla Download Accelerator M2"
msgstr "Prozilla Download Accelerator M2"
#: src/we.cxx:4156
msgid "GUI Version 2.0.4-beta"
msgstr "Versiunea GUI 2.0.4-beta"
#: src/we.cxx:4159
msgid "libprozilla version 1.0.0"
msgstr "versiunea libprozilla 1.0.0"
#: src/we.cxx:4162
msgid "Credits"
msgstr "Mul<75>umiri"
#: src/we.cxx:4168
msgid "Kalum Somaratna - Main Programming"
msgstr "Kalum Somaratna - Programator principal"
#: src/we.cxx:4171
msgid "Uwe Hermann - Additional Programming"
msgstr "Uwe Hermann - Programator ajut<75>tor"
#: src/we.cxx:4174
msgid ""
"Gustavo Noronha Silva (KoV) - libprozilla GNU gettext support, translator, "
"deb package maintainer"
msgstr ""
"Gustavo Noronha Silva (KoV) - ajutor la GNU gettext pentru libprozilla, traduc<75>tor, "
"face pachetele deb"
#: src/we.cxx:4179
msgid "Ralph Slooten - Web Page Maintainer, RPM packager, testing, translator"
msgstr "Ralph Slooten - Men<65>ine pagina Web, face pachetele RPM, tester, traduc<75>tor"
#: src/we.cxx:4183
msgid ""
"If you have contributed and arent listed, I apologise and please mail me "
"<kalum@genesys.ro> and I will correct it"
msgstr ""
"Dac<61> a<>i contribuit <20>i nu sunte<74>i afi<66>at, <20>mi cer scuze <20>i v<> rog scrie<69>i<EFBFBD>mi la "
"<kalum@genesys.ro> <20>i<EFBFBD>mi voi corecta sc<73>parea"
#: src/we.cxx:4188
msgid ""
"Silviu Marin-Caea - (Our sysadmin) Donation of valuable bandwith and system "
"resources at genesys.ro, testing"
msgstr ""
"Silviu Marin-Caea - (sysadmin-ul nostru) Doneaz<61> l<><6C>ime de band<6E> <20>i resurse "
"sistem la genesys.ro, tester"
#: src/we.cxx:4193
msgid "Pablo Iranzo G<>mez - testing"
msgstr "Pablo Iranzo G<>mez - tester"
#: src/we.cxx:4197
msgid "Krogg - The cool Prozilla logo"
msgstr "Krogg - Meseria<69>ul logo pentru Prozilla"
#: src/we.cxx:4498
msgid "Please enter the URL"
msgstr "Introduce<63>i URL-ul"
#: src/we.cxx:4509
msgid "Enter URL (CTRL+V to paste from clipboard)"
msgstr "Introduce<63>i URL-ul (CTRL+V pentru lipire din clipboard)"
#: src/dl_win.cxx:14
msgid "Abort, Resume Later"
msgstr "Abandon, continu<6E>m mai t<>rziu"
#: src/dl_win.cxx:19
msgid "Abort, No Resume Later"
msgstr "Abandon, nu mai continu<6E>m"
#: src/dl_win.cxx:25
msgid "URL:"
msgstr "URL:"
#: src/dl_win.cxx:63
msgid "Estimated Time Left"
msgstr "Timp r<>mas estimat"
#: src/dl_win.cxx:84
msgid "Creating file.............."
msgstr "Creez fi<66>ierul.............."
#: src/dl_win.cxx:123 src/dl_win.cxx:156 src/dl_win.cxx:194
msgid "Attention!"
msgstr "Aten<65>ie!"
#: src/dl_win.cxx:127
msgid "Ok"
msgstr "Ok"
#: src/dl_win.cxx:160 src/dl_win.cxx:198
msgid "Yes"
msgstr "Da"
#: src/dl_win.cxx:164 src/dl_win.cxx:202
msgid "No"
msgstr "Nu"
#: src/download_win.cpp:42
msgid "Are you Sure You want to quit?"
msgstr "Sunte<74>i sigur c<> dori<72>i s<> ie<69>i<EFBFBD>i?"
#: src/download_win.cpp:172
msgid "I am unable to delete the target file!"
msgstr "Nu pot <20>terge fi<66>ierul destina<6E>ie!"
#: src/download_win.cpp:205
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections"
msgstr ""
"A ap<61>rut o eroare la procesarea fi<66>ierului de log! Presupun num<75>rul implicit "
"de conexiuni"
#: src/download_win.cpp:214
msgid ""
"The previous download used a different number of connections than the "
"default! so I will use the previous number of threads"
msgstr ""
"Desc<73>rcarea precedent<6E> a folosit alt num<75>r de conexiuni dec<65>t cel implicit! "
"Vom folosi deci num<75>rul vechi de conexiuni."
#: src/download_win.cpp:234
msgid ""
"A error occured while processing the logfile! Assuming default number of "
"connections to delete"
msgstr ""
"A ap<61>rut o eroare la procesarea fi<66>ierului de log! Presupun num<75>rul implicit "
"de conexiuni pentru <20>tergere"
#: src/download_win.cpp:257
#, c-format
msgid "The target file %s exists, would you like to overwrite it?"
msgstr "Fi<46>ierul destina<6E>ie %s exist<73>, dori<72>i s<><73>l suprascriem?"
#: src/download_win.cpp:285
#, c-format
msgid ""
"Previous download of %s exists, would you like to resume it or overwrite it?"
msgstr ""
"O desc<73>rcare anterioar<61> a lui %s exist<73>, dori<72>i s<><73>l continu<6E>m sau s<><73>l suprascriem?"
#: src/download_win.cpp:289
msgid "Resume"
msgstr "Continuare"
#: src/download_win.cpp:290
msgid "Overwrite"
msgstr "Suprascriere"
#: src/download_win.cpp:327
msgid "RESUME supported"
msgstr "CONTINUARE posibil<69>"
#: src/download_win.cpp:335
msgid "RESUME NOT supported"
msgstr "CONTINUARE imposibil<69>"
#: src/download_win.cpp:379
msgid "waiting for thread to end"
msgstr "a<>tept firul s<> se termine"
#: src/download_win.cpp:381
msgid "Thread ended"
msgstr "Fir terminat"
#: src/download_win.cpp:389
msgid "Got info succesfully"
msgstr "Informa<6D>ii primite"
#: src/download_win.cpp:392
#, c-format
msgid "File Size = %ld Kb"
msgstr "M<>rimea fi<66>ierului = %ld Kb"
#: src/download_win.cpp:396
msgid "File Size is UNKOWN"
msgstr "M<>rimea fi<66>ierului este necunoscut<75>"
#: src/download_win.cpp:405
#, c-format
msgid "The URL %s doesnt exist!"
msgstr "URL-ul %s nu exist<73>!"
#: src/download_win.cpp:451
#, c-format
msgid "Total Bytes received %ld Kb"
msgstr "Am primit %ld Kb"
#: src/download_win.cpp:456
#, c-format
msgid "Average Speed = %.3f Kb/sec"
msgstr "Viteza medie = %.3f Kb/sec"
#: src/download_win.cpp:465
#, c-format
msgid "%d Seconds"
msgstr "%d secunde"
#: src/download_win.cpp:467
#, c-format
msgid "%d Minutes %d Seconds"
msgstr "%d minute <20>i %d secunde"
#: src/download_win.cpp:470
#, c-format
msgid "%d Hours %d minutes"
msgstr "%d ore <20>i %d minute"
#. Wait till all are completed
#: src/download_win.cpp:492
msgid "Waiting till all threads terminate"
msgstr "A<>tept s<> se terminte toate firele"
#: src/download_win.cpp:497
msgid "Got DL succesfully, now building file"
msgstr "Desc<73>rcare terminat<61>, construiesc fi<66>ierul"
#: src/download_win.cpp:503
#, c-format
msgid "Building file %s ....."
msgstr "Construiesc fi<66>ierul %s ....."
#: src/download_win.cpp:527
msgid ""
"Error the server/proxy lied about resuming so I have to restart this from "
"the begiining!"
msgstr ""
"Eroare serverul/proxy-ul a min<69>it referitor la continuare deci trebuie s<> "
"reiau de la <20>nceput!"
#: src/download_win.cpp:547
#, c-format
msgid ""
"One connection of the download %s encountered a unrecoverable local error, "
"usually lack of free space, or a write to bad medium, or a problem with "
"permissions,so pelase fix this and retry"
msgstr ""
"Una dintre conexiunile desc<73>rc<72>rii %s a <20>nt<6E>mpinat o eroare local<61> nereparabil<69>, "
"de obicei cauzat<61> de lipsa de spa<70>iu, scrierea pe suport defectuos sau o problem<65> "
"cu permisiunile, deci repara<72>i eroarea <20>i re<72>ncerca<63>i"
#: src/download_win.cpp:596 src/download_win.cpp:621
msgid "Close"
msgstr "<22>nchide"
#: src/download_win.cpp:689
msgid "Creating the thread that gets info about file.."
msgstr "Creez firul care ia informa<6D>ii despre fi<66>ier."
#: src/main.cpp:222 src/main.cpp:335
#, c-format
msgid "%s does not seem to be a valid URL"
msgstr "%s nu pare s<> fie un URL valid"
#: src/main.cpp:275
msgid "Error: Invalid option\n"
msgstr "Eroare: optiune invalid<69>\n"
#: src/main.cpp:280
msgid "Prozilla - Download Accelerator"
msgstr "Prozilla - Download Accelerator"
#: src/main.cpp:303
msgid "&File"
msgstr "&Fi<46>ier"
#: src/main.cpp:304
msgid "&New URL"
msgstr "URL &nou"
#: src/main.cpp:305
msgid "&Preferences"
msgstr "&Preferin<69>e"
#: src/main.cpp:306
msgid "&About"
msgstr "&Despre"
#: src/main.cpp:307
msgid "&Quit"
msgstr "&Ie<49>ire"
#: src/options.cpp:119
#, c-format
msgid "%s does not seem to be a valid directory"
msgstr "%s nu pare s<> fie un director valid"
#: src/options.cpp:142
#, c-format
msgid "%s does not seem to be a valid HTTP proxy value"
msgstr "%s nu pare s<> fie o valoare valid<69> pentru proxy HTTP"
#: src/options.cpp:170
#, c-format
msgid "%s does not seem to be a valid FTP proxy value"
msgstr "%s nu pare s<> fie o valoare valid<69> pentru proxy FTP"

1
po/stamp-cat-id Normal file
View File

@@ -0,0 +1 @@
timestamp