We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a4aedb commit b1000d1Copy full SHA for b1000d1
editor/localization_editor.cpp
@@ -37,7 +37,6 @@
37
#include "editor/filesystem_dock.h"
38
#include "editor/gui/editor_file_dialog.h"
39
#include "editor/pot_generator.h"
40
-#include "editor/themes/editor_scale.h"
41
#include "scene/gui/control.h"
42
43
void LocalizationEditor::_notification(int p_what) {
@@ -49,6 +48,7 @@ void LocalizationEditor::_notification(int p_what) {
49
48
50
List<String> tfn;
51
ResourceLoader::get_recognized_extensions_for_type("Translation", &tfn);
+ tfn.erase("csv"); // CSV is recognized by the resource importer to generate translation files, but it's not a translation file itself.
52
for (const String &E : tfn) {
53
translation_file_open->add_filter("*." + E);
54
}
0 commit comments