Merge branch '1.12' of https://github.com/wesnoth/wesnoth into 1.12
This commit is contained in:
commit
505fa4681f
308 changed files with 21705 additions and 21176 deletions
2
Doxyfile
2
Doxyfile
|
@ -31,7 +31,7 @@ PROJECT_NAME = "The Battle for Wesnoth"
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.11.18+dev
|
||||
PROJECT_NUMBER = 1.11.19+dev
|
||||
|
||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||
# base path where the generated documentation will be put.
|
||||
|
|
11
INSTALL
11
INSTALL
|
@ -9,6 +9,8 @@ Contents:
|
|||
|
||||
You'll need to have these libraries and their development headers to build Wesnoth:
|
||||
|
||||
boost_filesystem >= 1.44.0
|
||||
boost_locale >= 1.48.0
|
||||
boost_iostreams >= 1.36.0
|
||||
boost_regex >= 1.36.0
|
||||
boost_serialization >= 1.36.0
|
||||
|
@ -20,19 +22,26 @@ You'll need to have these libraries and their development headers to build Wesno
|
|||
libpango (with cairo backend) >= 1.21.3
|
||||
libsdl >= 1.2.7
|
||||
libsdl-image >= 1.2 (with png support)
|
||||
libsdl-mixer >= 1.2 (with Vorbis support)
|
||||
libsdl-mixer >= 1.2.12 (with Vorbis support)
|
||||
vorbisfile
|
||||
libsdl-net
|
||||
libsdl-ttf >= 2.0.8
|
||||
libz
|
||||
libbz2
|
||||
|
||||
Note that problems with SDL 1.2.14 have been reported, thus we advise you to use SDL
|
||||
1.2.13 for now.
|
||||
|
||||
(Note also that although differring boost requirements are displayed, boost libs from different releases are in general incompatible and you should not mix and match.)
|
||||
|
||||
These libraries are optional dependencies that enable additional features:
|
||||
|
||||
libdbus-1 (used for desktop notifications)
|
||||
|
||||
As a temporary compatibility measure, it is possible to build the game without requiring boost filesystem or boost locale, using libintl for translations instead. The cost is that wesnoth won't support UTF-8 in filepaths on all platforms.
|
||||
For this, target filesystem.cpp and gettext.cpp instead of filesystem_boost.cpp and gettext_boost.cpp. For scons/cmake the "boost filesystem" option toggles these.
|
||||
Similarly it is possible, although not recommended, to compile the game with any libsdl-mixer version >= 1.2.0, at the cost of reduced UTF-8 support.
|
||||
|
||||
There are currently two ways to build wesnoth:
|
||||
* scons >= 0.98.3
|
||||
* cmake >= 2.6.0
|
||||
|
|
|
@ -14,51 +14,10 @@ The release team should empty this file after each release.
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
[section="Greatly improved unicode compliance"]
|
||||
Previous versions of wesnoth were unable, on some platforms (especially windows) to properly handle unicode characters, particularly for filesystem related issues. The following features should now work with full UTF-8 on all platforms:
|
||||
|
||||
- Loading and saving WML
|
||||
- Loading and saving games
|
||||
- Loading images and sounds
|
||||
- Loading fonts
|
||||
- Loading translations
|
||||
- Loading translated images
|
||||
- Loading of files in lua
|
||||
- Parsing command line arguments to wesnoth
|
||||
- Copying and pasting unicode from the clipboard
|
||||
|
||||
In particular, on windows, it should now be possible to install wesnoth to a path with non-ascii characters.
|
||||
|
||||
Related bug reports: http://forums.wesnoth.org/viewtopic.php?f=4&t=41018 , https://gna.org/bugs/?func=detailitem&item_id=5529 , https://gna.org/bugs/?13926 , https://gna.org/bugs/?func=detailitem&item_id=16293 , https://gna.org/bugs/?20089 , probably many more...
|
||||
[/section]
|
||||
|
||||
[section="Dependency update"]
|
||||
For the improvements just mentioned, it was necessary to increase the library dependencies of the game. By default, the game now requires:
|
||||
|
||||
Boost filesystem 1.44
|
||||
Boost locale (introduced in boost 1.48)
|
||||
SDL_mixer 1.2.12
|
||||
|
||||
For both scons and cmake, the first two may be disabled (and the old code used, rolling back results of previous section) by turning off the "enable boost filesystem" flag. For cmake, the third requirement may also be removed, reducing SDL_mixer dependency to 1.2.0, by using the ENABLE_PANDORA flag.
|
||||
|
||||
Wesnoth OS X builds and release packages do not use the new dependencies in order to retain support of OS X Leopard (10.5) for the Wesnoth 1.12 series. Unicode character support does not seem to be a problem on OS X.
|
||||
[/section]
|
||||
|
||||
[section="Example section 1"]
|
||||
Example contents 1.
|
||||
[/section]
|
||||
|
||||
[rasection="[i]Legend of Wesmere[/i]: Bug fixes”]Remaining known issues affecting [i]Legend of Wesmere[/i] (single player mode) have been fixed:
|
||||
|
||||
[list][*]“Ka’lian under attack”: fixed more issues due to new map size.
|
||||
[*]“Ka’lian under attack”: fixed two issues with fog. This fixes bug [bug]22880[/bug].
|
||||
[*]“Elves Last Stand”: fixed not all elvish leaders being able to recruit.
|
||||
[*]“Elves Last Stand”: fixed bugs in Olurf and Olurf's party arrival.
|
||||
[*]“Bounty Hunters”: fixed several coordinate issues due to new map size.
|
||||
[*]“Cliffs of Thoria”: fixed so that yetis can be seen moving in hole in fog.
|
||||
[*]Fixed player team name in several scenarios.
|
||||
[*]Fixed player side carryover in several scenarios.[/list][/rasection]
|
||||
|
||||
==========
|
||||
KNOWN BUGS
|
||||
==========
|
||||
|
|
13
changelog
13
changelog
|
@ -1,4 +1,12 @@
|
|||
Version 1.11.18+dev:
|
||||
Version 1.11.19+dev:
|
||||
* Language and i18n:
|
||||
* Updated translations: German
|
||||
* Miscellaneous and bug fixes:
|
||||
* Fixed recursive directory creation failing for working dir-relative paths
|
||||
without an explicit `./` at the start (e.g. in `wesnoth -p data/core foo`)
|
||||
for builds using Boost.filesystem.
|
||||
|
||||
Version 1.11.19:
|
||||
* Campaigns:
|
||||
* Legend of Wesmere:
|
||||
* Ka’lian under attack: fixed more issues due to new map size.
|
||||
|
@ -10,7 +18,7 @@ Version 1.11.18+dev:
|
|||
* Fixed player team name in several scenarios.
|
||||
* Fixed player side carryover in several scenarios.
|
||||
* Language and i18n:
|
||||
* Updated translations: Galician, German, Italian, Portuguese,
|
||||
* Updated translations: Czech, Galician, German, Italian, Portuguese,
|
||||
Scottish Gaelic, Slovak, Spanish
|
||||
* Lua API:
|
||||
* Upgraded Lua to version 5.2.3.
|
||||
|
@ -18,6 +26,7 @@ Version 1.11.18+dev:
|
|||
* Micro AIs: only display on-screen error messages when in debug mode
|
||||
* Nearest neighbor interpolation used when zooming in on units and terrains
|
||||
See https://github.com/wesnoth/wesnoth/pull/316 and related dev-talk email
|
||||
* New filesystem implementation based on boost filesystem
|
||||
* WML engine:
|
||||
* Fixed a bug that prevented [animate_unit] from displaying death or victory
|
||||
animations for those units that filter them based on weapon (eg. Wose)
|
||||
|
|
|
@ -572,7 +572,7 @@ This is the story of Kalenz, Landar, and of the Elves in the first days of the h
|
|||
[/message]
|
||||
#ifdef MULTIPLAYER
|
||||
{LOOT 25 1}
|
||||
{LOOT 25 7}
|
||||
{LOOT 25 2}
|
||||
#else
|
||||
{LOOT 50 1}
|
||||
#endif
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
|
@ -68,7 +68,7 @@ empregarase o primeiro escenario.
|
|||
Substitúe o directorio dos datos polo directorio indicado.
|
||||
.TP
|
||||
\fB\-\-data\-path\fP
|
||||
path the path of the data directory and exits.
|
||||
Devolve o directorio de datos do xogo.
|
||||
.TP
|
||||
\fB\-d, \-\-debug\fP
|
||||
Activa opcións adicionais no modo de ordes do xogo. Consulta o wiki en
|
||||
|
@ -185,23 +185,25 @@ Os erros de corrección trátanse coma erros graves.
|
|||
\fB\-t, \-\-test\fP
|
||||
Executa o xogo nun pequeno escenario de proba.
|
||||
.TP
|
||||
\fB\-\-userconfig\-dir\fP\fI\ name\fP
|
||||
sets the user configuration directory to \fIname\fP under $HOME or "My
|
||||
Documents\eMy Games" for windows. You can also specify an absolute path for
|
||||
the configuration directory outside the $HOME or "My Documents\eMy Games".
|
||||
Under X11 this defaults to $XDG_CONFIG_HOME or $HOME/.config/wesnoth, on
|
||||
other systems to the userdata path.
|
||||
\fB\-\-userconfig\-dir\fP\fI\ nome\fP
|
||||
Define \fInome\fP coma o nome do cartafol da configuración do usuario no seu
|
||||
directorio persoal («$HOME») ou «Os meus documentos\eOs meus xogos» en
|
||||
Windows. Tamén podes indicar unha ruta absoluta para o directorio da
|
||||
configuración fóra dos antes mencionados. En X11 o cartafol predeterminado é
|
||||
«$XDG_CONFIG_HOME» ou «$HOME/.config/wesnoth», noutros sistemas é a ruta de
|
||||
datos do usuario.
|
||||
.TP
|
||||
\fB\-\-userconfig\-path\fP
|
||||
Devolve a ruta do directorio da configuración do usuario.
|
||||
.TP
|
||||
\fB\-\-userdata\-dir\fP\fI\ name\fP
|
||||
sets the userdata directory to \fIname\fP under $HOME or "My Documents\eMy
|
||||
Games" for windows. You can also specify an absolute path for the userdata
|
||||
directory outside the $HOME or "My Documents\eMy Games".
|
||||
\fB\-\-userdata\-dir\fP\fI\ nome\fP
|
||||
Define \fInome\fP coma o nome do cartafol dos datos do usuario no seu
|
||||
directorio persoal («$HOME») ou «Os meus documentos\eOs meus xogos» en
|
||||
Windows. Tamén podes indicar unha ruta absoluta para o directorio dos datos
|
||||
fóra dos antes mencionados.
|
||||
.TP
|
||||
\fB\-\-userdata\-path\fP
|
||||
prints the path of the userdata directory and exits.
|
||||
Devolve a ruta do directorio dos datos do usuario.
|
||||
.TP
|
||||
\fB\-\-validcache\fP
|
||||
Asume que a caché está ben (perigoso).
|
||||
|
|
|
@ -37,7 +37,7 @@ Sconfiggi tutti i condottieri nemici usando un'oculata scelta di unità di
|
|||
combattimento, avendo cura di gestire le tue risorse di oro e villaggi. Ogni
|
||||
unità ha punti di forza e debolezze: per vincere, schiera le tue forze nel
|
||||
modo più vantaggioso impedendo al nemico di fare altrettanto. Le unità, con
|
||||
l'esperienza, acquistano nuove abilità e diventano più potenti. Gioca nella
|
||||
l’esperienza, acquistano nuove abilità e diventano più potenti. Gioca nella
|
||||
tua lingua e metti alla prova le tue capacità contro un abile nemico
|
||||
controllato dal computer, o unisciti alla numerosa comunità di giocatori
|
||||
on\-line.Crea le tue unità personalizzate, scenari o campagne, e condividile
|
||||
|
@ -54,7 +54,7 @@ salta direttamente alla campagna con identificatore
|
|||
<id_campagna>. Se non si specifica un identificatore, comparirà un
|
||||
menù dal quale sarà possibile selezionare una campagna. \fBNota:\fP Quando si
|
||||
usa questo switch, verifica attentamente di aver messo come ultimo parametro
|
||||
la directory dei dati, altrimenti il gioco scambierà l'identificatore della
|
||||
la directory dei dati, altrimenti il gioco scambierà l’identificatore della
|
||||
campagna/scenario per la directory.
|
||||
.TP
|
||||
\fB\-\-campaign\-difficulty [<difficoltà>\fP
|
||||
|
@ -69,15 +69,15 @@ primo scenario.
|
|||
sostituisce la directory dei dati con quella specificata
|
||||
.TP
|
||||
\fB\-\-data\-path\fP
|
||||
path the path of the data directory and exits.
|
||||
stampa il nome della cartella contenente i dati del gioco ed esce.
|
||||
.TP
|
||||
\fB\-d, \-\-debug\fP
|
||||
abilita le opzioni aggiuntive di controllo all'interno del gioco (vedi il
|
||||
abilita le opzioni aggiuntive di controllo all’interno del gioco (vedi il
|
||||
wiki presso http://www.wesnoth.org/wiki/CommandMode per maggiori
|
||||
informazioni sulla shell di comando).
|
||||
.TP
|
||||
\fB\-e,\ \-\-editor\fP\fI\ file\fP
|
||||
avvia il gioco direttamente dall'editor per le partite. Se \fIfile\fP è
|
||||
avvia il gioco direttamente dall’editor per le partite. Se \fIfile\fP è
|
||||
specificato, equivale a \fB\-l \-\-load\fP
|
||||
.TP
|
||||
\fB\-\-fps\fP
|
||||
|
@ -88,7 +88,7 @@ gioco sta generando attualmente.
|
|||
esegue il gioco a tutto schermo.
|
||||
.TP
|
||||
\fB\-\-gunzip\fP\fI\ infile.gz\fP
|
||||
decomprime un file che dev'essere in formato gzip e lo memorizza senza
|
||||
decomprime un file che dev’essere in formato gzip e lo memorizza senza
|
||||
suffisso .gz. Il file \fIinfile.gz\fP sarà rimosso.
|
||||
.TP
|
||||
\fB\-\-gzip\fP\fI\ infile\fP
|
||||
|
@ -102,7 +102,7 @@ standard ed esce.
|
|||
\fB\-l,\ \-\-load\fP\fI\ file\fP
|
||||
carica il salvataggio \fIfile\fP dalla directory standard dei salvataggi. Se
|
||||
usato insime alle optioni \fB\-e\fP o \fB\-\-editor\fP, lancia l’editor con aperta la
|
||||
mappa del \fIfile\fP. Se è una directory, l'editor lancerà una finestra di
|
||||
mappa del \fIfile\fP. Se è una directory, l’editor lancerà una finestra di
|
||||
dialogo con un elenco di mappe caricabili.
|
||||
.TP
|
||||
\fB\-\-log\-\fP\fIlivello\fP\fB=\fP\fIdominio1\fP\fB,\fP\fIdominio2\fP\fB,\fP\fI...\fP
|
||||
|
@ -187,23 +187,25 @@ errori di validazione sono trattati come errori fatali.
|
|||
\fB\-t, \-\-test\fP
|
||||
esegue il gioco con un piccolo scenario di test.
|
||||
.TP
|
||||
\fB\-\-userconfig\-dir\fP\fI\ name\fP
|
||||
sets the user configuration directory to \fIname\fP under $HOME or "My
|
||||
Documents\eMy Games" for windows. You can also specify an absolute path for
|
||||
the configuration directory outside the $HOME or "My Documents\eMy Games".
|
||||
Under X11 this defaults to $XDG_CONFIG_HOME or $HOME/.config/wesnoth, on
|
||||
other systems to the userdata path.
|
||||
\fB\-\-userconfig\-dir\fP\fI\ nome\fP
|
||||
imposta la directory di configurazione dell’utente a \fInome\fP sotto $HOME o
|
||||
"My Documents\eMy Games" per Windows. Puoi anche specificare un percorso
|
||||
assoluto per la directory di configurazione al di fuori di $HOME o "My
|
||||
Documents\eMy Games". In ambiente X11 lo la directory standard è
|
||||
$XDG_CONFIG_HOME o $HOME/.config/wesnoth, in altri ambienti corrisponde alla
|
||||
directory contenente i dati utente.
|
||||
.TP
|
||||
\fB\-\-userconfig\-path\fP
|
||||
stampa il percorso della cartella di configurazione ed esce.
|
||||
.TP
|
||||
\fB\-\-userdata\-dir\fP\fI\ name\fP
|
||||
sets the userdata directory to \fIname\fP under $HOME or "My Documents\eMy
|
||||
Games" for windows. You can also specify an absolute path for the userdata
|
||||
directory outside the $HOME or "My Documents\eMy Games".
|
||||
\fB\-\-userdata\-dir\fP\fI\ nome\fP
|
||||
imposta la directory di configurazione dell’utente a \fInome\fP sotto $HOME o
|
||||
"My Documents\eMy Games" per Windows. Puoi anche specificare un percorso
|
||||
assoluto per la directory di configurazione al di fuori di $HOME o "My
|
||||
Documents\eMy Games"
|
||||
.TP
|
||||
\fB\-\-userdata\-path\fP
|
||||
prints the path of the userdata directory and exits.
|
||||
stampa il percorso della cartella di configurazione dell’utente ed esce.
|
||||
.TP
|
||||
\fB\-\-validcache\fP
|
||||
assume che la cache sia valida (pericoloso).
|
||||
|
@ -215,7 +217,7 @@ mostra il numero di versione ed esce.
|
|||
esegue il gioco in una finestra.
|
||||
.TP
|
||||
\fB\-\-with\-replay\fP
|
||||
esegue il replay della partita caricata con l'opzione \fB\-\-load\fP.
|
||||
esegue il replay della partita caricata con l’opzione \fB\-\-load\fP.
|
||||
.
|
||||
.SH "opzioni per \-\-multiplayer"
|
||||
.
|
||||
|
@ -225,11 +227,11 @@ fazione. Normalmente è 1 o 2 ma dipende dal numero di giocatori possibili
|
|||
nello scenario scelto.
|
||||
.TP
|
||||
\fB\-\-ai_config\fP\fInumber\fP\fB=\fP\fIvalue\fP
|
||||
seleziona un file di configurazione da caricare per il controllo dell'IA di
|
||||
seleziona un file di configurazione da caricare per il controllo dell’IA di
|
||||
questa fazione.
|
||||
.TP
|
||||
\fB\-\-algorithm\fP\fInumero\fP\fB=\fP\fIvalore\fP
|
||||
seleziona un algoritmo non standard per il controllo dell'IA di questa
|
||||
seleziona un algoritmo non standard per il controllo dell’IA di questa
|
||||
fazione. Valori disponibili: \fBidle_ai\fP e \fBsample_ai\fP.
|
||||
.TP
|
||||
\fB\-\-controller\fP\fInumero\fP\fB=\fP\fIvalore\fP
|
||||
|
@ -237,13 +239,13 @@ seleziona il tipo di controllo per questa fazione. Valori disponibili:
|
|||
\fBhuman\fP e \fBai\fP.
|
||||
.TP
|
||||
\fB\-\-era=\fP\fIvalore\fP
|
||||
usa questa opzione per giocare nell'era selezionata invece che in quella
|
||||
usa questa opzione per giocare nell’era selezionata invece che in quella
|
||||
\fBDefault\fP. L'era è scelta per ID. Le ere sono descritte nel file
|
||||
data/multiplayer.cfg.
|
||||
.TP
|
||||
\fB\-\-exit\-at\-end\fP
|
||||
esce quando lo scenario è finito, senza mostrare la finestra delle
|
||||
vittorie/sconfitte, che richiede che l'utente prema il pulsante OK. Anche
|
||||
vittorie/sconfitte, che richiede che l’utente prema il pulsante OK. Anche
|
||||
questa opzione è usata per eseguire dei benchmark con script.
|
||||
.TP
|
||||
\fB\-\-ignore\-map\-settings\fP
|
||||
|
@ -255,7 +257,7 @@ utilizzare insime a \fB\-\-nogui\fP per eseguire benchmark con script.
|
|||
.TP
|
||||
\fB\-\-nogui\fP
|
||||
esegue il gioco senza GUI. Deve apparire prima di \fB\-\-multiplayer\fP per avere
|
||||
l'effetto desiderato.
|
||||
l’effetto desiderato.
|
||||
.TP
|
||||
\fB\-\-parm\fP\fInumero\fP\fB=\fP\fInome\fP\fB:\fP\fIvalore\fP
|
||||
imposta parametri aggiuntivi per questa fazione. Questo parametro dipende
|
||||
|
@ -268,11 +270,11 @@ seleziona uno scenario multigiocatore. lo scenario predefinito è
|
|||
\fBmultiplayer_The_Freelands\fP.
|
||||
.TP
|
||||
\fB\-\-side\fP\fInumero\fP\fB=\fP\fIvalore\fP
|
||||
seleziona una fazione dell'era attuale per questa squadra. La fazione è
|
||||
seleziona una fazione dell’era attuale per questa squadra. La fazione è
|
||||
scelta per ID. Le fazioni sono descritte nel file data/multiplayer.cfg.
|
||||
.TP
|
||||
\fB\-\-turns=\fP\fIvalore\fP
|
||||
imposta il numero di turni per lo scenario scelto. L'impostazione standard è
|
||||
imposta il numero di turni per lo scenario scelto. L’impostazione standard è
|
||||
\fB50\fP.
|
||||
.
|
||||
.SH "STATO DI USCITA"
|
||||
|
@ -300,7 +302,7 @@ Copyright \(co 2003\-2013 David White <davidnwhite@verizon.net>
|
|||
Questo gioco è rilasciato come Software Libero; viene rilasciato secondo i
|
||||
termini della licenza GPL versione 2 come pubblicata dalla Free Software
|
||||
Foundation. Non è fornita nessuna garanzia, né per la COMMERCIALIZZAZIONE né
|
||||
per l'ADEGUATEZZA AD UNO SCOPO PARTICOLARE.
|
||||
per l’ADEGUATEZZA AD UNO SCOPO PARTICOLARE.
|
||||
.
|
||||
.SH "SEE ALSO"
|
||||
.
|
||||
|
|
|
@ -64,11 +64,11 @@ lega il server ad una porta specifica. Se non viene specificata una porta,
|
|||
sarà usata la porta \fB15000\fP.
|
||||
.TP
|
||||
\fB\-t\ \fP\fInumero\fP\fB,\ \-\-threads\fP\fI\ numero\fP
|
||||
imposta il numero massimo di thread da usare per l'I/O (valore predefinito:
|
||||
imposta il numero massimo di thread da usare per l’I/O (valore predefinito:
|
||||
\fB5\fP,\ massimo:\ \fB30\fP).
|
||||
.TP
|
||||
\fB\-T\ \fP\fInumero\fP\fB,\ \-\-max\-threads\fP\fI\ numero\fP
|
||||
imposta il numero massimo di thread da creare. Se vale \fB0\fP non c'è limite
|
||||
imposta il numero massimo di thread da creare. Se vale \fB0\fP non c’è limite
|
||||
(valore predefinito: \fB0\fP).
|
||||
.TP
|
||||
\fB\-V, \-\-version\fP
|
||||
|
@ -101,7 +101,7 @@ amministratore.
|
|||
.TP
|
||||
\fBban_save_file\fP
|
||||
Percorso completo o relativo ad un file (compresso con gzip) che il server
|
||||
possa scrivere e leggere. L'elenco degli utenti messi al bando sarà
|
||||
possa scrivere e leggere. L’elenco degli utenti messi al bando sarà
|
||||
conservato in questo file e letto a tutti gli avvii del server.Percorso
|
||||
completo o relativo ad un file (compresso con gzip) che il server possa
|
||||
scrivere e leggere. L'elenco degli utenti messi al bando sarà conservato in
|
||||
|
@ -132,7 +132,7 @@ Il numero di messaggi permessi in un periodo di \fBmessages_time_period\fP
|
|||
(valore predefinito: \fB4\fP).
|
||||
.TP
|
||||
\fBmessages_time_period\fP
|
||||
Il periodo di tempo (in secondi) entro il quale rilevare un'inondazione di
|
||||
Il periodo di tempo (in secondi) entro il quale rilevare un’inondazione di
|
||||
messaggi (valore predefinito: \fB10\fP secondi).
|
||||
.TP
|
||||
\fBmotd\fP
|
||||
|
@ -161,7 +161,7 @@ fifo. Per dettagli, vedi i setaggi di \fBallow_remote_shutdown\fP.
|
|||
.TP
|
||||
\fBroom_save_file\fP
|
||||
Percorso del file in cui memorizzare le informazioni sulle stanze. Questo
|
||||
file è letto all'avvio del server e vi viene scritto in seguito. Se è vuoto
|
||||
file è letto all’avvio del server e vi viene scritto in seguito. Se è vuoto
|
||||
o non impostato, le stanze non saranno caricate o salvate.
|
||||
.TP
|
||||
\fBsalva_replays\fP
|
||||
|
@ -201,7 +201,7 @@ Una lista separata da virgole delle versioni daredirigere. Si comporta come
|
|||
\fBversions_accepted\fP per quello che riguarda lo schema dei caratteri jolly.
|
||||
.RE
|
||||
.P
|
||||
\fB[ban_time]\fP Un'etichetta per definire parole chiave comode per periodi di
|
||||
\fB[ban_time]\fP Un’etichetta per definire parole chiave comode per periodi di
|
||||
messa al bando temporanei.
|
||||
.RS
|
||||
.TP
|
||||
|
@ -230,13 +230,13 @@ del nick.
|
|||
.RS
|
||||
.TP
|
||||
\fBdb_host\fP
|
||||
(per user_handler=forum) L'hostname del server del database
|
||||
(per user_handler=forum) L’hostname del server del database
|
||||
.TP
|
||||
\fBdb_name\fP
|
||||
(per ser_handleu=forum) Il nome del database
|
||||
.TP
|
||||
\fBdb_user\fP
|
||||
(per user_handler=forum) Il nome dell'utente con cui connettersi al database
|
||||
(per user_handler=forum) Il nome dell’utente con cui connettersi al database
|
||||
.TP
|
||||
\fBdb_password\fP
|
||||
(per user_handler=forum) La password di questo utente
|
||||
|
@ -258,12 +258,12 @@ user_is_moderator TINYINT(4) NOT NULL DEFAULT 0);\fP
|
|||
giorni).
|
||||
.RE
|
||||
.P
|
||||
\fB[mail]\fP Configura un server SMTP attraverso il quale l'utente può inviare
|
||||
\fB[mail]\fP Configura un server SMTP attraverso il quale l’utente può inviare
|
||||
e\-mail. Attualmente utilizzato soltanto dallo user_handler sample.
|
||||
.RS
|
||||
.TP
|
||||
\fBserver\fP
|
||||
L'hostname del sever della posta
|
||||
L’hostname del sever della posta
|
||||
.TP
|
||||
\fBusername\fP
|
||||
Il nome utente per connettersi al server della posta.
|
||||
|
@ -272,7 +272,7 @@ Il nome utente per connettersi al server della posta.
|
|||
La password di questo utente.
|
||||
.TP
|
||||
\fBfrom_address\fP
|
||||
L'indirizzo reply\-to della tua posta.
|
||||
L’indirizzo reply\-to della tua posta.
|
||||
.TP
|
||||
\fBmail_port\fP
|
||||
La porta su cui il tuo server di posta è in ascolto. Omettendo un valore,
|
||||
|
@ -301,7 +301,7 @@ Copyright \(co 2003\-2013 David White <davidnwhite@verizon.net>
|
|||
Questo gioco è rilasciato come Software Libero; viene rilasciato secondo i
|
||||
termini della licenza GPL versione 2 come pubblicata dalla Free Software
|
||||
Foundation. Non è fornita nessuna garanzia, né per la COMMERCIALIZZAZIONE né
|
||||
per l'ADEGUATEZZA AD UNO SCOPO PARTICOLARE.
|
||||
per l’ADEGUATEZZA AD UNO SCOPO PARTICOLARE.
|
||||
.
|
||||
.SH "SEE ALSO"
|
||||
.
|
||||
|
|
|
@ -52,7 +52,7 @@ define o valor de Bits Por Pixel. Por exemplo:—\-bpp 32
|
|||
.TP
|
||||
\fB\-c, \-\-campaign \ [<campanha>]\fP
|
||||
vai directamente para a campanha com base nos parâmetros. Podes escolher a
|
||||
campanha duma lista se não especificaste nenhuma. \fBNota:\fP Ao usar esta
|
||||
campanha de uma lista se não especificaste nenhuma. \fBNota:\fP Ao usar esta
|
||||
opção por favor, verifique se especificaste o caminho do directório de dados
|
||||
como o argumento final, caso contrário o jogo vai tomar a ID da campanha /
|
||||
cenário como os dados padrão.
|
||||
|
@ -68,7 +68,7 @@ A ID do cenário da campanha escolhida. Por predefinição o primeiro cenário.
|
|||
substituirá o directório de dados com o especificado
|
||||
.TP
|
||||
\fB\-\-data\-path\fP
|
||||
path the path of the data directory and exits.
|
||||
imprime o nome do directório de dados e termina.
|
||||
.TP
|
||||
\fB\-d, \-\-debug\fP
|
||||
possibilita opções de comando adicionais de modo em\-jogo (veja a página wiki
|
||||
|
@ -80,7 +80,7 @@ inicia o editor de mapas directamente. Se o \fIficheiro\fP for especificado é
|
|||
equivalente a \fB\-l \-\-load\fP
|
||||
.TP
|
||||
\fB\-\-fps\fP
|
||||
mostra o número de imagens por segundo jogo, o está actualmente em execução,
|
||||
mostra o número de imagens por segundo jogo, o está atualmente em execução,
|
||||
a um canto da tela.
|
||||
.TP
|
||||
\fB\-f, \-\-fullscreen\fP
|
||||
|
@ -117,12 +117,12 @@ o número de frames por segundo que o jogo pode mostrar, o valor deve estar
|
|||
entre 1 e 1000, por defeito é \fB50\fP.
|
||||
.TP
|
||||
\fB\-m, \-\-multiplayer\fP
|
||||
inicia um jogo multijogador. Existem opções adicionais que podem ser usados
|
||||
em conjunto com este comando conforme explicado abaixo. E só estas opções
|
||||
inicia um jogo em rede. Existem opções adicionais que podem ser usados em
|
||||
conjunto com este comando conforme explicado abaixo. E só estas opções
|
||||
adicionais podem seguir \fB\-\-multiplayer\fP.
|
||||
.TP
|
||||
\fB\-\-no\-delay\fP
|
||||
executa o jogo sem atrasos para benchmark de gráficos. É seleccionado
|
||||
executa o jogo sem atrasos para benchmark de gráficos. É selecionado
|
||||
automaticamente pela opção \fB\-\-nogui\fP.
|
||||
.TP
|
||||
\fB\-\-nocache\fP
|
||||
|
@ -185,22 +185,23 @@ erros de validação são tratados como fatais.
|
|||
inicia o jogo com um pequeno cenário de teste.
|
||||
.TP
|
||||
\fB\-\-userconfig\-dir\fP\fI\ nome\fP
|
||||
sets the user configuration directory to \fIname\fP under $HOME or "My
|
||||
Documents\eMy Games" for windows. You can also specify an absolute path for
|
||||
the configuration directory outside the $HOME or "My Documents\eMy Games".
|
||||
Under X11 this defaults to $XDG_CONFIG_HOME or $HOME/.config/wesnoth, on
|
||||
other systems to the userdata path.
|
||||
define o diretório \fInome\fP do utilizador em $HOME ou “Os meus Documentos\Os
|
||||
Meus Jogos” em Windows. Também podes especificar o caminho absoluto para as
|
||||
configurações fora de $HOME ou “Os meus Documentos\Os Meus Jogos”. Em
|
||||
sistemas X11 este indica por predefinição até $XDG_CONFIG_HOME ou
|
||||
$HOME/.config/wesnoth, nos outros sistemas operativos ao diretório do
|
||||
utilizador.
|
||||
.TP
|
||||
\fB\-\-userconfig\-path\fP
|
||||
imprime o caminho da pasta de configurações de usuário e sai.
|
||||
.TP
|
||||
\fB\-\-userdata\-dir\fP\fI\ nome\fP
|
||||
sets the userdata directory to \fIname\fP under $HOME or "My Documents\eMy
|
||||
Games" for windows. You can also specify an absolute path for the userdata
|
||||
directory outside the $HOME or "My Documents\eMy Games".
|
||||
define o directório \fInome\fP do utilizador em $HOME ou “Os meus Documentos\Os
|
||||
Meus Jogos” em Windows. Também podes especificar o caminho absoluto para as
|
||||
configurações fora de $HOME ou “Os meus Documentos\Os Meus Jogos”.
|
||||
.TP
|
||||
\fB\-\-userdata\-path\fP
|
||||
prints the path of the userdata directory and exits.
|
||||
imprime o caminho da pasta de configurações de usuário e termina.
|
||||
.TP
|
||||
\fB\-\-validcache\fP
|
||||
assume que a cache é válida. (perigoso)
|
||||
|
@ -217,12 +218,12 @@ inicia uma revisão do jogo carregado com a opção \fB\-\-load\fP.
|
|||
.SH "Opções para \-\-multiplayer"
|
||||
.
|
||||
As opções específicas para equipas em modo de rede estão marcadas com
|
||||
<número>. <número> deve ser substituído pelo número duma
|
||||
<número>. <número> deve ser substituído pelo número de uma
|
||||
eqiuipa. Normalmente esse número é 1 ou 2, mas isso depende do número de
|
||||
jogadores permitidos no cenário escolhido.
|
||||
.TP
|
||||
\fB\-\-ai_config\fP\fInúmero\fP\fB=\fP\fIvalor\fP
|
||||
selecciona um arquivo de configuração para carregar para o controlador de IA
|
||||
seleciona um arquivo de configuração para carregar para o controlador de IA
|
||||
para esta equipa.
|
||||
.TP
|
||||
\fB\-\-algorithm\fP\fInúmero\fP\fB=\fP\fIvalor\fP
|
||||
|
@ -230,17 +231,17 @@ Escolhe um algoritmo não padrão para ser usado pelo controlador da IA para
|
|||
esta equipa. Valores possíveis: \fBidle_ai\fP e \fBsample_ai\fP.
|
||||
.TP
|
||||
\fB\-\-controller\fP\fInúmero\fP\fB=\fP\fIvalor\fP
|
||||
selecciona quem controlará esta equipa. Valores disponíveis: \fBhuman\fP e
|
||||
seleciona quem controlará esta equipa. Valores disponíveis: \fBhuman\fP e
|
||||
\fBai\fP.
|
||||
.TP
|
||||
\fB\-\-era=\fP\fIvalor\fP
|
||||
usa esta opção para jogar a era seleccionada em vez da \fBPadrão\fP. A era é
|
||||
usa esta opção para jogar a era selecionada em vez da \fBPadrão\fP. A era é
|
||||
escolhida pela id. Eras são descritas num ficheiro em
|
||||
\fBdata/multiplayer/eras.cfg\fP
|
||||
.TP
|
||||
\fB\-\-exit\-at\-end\fP
|
||||
sai quando o cenário acabar, sem mostrar um dialogo de vitória/derrota que
|
||||
requer a interacção do usuário. Também é usado para benchmarking
|
||||
requer a interação do usuário. Também é usado para benchmarking
|
||||
preconfigurado.
|
||||
.TP
|
||||
\fB\-\-ignore\-map\-settings\fP
|
||||
|
@ -260,11 +261,11 @@ usadas com \fB\-\-controller\fP e \fB\-\-algorithm.\fP Só terá utilidade para
|
|||
cria a sua própria IA. (ainda não está completamente documentado)
|
||||
.TP
|
||||
\fB\-\-scenario=\fP\fIvalor\fP
|
||||
seleccionada o cenário multijogador pela id. O cenário padrão é
|
||||
selecionada o cenário em rede pela id. O cenário padrão é
|
||||
\fBmultiplayer_The_Freelands\fP.
|
||||
.TP
|
||||
\fB\-\-side\fP\fInúmero\fP\fB=\fP\fIvalor\fP
|
||||
selecciona a facção a partir da era actual com base da sua id. Facções são
|
||||
seleciona a fação a partir da era atual com base da sua id. Fações são
|
||||
configuradas num ficheiro data/multiplayer.cfg
|
||||
.TP
|
||||
\fB\-\-turns=\fP\fIvalor\fP
|
||||
|
@ -287,7 +288,7 @@ Editado por Nils Kneuper <crazy\-ivanovic@gmx.net>, ott
|
|||
A página do manual foi escrita originalmente por Cyril Bouthors
|
||||
<cyril@bouthors.org>.
|
||||
.br
|
||||
Visita a página oficial do projecto: http://www.wesnoth.org/
|
||||
Visita a página oficial do projeto: http://www.wesnoth.org/
|
||||
.
|
||||
.SH "DIREITOS DE AUTOR"
|
||||
.
|
||||
|
|
|
@ -42,7 +42,7 @@ servidor aceita via o cliente wesnoth (/query) ou via fifo.
|
|||
.TP
|
||||
\fB\-c\ \fP\fIpath\fP\fB,\ \-\-config\fP\fI\ path\fP
|
||||
diz a wesnothd onde encontrar o ficheiro de configuração para usar. Veja a
|
||||
secção \fBCONFIGURAÇÃO DO SERVIDOR\fP abaixo para os comandos. Podes recarregar
|
||||
seção \fBCONFIGURAÇÃO DO SERVIDOR\fP abaixo para os comandos. Podes recarregar
|
||||
as configurações ao enviar um SIGHUP ao servidor.
|
||||
.TP
|
||||
\fB\-d, \-\-daemon\fP
|
||||
|
@ -101,7 +101,7 @@ servidor possa ler e escrever. Expulsões serão gravados para o arquivo e
|
|||
lidos de novo ao ligar o servidor.
|
||||
.TP
|
||||
\fBcompress_stored_rooms\fP
|
||||
Determina quando o arquivo 'rooms' pode ser lido e escrito em forma
|
||||
Determina quando o arquivo ‘rooms’ pode ser lido e escrito em forma
|
||||
compacta. O padrão é \fByes\fP.
|
||||
.TP
|
||||
\fBconnections_allowed\fP
|
||||
|
@ -124,7 +124,7 @@ O número de mensagens permitidas no período de
|
|||
\fBmessages_time_period\fP. (padrão: \fB4\fP)
|
||||
.TP
|
||||
\fBmessages_time_period\fP
|
||||
O período de tempo (em segundos) de inundação de mensagens é detectado
|
||||
O período de tempo (em segundos) de inundação de mensagens é detetado
|
||||
(padrão: \fB10\fP segundos)
|
||||
.TP
|
||||
\fBmotd\fP
|
||||
|
@ -134,7 +134,7 @@ A mensagem do dia.
|
|||
Determina quem pode criar novas salas no servidor. Os valores disponíveis
|
||||
são \fBeveryone\fP, \fBregistered\fP, \fBadmin\fP e \fBnobody\fP, e dar a permisão,
|
||||
respectivamente, para todos, de usuários registados, administradores ou
|
||||
criação desactivada de salas. O valor por defeito é \fBeveryone\fP.
|
||||
criação desativada de salas. O valor por defeito é \fBeveryone\fP.
|
||||
.TP
|
||||
\fBpasswd\fP
|
||||
A palavra\-passe usada para ganhar privilégios de administrador (por via
|
||||
|
@ -166,11 +166,11 @@ desta instalação do wesnoth)
|
|||
Exemplo: \fBversions_accepted="*"\fP aceita qualquer versão.
|
||||
.TP
|
||||
\fBuser_handler\fP
|
||||
The name of the user handler to use. Currently available user handlers are
|
||||
\fBforum\fP (to connect wesnothd to a phpbb forum database) and \fBsample\fP (a
|
||||
sample implementation of the user handler interface, if you use this on
|
||||
anything real you are insane). The default value is \fBforum\fP. You must also
|
||||
add a \fB[user_handler]\fP section, see below.
|
||||
O nome da base de dados de utilizadores para ser utilizado. De momento estão
|
||||
disponíveis \fBforum\fP (para ligar o servidor à base de dados phpp do fórum
|
||||
oficial) e \fBsample\fP (apenas um esboço, não é aconselhável correr o servidor
|
||||
num ambiente real com este). Por padrão \fBforum\fP é usado. Também terás de
|
||||
usar um \fB[user_handler]\fP como explicado abaixo.
|
||||
.
|
||||
.SS "Tags Globais:"
|
||||
.
|
||||
|
@ -210,10 +210,10 @@ as requisições dos clientes conectados para um outro servidor especificado.
|
|||
Aceita as mesmas chaves que \fB[redirect]\fP.
|
||||
.RE
|
||||
.P
|
||||
\fB[user_handler]\fP Configures the user handler. Available keys vary depending
|
||||
on which user handler is set with the \fBuser_handler\fP key. If no
|
||||
\fB[user_handler]\fP section is present in the configuration the server will
|
||||
run without any nick registration service.
|
||||
\fB[user_handler]\fP Define como gerir a base de dados de utilizadores. Opções
|
||||
disponíveis irão depender qual \fBuser_handler\fP esta em uso. Se nenhum
|
||||
\fB[user_handler]\fP é encontrado, então o servidor irá correr sem
|
||||
possibilidade de registo do nome de utilizador.
|
||||
.RS
|
||||
.TP
|
||||
\fBdb_host\fP
|
||||
|
@ -230,14 +230,15 @@ de dados
|
|||
(para user_handler=forum) a senha deste usuário
|
||||
.TP
|
||||
\fBdb_users_table\fP
|
||||
(for user_handler=forum) The name of the table in which your phpbb forums
|
||||
saves its user data. Most likely this will be <table\-prefix>_users
|
||||
(e.g. phpbb3_users).
|
||||
(para ser usado em conjunto com user_handler=forum) O nome da base de dados
|
||||
phpbb do fórum usado. Provavelmente será <table\-prefix>_users
|
||||
(p.ex. phpbb3_users).
|
||||
.TP
|
||||
\fBdb_extra_table\fP
|
||||
(for user_handler=forum) The name of the table in which wesnothd will save
|
||||
its own data about users. You will have to create this table manually, e.g.:
|
||||
\fBCREATE TABLE <table\-name>(username VARCHAR(255) PRIMARY KEY,
|
||||
(para ser usado em conjunto com user_handler=forum) O nome da base de dados
|
||||
onde o servidor irá guardar os seus próprios dados sobre os
|
||||
utilizadores. Terás de criar esta base de dados manualmente, por
|
||||
ex. \fBCREATE TABLE <table\-name>(username VARCHAR(255) PRIMARY KEY,
|
||||
user_lastvisit INT UNSIGNED NOT NULL DEFAULT 0, user_is_moderator TINYINT(4)
|
||||
NOT NULL DEFAULT 0);\fP
|
||||
.TP
|
||||
|
@ -267,7 +268,7 @@ A porta na qual o teu servidor de correio iniciar. O padrão é 25.
|
|||
.
|
||||
.SH "ESTADO DE SAÍDA"
|
||||
.
|
||||
O estado de saída normal é 0 se o servidor for correctamente fechado. Um
|
||||
O estado de saída normal é 0 se o servidor for corretamente fechado. Um
|
||||
estado de saída de 2 indica um erro com as opções da linha de comandos.
|
||||
.
|
||||
.SH AUTOR
|
||||
|
@ -278,7 +279,7 @@ Soliton <soliton.de@gmail.com> e Thomas Baumhauer
|
|||
<thomas.baumhauer@gmail.com>. Esta página de manual foi
|
||||
originalmente escrita por Cyril Bouthors <cyril@bouthors.org>.
|
||||
.br
|
||||
Visita a página oficial do projecto: http://www.wesnoth.org/
|
||||
Visita a página oficial do projeto: http://www.wesnoth.org/
|
||||
.
|
||||
.SH "DIREITOS DE AUTOR"
|
||||
.
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,12 @@ This is meant to be a concise list of player-visible changes (very minor
|
|||
changes may be omitted). For a complete list of changes, see the main
|
||||
changelog: https://github.com/wesnoth/wesnoth/blob/1.12/changelog
|
||||
|
||||
Version 1.11.18+dev:
|
||||
Version 1.11.19+dev:
|
||||
* Language and i18n:
|
||||
* Updated translations: German.
|
||||
|
||||
|
||||
Version 1.11.19:
|
||||
* Campaigns:
|
||||
* Legend of Wesmere:
|
||||
* Ka’lian under attack: fixed more issues due to new map size.
|
||||
|
@ -14,7 +19,7 @@ Version 1.11.18+dev:
|
|||
* Fixed player team name in several scenarios.
|
||||
* Fixed player side carryover in several scenarios.
|
||||
* Language and i18n:
|
||||
* Updated translations: Galician, German, Italian, Portuguese,
|
||||
* Updated translations: Czech, Galician, German, Italian, Portuguese,
|
||||
Scottish Gaelic, Slovak, Spanish.
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-ai.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-ai.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-anl.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-anl.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-aoi.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-aoi.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-did.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-did.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-dm.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-dm.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-dw.cpp.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"#-#-#-#-# wesnoth-dw.wml.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\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"
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.4-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-04-23 23:39-0000\n"
|
||||
"Last-Translator: Len vanDalsen <l.dog.96@gmail.com>\n"
|
||||
"Language-Team: afrikaans\n"
|
||||
|
@ -364,7 +364,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Kies 'n kaart om oop te maak"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Fout met Kaart laaiing"
|
||||
|
||||
|
@ -437,11 +437,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Speler"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ang\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-05-24 12:01-0500\n"
|
||||
"Last-Translator: Steven Panek (Espreon) <Majora700@gmail.com>\n"
|
||||
"Language-Team: Old English <http://wiki.wesnoth.org/OldEnglishTranslation>\n"
|
||||
|
@ -347,7 +347,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -414,11 +414,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ang@latin\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2013-05-28 18:24-0500\n"
|
||||
"Last-Translator: Steven Panek (Espreon) <Majora700@gmail.com>\n"
|
||||
"Language-Team: Old English <http://wiki.wesnoth.org/OldEnglishTranslation>\n"
|
||||
|
@ -356,7 +356,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -423,11 +423,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Plegere"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.4.2+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-07-01 17:35-0000\n"
|
||||
"Last-Translator: amnay <amnay@operamail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -386,7 +386,7 @@ msgid "Choose Target Map"
|
|||
msgstr "لاعب"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -459,12 +459,12 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
#, fuzzy
|
||||
msgid "Player"
|
||||
msgstr "اللاعبون:"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bg\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2007-05-14 22:02+0300\n"
|
||||
"Last-Translator: Nikolay Vladimirov <nikolay@vladimiroff.com>\n"
|
||||
"Language-Team: Български\n"
|
||||
|
@ -358,7 +358,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Избор на карта "
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -430,11 +430,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Играч"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 1.5.5+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-10-18 17:11+0200\n"
|
||||
"Last-Translator: Jordà Polo <jorda@ettin.org>\n"
|
||||
"Language-Team: Catalan <wesnoth-ca@ettin.org>\n"
|
||||
|
@ -358,7 +358,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Trieu el jugador"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "S'ha produït un error en carregar el mapa"
|
||||
|
||||
|
@ -432,11 +432,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jugador"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-10-11 18:18+0200\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -341,7 +341,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -408,11 +408,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-04-16 23:12+0100\n"
|
||||
"Last-Translator: Jan Dědič <jan.dedic@gmail.com>\n"
|
||||
"Language-Team: Czech <wesnoth-cs-l@nospam.buchtovi.cz>\n"
|
||||
|
@ -361,7 +361,7 @@ msgid "Choose Target Map"
|
|||
msgstr "vyber cílovou mapu"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Chyba načítání mapy"
|
||||
|
||||
|
@ -430,11 +430,11 @@ msgstr ""
|
|||
"Načten odkazovaný soubor mapy:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Hráč"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Velikost cílové mapy je odlišná od současné mapy"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.3+cvs\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2007-12-01 17:58+0200\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
@ -361,7 +361,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Vælg et kort til indlæsning"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -433,11 +433,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spiller"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-30 13:52+0100\n"
|
||||
"Last-Translator: Nils Kneuper <crazy-ivanovic AT gmx D O T net>\n"
|
||||
"Language-Team: irc://irc.freenode.net/#wesnoth-de\n"
|
||||
|
@ -356,7 +356,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Wählt die Zielkarte"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Fehler beim Laden der Karte"
|
||||
|
||||
|
@ -430,11 +430,11 @@ msgstr ""
|
|||
"Referenzierte Karte aus Datei geladen:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spieler"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Die Größe der Ziel-Karte weicht von der aktuellen Karte ab"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.5-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-03-12 10:36+0100\n"
|
||||
"Last-Translator: galicae <nikolaspapadop@yahoo.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -363,7 +363,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Επιλέξτε χάρτη για φόρτωση"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Σφάλμα κατά την φόρτωση χάρτη"
|
||||
|
||||
|
@ -439,11 +439,11 @@ msgstr ""
|
|||
"Φὀρτωση αρχείου χάρτη που παραπέμπεται:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Παίκτης"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
"To μέγεθος του επιλεγμένου χάρτη είναι διαφορετικό απο αυτό του τρέχοντος "
|
||||
|
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: en@shaw\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2009-10-08 21:45-0400\n"
|
||||
"Last-Translator: Arc Riley <arcriley@ubuntu.com>\n"
|
||||
"Language-Team: Shavian English <ubuntu-l10n-en-shaw@lists.launchpad.net>\n"
|
||||
|
@ -365,7 +365,7 @@ msgid "Choose Target Map"
|
|||
msgstr "𐑗𐑵𐑟 𐑑𐑸𐑜𐑧𐑑 𐑥𐑨𐑐"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "𐑻𐑹 𐑤𐑴𐑛𐑦𐑙 𐑥𐑨𐑐"
|
||||
|
||||
|
@ -440,11 +440,11 @@ msgstr ""
|
|||
"𐑤𐑴𐑛𐑩𐑛 𐑮𐑧𐑓𐑼𐑩𐑯𐑕𐑑 𐑥𐑨𐑐 𐑓𐑲𐑤:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "𐑐𐑤𐑱𐑻"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "𐑞 𐑕𐑲𐑟 𐑝 𐑞 𐑑𐑸𐑜𐑧𐑑 𐑥𐑨𐑐 𐑦𐑟 𐑛𐑦𐑓𐑼𐑩𐑯𐑑 𐑓𐑮𐑪𐑥 𐑞 𐑒𐑳𐑮𐑩𐑯𐑑 𐑥𐑨𐑐"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.11+cvs\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-09-01 16:50-0500\n"
|
||||
"Last-Translator: Steven Panek (Espreon) <Majora700@gmail.com>\n"
|
||||
"Language-Team: English (British) <http://wiki.wesnoth.org/"
|
||||
|
@ -361,7 +361,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Choose Target Map"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Error loading map"
|
||||
|
||||
|
@ -437,11 +437,11 @@ msgstr ""
|
|||
"Loaded referenced map file:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Player"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "The size of the target map is different from the current map"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.11+cvs\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-02-12 20:47+0200\n"
|
||||
"Last-Translator: Aleksej Korgenkov <grimpanto@mail.ru>\n"
|
||||
"Language-Team: eo-EO\n"
|
||||
|
@ -352,7 +352,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Elektu Mapon por Ŝarĝado"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -424,11 +424,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Ludanto"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-10-19 21:36+0100\n"
|
||||
"Last-Translator: Pepe <donpepe1963@gmail.com>\n"
|
||||
"Language-Team: Wesnoth\n"
|
||||
|
@ -359,7 +359,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Seleccionar mapa de destino"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Error al cargar el mapa"
|
||||
|
||||
|
@ -430,11 +430,11 @@ msgstr ""
|
|||
"Cargado el archivo de mapa indicado:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jugador"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "El tamaño del mapa de destino difiere del mapa actual"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.8-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-12-31 10:38+0300\n"
|
||||
"Last-Translator: Kaido Kikkas <kakk@kakupesa.net>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -366,7 +366,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Vali sihtkaart"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Viga kaardi laadimisel"
|
||||
|
||||
|
@ -442,11 +442,11 @@ msgstr ""
|
|||
"Laetud viidatud kaardifail:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Mängija"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Sihtkaart on lähtekaardist erineva suurusega"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2005-08-10 17:05+0200\n"
|
||||
"Last-Translator: Mikel Olasagasti <hey_neken@mundurat.net>\n"
|
||||
"Language-Team: Basque\n"
|
||||
|
@ -357,7 +357,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Hautatu kargatzeko mapa bat"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -429,11 +429,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jokalaria"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.4-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-01-15 15:29+0200\n"
|
||||
"Last-Translator: Jarkko Patteri <jarkkopatteri@gmail.com>\n"
|
||||
"Language-Team: Finnish <http://wiki.wesnoth.org/FinnishTranslation>\n"
|
||||
|
@ -367,7 +367,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Valitse kohdekartta"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Kartan lataus epännistui."
|
||||
|
||||
|
@ -444,11 +444,11 @@ msgstr ""
|
|||
"Ladattu viitattu karttatiedosto:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Pelaaja"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Kohdekartta on eri kokoinen kuin tämänhetkinen kartta."
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Wesnoth_Editor-1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-03-13 10:55+0100\n"
|
||||
"Last-Translator: Émile Enguehard <zerbugug@gmail.com>\n"
|
||||
"Language-Team: français <wesnoth@ml.free.fr>\n"
|
||||
|
@ -360,7 +360,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Choisir la carte de destination"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Erreur lors du chargement de la carte"
|
||||
|
||||
|
@ -431,11 +431,11 @@ msgstr ""
|
|||
"Fichier de carte référencée chargé :\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Joueur"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
"La taille de la carte de destination est différente de celle de la carte "
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-04-26 13:45+0200\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -347,7 +347,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -414,11 +414,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ga\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-02-18 12:50-0800\n"
|
||||
"Last-Translator: Carson Callis aka Mountian_King <tree_rings@rocketmail."
|
||||
"com>\n"
|
||||
|
@ -363,7 +363,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Roghnaigh léarscáil sprice"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Earraíd i lódáil an léarscáil"
|
||||
|
||||
|
@ -439,11 +439,11 @@ msgstr ""
|
|||
"Sábháladh comhad léarscáile atá tagartha:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Imreoir"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Wesnoth 1.10\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-03-16 07:25-0000\n"
|
||||
"Last-Translator: GunChleoc <fiosAIGforamnagaidhligDOTnet>\n"
|
||||
"Language-Team: Fòram na Gàidhlig http://www.foramnagaidhlig.net\n"
|
||||
|
@ -355,7 +355,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Tagh mapa amais"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Mearachd le luchdadh a’ mhapa"
|
||||
|
||||
|
@ -427,11 +427,11 @@ msgstr ""
|
|||
"Faidhle mapa le iomradh air air a luchdadh:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Cluicheadair"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Tha meud a’ mhapa amais eadar-dhealaichte bhon mhapa seo"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Wesnoth\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-10-26 09:23+0100\n"
|
||||
"Last-Translator: Adrián Chaves Fernández <adriyetichaves@gmail.com>\n"
|
||||
"Language-Team: Galician <proxecto@trasno.net>\n"
|
||||
|
@ -360,7 +360,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Escolle o mapa de destino"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Houbo un erro ao cargar o mapa"
|
||||
|
||||
|
@ -431,11 +431,11 @@ msgstr ""
|
|||
"Cargouse o ficheiro do mapa ao que se fai referencia:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Xogador"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "O tamaño do mapa de destino é diferente do do mapa actual"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: he\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2005-12-18 23:18+0200\n"
|
||||
"Last-Translator: Ely Levy <nakeee@gmail.com>\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
|
@ -358,7 +358,7 @@ msgid "Choose Target Map"
|
|||
msgstr "בחירת מפה לטעינה"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -430,11 +430,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "שחקן"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.4+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-09-03 17:27+0100\n"
|
||||
"Last-Translator: Nino <nino.gunjaca@zg.t-com.hr>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -365,7 +365,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Izbor ciljne mape"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Greška pri otvaranju mape"
|
||||
|
||||
|
@ -440,11 +440,11 @@ msgstr ""
|
|||
"Učitana spomenuta datoteka mape:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Igrač"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Veličina označene mape je veća od ove mape"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: hu-editor_1.5\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-12-17 13:45+0100\n"
|
||||
"Last-Translator: Kádár-Németh Krisztián <krisztian.kad@gmail.com>\n"
|
||||
"Language-Team: Hungarian <wesnoth-hungtrans@gna.org>\n"
|
||||
|
@ -364,7 +364,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Válaszd ki a célpályát"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Hiba a pálya betöltése közben"
|
||||
|
||||
|
@ -441,11 +441,11 @@ msgstr ""
|
|||
"Az alábbi térképfájl betöltődött:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Játékos"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "A célpálya mérete különbözik a jelenlegi pálya méretétől"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.2.2\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-24 17:32+0700\n"
|
||||
"Last-Translator: Yuris <yuris_wicaksana@yahoo.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -363,7 +363,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Pilih target peta"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Error meload peta"
|
||||
|
||||
|
@ -440,11 +440,11 @@ msgstr ""
|
|||
"File peta referensi diload:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Pemain"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Ukuran target peta berbeda dengan peta yang dipakai sekarang"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.6+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2009-05-12 18:51-0000\n"
|
||||
"Last-Translator: Gabríel A. Pétursson <gabrielp@simnet.is>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -366,7 +366,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Veldu miðkort"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Villa við hlöðun korts"
|
||||
|
||||
|
@ -442,11 +442,11 @@ msgstr ""
|
|||
"Hlóð ávísað kort:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spilari"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Stærð miðkortsins er ekki sú sama og núverandi kort"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: it\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-03-16 00:07-0000\n"
|
||||
"Last-Translator: Antonio 'Antro' Rosella <arosella@yahoo.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
|
@ -355,7 +355,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Scegli la mappa"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Errore di caricamento della mappa"
|
||||
|
||||
|
@ -425,11 +425,11 @@ msgstr ""
|
|||
"Caricato il file di mappa referenziato:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Giocatore"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "La dimensione della mappa destinazione è diversa da quella attuale"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.7.x-dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2010-01-31 12:03+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -369,7 +369,7 @@ msgid "Choose Target Map"
|
|||
msgstr "ターゲットマップを選択"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "マップの読み込みに失敗"
|
||||
|
||||
|
@ -444,11 +444,11 @@ msgstr ""
|
|||
"読み込まれた参照マップ:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "プレイヤー"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "ターゲットマップのサイズが現在のマップのサイズと異なります"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-14 21:31+0900\n"
|
||||
"Last-Translator: mistzone <drier22@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -361,7 +361,7 @@ msgid "Choose Target Map"
|
|||
msgstr "불러올 맵을 선택하십시오"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -439,11 +439,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "플레이어"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Wesnoth-editor 1.2\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2013-06-23 02:19-0000\n"
|
||||
"Last-Translator: Thomas Hockings <elprofesh@gmail.com>\n"
|
||||
"Language-Team: Latin <http://wiki.wesnoth.org/LatinTranslation>\n"
|
||||
|
@ -363,7 +363,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Chartam Eligere"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Error dum charta arcessitur"
|
||||
|
||||
|
@ -438,11 +438,11 @@ msgstr ""
|
|||
"Fasciculus chartae arcessitus:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Lusor"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Magnitudo chartae electae dissimilis chartae praesenti est"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.11\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2010-01-01 00:00+0300\n"
|
||||
"Last-Translator: Andrius Štikonas <stikonas@gmail.com>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
|
@ -351,7 +351,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Pasirinkite žemėlapį"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Klaida įkeliant žemėlapį"
|
||||
|
||||
|
@ -422,11 +422,11 @@ msgstr ""
|
|||
"Įkeltas nurodytas žemėlapio failas:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Žaidėjas"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Pritaikomo žemėlapio dydis skiriasi nuo dabartinio žemėlapio dydžio"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-13 01:09+0300\n"
|
||||
"Last-Translator: Reinis Danne <rei4dan@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -367,7 +367,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Izvēlieties mērķa karti"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Kļūda ielādējot karti"
|
||||
|
||||
|
@ -443,11 +443,11 @@ msgstr ""
|
|||
"Ielādēts norādītā kartes fails:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spēlētājs"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Mērķa kartes izmērs atšķiras no pašreizējās"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.5.1\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-06-03 05:13+0100\n"
|
||||
"Last-Translator: Dimitar Ilccov <mythological@t-home.mk>\n"
|
||||
"Language-Team: mk\n"
|
||||
|
@ -348,7 +348,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -415,11 +415,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2009-01-30 20:58+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -347,7 +347,7 @@ msgid "Choose Target Map"
|
|||
msgstr ""
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -414,11 +414,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.2-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2006-01-01 20:13+0100\n"
|
||||
"Last-Translator: Hogne <haskjold@gmail.com>\n"
|
||||
"Language-Team: none <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
@ -356,7 +356,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Velg kart for innlasting"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -428,11 +428,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spiller"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2010-12-27 17:53+0100\n"
|
||||
"Last-Translator: Alexander van Gessel <ai0867@gmail.com>\n"
|
||||
"Language-Team: Dutch <AI0867@gmail.com>\n"
|
||||
|
@ -366,7 +366,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Kies doelkaart"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Fout bij het laden van de kaart"
|
||||
|
||||
|
@ -442,11 +442,11 @@ msgstr ""
|
|||
"Geladen gerefereerde kaartbestand:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Speler"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "De grootte van de doelkaart verschilt van die van de huidige kaart"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.5-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-28 12:39+0100\n"
|
||||
"Last-Translator: Zbigniew Banach <z.banach@wsisiz.edu.pl>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -367,7 +367,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Wybierz docelową mapę"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Błąd ładowania mapy"
|
||||
|
||||
|
@ -443,11 +443,11 @@ msgstr ""
|
|||
"Załadowano używany plik mapy:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Gracz"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Rozmiar mapy docelowej jest inny niż mapy obecnie załadowanej"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12 (wesnoth-editor)\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-01-06 12:13+0100\n"
|
||||
"Last-Translator: trewe <sjrs456@yandex.com>\n"
|
||||
"Language-Team: wesn-pt-trans <wesn-pt-trans-users@lists.sourceforge.net>\n"
|
||||
|
@ -413,7 +413,7 @@ msgstr "Escolha o mapa alvo"
|
|||
|
||||
#
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Erro ao carregar o mapa"
|
||||
|
||||
|
@ -496,12 +496,12 @@ msgstr ""
|
|||
"$new"
|
||||
|
||||
#
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jogador"
|
||||
|
||||
#
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "O tamanho do mapa alvo é diferente do mapa atual"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.9.5-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-02-05 22:45-0300\n"
|
||||
"Last-Translator: Diego Inácio Goergen <thegoergen@gmail.com>\n"
|
||||
"Language-Team: Portuguese/Brazil\n"
|
||||
|
@ -587,7 +587,7 @@ msgstr "Escolha o mapa alvo"
|
|||
# File: src/editor/map/context_manager.cpp, line: 338
|
||||
# File: src/editor/map/context_manager.cpp, line: 700
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Erro carregando o mapa"
|
||||
|
||||
|
@ -736,7 +736,7 @@ msgstr ""
|
|||
# File: src/editor/map/editor_map.cpp, line: 149
|
||||
# File: src/editor/map/editor_map.cpp, line: 149
|
||||
# File: src/editor/map/editor_map.cpp, line: 149
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jogador"
|
||||
|
||||
|
@ -744,7 +744,7 @@ msgstr "Jogador"
|
|||
# File: src/editor/map/editor_map.cpp, line: 266
|
||||
# File: src/editor/map/editor_map.cpp, line: 266
|
||||
# File: src/editor/map/editor_map.cpp, line: 266
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "O tamanho do mapa alvo é diferente do mapa atual"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2008-02-14 12:37+0100\n"
|
||||
"Last-Translator: Mavorte <mavorte1@yahoo.es>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -355,7 +355,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Tria el mapa que vols carregar"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -427,11 +427,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jugador"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2006-04-10 20:11+0100\n"
|
||||
"Last-Translator: Dex Stewart\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -353,7 +353,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Alegeti o harta de incarcat"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -425,11 +425,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Jucator"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ru\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-04-06 16:06+0400\n"
|
||||
"Last-Translator: Fedor Khod'kov <fkhodkov@gmail.com>\n"
|
||||
"Language-Team: Russian <bugs.wesnoth.org>\n"
|
||||
|
@ -378,7 +378,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Выберите целевую карту"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Не удалось загрузить карту"
|
||||
|
||||
|
@ -455,11 +455,11 @@ msgstr ""
|
|||
"Загрузил файл карты по ссылке:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Игрок"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Размер целевой карты отличается от размера текущей"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 0.8.4-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-03-03 19:54+0100\n"
|
||||
"Last-Translator: Stanislav Hoferek <shoferek@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -350,7 +350,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Vyberte si cieľovú mapu"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Chyba pri načítavaní mapy"
|
||||
|
||||
|
@ -419,11 +419,11 @@ msgstr ""
|
|||
"Načítal sa odkazovaný súbor mapy:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Hráč"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Veľkosť cieľovej mapy sa líši od súčasnej mapy"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ed-sl\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2010-09-14 14:56+0100\n"
|
||||
"Last-Translator: Klemen Košir <klemen913@gmail.com>\n"
|
||||
"Language-Team: sl\n"
|
||||
|
@ -364,7 +364,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Izberi karto za nalaganje"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Napaka med nalaganjem karte"
|
||||
|
||||
|
@ -437,11 +437,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Igralec"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-30 16:10+0100\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian\n"
|
||||
|
@ -372,7 +372,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Избор циљне мапе"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Грешка при учитавању мапе"
|
||||
|
||||
|
@ -448,11 +448,11 @@ msgstr ""
|
|||
"Учитана поменута датотека мапе:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Играч"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Величина циљне мапе је различита од текуће"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-30 16:10+0100\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian\n"
|
||||
|
@ -372,7 +372,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Избор циљне мапе"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Грешка при учитавању мапе"
|
||||
|
||||
|
@ -448,11 +448,11 @@ msgstr ""
|
|||
"Учитана поменута датотека мапе:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Играч"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Величина циљне мапе је различита од текуће"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-30 16:10+0100\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian\n"
|
||||
|
@ -372,7 +372,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Izbor ciljne mape"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Greška pri učitavanju mape"
|
||||
|
||||
|
@ -448,11 +448,11 @@ msgstr ""
|
|||
"Učitana pomenuta datoteka mape:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Igrač"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Veličina ciljne mape je različita od tekuće"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-11-30 16:10+0100\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian\n"
|
||||
|
@ -372,7 +372,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Izbor ciljne mape"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Greška pri učitavanju mape"
|
||||
|
||||
|
@ -448,11 +448,11 @@ msgstr ""
|
|||
"Učitana pomenuta datoteka mape:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Igrač"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Veličina ciljne mape je različita od tekuće"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2011-04-25 04:55+0100\n"
|
||||
"Last-Translator: Niklas Bolmdahl <niklas.spamfilter@karragard.com>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
|
@ -368,7 +368,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Välj målkarta"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Fel vid öppning av karta"
|
||||
|
||||
|
@ -445,11 +445,11 @@ msgstr ""
|
|||
"Hänvisad kartfil laddad:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Spelare"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Storleken på målkartan är skiljer sig från den aktuella kartan"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2006-05-08 07:52-0000\n"
|
||||
"Last-Translator: Joset Anthony Zamora <eradicus_kee@yahoo.ca>\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -353,7 +353,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Pumili ng mapa para buksan"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr ""
|
||||
|
||||
|
@ -425,11 +425,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Manlalaro"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wesnoth-editor\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2009-02-23 19:16+0200\n"
|
||||
"Last-Translator: Nilgün Belma Bugüner <nilgun@belgeler.gen.tr>\n"
|
||||
"Language-Team: Turkish <wesnoth-tr@googlegroups.com>\n"
|
||||
|
@ -365,7 +365,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Hedef haritayı seçiniz"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Harita yüklenirken hata"
|
||||
|
||||
|
@ -440,11 +440,11 @@ msgid ""
|
|||
"$new"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Oyuncu"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Hedef harita bundan farklı boyutlarda"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 1.11\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2012-10-31 12:38+0200\n"
|
||||
"Last-Translator: Igor Paliychuk <mansonigor@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -365,7 +365,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Оберіть цільову карту"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Помилка при завантаженні карти"
|
||||
|
||||
|
@ -442,11 +442,11 @@ msgstr ""
|
|||
"Завантажено по посиланню файл карти:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Гравець"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Розмір цільової карти відрізняється від розміру поточної"
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2014-10-24 20:20+0200\n"
|
||||
"POT-Creation-Date: 2014-11-08 21:20+0100\n"
|
||||
"PO-Revision-Date: 2014-06-05 21:43+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese <kde-i18n-doc@kde.org>\n"
|
||||
|
@ -348,7 +348,7 @@ msgid "Choose Target Map"
|
|||
msgstr "Chọn bản đồ đích"
|
||||
|
||||
#: src/editor/map/context_manager.cpp:462
|
||||
#: src/editor/map/context_manager.cpp:894
|
||||
#: src/editor/map/context_manager.cpp:895
|
||||
msgid "Error loading map"
|
||||
msgstr "Lỗi khi tải bản đồ"
|
||||
|
||||
|
@ -419,11 +419,11 @@ msgstr ""
|
|||
"Tập tin bản đồ tham chiếu đã tải:\n"
|
||||
"$new"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:149
|
||||
#: src/editor/map/editor_map.cpp:148
|
||||
msgid "Player"
|
||||
msgstr "Người chơi"
|
||||
|
||||
#: src/editor/map/editor_map.cpp:266
|
||||
#: src/editor/map/editor_map.cpp:265
|
||||
msgid "The size of the target map is different from the current map"
|
||||
msgstr "Kích thước của bản đồ đích khác với bản đồ hiện thời"
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue