1#textdomain wesnoth
2[language]
3    EASY= _ "Easy"
4    NORMAL= _ "Medium"
5    HARD= _ "Hard"
6    NIGHTMARE= _ "Nightmare"
7
8    lawful_description= _ "Lawful units fight better during the day, and worse at night.
9
10Day: +25% Damage
11Night: −25% Damage"
12    neutral_description= _ "Neutral units are unaffected by day and night, fighting equally well under both conditions."
13    chaotic_description= _ "Chaotic units fight better at night, and worse during the day.
14
15Day: −25% Damage
16Night: +25% Damage"
17    liminal_description= _ "Liminal units only reach their full strength during twilight.
18
19Day: −25% Damage
20Night: −25% Damage"
21
22    #ranges
23    range_melee= _ "melee"
24    range_ranged= _ "ranged"
25
26    #damage types
27    type_blade= _ "blade"
28    type_pierce= _ "pierce"
29    type_impact= _ "impact"
30    type_fire= _ "fire"
31    type_cold= _ "cold"
32    type_arcane= _ "arcane"
33[/language]
34
35#default naming of terrain features
36[naming]
37    # po: Generator for bridge labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
38    bridge_name_generator= _ <<
39		bridge_type=Bridge|Crossing
40		main=$base {bridge_type}|$base{!}’s {bridge_type}
41	>>
42    # po: Generator for road labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
43    road_name_generator= _ <<
44		road_type=Highway|Pass|Path|Road|Way|Trail
45		main=$base{!}’s {road_type}|{road_type} of $base
46	>>
47    # po: Generator for river labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
48    river_name_generator= _ <<
49		river_type=River|River|River|Creek|Creek|Stream|Canal
50		main=$base {river_type}|{river_type} $base
51	>>
52    # po: Generator for forest labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
53    forest_name_generator= _ <<
54		forest_type=Forest|Forest|Wood
55		main=$base {forest_type}|$base{!}’s {forest_type}|{forest_type} $base
56	>>
57    # po: Generator for lake labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
58    lake_name_generator= _ <<
59		lake_type=Lake|Lake|Lake|Loch|Sea
60		main=$base {lake_type}|{lake_type} $base
61	>>
62    # po: Generator for mountain labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
63    mountain_name_generator= _ <<
64		main=$base{!}’s Peak|$base Peak|Mount $base|Mount $base
65	>>
66    # po: Generator for swamp labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
67    swamp_name_generator= _ <<
68		suffix=’s Swamp|marsh|fen
69		main=$base{!}{suffix}
70	>>
71[/naming]
72
73[village_naming]
74    # po: Generator for generic village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
75    name_generator= _ <<
76		suffix=bury|bury|ham|ton|ville
77		main=$base{!}{suffix}
78	>>
79    # po: Generator for lakeside village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
80    lake_name_generator= _ <<
81		prefix=$base{!}|$lake{!}
82		suffix=harbor|port
83		main={prefix}{suffix}
84	>>
85    # po: Generator for riverside village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
86    river_name_generator= _ <<
87		prefix=$base{!}|$river{!}
88		river=$river{!}|River
89		suffix=ham|ford|cross| on {river}
90		main={prefix}{suffix}
91	>>
92    # po: Generator for bridge village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
93    bridge_name_generator= _ <<
94		prefix=$base{!}|$river{!}|$bridge{!}
95		suffix=bridge|bridge|ham|ton
96		main={prefix}{suffix}
97	>>
98    # po: Generator for grassland village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
99    grassland_name_generator= _ <<
100		suffix=ham|ton|field
101		main=$base{!}{suffix}
102	>>
103    # po: Generator for forest village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
104    forest_name_generator= _ <<
105		prefix=$base{!}|$forest{!}
106		suffix=ham|ton|wood| Forest
107		main={prefix}{suffix}
108	>>
109    # po: Generator for hill village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
110    hill_name_generator= _ <<
111		suffix=ham|bury|ton|hill|crest
112		main=$base{!}{suffix}
113	>>
114    # po: Generator for mountain village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
115    mountain_name_generator= _ <<
116		prefix=$base{!}|$mountain{!}
117		suffix=mont|cliff|bury|ham
118		main={prefix}{suffix}
119	>>
120    # po: Generator for mountain labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
121    mountain_anon_name_generator= _ <<
122		suffix=ham|bury|ton|mont|mont|cliff|cliff
123		main=$base{!}{suffix}
124	>>
125    # po: Generator for roadside village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
126    road_name_generator= _ <<
127		prefix=$road{!}|$road{!}|$base{!}
128		suffix=’s Rest|’s Waypoint|bury|bury|ham|ham
129		main={prefix}{suffix}
130	>>
131    # po: Generator for swamp village labels in random maps; see <https://wiki.wesnoth.org/Context-free_grammar> for syntax and <https://wiki.wesnoth.org/MapGeneratorWML#The_Default_Generator> for variables summary
132    swamp_name_generator= _ <<
133		prefix=$base{!}|$swamp{!}
134		suffix=bury|ham|ton
135		main={prefix}{suffix}
136	>>
137[/village_naming]
138