mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
67 lines
2.0 KiB
Plaintext
67 lines
2.0 KiB
Plaintext
/// Translation document instructions
|
|
///
|
|
/// In order to keep localization documents readible please follow the following
|
|
/// rules:
|
|
/// - separate the string map sections using a commentary describing the purpose
|
|
/// of the next section
|
|
/// - prepend multi-line strings with a commentary
|
|
/// - append one blank lines after a multi-line strings and two after sections
|
|
///
|
|
/// To add a new language in Veloren, just write an additional `.ron` file in
|
|
/// `assets/voxygen/i18n` and that's it!
|
|
///
|
|
/// WARNING: Localization files shall be saved in UTF-8 format without BOM
|
|
|
|
/// Localization for "global" English
|
|
(
|
|
metadata: (
|
|
language_name: "English",
|
|
language_identifier: "en",
|
|
),
|
|
convert_utf8_to_ascii: false,
|
|
fonts: {
|
|
"opensans": Font (
|
|
asset_key: "voxygen.font.OpenSans-Regular",
|
|
scale_ratio: 1.0,
|
|
),
|
|
"metamorph": Font (
|
|
asset_key: "voxygen.font.Metamorphous-Regular",
|
|
scale_ratio: 1.0,
|
|
),
|
|
"alkhemi": Font (
|
|
asset_key: "voxygen.font.Alkhemikal",
|
|
scale_ratio: 1.0,
|
|
),
|
|
"wizard": Font (
|
|
asset_key: "voxygen.font.wizard",
|
|
scale_ratio: 1.0,
|
|
),
|
|
"cyri": Font (
|
|
asset_key: "voxygen.font.haxrcorp_4089_cyrillic_altgr_extended",
|
|
scale_ratio: 1.0,
|
|
),
|
|
},
|
|
string_map: {
|
|
// Map and Questlog
|
|
"hud.map.map_title": "Map",
|
|
"hud.map.qlog_title": "Quests",
|
|
"hud.map.difficulty": "Difficulty",
|
|
"hud.map.towns": "Towns",
|
|
"hud.map.castles": "Castles",
|
|
"hud.map.dungeons": "Dungeons",
|
|
"hud.map.caves": "Caves",
|
|
"hud.map.cave": "Cave",
|
|
"hud.map.town": "Town",
|
|
"hud.map.castle": "Castle",
|
|
"hud.map.dungeon": "Dungeon",
|
|
"hud.map.difficulty_dungeon": "Dungeon\n\nDifficulty: {difficulty}",
|
|
"hud.map.drag": "Drag",
|
|
"hud.map.zoom": "Zoom",
|
|
"hud.map.recenter": "Recenter",
|
|
},
|
|
|
|
|
|
vector_map: {
|
|
}
|
|
)
|