2020-03-27 17:28:46 +00:00
|
|
|
/// Translation document instructions
|
2020-11-01 13:39:32 +00:00
|
|
|
///
|
2020-03-27 17:28:46 +00:00
|
|
|
/// 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
|
|
|
|
///
|
2020-11-01 13:39:32 +00:00
|
|
|
/// To add a new language in Veloren, just write an additional `.ron` file in
|
2020-03-27 17:28:46 +00:00
|
|
|
/// `assets/voxygen/i18n` and that's it!
|
2020-06-08 21:47:30 +00:00
|
|
|
///
|
|
|
|
/// WARNING: Localization files shall be saved in UTF-8 format without BOM
|
2020-03-27 17:28:46 +00:00
|
|
|
|
|
|
|
/// Localization for Turkish (Turkey)
|
2020-05-25 18:11:39 +00:00
|
|
|
(
|
2020-03-27 17:28:46 +00:00
|
|
|
metadata: (
|
2023-06-07 13:12:34 +00:00
|
|
|
language_name: "Türkçe (Turkish)",
|
|
|
|
language_identifier: "tr",
|
2020-03-27 17:28:46 +00:00
|
|
|
),
|
|
|
|
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,
|
|
|
|
),
|
|
|
|
}
|
2020-10-28 19:25:42 +00:00
|
|
|
)
|