renamed _root.ron files to _manifest.ron

This commit is contained in:
Vincent Foulon 2020-12-29 16:42:50 +01:00
parent 5b62398e80
commit 7a4c3fa9a6
19 changed files with 3 additions and 3 deletions

View File

@ -12,6 +12,6 @@ rules:
To add a new language in Veloren, please follow these steps:
- Create a new folder into the `assets/voxygen/i18n` directory
- Copy the content of the `en` directory
- Configure the language metadata in the `_root.ron` file
- Copy the content of the `en` directory in your new folder
- Configure the language metadata in the `_manifest.ron` file
- From this point, you can start translating the files !

View File

@ -8,7 +8,7 @@ use tracing::warn;
/// Also the default language at first startup.
pub const REFERENCE_LANG: &str = "en";
pub const LANG_MANIFEST_FILE: &str = "_root";
pub const LANG_MANIFEST_FILE: &str = "_manifest";
/// How a language can be described
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]