Merge pull request #51124 from YeldhamDev/local_editor_dup_fix

Fix being able to add duplicate files in the Localization editor
This commit is contained in:
Rémi Verschelde 2021-08-01 10:14:11 +02:00 committed by GitHub
commit 536f6a1472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -371,15 +371,10 @@ void LocalizationEditor::_translation_filter_mode_changed(int p_mode) {
void LocalizationEditor::_pot_add(const PackedStringArray &p_paths) {
PackedStringArray pot_translations = ProjectSettings::get_singleton()->get("internationalization/locale/translations_pot_files");
for (int i = 0; i < p_paths.size(); i++) {
for (int j = 0; j < pot_translations.size(); j++) {
if (pot_translations[j] == p_paths[i]) {
continue; //exists
}
if (!pot_translations.has(p_paths[i])) {
pot_translations.push_back(p_paths[i]);
}
pot_translations.push_back(p_paths[i]);
}
undo_redo->create_action(vformat(TTR("Add %d file(s) for POT generation"), p_paths.size()));