mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
mark missing files as untranslated
This commit is contained in:
parent
4c0b74150d
commit
c234f1d926
@ -69,6 +69,13 @@ fn compare_lang_with_reference(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const MISSING: LocalizationEntryState = LocalizationEntryState {
|
||||||
|
key_line: None,
|
||||||
|
chuck_line_range: None,
|
||||||
|
commit_id: None,
|
||||||
|
state: Some(LocalizationState::NotFound),
|
||||||
|
};
|
||||||
|
|
||||||
// match files
|
// match files
|
||||||
for (ref_path, ref_fragment) in i18n_references.fragments.iter() {
|
for (ref_path, ref_fragment) in i18n_references.fragments.iter() {
|
||||||
let cur_fragment = match current_i18n.fragments.get_mut(ref_path) {
|
let cur_fragment = match current_i18n.fragments.get_mut(ref_path) {
|
||||||
@ -78,6 +85,17 @@ fn compare_lang_with_reference(
|
|||||||
"language {} is missing file: {:?}",
|
"language {} is missing file: {:?}",
|
||||||
current_i18n.manifest.metadata.language_identifier, ref_path
|
current_i18n.manifest.metadata.language_identifier, ref_path
|
||||||
);
|
);
|
||||||
|
// add all keys as missing
|
||||||
|
let mut string_map = HashMap::new();
|
||||||
|
for (ref_key, _) in ref_fragment.string_map.iter() {
|
||||||
|
string_map.insert(ref_key.to_owned(), MISSING.clone());
|
||||||
|
}
|
||||||
|
current_i18n
|
||||||
|
.fragments
|
||||||
|
.insert(ref_path.to_owned(), RawFragment {
|
||||||
|
string_map,
|
||||||
|
vector_map: HashMap::new(),
|
||||||
|
});
|
||||||
continue;
|
continue;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -118,12 +136,7 @@ fn compare_lang_with_reference(
|
|||||||
None => {
|
None => {
|
||||||
cur_fragment
|
cur_fragment
|
||||||
.string_map
|
.string_map
|
||||||
.insert(ref_key.to_owned(), LocalizationEntryState {
|
.insert(ref_key.to_owned(), MISSING.clone());
|
||||||
key_line: None,
|
|
||||||
chuck_line_range: None,
|
|
||||||
commit_id: None,
|
|
||||||
state: Some(LocalizationState::NotFound),
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ pub(crate) const ALL_LOCALIZATION_STATES: [Option<LocalizationState>; 5] = [
|
|||||||
None,
|
None,
|
||||||
];
|
];
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub(crate) struct LocalizationEntryState {
|
pub(crate) struct LocalizationEntryState {
|
||||||
pub(crate) key_line: Option<usize>,
|
pub(crate) key_line: Option<usize>,
|
||||||
pub(crate) chuck_line_range: Option<(usize, usize)>,
|
pub(crate) chuck_line_range: Option<(usize, usize)>,
|
||||||
|
Loading…
Reference in New Issue
Block a user