Merge branch 'master' into sdl2
|
@ -31,7 +31,31 @@ Until now, the official Wesnoth installer has included the option to store user
|
|||
|
||||
From this version onwards, the installer no longer provides the option to store user files in the installation dir, and the game itself defaults to using the Documents folder (more specifically, [c]Documents\My Games\WesnothX.Y[/c] where [c]X.Y[/c] represents the major and minor version numbers, such as [c]1.13[/c]) unless specifically instructed to do otherwise with the [c]--config-dir[/c] option in the command line. Additionally, [c]--config-dir[/c] paths can be either absolute, relative to [c]Documents\My Games[/c] (to support the previous installer approach to storing files in Documents), or relative to the process current working dir (usually the install dir) if either . or .. are provided as the first path component; this latter option is provided so that people can still install and run Wesnoth from removable media if they wish.
|
||||
|
||||
See also bug [bug]23753[/bug].[/rasection]
|
||||
See also bug [bug]23753[/bug].
|
||||
|
||||
[b]Command-line changes short version:[/b]
|
||||
|
||||
(For people who need to customize the game’s command-line for any reason.)
|
||||
|
||||
[b]Before 1.13.2:[/b]
|
||||
[list]
|
||||
[*]Default: use [tt]<cwd>\userdata[/tt]
|
||||
[*]With [tt]--config-dir <path>[/tt]: [list]
|
||||
[*]use [tt]<Home dir>\Documents\My Games\<path>[/tt] (installer adds [c]--config-dir WesnothX.Y[/c]) if path does not begin with a drive spec
|
||||
[*]use absolute [tt]<path>[/tt] otherwise
|
||||
[/list]
|
||||
[/list]
|
||||
|
||||
[b]After 1.13.2:/b]
|
||||
[list]
|
||||
[*]Default: use [tt]<Home dir>\Documents\My Games\WesnothX.Y[/tt]
|
||||
[*]With [tt]--config-dir <path>[/tt]: [list]
|
||||
[*]use [tt]<cwd>\<path>[/tt] if path begins with . or ..
|
||||
[*]use [tt]<Home dir>\Documents\My Games\<path>[/tt] (installer adds [c]--config-dir WesnothX.Y[/c]) if path does not begin with a drive spec;
|
||||
[*]use absolute [tt]<path>[/tt] otherwise
|
||||
[/list]
|
||||
[/list]
|
||||
[/rasection]
|
||||
|
||||
[rasection="New game version dialog"]
|
||||
Describe how awesome the new game version dialog is and how it replaces the old game paths dialog from 1.12.x
|
||||
|
|
15
changelog
|
@ -19,15 +19,18 @@ Version 1.13.1+dev:
|
|||
* Add Recent Files menu with a list of recently saved or loaded maps or
|
||||
scenarios, up to a custom limit (by default 10) that can be set in
|
||||
Advanced Preferences.
|
||||
* Fixed Player Start labels not being updated with repeat map generations
|
||||
(bug #20036)
|
||||
* Graphics:
|
||||
* New animated water.
|
||||
* New standing animation for the Dwarvish Runesmith
|
||||
* New generic portraits for the Troll and Troll Whelp
|
||||
* Language and i18n:
|
||||
* Updated translations: British English, French, Galician, Hungarian,
|
||||
Japanese, Latvian
|
||||
Italian, Japanese, Latvian, Polish, RACV, Scottish Gaelic, Slovak, Spanish
|
||||
* Fixed crashes during start-up on Windows resulting from add-ons containing
|
||||
erroneous textdomain declarations (bug #23839).
|
||||
* Spelling and grammar review across all official campaigns.
|
||||
* Lua API:
|
||||
* It is now possible to implement custom [effect]s with wesnoth.effects
|
||||
* Changed interface for the wesnoth.synchronize_choice function
|
||||
|
@ -185,7 +188,15 @@ Version 1.13.1+dev:
|
|||
eg if an add-on tries to set an invalid variable
|
||||
* Fixed bug 23060: unit stat tooltips do not show.
|
||||
* wmllint, wmlscope, wmlindent and wmllint-1.4 now run on Python 3
|
||||
* Text boxes tab completion now lists whisperer nicks for easier answer
|
||||
* Text boxes tab completion now lists friends and whisperer nicks for easier answer (bug #9742)
|
||||
* Avoid crash when planning moves on planned recruits (bug #18637)
|
||||
* Fixed cases of wrong unit type used in planning moves (bug #20299)
|
||||
* Fixed hang when attempting to make a screenshot from a non-existent map via
|
||||
command-line (bug #20900)
|
||||
* Fixed Cancel Orders not working when loading MP game (bug #22133)
|
||||
* Fixed broken Oasis terrain help entry (bug #23023)
|
||||
* Fixed load game hot-key not working in the main menu (bug #23215)
|
||||
* Added user's leave notification for ingame players
|
||||
|
||||
Version 1.13.1:
|
||||
* Security fixes:
|
||||
|
|
|
@ -315,7 +315,6 @@ Most units receive 20 to 40% defense in sand."
|
|||
symbol_image=sand/desert-oasis
|
||||
id=oasis
|
||||
name= _ "Oasis"
|
||||
editor_name= _ "Oasis"
|
||||
default_base=Dd
|
||||
string=^Do
|
||||
aliasof=_bas
|
||||
|
|
0
data/tools/GUI.pyw
Normal file → Executable file
0
data/tools/wmlindent
Normal file → Executable file
2
data/tools/wmllint
Normal file → Executable file
|
@ -1686,7 +1686,7 @@ def global_sanity_check(filename, lines):
|
|||
present.append(value)
|
||||
elif value and value[0] in ("$", "{"):
|
||||
continue
|
||||
elif preamble_seen and subtag_depth > 0 and not ignore_id and not in_object and not in_cfg and not in_facet and not in_sound_source and not in_remove_sound_source and not in_stage and not in_goal and not in_set_menu_item and not in_clear_menu_item and not directly_in_event[-1] and not in_time_area:
|
||||
elif preamble_seen and subtag_depth > 0 and not ignore_id and not in_object and not in_cfg and not in_facet and not in_sound_source and not in_remove_sound_source and not in_stage and not in_goal and not in_set_menu_item and not in_clear_menu_item and not directly_in_event[-1] and not in_time_area and not in_trait:
|
||||
ids = value.split(",")
|
||||
for id_ in ids:
|
||||
# removal of leading whitespace of items in comma-separated lists
|
||||
|
|
0
data/tools/wmlscope
Normal file → Executable file
Before Width: | Height: | Size: 667 B After Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 515 B After Width: | Height: | Size: 570 B |
BIN
images/misc/l10n/af/logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/misc/l10n/ang/logo.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
images/misc/l10n/ang@latin/logo.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
images/misc/l10n/bg/logo.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
images/misc/l10n/ca/logo.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
images/misc/l10n/cs/logo.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
images/misc/l10n/da/logo.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
images/misc/l10n/el/logo.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
images/misc/l10n/en/logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/misc/l10n/en@shaw/logo.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
images/misc/l10n/eo/logo.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
images/misc/l10n/es/logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/misc/l10n/et/logo.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
images/misc/l10n/eu/logo.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
images/misc/l10n/fi/logo.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
images/misc/l10n/fr/logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/misc/l10n/ga/logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/misc/l10n/gd/logo.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
images/misc/l10n/gl/logo.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
images/misc/l10n/he/logo.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
images/misc/l10n/hr/logo.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
images/misc/l10n/hu/logo.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
images/misc/l10n/id/logo.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
images/misc/l10n/is/logo.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
images/misc/l10n/it/logo.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
images/misc/l10n/la/logo.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
images/misc/l10n/lt/logo.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
images/misc/l10n/lv/logo.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
images/misc/l10n/mk/logo.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
images/misc/l10n/mr/logo.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
images/misc/l10n/nl/logo.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
images/misc/l10n/pl/logo.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
images/misc/l10n/pt/logo.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
images/misc/l10n/ru/logo.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
images/misc/l10n/sk/logo.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
images/misc/l10n/sr/logo.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
images/misc/l10n/sr@latin/logo.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
images/misc/l10n/tr/logo.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
images/misc/l10n/vi/logo.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
images/misc/l10n/zh_CN/logo.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
images/misc/l10n/zh_TW/logo.png
Normal file
After Width: | Height: | Size: 42 KiB |
|
@ -1,6 +1,5 @@
|
|||
# List of language codes that have at least one localized file.
|
||||
languages = cs de en@shaw es fr gd gl hu it la lt nl pt ru sk \
|
||||
sr sr@ijekavian sr@ijekavianlatin sr@latin vi zh_CN
|
||||
languages = af ang ang@latin bg ca cs da de el en en@shaw eo es et eu fi fr ga gd gl he hr hu id is it la lt lv mk mr nl pl pt ru sk sr sr@ijekavian sr@ijekavianlatin sr@latin tr vi zh_CN zh_TW
|
||||
|
||||
# We're currently using git
|
||||
source-vcs = git
|
||||
|
|
87
l10n-track
|
@ -1,9 +1,28 @@
|
|||
# Do not edit manually, except to remove complete lines.
|
||||
|
||||
# af
|
||||
ok ¦images/misc/l10n/af/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# ang
|
||||
ok ¦images/misc/l10n/ang/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# ang@latin
|
||||
ok ¦images/misc/l10n/ang@latin/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# bg
|
||||
ok ¦images/misc/l10n/bg/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# ca
|
||||
ok ¦images/misc/l10n/ca/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# cs
|
||||
ok ¦data/core/images/help/l10n/cs/hpxp.png¦ 62a5f259d2d924792e594bf3445020c7 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/cs/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/cs/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/cs/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# da
|
||||
ok ¦images/misc/l10n/da/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# de
|
||||
ok ¦data/campaigns/An_Orcish_Incursion/images/maps/l10n/de/aoi--overlay.png¦ 566caef8841ce7ea42b49e436230f6bb a3b14e767064ba27b97a9a316da9301d88e64b0
|
||||
|
@ -26,7 +45,17 @@ ok ¦data/core/images/help/l10n/de/tooltip.png¦ f712aa35b556f227e7bd238
|
|||
ok ¦data/core/images/maps/l10n/de/titlescreen--overlay.png¦ c6a61abdc02a22a1279d6e86d2d988d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦data/core/images/maps/l10n/de/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
|
||||
# el
|
||||
ok ¦images/misc/l10n/el/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# en
|
||||
ok ¦images/misc/l10n/en/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# en@shaw
|
||||
ok ¦images/misc/l10n/en@shaw/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# eo
|
||||
ok ¦images/misc/l10n/eo/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# es
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/es/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
|
@ -34,6 +63,16 @@ ok ¦data/core/images/help/l10n/es/hpxp.png¦ 62a5f259d2d924792e594bf344
|
|||
ok ¦data/core/images/help/l10n/es/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/es/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/es/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/es/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# et
|
||||
ok ¦images/misc/l10n/et/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# eu
|
||||
ok ¦images/misc/l10n/eu/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# fi
|
||||
ok ¦images/misc/l10n/fi/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# fr
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/fr/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
|
@ -41,6 +80,10 @@ ok ¦data/core/images/help/l10n/fr/hpxp.png¦ 62a5f259d2d924792e594bf344
|
|||
ok ¦data/core/images/help/l10n/fr/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/fr/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/fr/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/fr/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# ga
|
||||
ok ¦images/misc/l10n/ga/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# gd
|
||||
ok ¦data/campaigns/An_Orcish_Incursion/images/maps/l10n/gd/aoi--overlay.png¦ 566caef8841ce7ea42b49e436230f6bb a3b14e767064ba27b97a9a316da9301d88e64b0
|
||||
|
@ -49,6 +92,7 @@ ok ¦data/campaigns/Northern_Rebirth/images/maps/l10n/gd/nr--overlay.png
|
|||
ok ¦data/campaigns/The_South_Guard/images/maps/l10n/gd/tsg--overlay.png¦ b6794ada1484eef485bbede267d8f1d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦data/core/images/maps/l10n/gd/titlescreen--overlay.png¦ c6a61abdc02a22a1279d6e86d2d988d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦data/core/images/maps/l10n/gd/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/gd/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# gl
|
||||
ok ¦data/campaigns/An_Orcish_Incursion/images/maps/l10n/gl/aoi--overlay.png¦ 566caef8841ce7ea42b49e436230f6bb a3b14e767064ba27b97a9a316da9301d88e64b0
|
||||
|
@ -67,20 +111,36 @@ ok ¦data/core/images/help/l10n/gl/hpxp.png¦ 62a5f259d2d924792e594bf344
|
|||
ok ¦data/core/images/help/l10n/gl/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/gl/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/gl/titlescreen--overlay.png¦ c6a61abdc02a22a1279d6e86d2d988d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦images/misc/l10n/gl/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# he
|
||||
ok ¦images/misc/l10n/he/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# hr
|
||||
ok ¦images/misc/l10n/hr/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# hu
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/hu/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
ok ¦data/core/images/maps/l10n/hu/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/hu/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# id
|
||||
ok ¦images/misc/l10n/id/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# is
|
||||
ok ¦images/misc/l10n/is/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# it
|
||||
ok ¦data/core/images/help/l10n/it/hpxp.png¦ 62a5f259d2d924792e594bf3445020c7 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/it/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/it/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/it/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/it/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# la
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/la/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
ok ¦data/core/images/maps/l10n/la/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/la/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# lt
|
||||
ok ¦data/campaigns/An_Orcish_Incursion/images/maps/l10n/lt/aoi--overlay.png¦ 566caef8841ce7ea42b49e436230f6bb a3b14e767064ba27b97a9a316da9301d88e64b0
|
||||
|
@ -90,9 +150,23 @@ ok ¦data/campaigns/Northern_Rebirth/images/maps/l10n/lt/nr--overlay.png
|
|||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/lt/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
ok ¦data/campaigns/The_South_Guard/images/maps/l10n/lt/tsg--overlay.png¦ b6794ada1484eef485bbede267d8f1d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦data/core/images/maps/l10n/lt/titlescreen--overlay.png¦ c6a61abdc02a22a1279d6e86d2d988d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦images/misc/l10n/lt/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# lv
|
||||
ok ¦images/misc/l10n/lv/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# mk
|
||||
ok ¦images/misc/l10n/mk/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# mr
|
||||
ok ¦images/misc/l10n/mr/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# nl
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/nl/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
ok ¦images/misc/l10n/nl/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# pl
|
||||
ok ¦images/misc/l10n/pl/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# pt
|
||||
ok ¦data/campaigns/An_Orcish_Incursion/images/maps/l10n/pt/aoi--overlay.png¦ 566caef8841ce7ea42b49e436230f6bb a3b14e767064ba27b97a9a316da9301d88e64b0
|
||||
|
@ -115,19 +189,23 @@ ok ¦data/core/images/help/l10n/pt/recruit.png¦ 71f948f0d3c00d80291a98d
|
|||
ok ¦data/core/images/help/l10n/pt/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/pt/titlescreen--overlay.png¦ c6a61abdc02a22a1279d6e86d2d988d0 bbace6d70c9021bea33fd06eb40ae5c793099d2
|
||||
ok ¦data/core/images/maps/l10n/pt/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/pt/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# ru
|
||||
ok ¦data/core/images/maps/l10n/ru/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/ru/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# sk
|
||||
ok ¦data/core/images/help/l10n/sk/hpxp.png¦ 62a5f259d2d924792e594bf3445020c7 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/sk/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/sk/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/sk/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# sr
|
||||
ok ¦data/core/images/lobby/l10n/sr/sort-az-off.png¦ 89ce53a0dbc82ada087de1f8b7bc3729 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/lobby/l10n/sr/sort-az.png¦ 959745325606642eb4e22b2356328641 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/maps/l10n/sr/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/sr/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# sr@ijekavian
|
||||
ok ¦data/core/images/maps/l10n/sr@ijekavian/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
|
@ -137,12 +215,21 @@ ok ¦data/core/images/maps/l10n/sr@ijekavianlatin/wesnoth--overlay.png¦
|
|||
|
||||
# sr@latin
|
||||
ok ¦data/core/images/maps/l10n/sr@latin/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/sr@latin/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# tr
|
||||
ok ¦images/misc/l10n/tr/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# vi
|
||||
ok ¦data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/vi/trow-logo.png¦ 591ed63c8eac31ea6549848dbed29143 0d5aa46e7435d9c5bf2944bb447c9ac6b2f1c0a
|
||||
ok ¦data/core/images/help/l10n/vi/hpxp.png¦ 62a5f259d2d924792e594bf3445020c7 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/vi/recruit.png¦ 71f948f0d3c00d80291a98d7606f142d d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦data/core/images/help/l10n/vi/tooltip.png¦ f712aa35b556f227e7bd2383bca814bf d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/vi/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# zh_CN
|
||||
ok ¦data/core/images/maps/l10n/zh_CN/wesnoth--overlay.png¦ f03a2a4cc8cbb9fcaf48593289e3e5c4 d5fa4bc7b25ae115d23070c04970dec7f66baf3
|
||||
ok ¦images/misc/l10n/zh_CN/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
||||
# zh_TW
|
||||
ok ¦images/misc/l10n/zh_TW/logo.png¦ f13ab03e31b1aaeec3036ebfe049e78f 6e0af4f77ed425d62ae06ce7157a5b37f67c8f7
|
||||
|
|
|
@ -16,7 +16,7 @@ Version 1.13.1+dev:
|
|||
|
||||
* Language and i18n:
|
||||
* Updated translations: British English, French, Galician, Hungarian,
|
||||
Japanese, Latvian.
|
||||
Italian, Japanese, Latvian, Polish, RACV, Scottish Gaelic, Slovak, Spanish.
|
||||
* Fixed crashes during start-up on Windows resulting from add-ons containing
|
||||
erroneous textdomain declarations (bug #23839).
|
||||
|
||||
|
@ -41,7 +41,13 @@ Version 1.13.1+dev:
|
|||
* Fixed OOS on random maps, where clients placed sides in different castles.
|
||||
* Fixed possibility of corrupting saved games in certain instances,
|
||||
eg if an add-on tries to set an invalid variable
|
||||
* Enhanced tab completion in text boxes for easier whispers answer.
|
||||
* Enhanced tab completion in text boxes for friends and for easier whispers answer (bug #9742)
|
||||
* Fixed Cancel Orders not working when loading MP game (bug #22133)
|
||||
* Fixed load game hot-key not working in the main menu (bug #23215)
|
||||
* Added user's leave notification for ingame players
|
||||
* Fixed broken Oasis terrain help entry (bug #23023)
|
||||
* Fixed cases of wrong unit type used in planning moves (bug #20299)
|
||||
* Avoid crash when planning moves on planned recruits (bug #18637)
|
||||
|
||||
|
||||
Version 1.13.1:
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: wescamp-i 18n\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-04-05 05:06-0300\n"
|
||||
"PO-Revision-Date: 2014-10-25 14:27-0000\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-11-05 17:34+0300\n"
|
||||
"Last-Translator: Antonio 'Antro' Rosella <arosella@yahoo.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: it\n"
|
||||
|
@ -18,6 +18,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
|
||||
#. [ai]: id=ai_default_rca
|
||||
#: data/ai/ais/ai_default_rca.cfg:9
|
||||
|
@ -792,7 +793,7 @@ msgstr "Morte di Vaddan"
|
|||
#. [message]: speaker=messenger1
|
||||
#: data/ai/micro_ais/scenarios/goto.cfg:438
|
||||
msgid "The bridge is out. What do we do now?"
|
||||
msgstr ""
|
||||
msgstr "Il ponte è andato. Cosa facciamo adesso?"
|
||||
|
||||
#. [message]: speaker=messenger2
|
||||
#: data/ai/micro_ais/scenarios/goto.cfg:442
|
||||
|
@ -863,6 +864,11 @@ msgid ""
|
|||
"Note: The messengers are controlled by Goto Micro AI definitions that differ "
|
||||
"by a single line, 'use_straight_line=yes/no'."
|
||||
msgstr ""
|
||||
"Tu sei pazzo. Sarà anche la via più breve in linea d’aria, ma ci metterai "
|
||||
"un’eternità ad attraversare quelle montagne.\n"
|
||||
"\n"
|
||||
"Nota: i messaggeri sono controllati dalle definizioni dalla Micro IA 'Vai a' "
|
||||
"che differiscono soltanto per una singola linea, 'use_straight_line=yes/no'."
|
||||
|
||||
#. [message]: speaker=unit
|
||||
#: data/ai/micro_ais/scenarios/goto.cfg:566
|
||||
|
@ -2771,7 +2777,7 @@ msgstr ""
|
|||
#. [set_menu_item]: id=repeat_test
|
||||
#: data/ai/scenarios/scenario-AI_Arena_small.cfg:64
|
||||
msgid "Repeat last test"
|
||||
msgstr ""
|
||||
msgstr "Ripeti ultimo test"
|
||||
|
||||
#. [set_menu_item]: id=select_another_ai
|
||||
#: data/ai/scenarios/scenario-AI_Arena_small.cfg:80
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
# #-#-#-#-# wesnoth-ai.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-ai.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wenoth package.
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2013
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-16 21:41+0000\n"
|
||||
"PO-Revision-Date: 2015-10-30 10:50+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -113,7 +113,7 @@ msgstr ""
|
|||
#: data/ai/micro_ais/scenarios/The_Elves_Besieged.cfg:132
|
||||
#: data/ai/micro_ais/scenarios/messenger_escort.cfg:23
|
||||
msgid "Orcs"
|
||||
msgstr ""
|
||||
msgstr "オーク"
|
||||
|
||||
#. [side]: type=Orcish Warlord, id=Knafa-Tan
|
||||
#: data/ai/micro_ais/scenarios/The_Elves_Besieged.cfg:107
|
||||
|
|
|
@ -1,25 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-anl.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-anl.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005.
|
||||
# naoki iimura <amatubu@gmail.com>, 2005-2008.
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2011.
|
||||
# Automatically generated, 2005
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2011
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-16 07:10+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,26 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-aoi.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-aoi.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2006
|
||||
# BlueStar, 2006.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006.
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# mishan <mishanhideaki88@gmail.com>, 2011.
|
||||
#
|
||||
# BlueStar, 2006
|
||||
# mishan <mishanhideaki88@gmail.com>, 2011
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-03 20:46+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1716,7 +1716,7 @@ msgstr "Find the book"
|
|||
#. [message]: speaker=Malin Keshar
|
||||
#: data/campaigns/Descent_Into_Darkness/scenarios/09_A_Small_Favor3.cfg:249
|
||||
msgid "I feel the book is very close, somewhere to the northwest."
|
||||
msgstr "I feel the book is very close, somewhere to the northwest."
|
||||
msgstr "I feel the book is very close, somewhere to the north-west."
|
||||
|
||||
#. [message]: speaker=Malin Keshar
|
||||
#: data/campaigns/Descent_Into_Darkness/scenarios/09_A_Small_Favor3.cfg:350
|
||||
|
|
|
@ -1,21 +1,20 @@
|
|||
# #-#-#-#-# wesnoth-did.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translation for Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-did.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>. 2010.
|
||||
# OOTA, Masato(oo), 2015
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-17 11:13+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
# #-#-#-#-# wesnoth-dm.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-dm.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2012.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# OOTA, Masato(oo), 2015
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-09 09:56+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,25 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-dw.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-dw.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2010
|
||||
# IWAI Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# mishan <mishanhideaki88@gmail.com>, 2011.
|
||||
# yma <yma9yma@gmail.com>, 2011.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# mishan <mishanhideaki88@gmail.com>, 2011
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# yma <yma9yma@gmail.com>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-13 11:46+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -13,7 +13,7 @@ msgstr ""
|
|||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-10-19 21:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-31 16:22+0100\n"
|
||||
"Last-Translator: Pepe <donpepe1963@gmail.com>\n"
|
||||
"Language-Team: Wesnoth\n"
|
||||
"Language: es\n"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 1.6.9\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
|
||||
#. [brush]: id=brush-1
|
||||
#: data/core/editor/brushes.cfg:6
|
||||
|
@ -509,6 +509,12 @@ msgstr "Ninguno"
|
|||
msgid "Player $player_number"
|
||||
msgstr "Jugador $player_number"
|
||||
|
||||
#~ msgid "Load Recent"
|
||||
#~ msgstr "Cargar reciente"
|
||||
|
||||
#~ msgid "No Recent Files"
|
||||
#~ msgstr "Sin archivos recientes"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Use left/right mouse button to draw fore-/background terrain. Hold Shift "
|
||||
#~ "to paint base layer only. Ctrl+click to sample terrain under cursor."
|
||||
|
|
|
@ -3,22 +3,22 @@
|
|||
# Copyright (C) 2012 Wesnoth development team
|
||||
# This file is distributed under the same license as the wesnoth_up package.
|
||||
# Automatically generated, 2012.
|
||||
# GunChleoc <fios@foramnagaidhlig.net>, 2012, 2013, 2014.
|
||||
# GunChleoc <fios@foramnagaidhlig.net>, 2012, 2013, 2014, 2015.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wesnoth 1.10\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\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"
|
||||
"PO-Revision-Date: 2015-10-30 10:17+0100\n"
|
||||
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
|
||||
"Language-Team: Fòram na Gàidhlig\n"
|
||||
"Language: gd\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : "
|
||||
"(n > 2 && n < 20) ? 2 : 3;\n"
|
||||
"X-Generator: Poedit 1.6.4\n"
|
||||
"X-Generator: Virtaal 0.7.1\n"
|
||||
|
||||
#. [brush]: id=brush-1
|
||||
#: data/core/editor/brushes.cfg:6
|
||||
|
@ -506,6 +506,12 @@ msgstr "Gin"
|
|||
msgid "Player $player_number"
|
||||
msgstr "Cluicheadair $player_number"
|
||||
|
||||
#~ msgid "Load Recent"
|
||||
#~ msgstr "Luchdaich faidhle o chionn goirid"
|
||||
|
||||
#~ msgid "No Recent Files"
|
||||
#~ msgstr "Chan eil faidhle o chionn ghoirid ann"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Project-Id-Version: it\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-03-16 00:07-0000\n"
|
||||
"PO-Revision-Date: 2015-11-05 17:13+0300\n"
|
||||
"Last-Translator: Antonio 'Antro' Rosella <arosella@yahoo.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
"Language: it\n"
|
||||
|
@ -503,3 +503,9 @@ msgstr "Nessuno"
|
|||
#: src/gui/dialogs/editor_set_starting_position.cpp:100
|
||||
msgid "Player $player_number"
|
||||
msgstr "Giocatore $player_number"
|
||||
|
||||
#~ msgid "Load Recent"
|
||||
#~ msgstr "Carica recente"
|
||||
|
||||
#~ msgid "No Recent Files"
|
||||
#~ msgstr "Nessun file recente"
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
# #-#-#-#-# wesnoth-editor.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# Copyright (C) 2005-2015 Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-editor.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2007.
|
||||
# Naoki IIMURA <amatubu@gmail.com>, 2008.
|
||||
# tamanegi, 2015.
|
||||
#
|
||||
# Automatically generated, 2005
|
||||
# Naoki IIMURA <amatubu@gmail.com>, 2008
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# tamanegi, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-13 10:17+0000\n"
|
||||
"Last-Translator: tamanegi\n"
|
||||
"PO-Revision-Date: 2015-10-30 11:12+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -505,3 +504,9 @@ msgstr "選択を解除"
|
|||
#: src/gui/dialogs/editor_set_starting_position.cpp:100
|
||||
msgid "Player $player_number"
|
||||
msgstr "プレイヤー $player_number"
|
||||
|
||||
#~ msgid "Load Recent"
|
||||
#~ msgstr "最近のファイルを読み込む"
|
||||
|
||||
#~ msgid "No Recent Files"
|
||||
#~ msgstr "最近開いたファイルはありません"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgstr ""
|
|||
"Project-Id-Version: Battle for Wesnoth 0.8.4-CVS\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-03-03 19:54+0100\n"
|
||||
"PO-Revision-Date: 2015-11-07 11:04+0100\n"
|
||||
"Last-Translator: Stanislav Hoferek <shoferek@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: sk_SK\n"
|
||||
|
@ -498,6 +498,12 @@ msgstr "Žiaden"
|
|||
msgid "Player $player_number"
|
||||
msgstr "Hráč $player_number"
|
||||
|
||||
#~ msgid "Load Recent"
|
||||
#~ msgstr "Načítať posledný"
|
||||
|
||||
#~ msgid "No Recent Files"
|
||||
#~ msgstr "Žiadne naposledy použité súbory"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Use left/right mouse button to draw fore-/background terrain. Hold Shift "
|
||||
#~ "to paint base layer only. Ctrl+click to sample terrain under cursor."
|
||||
|
|
|
@ -1833,7 +1833,7 @@ msgid ""
|
|||
"learned to call up monsters from the deep!"
|
||||
msgstr ""
|
||||
"It seems as if in addition to summoning undead this foul sorcerer has "
|
||||
"learned to call up monsters from the deep!"
|
||||
"learned to call monsters from the deep!"
|
||||
|
||||
#. [message]: speaker=unit
|
||||
#: data/campaigns/Eastern_Invasion/scenarios/07b_Undead_Crossing.cfg:265
|
||||
|
|
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-10-19 21:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-31 16:25+0100\n"
|
||||
"Last-Translator: Pepe <donpepe1963@gmail.com>\n"
|
||||
"Language-Team: Wesnoth\n"
|
||||
"Language: es\n"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 1.6.9\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
|
||||
#. [campaign]: id=Eastern_Invasion
|
||||
#: data/campaigns/Eastern_Invasion/_main.cfg:11
|
||||
|
@ -4101,6 +4101,13 @@ msgstr "¡No estoy equipado para usar este objeto! Dejemos que otro lo recoja."
|
|||
msgid "Holy Amulet"
|
||||
msgstr "Amuleto sagrado"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr ""
|
||||
#~ "¡Hay una gran fortuna en este cofre del tesoro! Puedo contar doscientas "
|
||||
#~ "piezas de oro."
|
||||
|
||||
#~ msgid "I summon from the depths of the river beasts to destroy you!"
|
||||
#~ msgstr ""
|
||||
#~ "¡Convoco a las bestias de las profundidades del río para que os destruyan!"
|
||||
|
@ -4108,12 +4115,8 @@ msgstr "Amuleto sagrado"
|
|||
#~ msgid "Argh! I’m dead! Well, dwarves are still the best!"
|
||||
#~ msgstr "¡Argh! ¡Me muero! ¡Bueno, los enanos siguen siendo los mejores!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr ""
|
||||
#~ "¡Hay una gran fortuna en este cofre del tesoro! Puedo contar doscientas "
|
||||
#~ "piezas de oro."
|
||||
#~ msgid "Some time later..."
|
||||
#~ msgstr "Algún tiempo después..."
|
||||
|
||||
#~ msgid "You may now recruit young ogres!"
|
||||
#~ msgstr "¡Ahora puede reclutar ogros jóvenes!"
|
||||
|
|
|
@ -6,8 +6,8 @@ msgstr ""
|
|||
"Project-Id-Version: it\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-02-26 23:13-0000\n"
|
||||
"Last-Translator: Alessandro Barbazza <alexbarbazza@yahoo.it>\n"
|
||||
"PO-Revision-Date: 2015-11-05 17:16+0300\n"
|
||||
"Last-Translator: Antonio 'Antro' Rosella <arosella@yahoo.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -4166,6 +4166,13 @@ msgstr ""
|
|||
msgid "Holy Amulet"
|
||||
msgstr "Amuleto sacro"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr ""
|
||||
#~ "Questo scrigno contiene un’immensa fortuna! Posso contare duecento monete "
|
||||
#~ "d’oro!"
|
||||
|
||||
#~ msgid "I summon from the depths of the river beasts to destroy you!"
|
||||
#~ msgstr ""
|
||||
#~ "Dalle profondità di questo fiume evoco ora le bestie che vi "
|
||||
|
@ -4174,9 +4181,5 @@ msgstr "Amuleto sacro"
|
|||
#~ msgid "Argh! I’m dead! Well, dwarves are still the best!"
|
||||
#~ msgstr "Argh! Sono morto! Comunque sia, i nani sono sempre i migliori!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr ""
|
||||
#~ "Questo scrigno contiene un’immensa fortuna! Posso contare duecento monete "
|
||||
#~ "d’oro!"
|
||||
#~ msgid "Some time later..."
|
||||
#~ msgstr "Qualche tempo dopo..."
|
||||
|
|
|
@ -1,28 +1,29 @@
|
|||
# #-#-#-#-# wesnoth-ei.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-ei.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Q <quel_ro@excite.co.jp>, 2005.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006.
|
||||
# BlueStar, 2006.
|
||||
# R.N <dragonfly65th@yahoo.co.jp>,
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# Toshiharu Kudoh <toshi.kd2@gmail.com>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2011.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# BlueStar, 2006
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2011
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2011
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# OOTA, Masato(oo), 2015
|
||||
# Q <quel_ro@excite.co.jp>, 2005
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# Toshiharu Kudoh <toshi.kd2@gmail.com>, 2010
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-09 03:31+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"PO-Revision-Date: 2015-10-30 11:13+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -4034,3 +4035,6 @@ msgstr "聖なるお守り"
|
|||
|
||||
#~ msgid "Argh! I’m dead! Well, dwarves are still the best!"
|
||||
#~ msgstr "ゴファ! 死ぬのか! ドワーフ族万歳!"
|
||||
|
||||
#~ msgid "Some time later..."
|
||||
#~ msgstr "しばらくして……"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgstr ""
|
|||
"Project-Id-Version: Battle for Wesnoth 1.2\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-02-24 21:02+0100\n"
|
||||
"PO-Revision-Date: 2015-11-07 11:09+0100\n"
|
||||
"Last-Translator: Svistwarrior273 <romanbeno273@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: sk_SK\n"
|
||||
|
@ -3987,13 +3987,16 @@ msgstr "Ja tento predmet nemôžem použiť! Nech si ho vezme niekto iný."
|
|||
msgid "Holy Amulet"
|
||||
msgstr "Svätý amulet"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr "V tejto truhlici je obrovské bohatstvo! Je to dvesto zlatých!"
|
||||
|
||||
#~ msgid "I summon from the depths of the river beasts to destroy you!"
|
||||
#~ msgstr "Z hlbín rieky privolávam tvory, ktoré vás zničia!"
|
||||
|
||||
#~ msgid "Argh! I’m dead! Well, dwarves are still the best!"
|
||||
#~ msgstr "Argh! Som mŕtvy! No a čo, trpaslíci sú aj tak najlepší!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There is a great fortune in this chest of treasure! I can count two "
|
||||
#~ "hundred pieces of gold."
|
||||
#~ msgstr "V tejto truhlici je obrovské bohatstvo! Je to dvesto zlatých!"
|
||||
#~ msgid "Some time later..."
|
||||
#~ msgstr "O nejaký čas neskôr..."
|
||||
|
|
|
@ -2723,8 +2723,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -2775,8 +2775,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -2744,8 +2744,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -1,25 +1,25 @@
|
|||
# #-#-#-#-# wesnoth-help.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-help.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005.
|
||||
# naoki iimura <amatubu@gmail.com>, 2005-2008.
|
||||
# yma <yma9yma@gmail.com>, 2011.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2012.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# yma <yma9yma@gmail.com>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-30 00:34+0000\n"
|
||||
"PO-Revision-Date: 2015-11-04 04:40+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -1763,8 +1763,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"各ユニットは何ポイントかのヒットポイント(HP)を持っています。ユニットのヒッ"
|
||||
"トポイントが 1 より小さくなると、ユニットは死んでしまいます。また各ユニットは"
|
||||
"何ポイントかの経験値(Exp、英語圏ではXP)も持っています。新しく雇用されたユ"
|
||||
"ニットには全く経験がありませんが、敵と戦うことで経験を得ます。"
|
||||
"何ポイントかの経験値(XP)も持っています。新しく雇用されたユニットには全く経"
|
||||
"験がありませんが、敵と戦うことで経験を得ます。"
|
||||
|
||||
#. [topic]: id=hitpoints
|
||||
#: data/core/help.cfg:236
|
||||
|
|
|
@ -2368,8 +2368,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -2296,8 +2296,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -2543,8 +2543,8 @@ msgid ""
|
|||
"\n"
|
||||
"\n"
|
||||
"Elves may also receive <ref>dst='traits_dextrous' text='dextrous'</ref>, and "
|
||||
"dwarves may recieve <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may recieve <ref>dst='traits_fearless' text='fearless'</"
|
||||
"dwarves may receive <ref>dst='traits_healthy' text='healthy'</ref>. Trolls "
|
||||
"and certain humans may receive <ref>dst='traits_fearless' text='fearless'</"
|
||||
"ref>. Other traits which may be assigned include <ref>dst='traits_loyal' "
|
||||
"text='loyal'</ref>, <ref>dst='traits_feral' text='feral'</ref> and "
|
||||
"<ref>dst='traits_undead' text='undead'</ref>.\n"
|
||||
|
|
|
@ -1,26 +1,23 @@
|
|||
# #-#-#-#-# wesnoth-httt.cpp.pot (Battle for Wesnoth 1.12.4)) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-httt.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# naoki iimura <amatubu@gmail.com>, 2005-2008.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# Takanobu Hirai <airhead@users.sourceforge.jp>, 2006.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# Takanobu Hirai <airhead@users.sourceforge.jp>, 2006
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-27 21:39+0000\n"
|
||||
"PO-Revision-Date: 2015-10-22 10:53+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -3806,8 +3803,8 @@ msgid ""
|
|||
"The best way is through the mine tunnels. The orcs have never found all the "
|
||||
"mine entrances, and many still lead deep underground."
|
||||
msgstr ""
|
||||
"一番良い方法は洞窟の坑道を抜ける事がだ。オーク族は鉱山の入り口を全部は見つけ"
|
||||
"ていない。そして、坑道の多くはいまだに地下深くに通じている。"
|
||||
"一番良い方法は洞窟の坑道を抜ける事だ。オーク族は鉱山の入り口を全部は見つけて"
|
||||
"いない。そして、坑道の多くはいまだに地下深くに通じている。"
|
||||
|
||||
#. [message]: speaker=Uncle Somf
|
||||
#: data/campaigns/Heir_To_The_Throne/scenarios/13_The_Dwarven_Doors.cfg:413
|
||||
|
|
|
@ -1,25 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-l.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-l.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Taigaku Okuiso, 2005.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006.
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
#
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# Taigaku Okuiso, 2005
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-17 04:00+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -99,9 +99,8 @@ msgstr ""
|
|||
#. [terrain_type]: id=medium_reef
|
||||
#. [terrain_type]: id=reef
|
||||
#. [terrain_type]: id=tropical_reef
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109
|
||||
#: data/core/terrain.cfg:120 data/core/terrain.cfg:2286
|
||||
#: data/core/terrain.cfg:2287
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109 data/core/terrain.cfg:120
|
||||
#: data/core/terrain.cfg:2286 data/core/terrain.cfg:2287
|
||||
msgid "Coastal Reef"
|
||||
msgstr "Arrecife costero"
|
||||
|
||||
|
@ -2114,7 +2113,7 @@ msgid "Remove"
|
|||
msgstr "Eliminar"
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
msgid "Bilinear intepolation scaling (legacy wesnoth option)"
|
||||
msgid "Bilinear interpolation scaling (legacy wesnoth option)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
|
@ -2146,7 +2145,7 @@ msgid "xBRZ followed by Nearest Neighbor (recommended)"
|
|||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
msgid "Bilinear intepolation scaling (new implementation)"
|
||||
msgid "Bilinear interpolation scaling (new implementation)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
|
@ -3436,7 +3435,7 @@ msgstr "Enviar mensaje privado"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:179
|
||||
msgid "When a private message is recieved"
|
||||
msgid "When a private message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3448,7 +3447,7 @@ msgstr "Amigos"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:180
|
||||
msgid "When a message from a friend is recieved"
|
||||
msgid "When a message from a friend is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3460,7 +3459,7 @@ msgstr "Mensaje:"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
msgid "When a public message is recieved"
|
||||
msgid "When a public message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3472,7 +3471,7 @@ msgstr "Enviar mensaje privado"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
msgid "When a server message is recieved"
|
||||
msgid "When a server message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -4830,8 +4829,7 @@ msgid "addon_state^Unknown"
|
|||
msgstr "Desconocido"
|
||||
|
||||
#: src/gui/dialogs/addon/description.cpp:392 src/gui/dialogs/chat_log.cpp:420
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98
|
||||
#: src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98 src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/gamestate_inspector.cpp:713
|
||||
#: src/gui/dialogs/lua_interpreter.cpp:459
|
||||
#: src/gui/dialogs/screenshot_notification.cpp:94
|
||||
|
|
|
@ -94,9 +94,8 @@ msgstr ""
|
|||
#. [terrain_type]: id=medium_reef
|
||||
#. [terrain_type]: id=reef
|
||||
#. [terrain_type]: id=tropical_reef
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109
|
||||
#: data/core/terrain.cfg:120 data/core/terrain.cfg:2286
|
||||
#: data/core/terrain.cfg:2287
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109 data/core/terrain.cfg:120
|
||||
#: data/core/terrain.cfg:2286 data/core/terrain.cfg:2287
|
||||
msgid "Coastal Reef"
|
||||
msgstr "Riof cladaich"
|
||||
|
||||
|
@ -2090,7 +2089,7 @@ msgid "Remove"
|
|||
msgstr "Thoir air falbh"
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
msgid "Bilinear intepolation scaling (legacy wesnoth option)"
|
||||
msgid "Bilinear interpolation scaling (legacy wesnoth option)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
|
@ -2122,7 +2121,7 @@ msgid "xBRZ followed by Nearest Neighbor (recommended)"
|
|||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
msgid "Bilinear intepolation scaling (new implementation)"
|
||||
msgid "Bilinear interpolation scaling (new implementation)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
|
@ -3414,7 +3413,7 @@ msgstr "Cuir teachdaireachd phearsanta"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:179
|
||||
msgid "When a private message is recieved"
|
||||
msgid "When a private message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3426,7 +3425,7 @@ msgstr "Caraidean"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:180
|
||||
msgid "When a message from a friend is recieved"
|
||||
msgid "When a message from a friend is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3438,7 +3437,7 @@ msgstr "Teachdaireachd:"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
msgid "When a public message is recieved"
|
||||
msgid "When a public message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3450,7 +3449,7 @@ msgstr "Cuir teachdaireachd phearsanta"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
msgid "When a server message is recieved"
|
||||
msgid "When a server message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -4816,8 +4815,7 @@ msgid "addon_state^Unknown"
|
|||
msgstr "Chan eil fios"
|
||||
|
||||
#: src/gui/dialogs/addon/description.cpp:392 src/gui/dialogs/chat_log.cpp:420
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98
|
||||
#: src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98 src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/gamestate_inspector.cpp:713
|
||||
#: src/gui/dialogs/lua_interpreter.cpp:459
|
||||
#: src/gui/dialogs/screenshot_notification.cpp:94
|
||||
|
|
3434
po/wesnoth-lib/it.po
|
@ -1,25 +1,23 @@
|
|||
# #-#-#-#-# wesnoth-lib.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-lib.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005.
|
||||
# naoki iimura <amatubu@mac.com>, 2007-2008.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010.
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2010
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-18 08:04+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -90,9 +90,8 @@ msgstr ""
|
|||
#. [terrain_type]: id=medium_reef
|
||||
#. [terrain_type]: id=reef
|
||||
#. [terrain_type]: id=tropical_reef
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109
|
||||
#: data/core/terrain.cfg:120 data/core/terrain.cfg:2286
|
||||
#: data/core/terrain.cfg:2287
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109 data/core/terrain.cfg:120
|
||||
#: data/core/terrain.cfg:2286 data/core/terrain.cfg:2287
|
||||
msgid "Coastal Reef"
|
||||
msgstr "Rafa"
|
||||
|
||||
|
@ -1913,7 +1912,7 @@ msgid "Remove"
|
|||
msgstr "Usuń"
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
msgid "Bilinear intepolation scaling (legacy wesnoth option)"
|
||||
msgid "Bilinear interpolation scaling (legacy wesnoth option)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
|
@ -1945,7 +1944,7 @@ msgid "xBRZ followed by Nearest Neighbor (recommended)"
|
|||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
msgid "Bilinear intepolation scaling (new implementation)"
|
||||
msgid "Bilinear interpolation scaling (new implementation)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
|
@ -3283,7 +3282,7 @@ msgstr "Wyślij wiadomość prywatną"
|
|||
#: data/gui/default/window/mp_alerts_options.cfg:179
|
||||
#, fuzzy
|
||||
#| msgid "Send a private message"
|
||||
msgid "When a private message is recieved"
|
||||
msgid "When a private message is received"
|
||||
msgstr "Wyślij prywatną wiadomość"
|
||||
|
||||
#. [grid]
|
||||
|
@ -3295,8 +3294,10 @@ msgstr "Przyjaciele"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:180
|
||||
msgid "When a message from a friend is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Send a private message"
|
||||
msgid "When a message from a friend is received"
|
||||
msgstr "Wyślij prywatną wiadomość"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
|
@ -3307,8 +3308,10 @@ msgstr "Wiadomość:"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
msgid "When a public message is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Send a private message"
|
||||
msgid "When a public message is received"
|
||||
msgstr "Wyślij prywatną wiadomość"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
|
@ -3319,8 +3322,10 @@ msgstr "Wyślij prywatną wiadomość"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
msgid "When a server message is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Send a private message"
|
||||
msgid "When a server message is received"
|
||||
msgstr "Wyślij prywatną wiadomość"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:183
|
||||
|
@ -4671,8 +4676,7 @@ msgid "addon_state^Unknown"
|
|||
msgstr ""
|
||||
|
||||
#: src/gui/dialogs/addon/description.cpp:392 src/gui/dialogs/chat_log.cpp:420
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98
|
||||
#: src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98 src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/gamestate_inspector.cpp:713
|
||||
#: src/gui/dialogs/lua_interpreter.cpp:459
|
||||
#: src/gui/dialogs/screenshot_notification.cpp:94
|
||||
|
|
|
@ -91,9 +91,8 @@ msgstr ""
|
|||
#. [terrain_type]: id=medium_reef
|
||||
#. [terrain_type]: id=reef
|
||||
#. [terrain_type]: id=tropical_reef
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109
|
||||
#: data/core/terrain.cfg:120 data/core/terrain.cfg:2286
|
||||
#: data/core/terrain.cfg:2287
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109 data/core/terrain.cfg:120
|
||||
#: data/core/terrain.cfg:2286 data/core/terrain.cfg:2287
|
||||
#, fuzzy
|
||||
msgid "Coastal Reef"
|
||||
msgstr "Coster"
|
||||
|
@ -1989,7 +1988,7 @@ msgid "Remove"
|
|||
msgstr "Eliminar"
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
msgid "Bilinear intepolation scaling (legacy wesnoth option)"
|
||||
msgid "Bilinear interpolation scaling (legacy wesnoth option)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
|
@ -2021,7 +2020,7 @@ msgid "xBRZ followed by Nearest Neighbor (recommended)"
|
|||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
msgid "Bilinear intepolation scaling (new implementation)"
|
||||
msgid "Bilinear interpolation scaling (new implementation)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
|
@ -3382,7 +3381,7 @@ msgstr "Borrar mensages"
|
|||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:179
|
||||
#, fuzzy
|
||||
msgid "When a private message is recieved"
|
||||
msgid "When a private message is received"
|
||||
msgstr "Borrar mensages"
|
||||
|
||||
#. [grid]
|
||||
|
@ -3393,8 +3392,9 @@ msgstr "Llista d'amics"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:180
|
||||
msgid "When a message from a friend is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "When a message from a friend is received"
|
||||
msgstr "Borrar mensages"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
|
@ -3403,8 +3403,9 @@ msgstr ""
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
msgid "When a public message is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "When a public message is received"
|
||||
msgstr "Borrar mensages"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
|
@ -3414,8 +3415,9 @@ msgstr "Borrar mensages"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
msgid "When a server message is recieved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "When a server message is received"
|
||||
msgstr "Borrar mensages"
|
||||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:183
|
||||
|
@ -4777,8 +4779,7 @@ msgid "addon_state^Unknown"
|
|||
msgstr ""
|
||||
|
||||
#: src/gui/dialogs/addon/description.cpp:392 src/gui/dialogs/chat_log.cpp:420
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98
|
||||
#: src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98 src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/gamestate_inspector.cpp:713
|
||||
#: src/gui/dialogs/lua_interpreter.cpp:459
|
||||
#: src/gui/dialogs/screenshot_notification.cpp:94
|
||||
|
|
|
@ -8,7 +8,7 @@ msgstr ""
|
|||
"Project-Id-Version: Battle for Wesnoth 1.2\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2014-03-06 22:36+0100\n"
|
||||
"PO-Revision-Date: 2015-11-07 11:07+0100\n"
|
||||
"Last-Translator: aceman <acelists@atlas.sk>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: \n"
|
||||
|
@ -92,9 +92,8 @@ msgstr ""
|
|||
#. [terrain_type]: id=medium_reef
|
||||
#. [terrain_type]: id=reef
|
||||
#. [terrain_type]: id=tropical_reef
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109
|
||||
#: data/core/terrain.cfg:120 data/core/terrain.cfg:2286
|
||||
#: data/core/terrain.cfg:2287
|
||||
#: data/core/terrain.cfg:98 data/core/terrain.cfg:109 data/core/terrain.cfg:120
|
||||
#: data/core/terrain.cfg:2286 data/core/terrain.cfg:2287
|
||||
msgid "Coastal Reef"
|
||||
msgstr "Pobrežný útes"
|
||||
|
||||
|
@ -2055,7 +2054,7 @@ msgid "Remove"
|
|||
msgstr "Odstrániť"
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
msgid "Bilinear intepolation scaling (legacy wesnoth option)"
|
||||
msgid "Bilinear interpolation scaling (legacy wesnoth option)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:42
|
||||
|
@ -2087,7 +2086,7 @@ msgid "xBRZ followed by Nearest Neighbor (recommended)"
|
|||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
msgid "Bilinear intepolation scaling (new implementation)"
|
||||
msgid "Bilinear interpolation scaling (new implementation)"
|
||||
msgstr ""
|
||||
|
||||
#: data/gui/default/window/advanced_graphics_options.cfg:46
|
||||
|
@ -3377,7 +3376,7 @@ msgstr "Odoslať súkromnú správu"
|
|||
#: data/gui/default/window/mp_alerts_options.cfg:179
|
||||
#, fuzzy
|
||||
#| msgid "Send a private message"
|
||||
msgid "When a private message is recieved"
|
||||
msgid "When a private message is received"
|
||||
msgstr "Odoslať súkromnú správu"
|
||||
|
||||
#. [grid]
|
||||
|
@ -3389,7 +3388,7 @@ msgstr "Priatelia"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:180
|
||||
msgid "When a message from a friend is recieved"
|
||||
msgid "When a message from a friend is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3401,7 +3400,7 @@ msgstr "Správa:"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:181
|
||||
msgid "When a public message is recieved"
|
||||
msgid "When a public message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -3413,7 +3412,7 @@ msgstr "Odoslať súkromnú správu"
|
|||
|
||||
#. [grid]
|
||||
#: data/gui/default/window/mp_alerts_options.cfg:182
|
||||
msgid "When a server message is recieved"
|
||||
msgid "When a server message is received"
|
||||
msgstr ""
|
||||
|
||||
#. [grid]
|
||||
|
@ -4742,8 +4741,7 @@ msgid "addon_state^Unknown"
|
|||
msgstr "Neznámy"
|
||||
|
||||
#: src/gui/dialogs/addon/description.cpp:392 src/gui/dialogs/chat_log.cpp:420
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98
|
||||
#: src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/game_cache_options.cpp:98 src/gui/dialogs/game_paths.cpp:119
|
||||
#: src/gui/dialogs/gamestate_inspector.cpp:713
|
||||
#: src/gui/dialogs/lua_interpreter.cpp:459
|
||||
#: src/gui/dialogs/screenshot_notification.cpp:94
|
||||
|
@ -5848,11 +5846,11 @@ msgstr "Klobúk"
|
|||
|
||||
#: src/hotkey/hotkey_preferences_display.cpp:134
|
||||
msgid "Add a new binding to \"$hotkey_description|\""
|
||||
msgstr ""
|
||||
msgstr "Pridať nové prepojenie na \"$hotkey_description|\""
|
||||
|
||||
#: src/hotkey/hotkey_preferences_display.cpp:136
|
||||
msgid "Clears the current bindings for \"$hotkey_description|\""
|
||||
msgstr ""
|
||||
msgstr "Vymaže aktuálne prepojenia pre \"$hotkey_description|\""
|
||||
|
||||
#: src/hotkey/hotkey_preferences_display.cpp:150
|
||||
msgid "Hotkeys Reset"
|
||||
|
@ -5896,7 +5894,7 @@ msgstr "Akcia"
|
|||
|
||||
#: src/hotkey/hotkey_preferences_display.cpp:258
|
||||
msgid "Binding"
|
||||
msgstr "Väzba (skratka)"
|
||||
msgstr "Prepojenie (skratka)"
|
||||
|
||||
#: src/hotkey/hotkey_preferences_display.cpp:567
|
||||
msgid "Press desired hotkey (Esc cancels)"
|
||||
|
@ -6000,26 +5998,21 @@ msgstr ""
|
|||
"Kľúč '$deprecated_key' bol premenovaný na '$key'. Podpora pre "
|
||||
"'$deprecated_key' bude odstránená vo verzii $removal_version."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Options"
|
||||
#~ msgid "Level options"
|
||||
#~ msgstr "Možnosti"
|
||||
|
||||
#~ msgid "Generate Random Map"
|
||||
#~ msgstr "Generuj náhodnú mapu"
|
||||
|
||||
#~ msgid "Next Generator"
|
||||
#~ msgstr "Ďalší generátor"
|
||||
|
||||
#~ msgid "Password: "
|
||||
#~ msgstr "Heslo: "
|
||||
|
||||
#~ msgid "Team 1"
|
||||
#~ msgstr "Tím 1"
|
||||
|
||||
#~ msgid "Custom Time of Day Creator"
|
||||
#~ msgstr "Vlastná tvorba dennej doby"
|
||||
|
||||
#~ msgid "Password: "
|
||||
#~ msgstr "Heslo: "
|
||||
|
||||
#~ msgid "controller^Human/AI"
|
||||
#~ msgstr "Človek/Počítač"
|
||||
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
# #-#-#-#-# wesnoth-low.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-low.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# rouiza <polax1999@yahoo.co.jp>, 2010.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2011-2012.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
# rouiza <polax1999@yahoo.co.jp>, 2010
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-18 10:33+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# SOME DESCRIPTIVE TITLE
|
||||
# Copyright (C) YEAR Wesnoth Development Team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2006
|
||||
# Naoki IIMURA <amatubu@gmail.com>, 2008
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-03 20:54+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,25 +1,21 @@
|
|||
# #-#-#-#-# wesnoth-help.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# SOME DESCRIPTIVE TITLE
|
||||
# Copyright (C) YEAR Wesnoth Development Team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005.
|
||||
# naoki iimura <amatubu@gmail.com>, 2005-2008.
|
||||
# yma <yma9yma@gmail.com>, 2011.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2012.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
#
|
||||
# Automatically generated, 2007
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2010
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
# yma <yma9yma@gmail.com>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-27 21:39+0000\n"
|
||||
"PO-Revision-Date: 2015-10-30 11:41+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -3588,7 +3584,7 @@ msgid ""
|
|||
"and either a long handle or a missile, used to perforate foe’s body "
|
||||
"and damage internal organs. Examples: Knight or infantry pike, arrow."
|
||||
msgstr ""
|
||||
"<emphasis role=\"strong\">貫通</emphasis>: 武器には長い棒に鋭い先端と持ち手"
|
||||
"<emphasis role=\"strong\">刺突</emphasis>: 武器には長い棒に鋭い先端と持ち手"
|
||||
"があるか飛んでゆく物体であり、相手を突き刺すことに使われます。例:騎兵や歩兵"
|
||||
"の槍、矢"
|
||||
|
||||
|
@ -3660,10 +3656,10 @@ msgid ""
|
|||
"are very resistant to blade and piercing weapon but very vulnerable to "
|
||||
"impact attacks and arcane attacks."
|
||||
msgstr ""
|
||||
"例:ドレークのうろこはほとんどの攻撃方法に対して強靭ですが、貫通と冷気による"
|
||||
"例:ドレークのうろこはほとんどの攻撃方法に対して強靭ですが、刺突と冷気による"
|
||||
"武器には弱点を持ちます。人間の騎兵は一般的によく防御されていますが、例外的に"
|
||||
"貫通攻撃に弱く、それが彼らの弱点になっています。(スケルトン系)アンデッドは"
|
||||
"斬撃や貫通には非常に強いのですが、打撃や秘術による攻撃に対して非常に弱いで"
|
||||
"刺突攻撃に弱く、それが彼らの弱点になっています。(スケルトン系)アンデッドは"
|
||||
"斬撃や刺突には非常に強いのですが、打撃や秘術による攻撃に対して非常に弱いで"
|
||||
"す。"
|
||||
|
||||
#. type: Content of: <book><chapter><section><section><simpara>
|
||||
|
|
|
@ -1,23 +1,22 @@
|
|||
# #-#-#-#-# wesnoth-multiplayer.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-multiplayer.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2005-2006.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005.
|
||||
# naoki iimura <amatubu@gmail.com>, 2005-2008.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# MATSUMOTO Yuji <matumoto@marron.cias.osakafu-u.ac.jp>, 2005
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-18 08:14+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -456,7 +456,7 @@ msgid ""
|
|||
"will be a massacre. But would you rather live as slaves to the orcs forever?"
|
||||
msgstr ""
|
||||
"But, but, but... Are you full of nothing but doubts? (<i>Sigh</i>) Yes, it "
|
||||
"will be a massacre. But would you rather live as slaves to the orcs forever?"
|
||||
"will be a massacre. But would you rather live as slaves to the orcs for ever?"
|
||||
|
||||
#. [message]: speaker=Zlex
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/01_Breaking_the_Chains.cfg:271
|
||||
|
@ -7389,7 +7389,7 @@ msgstr ""
|
|||
#. [message]: speaker=Tallin
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/09a_Introductions.cfg:456
|
||||
msgid "I can see the dwarvish defenses just ahead. Lets go!"
|
||||
msgstr "I can see the dwarvish defences just ahead. Lets go!"
|
||||
msgstr "I can see the dwarvish defences just ahead. Let’s go!"
|
||||
|
||||
#. [scenario]: id=09b_Judgment
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/09b_Judgment.cfg:4
|
||||
|
@ -7905,9 +7905,9 @@ msgid ""
|
|||
"the trolls who took your gold. Mayhap the elves will be able to get between "
|
||||
"the trolls and their allies."
|
||||
msgstr ""
|
||||
"I will send another message to them asking them to send out scouts to locate "
|
||||
"the trolls who took your gold. Mayhap the elves will be able to get between "
|
||||
"the trolls and their allies."
|
||||
"I will send another message to them asking them to send scouts to locate the "
|
||||
"trolls who took your gold. Mayhap the elves will be able to get between the "
|
||||
"trolls and their allies."
|
||||
|
||||
#. [else]
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/10a_Stolen_Gold.cfg:131
|
||||
|
@ -7933,7 +7933,7 @@ msgstr "The axes and hammers o’ every dwarf thirst for the blood of the orcs!"
|
|||
#. [story]
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/10a_Stolen_Gold.cfg:139
|
||||
msgid "All right, let’s move out, people!"
|
||||
msgstr "All right, let’s move out, people!"
|
||||
msgstr "All right, let’s move out, everyone!"
|
||||
|
||||
#. [part]
|
||||
#: data/campaigns/Northern_Rebirth/scenarios/10a_Stolen_Gold.cfg:142
|
||||
|
|
|
@ -1,22 +1,23 @@
|
|||
# #-#-#-#-# wesnoth-nr.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-nr.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2011.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# Masaharu IWAI <iwaim.sub@gmail.com>, 2011
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
# <P2295417919104729@hotmail.co.jp>, 2010
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-16 14:18+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-sof.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-sof.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# np <tukiplus@gmail.com>, 2009.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# nolze, 2011.
|
||||
# OOTA, Masato(oo), 2015.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# nolze, 2011
|
||||
# np <tukiplus@gmail.com>, 2009
|
||||
# OOTA, Masato <ooyooxei+tr@gmail.com>, 2015
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-18 10:37+0000\n"
|
||||
"Last-Translator: OOTA, Masato(oo)\n"
|
||||
"Last-Translator: OOTA, Masato <ooyooxei+tr@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
# #-#-#-#-# wesnoth-sotbe.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-sotbe.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2005
|
||||
# naoki iimura <amatubu@gmail.com>, 2005.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006.
|
||||
# IWAI, Masaharu <iwaim.sub@gmail.com>, 2010-2011.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010.
|
||||
# tamanegi, 2015.
|
||||
# clearpotion <clearpotion+fantasy@gmail.com>, 2010
|
||||
# naoki iimura <amatubu@gmail.com>, 2005
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# tamanegi, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-09 14:12+0000\n"
|
||||
"Last-Translator: tamanegi\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
# #-#-#-#-# wesnoth-tb.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-tb.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2006
|
||||
# BlueStar, 2006.
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006.
|
||||
# R.N <dragonfly65th@yahoo.co.jp>,
|
||||
# yma <yma9yma@gmail.com>, 2011.
|
||||
# RatArmy <broadbarredfirefish@gmail.com>, 2015.
|
||||
# BlueStar, 2006
|
||||
# Nobuhito Okada <okyada@gmail.com>, 2006
|
||||
# yma <yma9yma@gmail.com>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-03 20:59+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,19 +1,20 @@
|
|||
# #-#-#-#-# wesnoth-test.cpp.pot (Battle for Wesnoth 1.12.4) #-#-#-#-#
|
||||
# Japanese translations for Battle for Wesnoth package.
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# #-#-#-#-# wesnoth-test.cpp.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Wesnoth development team
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Automatically generated, 2008
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.12.4\n"
|
||||
"Project-Id-Version: Wesnoth1.12\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2015-06-27 20:18-0300\n"
|
||||
"PO-Revision-Date: 2015-08-03 20:59+0000\n"
|
||||
"Last-Translator: RatArmy <broadbarredfirefish@gmail.com>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/wesnoth-jp/"
|
||||
"wesnoth112/language/ja_JP/)\n"
|
||||
"Language: ja\n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
|
@ -1,21 +1,24 @@
|
|||
# translation of racv.po to Valencian
|
||||
# Copyright (C) 2008 Wesnoth development team
|
||||
# This file is distributed under the same license as the Battle for Wesnoth package.
|
||||
# Automatically generated, 2008.
|
||||
#
|
||||
# Josep Miralles i Belenguer <info@softwarevalencia.com>, 2015.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Battle for Wesnoth 1.5+dev\n"
|
||||
"Project-Id-Version: racv\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n"
|
||||
"POT-Creation-Date: 2010-05-24 17:53+0200\n"
|
||||
"PO-Revision-Date: 2008-02-14 12:37+0100\n"
|
||||
"Last-Translator: Mavorte <mavorte1@yahoo.es>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: \n"
|
||||
"PO-Revision-Date: 2015-11-04 23:20+0200\n"
|
||||
"Last-Translator: Josep Miralles i Belenguer <info@softwarevalencia.com>\n"
|
||||
"Language-Team: Software Valencià\n"
|
||||
"Language: Valencian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Virtaal 0.7.1\n"
|
||||
|
||||
#. [test_key2]
|
||||
#: data/test/test/_main.cfg:24
|
||||
msgid "testing translation reset."
|
||||
msgstr ""
|
||||
msgstr "provant reajust de traduccions."
|
||||
|
|